/*
 * Vantage Fit enterprise homepage styles
 * Source: https://vantagefit.pages.dev/enterprise
 * Extracted from the production prototype (inline <style> block).
 * Font: Noto Sans (load via Google Fonts in HTML).
 */

:root {
  --ink: #29294c;
  --muted: #6b6b8a;
  --paper: #ffffff;
  --canvas: #F8F8F9;
  --soft: #f1f1f6;
  --dark: #1D2228;
  --dark-2: #2A313A;
  --coral: #F15162;
  --coral-deep: #B62E40;
  --coral-dark: #d63d4e;
  --coral-text: #d13c4d;
  --mint: #41d8b4;
  --mint-dark: #169d7e;
  --lime: #41d8b4;
  --amber: #F6B93B;
  --line: rgba(41, 41, 76, .12);
  --line-dark: rgba(255, 255, 255, .14);
  --shadow: 0 24px 64px rgba(41, 41, 76, .14);
  --shadow-soft: 0 12px 36px rgba(41, 41, 76, .08);
  --radius: 22px;
  --max: 1180px;
  --font: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h: 64px;
  --vh-section: min(100vh, 980px);
  --hero-h: calc(100svh - var(--nav-h));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { letter-spacing: -.035em; line-height: 1.04; text-wrap: balance; }
h1 { font-size: clamp(2.55rem, 4.8vw, 4.25rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 3.2rem); }
h3 { font-size: 1.15rem; }

.shell { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--coral-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}
.lead {
  max-width: 640px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.55;
}
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 13px 7px 9px;
  border: 1px solid rgba(41, 41, 76, .12);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(41, 41, 76, .06);
  color: var(--ink);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(223, 244, 109, .12);
}

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(125deg, var(--coral) 5%, var(--coral-deep) 125%);
  color: #fff;
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-light { border-color: rgba(255, 255, 255, .24); background: rgba(255, 255, 255, .08); color: #fff; }
.btn-light:hover { background: rgba(255, 255, 255, .14); }
.btn-outline { border-color: var(--line); background: var(--paper); color: var(--ink); }
.btn-outline:hover { border-color: rgba(23, 33, 38, .28); box-shadow: var(--shadow-soft); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #243338; }
.btn svg { width: 17px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--coral-dark);
  font-size: .9rem;
  font-weight: 800;
}
.text-link:hover { color: var(--coral-text); }
.text-link-light { color: var(--lime); }
.text-link-light:hover { color: #fff; }

/* —— Nav —— */
.nav {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 245, .92);
  backdrop-filter: blur(16px);
}
.nav-inner {
  display: flex;
  min-height: var(--nav-h);
  align-items: center;
  gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.1rem; font-weight: 800; letter-spacing: -.025em; }
.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--coral);
  box-shadow: 0 7px 18px rgba(241, 81, 98, .24);
}
.brand-mark svg { width: 19px; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-item { position: relative; }
.nav-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}
.nav-links > a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #536067;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
}
.nav-links > a:hover,
.nav-trigger:hover,
.nav-item:focus-within .nav-trigger { background: var(--soft); color: var(--ink); }
.nav-trigger svg { width: 12px; opacity: .55; transition: transform .2s ease; }
.nav-item:hover .nav-trigger svg,
.nav-item:focus-within .nav-trigger svg { transform: rotate(180deg); }
.nav-links .nav-cta { transition: background .3s, color .3s, border-color .3s, transform .2s ease; }
nav.nav:not(.lit) .nav-cta { background: transparent; border-color: rgba(241, 81, 98, .55); color: var(--coral-text); }
nav.nav:not(.lit) .nav-cta:hover { background: rgba(241, 81, 98, .06); }
.nav-links .nav-cta {
  margin-left: 8px;
  padding-inline: 18px;
  border-radius: 999px;
  background: linear-gradient(125deg, var(--coral) 5%, var(--coral-deep) 125%);
  color: #fff;
}
.nav-links .nav-cta:hover { filter: brightness(1.06); color: #fff; }
.mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 50;
  display: none;
  width: min(860px, calc(100vw - 48px));
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(-40%);
  overflow: hidden;
}
.mega.mega-wide { width: min(920px, calc(100vw - 48px)); }
@media (min-width: 861px) {
  .nav-item.desktop-open .mega,
  .nav-item:focus-within .mega { display: block; }
}
.mega-body { padding: 22px; }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 20px; }
.mega-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.mega-col-title {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.mega a.mega-link {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--ink);
  font-size: .84rem;
  font-weight: 700;
}
.mega a.mega-link span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 500;
  line-height: 1.35;
}
.mega a.mega-link:hover { background: var(--soft); }
.mega-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 24px;
  border-top: 1px solid var(--line);
  background: #fdf1ee;
  color: var(--coral-dark, #cc424f);
  font-size: .84rem;
  font-weight: 750;
}
.mega-banner:hover { background: #fbe7e3; }
.mega-banner svg { width: 16px; flex: none; }
.mega-feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--dark), #2c4249);
  color: #fff;
}
.mega-feature:hover { filter: brightness(1.05); }
.mega-feature small {
  color: var(--lime);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.mega-feature b {
  display: block;
  margin-top: 7px;
  font-size: .95rem;
  letter-spacing: -.015em;
}
.mega-feature p {
  margin-top: 6px;
  color: rgba(255,255,255,.68);
  font-size: .76rem;
  line-height: 1.45;
  font-weight: 500;
}
.mega-feature .go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--lime);
  font-size: .76rem;
  font-weight: 800;
}
.mega-feature .go svg { width: 14px; }
.mega-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 22px 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .8rem;
}
.mega-foot strong { color: var(--ink); }
.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
}

/* —— Section shells (full-screen-ish) —— */
.screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--vh-section);
  padding: 72px 0;
}
.screen-tight { min-height: auto; padding: 56px 0 0; }

