:root {
  --bg: #071210;
  --bg-2: #0d1a17;
  --bg-3: #0b1512;
  --teal: #0e7c66;
  --teal-hover: #109678;
  --teal-glow: rgba(14, 124, 102, 0.42);
  --teal-soft: rgba(14, 124, 102, 0.14);
  --text: #f4f7f6;
  --muted: rgba(244, 247, 246, 0.68);
  --line: rgba(255, 255, 255, 0.1);
  --phone-bg: #f7f9f8;
  --phone-ink: #17202a;
  --phone-muted: #5c6770;
  --max: 1160px;
  --header-h: 72px;
  --display: "Outfit", sans-serif;
  --body: "Source Sans 3", sans-serif;
  --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background:
    var(--noise),
    linear-gradient(180deg, #071210 0%, #0b1512 45%, #0d1a17 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(7, 18, 16, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 18, 16, 0.92);
  border-bottom-color: var(--line);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.15s ease;
}

.site-nav a:hover {
  color: var(--teal);
}

.site-nav a.is-active {
  color: var(--teal);
}

.site-nav a.is-active::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 4px;
  background: var(--teal);
  border-radius: 1px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-family: var(--display);
  font-weight: 700;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.btn-login,
.btn-cta {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 18px rgba(14, 124, 102, 0.35);
}

.btn-login:hover,
.btn-cta:hover {
  background: var(--teal-hover);
  box-shadow: 0 6px 24px rgba(14, 124, 102, 0.45);
}

.btn-cta {
  min-height: 52px;
  padding-inline: 26px;
  font-size: 1.05rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  background: var(--text);
}

.nav-toggle span {
  top: 20px;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

/* ── Hero ── */

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 60px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 20%, rgba(14, 124, 102, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(14, 124, 102, 0.1), transparent 55%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 0;
  height: 40%;
  background: radial-gradient(ellipse at center, var(--teal-glow), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: calc(85vh - var(--header-h));
  position: relative;
  z-index: 1;
}

.hero-copy {
  text-align: left;
}

.hero-eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

.hero-tag {
  margin: 18px 0 0;
  max-width: 32rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 176px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  cursor: not-allowed;
  color: var(--text);
}

.store-badge svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.store-badge small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.1;
}

.store-badge strong {
  font-family: var(--display);
  font-size: 0.95rem;
}

.soon {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--teal);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
}

.hero-phones {
  position: relative;
  height: 580px;
}

.hero-phones::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%);
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, var(--teal-glow), transparent 70%);
  pointer-events: none;
}

.phone {
  width: 270px;
  height: 552px;
  padding: 10px;
  border-radius: 38px;
  background: linear-gradient(165deg, #2c3532, #101614);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 42px var(--teal-glow);
}

.phone-screen {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--phone-bg);
  color: var(--phone-ink);
  position: relative;
  font-size: 12px;
}

.hero-phones .phone {
  position: absolute;
  left: 50%;
  bottom: 0;
}

.phone-main {
  margin-left: -135px;
  z-index: 3;
  transform: scale(1.05);
  opacity: 0.45;
  transition: opacity 0.35s ease, transform 0.35s ease, z-index 0s;
}

.hero-phones .phone.is-active {
  opacity: 1;
  z-index: 4;
}

.hero-phones .phone-left.is-active {
  transform: rotate(-10deg) translateY(28px) scale(0.92);
}

.hero-phones .phone-right.is-active {
  transform: rotate(10deg) translateY(36px) scale(0.92);
}

.hero-phones .phone-main.is-active {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: no-preference) {
  .phone-main.is-active {
    animation: phone-float 5s ease-in-out infinite;
  }
}

@keyframes phone-float {
  0%, 100% { transform: scale(1.05) translateY(0); }
  50% { transform: scale(1.05) translateY(-10px); }
}

.phone-left {
  margin-left: -310px;
  transform: rotate(-10deg) translateY(28px) scale(0.92);
  z-index: 1;
}

.phone-right {
  margin-left: 40px;
  transform: rotate(10deg) translateY(36px) scale(0.92);
  z-index: 1;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px 2px;
  font-weight: 700;
  font-size: 11px;
}

.phone-body {
  padding: 6px 12px 12px;
}

.phone-kicker {
  margin: 0;
  color: var(--phone-muted);
  font-size: 11px;
}

