:root {
  --bg: #062f34;
  --bg-soft: #0a4a4f;
  --surface: rgba(255, 255, 255, 0.05);
  --text: #f5f1e8;
  --muted: #bfc7c9;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #10b7a6;
  --gold-soft: #36d1c4;
  --accent: #1ee3cf;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(16, 183, 166, 0.2), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.07), transparent 20%),
    linear-gradient(180deg, #020b0d 0%, #062f34 42%, #0a4a4f 100%);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar {
  padding: 0.8rem 1rem;
  text-align: center;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: linear-gradient(90deg, #062f34 0%, #0a4a4f 50%, #10b7a6 100%);
}

.hero {
  position: relative;
  overflow: clip;
  padding-bottom: 4rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(16, 183, 166, 0.14), transparent 42%),
    radial-gradient(circle at 70% 20%, rgba(54, 209, 196, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%);
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
}

.brand img, .footer-logo {
  width: 180px;
  height: auto;
}

.nav-cta {
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 183, 166, 0.35);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 227, 207, 0.7);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(202, 166, 106, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #10b7a6;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.offer-copy h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  max-width: 12ch;
}

.hero-copy em,
.section-heading em,
.offer-copy em {
  color: #18c6b3;
  font-style: normal;
}

.hero-lead {
  max-width: 62ch;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-points,
.offer-benefits,
.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-points { margin: 1.5rem 0 0; }

.hero-points span,
.offer-benefits span,
.trust-items span {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  min-height: 56px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  color: #032225;
  background: linear-gradient(135deg, #36d1c4 0%, #10b7a6 100%);
  box-shadow: 0 14px 34px rgba(16, 183, 166, 0.28);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.btn-block { width: 100%; }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.hero-proof div,
.card,
.feature-card,
.audience-card,
.offer-card,
.faq-item,
.product-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-proof div {
  padding: 1rem;
  border-radius: var(--radius-sm);
}

.hero-proof strong,
.outcome-item strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.hero-proof span,
.outcome-item p,
.card li,
.feature-card p,
.audience-card li,
.offer-note,
.faq-answer p,
.footer p,
.section-heading p,
.trust-grid p {
  color: var(--muted);
}

.product-shell {
  position: relative;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
}

.product-shell::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(16, 183, 166, 0.22), transparent 68%);
  pointer-events: none;
}

.product-header,
.offer-mini,
.metric-row,
.trust-grid,
.outcomes-grid,
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.product-header { align-items: center; }

.product-badge,
.product-format,
.mini-label,
.price-tag small {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.product-badge { color: var(--accent); }
.product-format { color: rgba(255, 255, 255, 0.7); }

.product-visual {
  position: relative;
  min-height: 360px;
  margin: 1.5rem 0 1.25rem;
}

.screen {
  position: absolute;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(20, 21, 24, 0.98), rgba(11, 11, 12, 0.94));
}

.screen-main {
  inset: 0 2.5rem 2rem 0;
  padding: 1.4rem;
}

.screen-float {
  right: 0;
  bottom: 0;
  width: 190px;
  padding: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.screen-title {
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 600;
}

.chart-bars {
  display: grid;
  align-items: end;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  height: 180px;
  margin-bottom: 1rem;
}

.chart-bars span {
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, #36d1c4, rgba(16, 183, 166, 0.32));
  animation: floatBars 3.2s ease-in-out infinite;
}

.chart-bars span:nth-child(1) { height: 38%; animation-delay: 0.2s; }
.chart-bars span:nth-child(2) { height: 68%; animation-delay: 0.35s; }
.chart-bars span:nth-child(3) { height: 52%; animation-delay: 0.5s; }
.chart-bars span:nth-child(4) { height: 82%; animation-delay: 0.65s; }

.metric-box {
  flex: 1;
  padding: 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-box small,
.screen-float small {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.metric-box strong,
.screen-float strong,
.price-tag strong {
  font-size: 1.1rem;
}

.screen-float strong {
  display: block;
  margin-top: 0.45rem;
}

.offer-mini { align-items: center; }

.offer-mini strong {
  display: block;
  font-size: 1.8rem;
  color: var(--accent);
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #0a4a4f, #062f34);
  color: var(--accent);
  padding: 1.5rem 0;
  white-space: nowrap;
  display: flex;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(30, 227, 207, 0.12);
  border-bottom: 1px solid rgba(30, 227, 207, 0.12);
}

.marquee-content {
  display: flex;
  gap: 3rem;
  padding-left: 3rem;
  animation: scrollMarquee 30s linear infinite;
}

.marquee-content span {
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.section { padding: 5.5rem 0; }
.trust-strip { padding: 1rem 0 0; }

.section-connector {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: -1rem 0;
  opacity: 0.9;
  pointer-events: none;
}

.section-connector img {
  display: block;
  width: min(100%, 1440px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.16));
}

.trust-grid {
  align-items: center;
  padding: 1.2rem 1.4rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  max-width: 16ch;
}

.section-heading p {
  max-width: 64ch;
  margin-top: 1rem;
  font-size: 1.02rem;
}

.problem-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.problem-intro .section-heading {
  margin-bottom: 0;
  max-width: none;
}

.problem-image img {
  width: 100%;
  display: block;
  transition: transform 0.1s ease-out;
}

@media (max-width: 820px) {
  .problem-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.problem-grid,
.features-grid,
.audience-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.card,
.feature-card,
.audience-card,
.offer-card,
.faq-item {
  border-radius: var(--radius);
  padding: 1.5rem;
}

.card-highlight {
  background: linear-gradient(180deg, rgba(16, 183, 166, 0.15), rgba(255, 255, 255, 0.05));
}

.card h3,
.feature-card h3,
.audience-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
}

.card ul,
.audience-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.feature-card {
  position: relative;
  min-height: 220px;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto 1.5rem 1.5rem auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 227, 207, 0.28), transparent 68%);
}

.outcomes-grid { align-items: flex-start; }

.outcome-list {
  display: grid;
  gap: 1rem;
  width: min(100%, 460px);
}

.outcome-item {
  padding: 1.2rem 1.3rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.offer-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(16, 183, 166, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(16, 183, 166, 0.24);
  box-shadow: var(--shadow);
}

.offer-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  max-width: 12ch;
}

.offer-copy p {
  max-width: 58ch;
  margin: 1rem 0 1.25rem;
  color: var(--muted);
}

.offer-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-tag {
  margin-bottom: 1.25rem;
}

.price-tag strong {
  display: block;
  margin: 0.3rem 0;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--accent);
}

.price-tag span { color: var(--muted); }

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-question {
  width: 100%;
  padding: 0;
  color: var(--text);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 700;
  font-size: 1.08rem;
  cursor: pointer;
}

.faq-item { overflow: hidden; }

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.25s ease, padding-top 0.25s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 180px;
  opacity: 1;
  padding-top: 0.9rem;
}

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

.footer-grid { align-items: start; }

.footer-grid > div {
  display: grid;
  gap: 0.65rem;
}

.footer-grid strong { color: var(--accent); }

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 1rem), 720px);
  padding: 0.9rem;
  border: 1px solid rgba(16, 183, 166, 0.28);
  border-radius: 22px;
  background: rgba(2, 11, 13, 0.92);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, 120%);
  transition: transform 0.3s ease;
  backdrop-filter: blur(16px);
}