/* —— S1 Hero (compact first-fold) —— */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(880px 520px at 86% 8%, rgba(241, 81, 98, .09), transparent 62%),
    radial-gradient(720px 480px at 4% 96%, rgba(65, 216, 180, .1), transparent 60%),
    linear-gradient(180deg, #fff 0%, #fdf7f7 100%);
  color: var(--ink);
  min-height: var(--hero-h);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 1 1 auto;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 52px;
  min-height: 0;
  padding: 34px 0 22px;
}
.hero-copy h1 { max-width: 690px; margin-top: 0; line-height: 1.01; }
.hero-copy h1 em { font-style: normal; background: linear-gradient(125deg, var(--coral) 20%, var(--coral-deep) 90%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.hero-copy .lead { max-width: 570px; margin-top: 18px; color: var(--muted); font-size: 1.04rem; line-height: 1.62; }
.hero-copy .btn-row { margin-top: 26px; }
.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 20px;
  max-width: 560px;
  color: var(--muted);
  font-size: .75rem;
}
.hero-note span { display: inline-flex; align-items: center; gap: 7px; font-weight: 650; }
.hero-note span::before { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 3px rgba(65,216,180,.12); content: ""; flex: none; }

/* Hero product visual — exact Fable composition */
.hero-visual {
  position: relative;
  min-height: 470px;
  margin-right: -28px;
}
@media (max-width: 1100px) { .hero-visual { margin-right: 0; } }


.hero-svg { display: block; }
.hero-svg text { font-family: 'Noto Sans', sans-serif; }
.hs-title { font-size: 16px; font-weight: 700; fill: #29294c; letter-spacing: -.01em; }
.hs-lab { font-size: 9px; font-weight: 700; letter-spacing: .09em; fill: rgba(41,41,76,.45); }
.hs-num { font-size: 28px; font-weight: 800; letter-spacing: -.02em; fill: #29294c; }
.hs-big { font-size: 40px; font-weight: 800; letter-spacing: -.02em; fill: #F15162; }
.hs-mid { font-size: 19px; font-weight: 800; letter-spacing: -.01em; fill: #29294c; }
.hs-val { font-size: 11px; font-weight: 700; fill: #29294c; }
.hs-sub { font-size: 10.5px; fill: rgba(41,41,76,.5); }
.hs-body { font-size: 11px; fill: rgba(41,41,76,.62); }
.hs-note { font-size: 9.5px; fill: rgba(41,41,76,.38); }
.hs-up { font-size: 12px; font-weight: 700; fill: #169d7e; }
.hs-chip { font-size: 11px; font-weight: 600; fill: rgba(41,41,76,.6); }
.hs-ai { font-size: 9px; font-weight: 800; letter-spacing: .1em; fill: #7c5cff; }
.hs-aigen { font-size: 10px; font-weight: 700; fill: #7c5cff; }
.hs-ask { font-size: 13px; font-weight: 600; fill: rgba(41,41,76,.6); }
.hs-in { opacity: 0; transform: translateY(10px); animation: hsin .65s cubic-bezier(.22,.9,.24,1) var(--d,0s) forwards; }
@keyframes hsin { to { opacity: 1; transform: none; } }
.hs-draw { stroke-dasharray: 160; stroke-dashoffset: 160; animation: hsdraw 1.2s ease var(--d,0s) forwards; }
@keyframes hsdraw { to { stroke-dashoffset: 0; } }
.hs-arc { animation: hsarc 1.3s cubic-bezier(.22,.9,.24,1) .9s forwards; }
@keyframes hsarc { to { stroke-dashoffset: 100.3; } }
.hs-graph { transform: translateY(18px); opacity: 0; animation: hsgraph 1s cubic-bezier(.22,.9,.24,1) .8s forwards; }
@keyframes hsgraph { to { transform: translateY(0); opacity: 1; } }
.hs-area { opacity: 0; animation: hsfade .9s ease 1.5s forwards; }
@keyframes hsfade { to { opacity: 1; } }
.hs-tip { opacity: 0; animation: hstip .5s ease 1.9s forwards, hsfloat 3.4s ease-in-out 2.4s infinite; }
@keyframes hstip { to { opacity: 1; } }
@keyframes hsfloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-2.5px); } }
@media (prefers-reduced-motion: reduce) {
  .hs-in { animation: none; opacity: 1; transform: none; }
  .hs-draw { animation: none; stroke-dashoffset: 0; }
  .hs-arc { animation: none; stroke-dashoffset: 100.3; }
  .hs-graph, .hs-area, .hs-tip { animation: none; opacity: 1; transform: none; }
}
.hero-product { position: relative; width: 100%; height: auto; filter: drop-shadow(0 22px 44px rgba(41,41,76,.13)); }
.hero-chip { position: absolute; display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 16px;
  background: rgba(255,255,255,.78); backdrop-filter: blur(14px) saturate(1.5); -webkit-backdrop-filter: blur(14px) saturate(1.5);
  border: 1px solid rgba(41,41,76,.1); box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 14px 36px rgba(41,41,76,.14);
  font-size: .74rem; line-height: 1.3; color: var(--muted); }
.hero-chip b { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; color: var(--coral); }
.hc1 { left: -18px; bottom: 12%; animation: chipbob 5.5s ease-in-out infinite; }
.hc2 { right: -14px; top: -3%; animation: chipbob 6.5s ease-in-out .9s infinite; }
.hc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(65,216,180,.2); flex: none; }
@keyframes chipbob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (prefers-reduced-motion: reduce) { .hero-chip { animation: none; } }

/* Human hero with live product moments */
.people-visual {
  min-height: 530px;
  isolation: isolate;
}
.people-visual::after {
  position: absolute;
  right: -1%;
  bottom: 5%;
  z-index: -1;
  width: 98px;
  height: 98px;
  background-image: radial-gradient(rgba(241,81,98,.28) 1.35px, transparent 1.35px);
  background-size: 11px 11px;
  content: "";
}
.hero-photo {
  position: absolute;
  top: 0;
  right: 4%;
  width: 80%;
  height: auto;
  margin: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}
.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 52px rgba(41,41,76,.17));
}
.photo-status {
  position: absolute;
  right: 30px;
  bottom: 38px;
  z-index: 1;
  display: inline-flex;
  max-width: calc(100% - 56px);
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 999px;
  background: rgba(29,34,40,.48);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .07em;
  white-space: nowrap;
  text-transform: uppercase;
}
.photo-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(65,216,180,.18);
}
.moment-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.76), rgba(255,255,255,.43));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), inset 0 -1px 0 rgba(255,255,255,.3), 4px 18px 42px rgba(41,41,76,.17);
  backdrop-filter: blur(24px) saturate(1.55);
  -webkit-backdrop-filter: blur(24px) saturate(1.55);
  color: var(--ink);
}
.moment-card::before { content: ""; position: absolute; z-index: 0; top: -48%; left: -15%; width: 72%; height: 110%;
  border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.7), rgba(255,255,255,0) 70%); pointer-events: none; }