.phone-title {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.phone-card {
  background: #fff;
  border: 1px solid #e0e4e7;
  border-radius: 10px;
  padding: 10px;
  margin-top: 8px;
}

.phone-card h4 {
  margin: 0 0 2px;
  font-size: 13px;
}

.phone-pill {
  display: inline-flex;
  margin-top: 8px;
  min-height: 28px;
  padding: 0 10px;
  align-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 8px 0;
}

.metric {
  background: #fff;
  border: 1px solid #e0e4e7;
  border-radius: 10px;
  padding: 10px;
}

.metric b {
  display: block;
  font-family: var(--display);
  font-size: 18px;
}

.metric span {
  color: var(--phone-muted);
  font-size: 10px;
}

.phone-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 8px 4px 14px;
  background: #fff;
  border-top: 1px solid #e0e4e7;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--phone-muted);
}

.phone-nav .on {
  color: var(--teal);
}

.phone-screen:has(.phone-nav) .phone-body {
  padding-bottom: 58px;
}

.goal-row,
.where-row {
  display: grid;
  gap: 8px;
}

.goal-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e0e4e7;
  border-radius: 10px;
  padding: 6px;
  font-weight: 700;
}

.goal-chip img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 8px;
}

.goal-chip.selected {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal);
}

.phone-art {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin: 8px 0;
}

.progress {
  height: 4px;
  background: #e3eae6;
  border-radius: 99px;
  overflow: hidden;
  margin: 8px 0 10px;
}

.progress span {
  display: block;
  width: 42%;
  height: 100%;
  background: var(--teal);
}

.set-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid #eceff1;
  color: var(--phone-muted);
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
}

.dot.empty {
  background: #d5dcd8;
}

/* ── Sections ── */

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 0 auto;
  max-width: var(--max);
}

.section {
  padding: 88px 0;
  overflow: hidden;
}

.section.alt {
  background:
    radial-gradient(ellipse at 85% 10%, rgba(14, 124, 102, 0.16), transparent 48%),
    var(--bg-2);
}

.section-gyms {
  background:
    radial-gradient(ellipse at 15% 50%, rgba(14, 124, 102, 0.12), transparent 50%),
    var(--bg-3);
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.section-grid.reverse {
  direction: rtl;
}

.section-grid.reverse > * {
  direction: ltr;
}

.section-grid.reveal,
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section h2,
.download h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.15rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 34rem;
}

.bullets {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.bullets li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
  color: var(--muted);
}

.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

/* Feature chips (App section) */

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 8px;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--teal-soft);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
}

.feature-chip svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
}

/* Feature card grid (Features section) */

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.feature-card {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.feature-card:hover {
  border-color: rgba(14, 124, 102, 0.4);
  background: var(--teal-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 124, 102, 0.12);
}

.feature-card svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
  margin-bottom: 10px;
}

.feature-card h3 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

/* Panel pill (For Gyms) */

.panel-pill {
  display: inline-flex;
  align-items: center;
  margin: 18px 0 4px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(14, 124, 102, 0.45);
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.15s ease, color 0.15s ease;
}

.panel-pill:hover {
  background: var(--teal);
  color: #fff;
}

/* AI banner */

.ai-banner {
  margin: 20px 0 8px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px dashed rgba(14, 124, 102, 0.5);
  background: var(--teal-soft);
  box-shadow: 0 0 32px rgba(14, 124, 102, 0.12);
}

.ai-banner-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ai-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.stage {
  display: flex;
  justify-content: center;
}

.stage .phone {
  transform: rotate(-6deg);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 56px var(--teal-glow);
}

.section.alt .stage .phone,
.section-grid.reverse .phone {
  transform: rotate(6deg);
}

/* ── Download ── */

.download {
  padding: 100px 0;
}

.download-card {
  text-align: center;
  padding: 56px 40px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at center, rgba(14, 124, 102, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.03);
}

.download-card p {
  margin: 0 auto 28px;
  max-width: 34rem;
  color: var(--muted);
}

.download-card .store-row {
  justify-content: center;
}

/* ── Footer ── */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 44px;
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a:hover {
  color: var(--teal);
}

/* ── Legal pages ── */

.legal {
  padding: 48px 0 90px;
}

.legal ul {
  padding-left: 1.2rem;
}

.legal-card {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}

.legal h1 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.04em;
}

.updated {
  color: var(--muted);
  margin-bottom: 28px;
}

