:root {
  --bg: #090d0e;
  --bg-soft: #0f1718;
  --bg-panel: #111c1d;
  --text: #eef2ef;
  --text-muted: #9fb0ad;
  --line: rgba(140, 174, 168, 0.22);
  --teal: #23c6a0;
  --teal-soft: rgba(35, 198, 160, 0.16);
  --cream: #e4d7be;
  --max: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(70% 80% at 80% 0%, rgba(35, 198, 160, 0.14), transparent 60%), var(--bg);
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  overflow-x: clip;
  max-width: 100%;
}

/* Lightweight “success” banner */
.toast {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: calc(0.75rem + env(safe-area-inset-top, 0px)) 0 0.75rem;
  background: linear-gradient(120deg, rgba(35, 198, 160, 0.22), rgba(15, 23, 24, 0.92));
  border-bottom: 1px solid rgba(35, 198, 160, 0.35);
  backdrop-filter: blur(10px);
}

.toast__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 0.75rem;
  align-items: start;
}

.toast__title {
  font-weight: 800;
  color: var(--cream);
}

.toast__text {
  grid-column: 1 / 2;
  color: var(--text);
  opacity: 0.92;
  font-size: 0.98rem;
}

.toast__close {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(140, 174, 168, 0.25);
  background: rgba(9, 13, 14, 0.35);
  color: var(--text);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.toast__close:hover {
  border-color: rgba(35, 198, 160, 0.55);
  background: rgba(35, 198, 160, 0.12);
}

main {
  overflow-x: clip;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

.page-glow {
  position: fixed;
  top: -10%;
  right: 0;
  width: min(420px, 80vw);
  height: 420px;
  max-width: 100vw;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(35, 198, 160, 0.35), transparent 68%);
  filter: blur(22px);
  opacity: 0.55;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(9, 13, 14, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text);
  align-items: center;
}

.brand__logo {
  height: 44px;
  width: 44px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  border-radius: 8px;
}

.brand__text {
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  min-width: 0;
}

.hero {
  padding: 4rem 0 2.75rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
  min-width: 0;
}

.hero__copy {
  min-width: 0;
}

.hero__headline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.hero__product-mark {
  width: 108px;
  height: 108px;
  flex: 0 0 auto;
  border-radius: 22px;
  background: rgba(15, 23, 24, 0.6);
  border: 1px solid rgba(140, 174, 168, 0.22);
  padding: 0.65rem;
  object-fit: contain;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.12rem;
  margin-bottom: 0.55rem;
}

p {
  margin: 0;
}

.hero__sub {
  color: var(--text-muted);
  font-size: 1.07rem;
  max-width: 62ch;
}

.hero__event {
  margin-top: 0.95rem;
  color: var(--cream);
  font-size: 0.98rem;
}

.hero__price,
.cta__price {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  row-gap: 0.35rem;
}

.hero__price .price__was,
.cta__price .price__was {
  flex-shrink: 0;
}

.price__was {
  color: var(--text-muted);
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(228, 215, 190, 0.55);
  -webkit-text-decoration-line: line-through;
  -webkit-text-decoration-color: rgba(228, 215, 190, 0.55);
  text-decoration-skip-ink: none;
  -webkit-text-decoration-skip: none;
}

.price__now {
  color: var(--cream);
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 1.35rem;
}

.price__note {
  color: var(--text-muted);
  font-weight: 600;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.hero__cta--single {
  justify-content: center;
}

.hero__meta {
  margin: 1.2rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.35rem;
  color: var(--cream);
}

.hero__card {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  min-width: 0;
  background: linear-gradient(180deg, rgba(18, 28, 29, 0.65), rgba(17, 28, 29, 0.95));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.hero__card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.hero__card-content {
  padding: 1rem 1rem 1.15rem;
}

.hero__name {
  font-size: 1.1rem;
  font-weight: 700;
}

.hero__role,
.hero__bio {
  color: var(--text-muted);
}

.hero__role {
  margin-top: 0.2rem;
}

.hero__bio {
  margin-top: 0.55rem;
  font-size: 0.95rem;
}

.section {
  padding: 3rem 0;
  min-width: 0;
  max-width: 100%;
}

main img {
  max-width: 100%;
  height: auto;
}

.section--dark {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__intro {
  margin: 0 0 1.25rem;
  max-width: 65ch;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.cohost {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-panel);
  overflow: hidden;
}

.cohost__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.cohost__body {
  padding: 1rem 1rem 1.15rem;
  min-width: 0;
}

.cohost__name {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
}

.cohost__role {
  margin-top: 0.25rem;
  color: var(--cream);
  font-weight: 700;
}

.cohost__bio {
  margin-top: 0.6rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 72ch;
}

.cohost__source {
  margin-top: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.cohost__source a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(35, 198, 160, 0.35);
}

.cohost__source a:hover {
  border-bottom-color: rgba(35, 198, 160, 0.8);
}

.infographic {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

/* Fluid box: prevents intrinsic image width from forcing horizontal scroll on any viewport */
.infographic__media {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  line-height: 0;
}

.infographic__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.infographic__caption {
  margin: 0;
  padding: 0.85rem 1rem 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid var(--line);
  line-height: 1.45;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.panel p {
  color: var(--text-muted);
}

.panel--accent {
  border-color: rgba(35, 198, 160, 0.5);
  box-shadow: inset 0 0 0 1px rgba(35, 198, 160, 0.12);
}

.callout {
  margin: 0.75rem 0 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(35, 198, 160, 0.35);
  background: linear-gradient(140deg, rgba(35, 198, 160, 0.14), rgba(17, 28, 29, 0.65));
}

.callout__title {
  font-weight: 800;
  color: var(--cream);
  margin: 0 0 0.35rem;
}

.callout__text {
  margin: 0;
  color: var(--text);
  opacity: 0.92;
  line-height: 1.55;
}

.kv {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.5rem 0.75rem;
  margin-top: 0.75rem;
}

.kv__k {
  margin: 0;
  color: var(--cream);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.kv__v {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
}

.list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.45rem;
  color: var(--text-muted);
}

.timeline {
  display: grid;
  gap: 0.75rem;
}

.timeline__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  border-radius: 14px;
  padding: 0.9rem;
}

.timeline__time {
  color: var(--cream);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline__text {
  color: var(--text-muted);
}

.section--cta {
  background: linear-gradient(140deg, rgba(35, 198, 160, 0.11), transparent 42%), var(--bg-soft);
}

.cta {
  text-align: center;
}

.cta p {
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.cta__event {
  color: var(--cream) !important;
  font-weight: 700;
}

.btn {
  appearance: none;
  border-radius: 999px;
  padding: 0.66rem 1.15rem;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.94rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(120deg, rgba(35, 198, 160, 0.34), rgba(35, 198, 160, 0.2));
  border-color: rgba(35, 198, 160, 0.78);
}

.btn--secondary,
.btn--ghost {
  background: transparent;
}

.btn--secondary:hover,
.btn--ghost:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0 1.5rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .hero__grid,
  .grid--3 {
    grid-template-columns: 1fr;
  }

  .hero__card {
    max-width: 540px;
  }

  .grid--2 {
    grid-template-columns: 1fr;
  }

  .cohost {
    grid-template-columns: 1fr;
  }

  /* Portrait photo: show full head on small screens (wide aspect-ratio crops the top) */
  .cohost__img {
    aspect-ratio: auto;
    max-height: min(78vh, 620px);
    object-fit: contain;
    object-position: top center;
    background: var(--bg-soft);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2.4rem;
  }

  .hero__headline {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__product-mark {
    width: 92px;
    height: 92px;
    border-radius: 20px;
    padding: 0.55rem;
  }

  .topbar__inner {
    min-height: 62px;
  }

  .brand__text {
    font-size: 0.9rem;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .kv {
    grid-template-columns: 1fr;
  }
}

/* Floating WhatsApp contact */
.whatsapp-fab {
  position: fixed;
  z-index: 45;
  right: calc(1.1rem + env(safe-area-inset-right, 0px));
  bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 0.35rem 1.25rem rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.whatsapp-fab:hover {
  background: #20bd5a;
  transform: scale(1.05);
  box-shadow: 0 0.45rem 1.5rem rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.whatsapp-fab:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

.whatsapp-fab__icon {
  width: 1.65rem;
  height: 1.65rem;
}