.moment-card > * { position: relative; z-index: 1; }
.moment-card p {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: .64rem;
  font-weight: 700;
  line-height: 1.25;
}
.moment-card strong {
  display: block;
  font-size: 1.33rem;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.moment-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 11px;
  font-size: .9rem;
  font-weight: 900;
}
.moment-icon.mint { background: rgba(65,216,180,.16); color: #128f72; }
.moment-icon.orange { background: rgba(241,81,98,.14); color: var(--coral-deep); }
.moment-icon.red { background: rgba(241,81,98,.13); color: var(--coral-text); }
.moment-icon.reward-gift { background: transparent; color: var(--coral-deep); }
.moment-icon.reward-gift svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
  transform-origin: center bottom;
  animation: gift-pop 3.2s ease-in-out infinite;
  will-change: transform;
}
.moment-icon.coin { border-radius: 50%; background: transparent; perspective: 90px; }
.moment-icon.coin svg {
  display: block;
  width: 34px;
  height: 34px;
  transform-origin: center;
  animation: coin-flip 3s cubic-bezier(.45, 0, .2, 1) infinite;
  backface-visibility: visible;
  filter: drop-shadow(0 4px 5px rgba(214, 139, 0, .2));
  transform-style: preserve-3d;
  will-change: transform;
}
@keyframes coin-flip {
  0%, 18% { transform: translateY(0) rotateX(0) scale(1); }
  34% { transform: translateY(-6px) rotateX(120deg) scale(1.08); }
  52% { transform: translateY(-8px) rotateX(360deg) scale(1.1); }
  70% { transform: translateY(-4px) rotateX(600deg) scale(1.06); }
  84%, 100% { transform: translateY(0) rotateX(720deg) scale(1); }
}
@keyframes gift-pop {
  0%, 58%, 100% { transform: translateY(0) rotate(0) scale(1); }
  68% { transform: translateY(-3px) rotate(-6deg) scale(1.12); }
  78% { transform: translateY(0) rotate(5deg) scale(1.04); }
  88% { transform: translateY(-1px) rotate(-2deg) scale(1.07); }
}
.participation-moment {
  top: 36px;
  left: -2%;
  width: 224px;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 15px;
  border-color: rgba(65,216,180,.24);
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.7));
  animation: moment-float 5.6s ease-in-out infinite;
}
.participation-copy { flex: 0 0 auto; }
.participation-copy p { margin-bottom: 3px; font-size: .62rem; font-weight: 700; letter-spacing: 0; text-transform: none; }
.participation-copy strong { font-size: 1.42rem; letter-spacing: -.05em; }
.participation-moment .trend {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 5px;
  color: #128f72;
  font-size: .56rem;
  font-weight: 800;
}
.participation-moment .trend::before { content: "↑"; font-size: .68rem; }
.participation-spark { position: relative; flex: 0 0 82px; width: 82px; height: 46px; align-self: center; }
.participation-spark svg { width: 100%; height: 100%; overflow: visible; }
.participation-spark .spark-grid { display: none; }
.participation-spark .spark-area { opacity: 0; clip-path: inset(0 100% 0 0); animation: spark-area-in 1.7s .38s cubic-bezier(.22,.9,.24,1) forwards; }
.participation-spark .spark-line { fill: none; stroke: #169d7e; stroke-width: 2.8; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1; stroke-dashoffset: 1; animation: spark-line-in 1.7s .38s cubic-bezier(.22,.9,.24,1) forwards; }
.participation-spark .spark-end { fill: #169d7e; stroke: #fff; stroke-width: 2.5; opacity: 0; transform-box: fill-box; transform-origin: center;
  transform: scale(.3); animation: spark-point-in .35s 1.9s cubic-bezier(.22,.9,.24,1) forwards; }
@keyframes spark-line-in { to { stroke-dashoffset: 0; } }
@keyframes spark-area-in { to { opacity: 1; clip-path: inset(0 0 0 0); } }
@keyframes spark-point-in { to { opacity: 1; transform: scale(1); } }
.points-moment {
  top: 208px;
  right: -1%;
  width: 188px;
  animation: moment-float 6.2s ease-in-out .8s infinite;
}
.reward-moment {
  left: 0;
  bottom: 18px;
  width: 218px;
  align-items: center;
  padding: 14px 15px;
  animation: moment-float 6.6s ease-in-out .3s infinite;
}
.reward-moment strong { font-size: .86rem; letter-spacing: -.01em; }
@keyframes moment-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@media (prefers-reduced-motion: reduce) {
  .moment-card { animation: none; }
  .moment-icon.coin svg { animation: none; }
  .moment-icon.reward-gift svg { animation: none; }
  .participation-spark .spark-line { animation: none; stroke-dashoffset: 0; }
  .participation-spark .spark-area { animation: none; opacity: 1; clip-path: none; }
  .participation-spark .spark-end { animation: none; opacity: 1; transform: none; }
}
.dash {
  position: absolute;
  top: 6px;
  left: 0;
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid rgba(41,41,76,.1);
  border-radius: 22px;
  background: #f9faf8;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .3);
  color: var(--ink);
  transform: rotate(1.1deg);
}
.dash-top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.dash-dot { width: 8px; height: 8px; border-radius: 50%; background: #d9dfdc; }
.dash-url { width: 42%; height: 9px; margin-left: 8px; border-radius: 999px; background: #edf0ee; }
.dash-body { padding: 16px; }
.dash-title { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.dash-title small {
  display: block;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.dash-title strong { display: block; margin-top: 3px; font-size: .98rem; }
.metric-inline {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  margin-right: 16px;
}
.metric-inline span {
  display: flex;
  flex: 1;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.metric-inline i {
  color: var(--muted);
  font-size: .58rem;
  font-style: normal;
  font-weight: 700;
}
.metric-inline b { font-size: .78rem; }
.metric-card {
  margin-top: 12px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}
.metric-main { background: #e8f7f1; }
.metric-lab { color: var(--muted); font-size: .68rem; font-weight: 750; }
.metric-value {
  margin-top: 3px;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1;
}
.metric-delta {
  display: inline-flex;
  margin-top: 7px;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(20,123,100,.1);
  color: var(--mint-dark);
  font-size: .63rem;
  font-weight: 800;
}
.chart-card {
  margin-top: 12px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}
.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .7rem;
  font-weight: 800;
}
.legend {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: .6rem;
  font-weight: 650;
}
.legend i { width: 14px; height: 2px; background: var(--mint-dark); }
.chart {
  position: relative;
  height: 84px;
  margin-top: 11px;
  overflow: hidden;
  border-bottom: 1px solid #dce2df;
}
.chart::before {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0 26px, #edf0ee 27px);
  content: "";
}
.chart svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.target-line {
  position: absolute;
  top: 24%;
  right: 0;
  left: 0;
  border-top: 1px dashed var(--coral);
}
.target-line span {
  position: absolute;
  top: -17px;
  right: 0;
  color: var(--coral-dark);
  font-size: .56rem;
  font-weight: 750;
}
.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  color: #88928f;
  font-size: .54rem;
}

.phone {
  position: absolute;
  z-index: 2;
  right: -16px;
  bottom: 2px;
  width: 194px;
  padding: 8px;
  border: 1px solid rgba(41,41,76,.12);
  border-radius: 31px;
  background: #111a1e;
  box-shadow: 0 28px 60px rgba(0,0,0,.36);
  transform: rotate(-3deg);
}
.phone-screen {
  min-height: 348px;
  overflow: hidden;
  border-radius: 24px;
  background: #f5f7f4;
  color: var(--ink);
}
.phone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 14px 10px;
  font-size: .65rem;
  font-weight: 800;
}
.avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
}
.challenge {
  margin: 0 11px;
  overflow: hidden;
  border-radius: 17px;
  background: var(--dark);
  color: #fff;
}
.challenge-art {
  position: relative;
  height: 84px;
  overflow: hidden;
  background: linear-gradient(135deg, #26594e, #3ccaa6);
}
.challenge-art::before,
.challenge-art::after {
  position: absolute;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  content: "";
}
.challenge-art::before { width: 130px; height: 130px; right: -28px; top: -58px; }
.challenge-art::after { width: 72px; height: 72px; right: 12px; top: -20px; }
.challenge-person {
  position: absolute;
  left: 20px;
  bottom: -5px;
  font-size: 3.6rem;
  line-height: 1;
  transform: rotate(-7deg);
}
.challenge-copy { padding: 12px; }
.challenge-copy small {
  color: var(--lime);
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.challenge-copy b { display: block; margin-top: 4px; font-size: .78rem; }
.challenge-copy p { margin-top: 4px; color: rgba(255,255,255,.63); font-size: .56rem; }
.progress-label {
  display: flex;
  justify-content: space-between;
  margin-top: 11px;
  font-size: .55rem;
}
.progress {
  height: 5px;
  margin-top: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
}
.progress i {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
}
.phone-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px 11px;
}
.phone-stat {
  padding: 8px 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  text-align: center;
}
.phone-stat b { display: block; font-size: .7rem; }
.phone-stat span { color: var(--muted); font-size: .46rem; }
.phone-cta {
  margin: 0 11px 11px;
  padding: 9px;
  border-radius: 9px;
  background: var(--coral);
  color: #fff;
  text-align: center;
  font-size: .6rem;
  font-weight: 800;
}
.visual-caption {
  position: absolute;
  bottom: 4px;
  left: 10px;
  color: rgba(255,255,255,.45);
  font-size: .63rem;
}

.logo-band {
  position: relative;
  flex: none;
  border-top: 1px solid rgba(41,41,76,.08);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(8px);
}
.logos {
  display: flex;
  min-height: 52px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  padding: 10px 0;
}
.logos-label {
  max-width: 150px;
  color: rgba(41,41,76,.45);
  font-size: .62rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.logo-word { color: rgba(41,41,76,.55); font-size: .74rem; font-weight: 800; letter-spacing: .05em; }

/* —— S2 Engine —— */
.engine-screen { background: var(--canvas); }
.problem-block {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.problem-block h2 { max-width: 560px; }
.problem-quote {
  padding: 26px 28px;
  border-left: 4px solid var(--coral);
  border-radius: 0 18px 18px 0;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}
.problem-quote p { font-size: 1.08rem; font-weight: 700; letter-spacing: -.02em; line-height: 1.45; }
.problem-quote small { display: block; margin-top: 12px; color: var(--muted); font-size: .78rem; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 48px; }
.step {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}
.step:nth-child(2) { background: #e9f7f2; }
.step:nth-child(3) { background: #fff2e7; }
.step:nth-child(4) { background: #f1f4dd; }
.step-no {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
}
.step h3 { margin-top: 28px; font-size: 1.1rem; }
.step p { margin-top: 8px; color: var(--muted); font-size: .84rem; line-height: 1.45; }
.step-tag {
  position: absolute;
  right: 14px;
  bottom: 10px;
  color: rgba(41,41,76,.1);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.dual {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--dark);
  color: #fff;
}
.dual-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 20px; }
.dual-head h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); max-width: 420px; }
.dual-head p { max-width: 360px; color: rgba(255,255,255,.62); font-size: .9rem; margin: 0; }
.tabs {
  display: inline-flex;
  gap: 4px;
  margin-top: 22px;
  padding: 5px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
}
.tab {
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255,255,255,.62);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 800;
}
.tab[aria-selected="true"] { background: var(--lime); color: #263026; }
.experience-panel {
  display: none;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center;
  margin-top: 28px;
}
.experience-panel.active { display: grid; }
.benefits { display: grid; gap: 18px; }
.benefit { display: grid; grid-template-columns: 36px 1fr; gap: 12px; }
.benefit-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: var(--mint);
  font-size: .95rem;
}
.benefit h4 { margin: 0; font-size: .98rem; letter-spacing: -.02em; }
.benefit p { margin-top: 4px; color: rgba(255,255,255,.62); font-size: .84rem; }
.product-window { padding: 10px; border: 1px solid var(--line-dark); border-radius: 20px; background: rgba(255,255,255,.06); }
.product-screen { min-height: 340px; padding: 18px; border-radius: 14px; background: #f6f7f4; color: var(--ink); }
.app-header { display: flex; align-items: center; justify-content: space-between; }
.app-header b { font-size: .9rem; }
.app-header span { color: var(--muted); font-size: .64rem; }
.app-banner {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 16px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(125deg, var(--coral), var(--coral-deep));
  color: #fff;
}
.app-banner small { font-size: .55rem; font-weight: 800; letter-spacing: .08em; }
.app-banner h3 { max-width: 240px; margin-top: 4px; font-size: 1.05rem; }
.app-banner .runner { font-size: 3.6rem; }
.app-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 10px; }
.app-card { padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.app-card .mini-icon { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 8px; background: var(--soft); font-size: .85rem; }
.app-card b { display: block; margin-top: 14px; font-size: .74rem; }
.app-card p { margin-top: 3px; color: var(--muted); font-size: .58rem; }
.admin-layout { display: grid; grid-template-columns: 92px 1fr; min-height: 300px; overflow: hidden; border-radius: 12px; background: #fff; }
.admin-side { padding: 14px 10px; background: #25383d; color: #fff; }
.admin-side b { font-size: .64rem; }
.admin-link { margin-top: 14px; padding: 7px; border-radius: 7px; color: rgba(255,255,255,.55); font-size: .54rem; font-weight: 700; }
.admin-link.active { background: rgba(223,244,109,.15); color: var(--lime); }
.admin-main { padding: 16px; }
.admin-main h3 { font-size: .88rem; }
.admin-main > p { margin-top: 3px; color: var(--muted); font-size: .58rem; }
.admin-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 12px; }
.admin-card { padding: 10px; border: 1px solid var(--line); border-radius: 10px; }
.admin-card span { color: var(--muted); font-size: .52rem; }
.admin-card b { display: block; margin-top: 3px; font-size: 1rem; }
.admin-chart { height: 140px; margin-top: 10px; padding: 12px; border: 1px solid var(--line); border-radius: 10px; }
.admin-chart-head { display: flex; justify-content: space-between; font-size: .56rem; font-weight: 700; }
.bars { display: flex; height: 90px; align-items: end; gap: 8px; margin-top: 8px; border-bottom: 1px solid var(--line); }
.bar { flex: 1; border-radius: 4px 4px 0 0; background: rgba(65,216,180,.35); }
.bar:nth-child(2), .bar:nth-child(5) { background: var(--mint); }
.bar:nth-child(7) { background: var(--coral); }
.measure-note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  line-height: 1.45;
}

/* —— S2 illume statement (red, scroll-lit) —— */
.illume { position: relative; background: linear-gradient(180deg, #C23D4C 0%, #A93242 52%, #8E2938 100%); color: #fff; }
.illume-inner { min-height: 240vh; }
.illume-stick { position: sticky; top: 0; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
#illume-text { max-width: 920px; margin: 0 auto; text-align: center; font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700; letter-spacing: -.02em; line-height: 1.42; transition: transform .9s cubic-bezier(.22,.9,.24,1); }
.illume.done #illume-text { transform: translateY(-17vh); }
.illume .w-lit { opacity: .22; transition: opacity .35s linear; }
.illume .w-lit.on { opacity: 1; }
.illume .fine { display: block; margin-top: 30px; font-size: 14px; font-weight: 400; color: rgba(255,255,255,.6); }
.cardrise { position: absolute; left: 50%; transform: translateX(-50%); bottom: 32px; width: min(100% - 48px, var(--max)); }
.cardrise .steps { margin-bottom: 0; }
/* liquid-glass flip cards on the red field */
.cardrise .step,
.cardrise .step:nth-child(2),
.cardrise .step:nth-child(3),
.cardrise .step:nth-child(4) {
  background: transparent; border: 0; box-shadow: none; padding: 0;
  min-height: 0; height: 300px; perspective: 1400px; overflow: visible; color: #fff;
}
.flip-inner { position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d; transition: transform .7s cubic-bezier(.4,.1,.2,1); }
.flipcard:hover .flip-inner, .flipcard:focus-visible .flip-inner, .flipcard.flipped .flip-inner { transform: rotateY(180deg); }
.flip-face { position: absolute; inset: 0; padding: 22px; border-radius: 18px;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,.2) 0%, rgba(255,255,255,.08) 100%);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.32),
    0 18px 44px rgba(60, 8, 16, .28),
    0 0 34px rgba(255, 128, 140, .14);
  display: flex; flex-direction: column;
}
.flip-back { transform: rotateY(180deg); }
.flip-front { padding: 0; overflow: hidden; justify-content: flex-end; }
.flip-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.12) brightness(1.07);
  transition: transform .8s cubic-bezier(.22,.9,.24,1); }
.flipcard:hover .flip-bg { transform: scale(1.05); }
.flip-front::before { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(194,61,76,.12) 0%, rgba(142,41,56,.22) 100%); }
.flip-front .step-no, .flip-front h3 { z-index: 2; }
.flip-front::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,12,16,.05) 0%, transparent 48%, rgba(22,8,12,.68) 100%); }
.flip-front .step-no { position: absolute; top: 16px; left: 16px; z-index: 1;
  background: rgba(255,255,255,.2); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.flip-front h3 { position: relative; z-index: 1; margin: 0 18px 16px; }
.cardrise .step h3 { color: #fff; font-size: 1.15rem; }
.flip-back h3 { margin-top: 14px; }
.cardrise .step p { color: rgba(255,255,255,.75); font-size: .87rem; line-height: 1.55; margin-top: 8px; }
.cardrise .step-no { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3); color: #fff; flex: none; align-self: flex-start; }
.cardrise .step-tag { display: none; }
@media (prefers-reduced-motion: reduce) { .flip-inner { transition: none; } }
.cardnote { margin-top: 18px; text-align: center; font-size: .78rem; color: rgba(255,255,255,.55);
  opacity: 0; transform: translateY(10px); transition: opacity .7s ease .35s, transform .7s ease .35s; }
.illume.done .cardnote { opacity: 1; transform: none; }
@media (max-width: 900px) { .cardnote { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .cardnote { opacity: 1; transform: none; transition: none; } }
.cardrise .step-no { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3); color: #fff; }
.cardrise .step-tag { display: none; }
.cardrise .step { opacity: 0; transform: translateY(130%); transition: transform .95s cubic-bezier(.22,.9,.24,1), opacity .6s ease; }
.cardrise .step:nth-child(2) { transition-delay: .08s; }
.cardrise .step:nth-child(3) { transition-delay: .16s; }
.cardrise .step:nth-child(4) { transition-delay: .24s; }
.illume.done .cardrise .step { opacity: 1; transform: none; }
@media (max-width: 900px) {
  .illume-inner { min-height: auto; }
  .illume-stick { position: static; min-height: auto; display: block; padding: 90px 0 56px; }
  .illume .w-lit { opacity: 1 !important; }
  .illume.done #illume-text, #illume-text { transform: none; }
  .cardrise { position: static; transform: none; width: auto; margin: 44px 24px 0; }
  .cardrise .step { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .illume .w-lit { opacity: 1 !important; }
  .cardrise .step { opacity: 1; transform: none; transition: none; }
  .illume.done #illume-text { transform: none; }
}

/* —— Product tour (tabbed) —— */
.tour-screen { background: var(--canvas); min-height: 0; padding: 88px 0; }
.tour-screen .center { text-align: center; max-width: 720px; margin: 0 auto; }
.tour-screen .center .lead { color: var(--muted); margin-top: 12px; }
.tour-screen .role-highlight { color: var(--coral-deep); }
.tour-tabs { max-width: 1100px; margin: 40px auto 0; padding: 16px 34px 32px; border-radius: 32px;
  background: #fff; box-shadow: 0 18px 52px rgba(41,41,76,.07); }
.seg { position: relative; display: flex; width: max-content; margin: 0 0 18px; padding: 0;
  background: transparent; border: 0; border-bottom: 1px solid rgba(41,41,76,.10); border-radius: 0; box-shadow: none; }
.seg-btn { position: relative; z-index: 1; border: 0; background: none; cursor: pointer;
  padding: 11px 16px 13px; border-radius: 0; font-family: inherit; font-size: .88rem; font-weight: 700;
  color: var(--muted); transition: color .25s ease; width: 156px; }
.seg-btn[aria-selected="true"] { color: var(--ink); }
.seg-btn:focus-visible { outline: 3px solid rgba(41,41,76,.16); outline-offset: 2px; }
.seg-thumb { position: absolute; left: 0; bottom: -1px; width: 156px; height: 2px; border-radius: 999px;
  background: var(--coral); border: 0; box-shadow: none;
  transition: transform .35s cubic-bezier(.22,.9,.24,1); }
.seg.hr .seg-thumb { transform: translateX(156px); }
.tabpane { display: grid; grid-template-columns: .88fr 1.12fr; gap: 52px; align-items: center;
  min-height: 390px; margin: 0; padding: 24px 12px 8px; overflow: hidden; }
.tabpane[hidden] { display: none; }
.tabpane.is-in { animation: panein .5s cubic-bezier(.22,.9,.24,1); }
@keyframes panein { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.tour-checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.tour-checks li { position: relative; padding: 14px 0 14px 26px; font-size: .92rem; color: var(--ink); }
.tour-checks li b { display: block; font-size: 1rem; font-weight: 750; letter-spacing: -.012em; }
.tour-checks li p { color: var(--muted); font-size: .85rem; line-height: 1.55; margin-top: 4px; max-width: 390px; }
.tour-checks li::before { content: "✓"; position: absolute; left: 0; top: 17px; color: #169d7e;
  font-size: 1rem; font-weight: 900; line-height: 1; }
.tour-media { display: grid; min-height: 310px; place-items: center; padding: 0; }
.tour-media img { width: min(100%, 550px); height: auto; display: block; }
.tour-frame { padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.tour-frame img { border-radius: 10px; }
.tour-screen .measure-note { margin-top: 18px; font-size: .72rem; color: var(--muted); max-width: 430px; }
@media (max-width: 900px) {
  .tabpane { grid-template-columns: 1fr; gap: 28px; }
  .tabpane { min-height: 0; padding: 28px; }
  .seg-btn { width: 140px; padding: 10px 12px; font-size: .84rem; }
  .seg-thumb { width: 140px; }
  .seg.hr .seg-thumb { transform: translateX(140px); }
}
@media (max-width: 600px) {
  .tour-tabs { margin-top: 28px; padding: 10px 12px 20px; border-radius: 24px; }
  .seg { width: 100%; }
  .seg-btn { width: 50%; }
  .seg-thumb { width: 50%; }
  .seg.hr .seg-thumb { transform: translateX(100%); }
  .tabpane { gap: 18px; padding: 18px 6px 4px; }
  .tour-media { min-height: 240px; padding: 10px 4px; }
}
@media (prefers-reduced-motion: reduce) { .tabpane.is-in { animation: none; } .seg-thumb { transition: none; } }

/* —— S3 Proof —— */
.proof-screen { min-height: auto; padding: 96px 0; background: #f6f7f4; }
.stories-layout { display: grid; grid-template-columns: .78fr 1.04fr .94fr; gap: 26px; align-items: center;
  width: min(100%, 1120px); margin: 0 auto; }
.stories-intro { align-self: center; padding-right: 12px; }
.stories-intro h2 { font-size: clamp(2.25rem, 4vw, 4rem); line-height: .98; letter-spacing: -.055em; }
.stories-intro .lead { max-width: 330px; margin-top: 18px; color: var(--muted); font-size: .92rem; line-height: 1.65; }
.stories-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 26px; }
.stories-actions .btn { min-height: 44px; padding-inline: 18px; }
.stories-actions .text-link { font-size: .8rem; }
.story-feature { position: relative; overflow: hidden; min-height: 520px; border-radius: 24px; background: #171b20;
  box-shadow: 0 18px 46px rgba(30,38,38,.13); }
.story-feature-media { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; cursor: pointer; background: #171b20; }
.story-feature-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,10,13,.92) 0%, rgba(7,10,13,.18) 58%, transparent 78%); }
.story-feature-media > img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; transition: transform .6s cubic-bezier(.22,.9,.24,1); }
.story-feature:hover .story-feature-media > img { transform: scale(1.025); }
.story-feature-play { position: absolute; z-index: 2; top: 20px; right: 20px; display: grid; width: 48px; height: 48px; place-items: center;
  border-radius: 50%; background: rgba(255,255,255,.94); color: var(--coral-deep); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.story-feature-play svg { width: 16px; margin-left: 2px; }
.story-feature-copy { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 28px; color: #fff; pointer-events: none; }
.story-feature-copy blockquote { margin: 0; font-size: 1.02rem; font-weight: 700; line-height: 1.5; letter-spacing: -.015em; }
.story-feature-person { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.story-feature-person img { width: 38px; height: 38px; border: 2px solid rgba(255,255,255,.5); border-radius: 50%; object-fit: cover; }
.story-feature-person strong, .story-feature-person span { display: block; }
.story-feature-person strong { font-size: .8rem; }
.story-feature-person span { margin-top: 2px; color: rgba(255,255,255,.68); font-size: .66rem; }
.story-stack { display: grid; max-height: 520px; gap: 12px; padding-right: 8px; overflow: auto; scrollbar-width: thin; scrollbar-color: rgba(41,41,76,.2) transparent; }
.story-card { padding: 19px 20px; border: 1px solid rgba(41,41,76,.08); border-radius: 17px; background: #fff;
  box-shadow: 0 8px 24px rgba(30,38,38,.05); }
.story-card blockquote { margin: 0; color: rgba(41,41,76,.78); font-size: .82rem; line-height: 1.55; }
.story-person { display: flex; align-items: center; gap: 10px; margin-top: 15px; }
.story-person > img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; background: #eef0ed; }
.story-person strong, .story-person span { display: block; }
.story-person strong { font-size: .76rem; }
.story-person span { margin-top: 2px; color: var(--muted); font-size: .64rem; }
.story-play { display: grid; width: 32px; height: 32px; margin-left: auto; place-items: center; border: 1px solid rgba(41,41,76,.12);
  border-radius: 50%; background: transparent; color: var(--coral-deep); cursor: pointer; }
.story-play svg { width: 12px; margin-left: 2px; }
.proof-note { grid-column: 1 / -1; margin: 4px 0 0; color: var(--muted); font-size: .62rem; }
@media (max-width: 980px) {
  .proof-screen { padding: 76px 0; }
  .stories-layout { grid-template-columns: 1fr 1fr; }
  .stories-intro { grid-column: 1 / -1; padding: 0; }
  .stories-intro h2 { max-width: 620px; }
  .stories-intro .lead { max-width: 540px; }
}
@media (max-width: 650px) {
  .proof-screen { padding: 60px 0; }
  .stories-layout { grid-template-columns: 1fr; gap: 22px; }
  .stories-intro { grid-column: auto; }
  .story-feature { min-height: 500px; }
  .story-stack { max-height: none; padding-right: 0; overflow: visible; }
  .story-feature-copy { padding: 23px; }
  .stories-actions { flex-direction: row; flex-wrap: wrap; }
  .proof-note { grid-column: auto; }
}

/* Video modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(10, 16, 18, .82);
  backdrop-filter: blur(6px);
}
.modal.open { display: grid; }
.modal-dialog {
  position: relative;
  width: min(920px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.modal-dialog iframe { width: 100%; height: 100%; border: 0; }
.modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

/* —— S4 Security —— */
.trust-screen {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 96px 0;
  background: linear-gradient(170deg, #2A313A 0%, #20262d 55%, #1D2228 100%);
  color: #fff;
}
.trust-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.trust-screen .eyebrow { color: var(--lime); margin-bottom: 10px; }
.trust-screen .lead { margin-top: 12px; color: rgba(255,255,255,.68); max-width: 480px; }
.trust-plaque {
  position: relative;
  padding: 44px 42px 30px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255,255,255,.09) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 30px 70px rgba(0,0,0,.3);
  text-align: center;
}
.trust-plaque::before { content: ""; position: absolute; top: -1px; left: 42px; right: 42px; height: 3px;
  border-radius: 0 0 3px 3px; background: linear-gradient(90deg, transparent, rgba(65,216,180,.85), transparent); }
.trust-plaque img { width: 100%; max-width: 560px; height: auto; filter: brightness(1.08); }
.trust-plaque .trust-support { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .74rem; color: rgba(255,255,255,.45); }
@media (max-width: 1100px) { .trust-cols { grid-template-columns: 1fr; gap: 40px; } .trust-plaque { padding: 36px 26px 24px; } }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.trust-card {
  min-height: 200px;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: rgba(255,255,255,.05);
}
.trust-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  background: rgba(55, 201, 164, .14);
  color: var(--mint);
  font-size: 1.1rem;
  font-weight: 800;
}
.trust-card h3 { margin-top: 22px; font-size: 1.02rem; }
.trust-card p { margin-top: 8px; color: rgba(255,255,255,.62); font-size: .84rem; line-height: 1.45; }
.trust-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 20px; }
.trust-support {
  margin-top: 12px;
  color: rgba(255,255,255,.48);
  font-size: .78rem;
}

/* —— S5 Wellness blogs (live site) —— */
.blogs-screen {
  min-height: 0;
  padding: 64px 0;
  background: #f4f5f2;
}
.blogs-screen .center .lead {
  max-width: 600px;
  color: var(--muted);
}
.blogs-panel {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}
.blogs-layout {
  display: grid;
  grid-template-columns: .9fr 1.35fr .95fr;
  gap: 28px;
  align-items: start;
}
.blog-featured { display: block; color: var(--ink); }
.blog-featured:hover h3 { color: var(--coral-dark); }
.blog-featured img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid #fff;
  box-shadow: 0 10px 24px rgba(41, 41, 76, .16);
  background: var(--soft);
}
.blog-featured h3 {
  margin-top: 18px;
  font-size: 1.02rem;
  line-height: 1.35;
  letter-spacing: -.02em;
}
.blog-featured p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.55;
}
.blog-stack { display: grid; gap: 16px; }
.blog-row {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 16px;
  align-items: center;
  color: var(--ink);
}
.blog-row:hover h3 { color: var(--coral-dark); }
.blog-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #fff;
  box-shadow: 0 8px 18px rgba(41, 41, 76, .14);
  background: var(--soft);
}
.blog-row h3 {
  font-size: .98rem;
  line-height: 1.35;
  letter-spacing: -.02em;
}
.blog-recent {
  padding: 22px 20px;
  border-radius: 16px;
  background: rgba(23, 33, 38, .04);
}
.blog-recent h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
  letter-spacing: -.02em;
}
.blog-recent a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 650;
  line-height: 1.4;
  transition: background .15s ease, color .15s ease;
}
.blog-recent a + a { margin-top: 4px; }
.blog-recent a:hover {
  background: linear-gradient(125deg, rgba(241,81,98,.12), rgba(182,46,64,.14));
  color: var(--coral-dark);
}