.legal h2 {
  margin: 28px 0 8px;
  font-family: var(--display);
  font-size: 1.25rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal a {
  color: #7ad4bf;
  text-decoration: underline;
}

/* ── Responsive ── */

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 32px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions {
    align-items: center;
  }

  .hero-tabs {
    justify-content: center;
  }

  .hero-tag {
    margin-inline: auto;
  }

  .hero-phones {
    height: 500px;
  }

  .phone-left {
    margin-left: -250px;
    transform: rotate(-8deg) translateY(60px) scale(0.84);
  }

  .phone-right {
    margin-left: 20px;
    transform: rotate(8deg) translateY(70px) scale(0.84);
  }

  .section-grid,
  .section-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

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

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 18px;
    background: rgba(7, 18, 16, 0.97);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-phones {
    height: 430px;
  }

  .phone-left,
  .phone-right {
    display: none;
  }

  .phone {
    width: 242px;
    height: 500px;
  }

  .phone-main {
    margin-left: -121px;
    transform: scale(1);
  }

  @media (prefers-reduced-motion: no-preference) {
    .phone-main {
      animation: phone-float-mobile 5s ease-in-out infinite;
    }
  }

  @keyframes phone-float-mobile {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1) translateY(-10px); }
  }

  .download-card {
    padding: 40px 24px;
  }

  .hero {
    padding: 36px 0 48px;
  }

  .section,
  .section-ai-band,
  .section-gyms {
    padding-block: 56px;
  }

  .section-stories,
  .section-faq,
  .section-steps,
  .section-bento {
    padding-block: 48px;
  }

  .audience-fork {
    padding: 36px 0;
  }

  .download {
    padding: 64px 0;
  }

  .legal {
    padding: 32px 0 calc(64px + env(safe-area-inset-bottom, 0px));
  }

  .wrap,
  .header-inner {
    width: min(var(--max), calc(100% - 32px));
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-grid.reveal,
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .phone-main {
    animation: none !important;
  }
}

/* ── Scroll progress ── */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 100;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  background: var(--teal);
  transform-origin: left center;
  transform: scaleX(0);
}

/* ── Skip link ── */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 10px 16px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* ── Hero tabs ── */

.hero-tabs {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-tab {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.hero-tab.is-active,
.hero-tab:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--text);
}

/* ── Audience fork ── */

.audience-fork {
  padding: 48px 0;
}

.section-label {
  text-align: center;
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 600;
}

.audience-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.audience-card {
  display: block;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.audience-card:hover {
  border-color: rgba(14, 124, 102, 0.5);
  background: var(--teal-soft);
  transform: translateY(-3px);
}

.audience-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
}

.audience-card h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 1.15rem;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ── Stats strip ── */

.stats-strip {
  padding: 32px 0;
  background: var(--teal-soft);
  border-block: 1px solid rgba(14, 124, 102, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-tile {
  text-align: center;
  padding: 12px;
}

.stat-tile b {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.stat-tile span {
  color: var(--muted);
  font-size: 0.85rem;
}

/* ── How it works ── */

.section-steps {
  padding: 72px 0;
}

.section-title-center {
  text-align: center;
  margin: 0 0 40px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.step-card h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.05rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* ── Bento grid ── */

.section-bento {
  padding: 72px 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 14px;
}

.bento-tile {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.15s ease, transform 0.15s ease;
  position: relative;
  overflow: hidden;
}

.bento-tile:hover {
  border-color: rgba(14, 124, 102, 0.4);
  transform: translateY(-2px);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-image {
  grid-column: span 2;
  padding: 0;
  min-height: 180px;
}

.bento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 18, 16, 0.85), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.bento-overlay h3,
.bento-tile h3 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: 1rem;
}

.bento-overlay p,
.bento-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.bento-soon {
  border-style: dashed;
  border-color: rgba(14, 124, 102, 0.45);
}

.bento-ai {
  border-color: rgba(14, 124, 102, 0.55);
  background:
    radial-gradient(ellipse at top right, rgba(14, 124, 102, 0.18), transparent 55%),
    rgba(255, 255, 255, 0.03);
}

.live-inline {
  display: inline-block;
  margin-bottom: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.soon-inline {
  display: inline-block;
  margin-bottom: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bento-phone-mini {
  margin-top: 12px;
  max-width: 160px;
  border-radius: 20px;
  padding: 6px;
  background: linear-gradient(165deg, #2c3532, #101614);
}

.bento-phone-mini .phone-screen {
  border-radius: 14px;
  font-size: 10px;
}

.bento-phone-mini .phone-title {
  font-size: 14px;
}

/* ── App tabs ── */

.app-tabs {
  display: flex;
  gap: 8px;
  margin: 20px 0 12px;
  flex-wrap: wrap;
}

.app-tab {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
}

.app-tab.is-active {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--text);
}

.app-panel[hidden] {
  display: none;
}

/* ── Features bg ── */

.section-features-bg {
  position: relative;
}

.section-features-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/onboarding/bg_plan.jpg") center/cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.section-features-bg > .wrap {
  position: relative;
  z-index: 1;
}

/* ── Persona cards ── */

.persona-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0 8px;
}

.persona-card {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.persona-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.persona-card blockquote {
  margin: 0 0 8px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.persona-card cite {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--teal);
  font-weight: 700;
}

/* ── AI band ── */

.section-ai-band {
  padding: 88px 0 96px;
  background:
    radial-gradient(ellipse at center top, rgba(14, 124, 102, 0.22), transparent 55%),
    var(--bg-2);
  border-block: 1px solid rgba(14, 124, 102, 0.15);
}

.ai-intro {
  text-align: center;
  margin-bottom: 56px;
}

.ai-intro-lead {
  margin-inline: auto;
  max-width: 42rem;
}

.ai-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
  text-align: left;
}

.ai-principle {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(14, 124, 102, 0.25);
  background: rgba(255, 255, 255, 0.03);
}

.ai-principle strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 0.92rem;
  color: var(--text);
}

.ai-principle span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.ai-features-block {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 56px;
}

.ai-category-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.35rem;
}

.ai-category-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.ai-category-lead {
  margin: 0 0 20px;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.ai-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

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

.ai-feature-card {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.ai-feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 124, 102, 0.45);
}

.ai-feature-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.ai-feature-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.ai-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.ai-tag {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(14, 124, 102, 0.35);
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ai-tag-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.ai-feature-card h4 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1rem;
}

.ai-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.ai-flow-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid rgba(14, 124, 102, 0.12);
}