.floating-cta.is-visible { transform: translate(-50%, 0); }
.floating-cta p { margin: 0; color: var(--accent); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatBars {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1100px) {
  .hero-grid,
  .offer-box,
  .outcomes-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-copy h1, .section-heading h2, .offer-copy h2 { max-width: none; }
}

@media (max-width: 820px) {
  .problem-grid,
  .audience-grid,
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .product-visual { min-height: 320px; }
  .screen-main { inset: 0 0 5rem 0; }
  .screen-float { width: 170px; }
  .trust-grid, .footer-grid { flex-direction: column; }
}

@media (max-width: 640px) {
  .topbar {
    font-size: 0.78rem;
    line-height: 1.45;
  }

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

  .brand img, .footer-logo { width: 150px; }
  .section { padding: 4.5rem 0; }
  .section-connector { margin: -0.5rem 0; }
  .hero-grid { padding-top: 1.5rem; }

  .hero-actions,
  .offer-mini,
  .floating-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .nav-cta { width: 100%; }

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

  .card,
  .feature-card,
  .audience-card,
  .offer-card,
  .faq-item,
  .product-shell,
  .offer-box {
    padding: 1.2rem;
  }

  .floating-cta { width: calc(100% - 1rem); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .floating-cta { transform: translate(-50%, 0); }
}