/* —— S6 Final CTA —— */
.final {
  position: relative;
  overflow: hidden;
  min-height: calc(var(--vh-section) * .72);
  display: flex;
  align-items: center;
  padding: 88px 0;
  background: linear-gradient(165deg, #2E3540 0%, #262c35 38%, #20262d 68%, #1D2228 100%);
  color: #fff;
  text-align: center;
}
.final::before, .final::after { position: absolute; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; content: ""; }
.final::before { width: 440px; height: 440px; top: -270px; left: -90px; }
.final::after { width: 560px; height: 560px; right: -250px; bottom: -390px; }
.final .shell { position: relative; }
.final h2 { max-width: 880px; margin-inline: auto; }
.final p { max-width: 620px; margin: 20px auto 0; color: rgba(255,255,255,.8); font-size: 1.08rem; }
.final .btn-row { justify-content: center; }
.final .btn-primary { background: linear-gradient(125deg, var(--coral) 5%, var(--coral-deep) 125%); }
.final .btn-outline { border-color: rgba(255,255,255,.35); background: transparent; color: #fff; }
.final .btn-outline:hover { background: rgba(255,255,255,.1); }
.final-note { margin-top: 18px; font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.85); }
.final-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-top: 22px;
  color: rgba(255,255,255,.82);
  font-size: .82rem;
  font-weight: 700;
}
.final-checks span { display: inline-flex; align-items: center; gap: 7px; }
.final-checks span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