.ai-flow-copy h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 1.5rem;
}

.ai-flow-copy > .lead {
  margin-bottom: 24px;
}

.ai-flow-steps {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ai-flow-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ai-flow-step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.ai-flow-steps strong {
  display: block;
  margin-bottom: 2px;
  font-family: var(--display);
}

.ai-flow-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.ai-disclaimer {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px dashed rgba(14, 124, 102, 0.4);
  background: var(--teal-soft);
  color: var(--muted);
  font-size: 0.88rem;
}

.ai-review-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ai-review-row.dim {
  opacity: 0.55;
}

.ai-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.ai-check.on {
  border-color: var(--teal);
  background: var(--teal);
  box-shadow: inset 0 0 0 2px var(--bg);
}

.ai-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ai-details {
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  border: 1px dashed rgba(14, 124, 102, 0.4);
  background: var(--teal-soft);
}

.ai-details summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--teal);
}

.ai-details .bullets {
  margin-top: 12px;
}

/* ── Stories ── */

.section-stories {
  padding: 72px 0;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.story-card {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.story-card:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 124, 102, 0.4);
}

.story-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-soft);
  border: 1px solid rgba(14, 124, 102, 0.4);
  color: var(--teal);
  font-weight: 800;
  margin-bottom: 12px;
}

.story-card h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1rem;
}

.story-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* ── FAQ ── */

.section-faq {
  padding: 72px 0;
  background: var(--bg-3);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}

.faq-item summary {
  padding: 16px 0;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--display);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--teal);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.5;
}

.faq-item a {
  color: var(--teal);
  text-decoration: underline;
}

.download-panel-link {
  margin-top: 20px;
}

.btn-sm {
  min-height: 38px;
  padding-inline: 16px;
  font-size: 0.9rem;
}

/* ── Footer grid ── */

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

.footer-col h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-nav a:hover {
  color: var(--teal);
}

.footer-tagline {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-bottom {
  padding: 20px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

/* ── Sticky CTA ── */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 48px calc(12px + env(safe-area-inset-bottom, 0px)) 20px;
  background: rgba(7, 18, 16, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}

.sticky-cta[hidden] {
  display: none;
}

.sticky-cta p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta-dismiss {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--muted);
  border-radius: 6px;
}

.sticky-cta-dismiss:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

/* ── Responsive additions ── */

@media (max-width: 980px) {
  .audience-cards,
  .stats-grid,
  .steps-row,
  .stories-grid,
  .persona-cards,
  .ai-band-inner,
  .ai-principles,
  .ai-feature-grid,
  .ai-feature-grid-2,
  .ai-flow-wrap {
    grid-template-columns: 1fr;
  }

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

  .bento-large,
  .bento-image {
    grid-column: span 2;
  }

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

@media (max-width: 760px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ai-principles {
    grid-template-columns: 1fr 1fr;
  }

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

  .bento-large,
  .bento-image {
    grid-column: span 1;
  }

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

  .sticky-cta {
    flex-direction: column;
    gap: 8px;
    padding: 12px 40px calc(12px + env(safe-area-inset-bottom, 0px)) 16px;
    text-align: center;
  }

  .stage-features {
    order: -1;
  }

  .section-features-bg .section-grid.reverse > .stage-features {
    order: -1;
  }
}