/* —— Footer —— */
footer { padding: 52px 0 30px; background: #1D2228; color: rgba(255,255,255,.6); }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 40px; }
footer .brand { color: #fff; }
.footer-about { max-width: 300px; margin-top: 14px; font-size: .82rem; line-height: 1.5; }
.footer-title { margin-bottom: 12px; color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; font-size: .8rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  font-size: .7rem;
}

/* —— Short laptops: keep hero in first fold —— */
@media (min-width: 981px) and (max-height: 860px) {
  h1 { font-size: clamp(2.25rem, 3.9vw, 3.4rem); }
  .hero-grid { gap: 34px; padding: 16px 0 10px; }
  .hero-copy h1 { margin-top: 10px; }
  .hero-copy .lead { margin-top: 12px; font-size: .98rem; }
  .hero-copy .btn-row { margin-top: 16px; }
  .hero-note { margin-top: 14px; }
  .btn { min-height: 44px; font-size: .88rem; }
  .hero-visual { min-height: 416px; }
  .people-visual { min-height: 430px; }
  .hero-photo { width: 76%; }
  .participation-moment { top: 38px; }
  .points-moment { top: 190px; }
  .reward-moment { bottom: -4px; }
  .dash { width: min(100%, 404px); }
  .chart { height: 72px; }
  .metric-value { font-size: 1.85rem; }
  .phone { width: 174px; }
  .phone-screen { min-height: 318px; }
  .challenge-art { height: 72px; }
  .logos { min-height: 46px; padding: 8px 0; }
}

/* —— Responsive —— */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 28px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(100%, 660px); margin: 0 auto; min-height: 470px; }
  .people-visual { min-height: 530px; }
  .hero-photo { right: 10%; width: 72%; }
  .platform-head { display: grid; grid-template-columns: 1fr; align-items: start; gap: 18px; }
  .platform-head .lead { max-width: 640px; }
  .experience-panel.active, .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .blogs-layout { grid-template-columns: 1fr 1fr; }
  .blog-featured { grid-column: 1 / -1; }
  .mega { transform: translateX(-50%); }
}

@media (max-width: 860px) {
  .shell { width: min(100% - 32px, var(--max)); }
  .screen { min-height: auto; padding: 64px 0; }
  .hero {
    min-height: auto;
    padding-top: 28px;
  }
  .hero-grid { padding: 0 0 18px; }
  .hero-visual { min-height: 500px; }
  .people-visual { min-height: 540px; }
  .menu-btn { display: grid; place-items: center; }
  .nav-links {
    position: absolute;
    top: 64px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
  }
  .nav-links.open { display: flex; }
  .nav-item { width: 100%; }
  .nav-trigger, .nav-links > a { width: 100%; justify-content: space-between; }
  .mega {
    position: static;
    display: none;
    width: 100%;
    transform: none;
    margin-top: 4px;
    box-shadow: none;
  }
  .nav-item.open .mega { display: block; }
  .mega-body { padding: 12px; }
  .mega-grid { grid-template-columns: 1fr; gap: 14px; }
  .mega-grid.cols-2 { grid-template-columns: 1fr; }
  .nav-links .nav-cta { margin: 8px 0 0; text-align: center; justify-content: center; }
  .video-grid, .results-strip, .steps, .experience-panel.active, .trust-grid, .footer-grid, .blogs-layout {
    grid-template-columns: 1fr;
  }
  .experience-panel.active { gap: 28px; }
  .blog-row { grid-template-columns: 120px 1fr; }
  .blogs-panel { padding: 20px; }
  .dash { right: auto; left: 0; width: calc(100% - 34px); transform: none; }
  .phone { right: 0; width: 184px; }
  .visual-caption { display: none; }
  .logos { justify-content: center; padding: 14px 0; gap: 10px 14px; }
  .logos-label { flex-basis: 100%; max-width: none; text-align: center; }
  .footer-brand { grid-column: auto; }
  .cert-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(2.15rem, 10.5vw, 2.9rem); }
  h2 { font-size: clamp(1.7rem, 8.5vw, 2.4rem); }
  .hero-visual { min-height: 455px; }
  .people-visual { min-height: 490px; }
  .hero-photo { top: 4px; right: 2%; width: 96%; }
  .photo-status { display: none; }
  .participation-moment { top: 30px; left: -2px; width: 190px; padding: 11px 12px; transform-origin: left top; }
  .participation-copy strong { font-size: 1.2rem; }
  .participation-moment .trend { font-size: .48rem; }
  .participation-spark { flex-basis: 65px; width: 65px; height: 40px; }
  .points-moment { top: 205px; right: -5px; width: 157px; padding: 11px; transform-origin: right center; }
  .reward-moment { left: 0; bottom: 8px; width: 190px; padding: 11px 12px; transform-origin: left bottom; }
  .moment-icon { width: 31px; height: 31px; flex-basis: 31px; }
  .moment-icon.coin svg { width: 29px; height: 29px; }
  .moment-card strong { font-size: 1.1rem; }
  .reward-moment strong { font-size: .76rem; }
  .dash { width: calc(100% - 20px); transform: none; }
  .phone { width: 158px; bottom: 6px; transform: rotate(-2deg); }
  .phone-screen { min-height: 330px; }
  .challenge-art { height: 80px; }
  .challenge-person { font-size: 3rem; }
  .metric-value { font-size: 1.95rem; }
  .chart { height: 92px; }
  .app-grid { grid-template-columns: 1fr 1fr; }
  .app-card:nth-child(3) { display: none; }
  .admin-layout { grid-template-columns: 70px 1fr; }
  .admin-cards { grid-template-columns: 1fr 1fr; }
  .admin-card:last-child { display: none; }
  .step { min-height: 190px; }
  .dual { padding: 20px; }
  .footer-bottom { display: grid; gap: 8px; }
}

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