:root{
  --forest:#0A1F0D;
  --gold:#F5C800;
  --green:#1B5E30;
  --bg-light:#F4F6F3;
  --cream:#FBF8EF;
  --red:#C2410C;
  --display:'Fraunces', serif;
  --body:'Manrope', sans-serif;
  --hand:'Caveat', cursive;
}

*{margin:0;padding:0;box-sizing:border-box;}

html{scroll-behavior:smooth;}

body{
  font-family:var(--body);
  color:var(--forest);
  background:var(--bg-light);
  -webkit-font-smoothing:antialiased;
}

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

.container{
  max-width:1360px;
  margin:0 auto;
  padding:0 32px;
}

/* Offset anchor-jump targets so the fixed topbar never overlaps the heading */
#comparison, #modules, #views, #pricing, #faq, #about, #why{scroll-margin-top:84px;}
.container-narrow{max-width:760px;}

.section-sub{
  font-size:17px;
  line-height:1.6;
  color:#5C6B5F;
  max-width:560px;
  margin-top:18px;
}
.section-sub.light-sub{color:rgba(255,255,255,0.6);}

/* ── TOPBAR ─────────────────────────────────────────── */
.topbar{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  padding:22px 0;
  transition:background .25s ease, padding .25s ease, box-shadow .25s ease;
}
.topbar.scrolled{
  background:rgba(10,31,13,0.92);
  backdrop-filter:blur(8px);
  padding:14px 0;
  box-shadow:0 4px 24px rgba(0,0,0,0.15);
}
.topbar-inner{
  max-width:1360px;
  margin:0 auto;
  padding:0 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.wordmark{
  font-family:var(--display);
  font-weight:900;
  font-size:22px;
  color:#fff;
  letter-spacing:-0.5px;
}
.wordmark .dot{color:var(--gold);}
.topnav{
  display:flex;
  align-items:center;
  gap:32px;
}
.topnav a{
  font-size:14px;
  font-weight:600;
  color:rgba(255,255,255,0.65);
  transition:color .2s ease;
}
.topnav a:hover{color:var(--gold);}

.ghost-link{
  font-size:13px;
  font-weight:600;
  color:rgba(255,255,255,0.75);
  border:1.5px solid rgba(255,255,255,0.25);
  border-radius:100px;
  padding:9px 18px;
  transition:all .2s ease;
  flex-shrink:0;
}
.ghost-link:hover{
  border-color:var(--gold);
  color:var(--gold);
}

.menu-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:32px;
  height:32px;
  background:none;
  border:none;
  cursor:pointer;
  padding:0;
  flex-shrink:0;
}
.menu-toggle span{
  display:block;
  width:100%;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition:transform .25s ease, opacity .25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
.menu-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.mobile-nav{
  position:absolute;
  top:100%;
  left:0;right:0;
  background:rgba(10,31,13,0.97);
  backdrop-filter:blur(8px);
  display:flex;
  flex-direction:column;
  padding:4px 24px 20px;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height .3s ease, opacity .25s ease;
  box-shadow:0 12px 24px rgba(0,0,0,0.2);
}
.mobile-nav.is-open{
  max-height:480px;
  opacity:1;
}
.mobile-nav a{
  color:rgba(255,255,255,0.85);
  font-size:15px;
  font-weight:600;
  padding:14px 4px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.mobile-nav a.mobile-nav-cta{
  margin-top:14px;
  border-bottom:none;
  text-align:center;
  border-radius:100px;
  padding:13px 4px;
}

/* ── HERO ───────────────────────────────────────────── */
.hero{
  position:relative;
  background:var(--forest);
  color:#fff;
  overflow:hidden;
  padding:140px 0 100px;
}

/* Decorative tennis/padel court line motif — abstract, low opacity */
.court-lines{
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(245,200,0,0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,200,0,0.09) 1px, transparent 1px);
  background-size:100% 50%, 33.33% 100%;
  background-position:center;
  opacity:0.5;
  mask-image:radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 90%);
}
.court-lines::after{
  content:'';
  position:absolute;
  left:50%;top:8%;bottom:8%;
  width:1px;
  background:rgba(245,200,0,0.18);
}

.hero-inner{
  position:relative;
  z-index:2;
  max-width:1360px;
  margin:0 auto;
  padding:0 32px;
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:40px;
  align-items:center;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.14em;
  color:var(--gold);
  border:1px solid rgba(245,200,0,0.35);
  border-radius:100px;
  padding:7px 14px;
  margin-bottom:28px;
}
.badge .arrow{color:rgba(255,255,255,0.5);}

.headline{
  font-family:var(--display);
  font-weight:900;
  font-size:clamp(40px, 5.6vw, 68px);
  line-height:1.04;
  letter-spacing:-1px;
  margin-bottom:26px;
}
.headline .line{display:block;}
.headline .out{
  position:relative;
  color:rgba(255,255,255,0.4);
}
.headline .out::after{
  content:'';
  position:absolute;
  left:-4px;right:-4px;top:52%;
  height:4px;
  background:var(--red);
  transform:rotate(-3deg);
}
.headline .gold-line{
  color:#fff;
  margin-top:4px;
}
.headline .in{
  color:var(--gold);
  font-style:italic;
}

.subhead{
  font-size:18px;
  line-height:1.65;
  color:rgba(255,255,255,0.72);
  max-width:460px;
  margin-bottom:36px;
}

.cta-row{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:28px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:15px;
  padding:16px 28px;
  border-radius:12px;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-primary{
  background:var(--gold);
  color:var(--forest);
  box-shadow:0 10px 30px -8px rgba(245,200,0,0.5);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px -8px rgba(245,200,0,0.65);
}
.btn-ghost{
  color:#fff;
  font-weight:600;
  padding:16px 4px;
  opacity:0.75;
}
.btn-ghost:hover{opacity:1;}

.proof-line{
  font-size:13px;
  color:rgba(255,255,255,0.4);
  font-weight:500;
}

/* ── DEVICE MOCKUP ──────────────────────────────────── */
.hero-visual{position:relative;}
.device-stage{
  position:relative;
  transform:rotate(2deg);
  transition:transform .3s ease;
}

.live-toast{
  position:absolute;
  top:-22px;
  left:-22px;
  z-index:3;
  display:flex;
  align-items:center;
  gap:7px;
  background:rgba(10,31,13,0.92);
  backdrop-filter:blur(6px);
  border:1px solid rgba(245,200,0,0.25);
  border-radius:100px;
  padding:9px 16px 9px 12px;
  box-shadow:0 16px 32px -12px rgba(0,0,0,0.55);
  font-size:12px;
  font-weight:600;
  color:rgba(255,255,255,0.85);
  white-space:nowrap;
  opacity:0;
  transform:translateY(6px);
  transition:opacity .4s ease, transform .4s ease;
}
.live-toast.is-visible{opacity:1;transform:translateY(0);}
.live-dot{
  width:7px;height:7px;flex-shrink:0;
  border-radius:50%;
  background:var(--gold);
  position:relative;
}
.live-dot::after{
  content:'';
  position:absolute;inset:-5px;
  border-radius:50%;
  border:1.5px solid var(--gold);
  opacity:0;
  animation:livePulse 2.2s ease-out infinite;
}
@keyframes livePulse{
  0%{opacity:.55;transform:scale(0.6);}
  80%,100%{opacity:0;transform:scale(1.7);}
}
.live-tag{font-size:9.5px;font-weight:800;letter-spacing:0.06em;color:var(--gold);}
.live-sep{color:rgba(255,255,255,0.3);}

.laptop{
  position:relative;
  width:100%;
  max-width:540px;
}
.laptop-screen{
  background:#0E2913;
  border:10px solid #06120A;
  border-bottom:0;
  border-radius:14px 14px 0 0;
  overflow:hidden;
  box-shadow:0 30px 60px -20px rgba(0,0,0,0.55);
}
.laptop-base{
  height:14px;
  background:linear-gradient(#1c2b1e,#0a1410);
  border-radius:0 0 8px 8px;
  position:relative;
}
.laptop-base::after{
  content:'';
  position:absolute;
  left:50%;top:0;
  transform:translateX(-50%);
  width:70px;height:5px;
  background:#06120A;
  border-radius:0 0 6px 6px;
}

.browser-bar{
  display:flex;
  align-items:center;
  gap:6px;
  padding:9px 12px;
  background:#0A1F0D;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.browser-bar .dot{width:8px;height:8px;border-radius:50%;display:inline-block;}
.dot.red{background:#E5544A;}
.dot.yellow{background:#E8B43A;}
.dot.green{background:#3AA75C;}
.browser-bar .url{
  margin-left:10px;
  font-size:11px;
  color:rgba(255,255,255,0.35);
  font-family:var(--body);
}

.screenshot-crop{
  position:relative;
  width:100%;
  aspect-ratio:16/10.2;
  overflow:hidden;
  background:#0E2913;
}
.screenshot-crop img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
}
.screenshot-tag{
  position:absolute;
  bottom:10px;
  left:12px;
  background:rgba(10,31,13,0.85);
  backdrop-filter:blur(4px);
  color:var(--gold);
  font-size:9.5px;
  font-weight:800;
  letter-spacing:0.04em;
  padding:5px 10px;
  border-radius:100px;
  border:1px solid rgba(245,200,0,0.25);
}

.phone{
  position:absolute;
  right:-6%;
  bottom:-14%;
  width:160px;
  background:#06120A;
  border-radius:26px;
  padding:8px;
  box-shadow:0 24px 50px -16px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  transform:rotate(-4deg);
}
.phone-screen{
  background:var(--cream);
  border-radius:18px;
  padding:16px 12px;
  color:var(--forest);
}
.phone-status{
  font-size:10px;
  font-weight:700;
  margin-bottom:14px;
  opacity:0.4;
}
.confirm-pill{
  display:inline-block;
  background:rgba(27,94,48,0.12);
  color:var(--green);
  font-size:10px;
  font-weight:800;
  padding:4px 9px;
  border-radius:100px;
  margin-bottom:10px;
}
.confirm-title{font-size:14px;font-weight:800;margin-bottom:3px;}
.confirm-time{font-size:11px;color:#6B7A6E;margin-bottom:12px;}
.confirm-row{
  display:flex;justify-content:space-between;align-items:center;
  font-size:12px;font-weight:700;
  padding-top:10px;
  border-top:1px solid rgba(10,31,13,0.08);
  margin-bottom:12px;
}
.confirm-row .paid{color:var(--green);}
.confirm-btn{
  background:var(--forest);
  color:var(--gold);
  font-size:11px;
  font-weight:700;
  text-align:center;
  padding:9px;
  border-radius:9px;
}

/* ── COMPARISON SECTION ─────────────────────────────── */
.comparison{
  background:var(--bg-light);
  padding:120px 0 130px;
}
.comparison-inner{
  max-width:1360px;
  margin:0 auto;
  padding:0 32px;
}
.section-kicker{
  font-size:11px;
  font-weight:800;
  letter-spacing:0.16em;
  color:var(--green);
  margin-bottom:14px;
}
.section-heading{
  font-family:var(--display);
  font-weight:900;
  font-size:clamp(32px, 4vw, 46px);
  line-height:1.08;
  letter-spacing:-1px;
  margin-bottom:56px;
  max-width:600px;
}

.columns{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}
.col-tag{
  display:inline-block;
  font-size:12px;
  font-weight:800;
  letter-spacing:0.04em;
  padding:7px 14px;
  border-radius:100px;
  margin-bottom:18px;
}
.out-tag{background:rgba(194,65,12,0.1);color:var(--red);}
.in-tag{background:rgba(27,94,48,0.12);color:var(--green);}
.col-tag small{font-weight:600;opacity:0.6;text-transform:none;letter-spacing:0;}

.notebook{
  position:relative;
  background:#fffdf7;
  border:1px solid rgba(10,31,13,0.08);
  border-radius:4px;
  padding:34px 30px;
  min-height:360px;
  box-shadow:0 18px 40px -22px rgba(0,0,0,0.25), 4px 4px 0 rgba(10,31,13,0.04);
  transform:rotate(-0.6deg);
}
.scrawl{
  font-family:var(--hand);
  font-size:24px;
  color:#2b2b2b;
  margin-bottom:16px;
  line-height:1.3;
}
.scrawl.big{font-size:30px;}
.scrawl.red{color:var(--red);font-weight:700;}
.scrawl.small{font-size:16px;opacity:0.55;margin-top:24px;}
.strike2{position:relative;display:inline-block;}
.strike2::after{
  content:'';
  position:absolute;
  left:-6px;right:-6px;top:55%;
  height:3px;
  background:#2b2b2b;
  opacity:0.6;
  transform:rotate(-2deg);
}
.chat-bubble{
  display:inline-block;
  background:#E9F8E5;
  border-radius:14px 14px 14px 2px;
  padding:10px 16px;
  font-family:var(--hand);
  font-size:20px;
  color:#1f1f1f;
  margin:10px 0 6px;
}
.coffee-stain{
  position:absolute;
  width:90px;height:90px;
  border-radius:50%;
  border:7px solid rgba(120,72,30,0.12);
  bottom:18px;right:22px;
  pointer-events:none;
}

.clean-card{
  background:var(--forest);
  color:#fff;
  border-radius:18px;
  padding:34px 30px;
  min-height:360px;
  box-shadow:0 24px 50px -20px rgba(10,31,13,0.45);
  display:flex;
  flex-direction:column;
}
.clean-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:8px;
}
.clean-court{font-size:17px;font-weight:800;}
.status-ok{
  font-size:11px;
  font-weight:800;
  color:var(--gold);
  background:rgba(245,200,0,0.12);
  padding:5px 10px;
  border-radius:100px;
}
.clean-time{font-size:13px;color:rgba(255,255,255,0.55);margin-bottom:24px;}
.clean-divider{height:1px;background:rgba(255,255,255,0.1);margin-bottom:24px;}
.clean-stat{margin-bottom:22px;}
.stat-num{
  font-family:var(--display);
  font-weight:900;
  font-size:34px;
  color:var(--gold);
  display:block;
  line-height:1;
  margin-bottom:6px;
}
.stat-label{font-size:13px;color:rgba(255,255,255,0.55);}

/* ── WHY SPORTVIO ───────────────────────────────────── */
.why{
  background:#fff;
  padding:130px 0;
}
.why-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:32px;
  margin-top:56px;
}
.why-card{padding:4px;}
.why-icon{
  width:44px;height:44px;
  border-radius:12px;
  background:rgba(27,94,48,0.08);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;
}
.why-icon svg{width:21px;height:21px;color:var(--green);}
.why-card h3{
  font-family:var(--display);
  font-weight:700;
  font-size:16px;
  color:var(--forest);
  margin-bottom:8px;
  line-height:1.3;
}
.why-card p{
  font-size:13.5px;
  line-height:1.65;
  color:#5C6B5F;
}

/* ── MODULES ────────────────────────────────────────── */
.modules{
  background:var(--forest);
  color:#fff;
  padding:130px 0;
}
.modules .section-kicker{color:var(--gold);}
.modules .section-heading{color:#fff;}
.modules .section-sub{color:rgba(255,255,255,0.6);}

.module-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  margin-top:56px;
}
.module-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  overflow:hidden;
  transition:transform .2s ease, border-color .2s ease;
}
.module-card:hover{
  transform:translateY(-4px);
  border-color:rgba(245,200,0,0.3);
}
.module-card.span-2{grid-column:span 2;}

/* Mini "native app window" chrome — used on every module/view shot, real or illustrated */
.mini-chrome{
  display:flex;
  align-items:center;
  gap:4px;
  padding:7px 10px;
  background:#0A1F0D;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.mdot{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,0.18);display:inline-block;}
.murl{
  margin-left:8px;
  font-size:9.5px;
  font-weight:600;
  color:rgba(255,255,255,0.3);
  font-family:var(--body);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.module-shot{
  position:relative;
  width:100%;
  display:flex;
  flex-direction:column;
  background:#0E2913;
}
.shot-frame{
  position:relative;
  width:100%;
  aspect-ratio:16/9.6;
  overflow:hidden;
}
.module-card.span-2 .shot-frame{aspect-ratio:16/8.4;}
.shot-frame img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
}
.module-shot-css{
  display:flex;
  align-items:center;
  padding:20px;
  background:linear-gradient(135deg, rgba(245,200,0,0.06), rgba(27,94,48,0.18));
}
.mini-academy{width:100%;}
.mini-row{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:12.5px;
  font-weight:600;
  color:rgba(255,255,255,0.85);
  padding:9px 0;
  border-bottom:1px solid rgba(255,255,255,0.07);
}
.mini-row:last-child{border-bottom:none;}
.mini-dot{width:8px;height:8px;border-radius:50%;background:var(--green);flex-shrink:0;}
.mini-dot.gold{background:var(--gold);}
.mini-tag{margin-left:auto;font-size:10.5px;font-weight:600;color:rgba(255,255,255,0.4);}

.module-body{padding:22px 22px 26px;}
.module-body h3{
  font-family:var(--display);
  font-weight:700;
  font-size:18px;
  margin-bottom:8px;
}
.module-body p{
  font-size:13.5px;
  line-height:1.6;
  color:rgba(255,255,255,0.55);
}

.chip-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  margin-top:36px;
}
.chip-label{font-size:13px;font-weight:700;color:rgba(255,255,255,0.4);margin-right:4px;}
.chip{
  font-size:12.5px;
  font-weight:600;
  color:rgba(255,255,255,0.75);
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:100px;
  padding:7px 14px;
}

/* ── THREE LOGINS ───────────────────────────────────── */
.views{
  background:var(--bg-light);
  padding:130px 0;
}
.view-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  margin-top:56px;
}
.view-col{
  background:#fff;
  border-radius:18px;
  padding:22px;
  box-shadow:0 18px 40px -28px rgba(10,31,13,0.25);
}
.view-tag{
  display:inline-block;
  font-size:11px;
  font-weight:800;
  letter-spacing:0.08em;
  padding:6px 12px;
  border-radius:100px;
  margin-bottom:16px;
}
.admin-tag{background:rgba(27,94,48,0.12);color:var(--green);}
.coach-tag{background:rgba(245,200,0,0.16);color:#92720A;}
.member-tag{background:rgba(10,31,13,0.08);color:var(--forest);}

.view-shot{
  position:relative;
  width:100%;
  border-radius:10px;
  overflow:hidden;
  background:#0E2913;
  margin-bottom:18px;
}
.view-shot .shot-frame{aspect-ratio:16/10;}
.view-shot-css{background:var(--forest);display:flex;align-items:center;padding:16px;}

.coach-mock{width:100%;}
.coach-mock-head{font-size:11px;font-weight:700;color:rgba(255,255,255,0.45);margin-bottom:10px;}
.coach-row{
  display:flex;align-items:center;gap:10px;
  font-size:13px;font-weight:600;color:#fff;
  padding:7px 0;
}
.check{
  width:16px;height:16px;border-radius:5px;
  border:1.5px solid rgba(255,255,255,0.25);
  flex-shrink:0;
}
.check.done{
  background:var(--gold);
  border-color:var(--gold);
  position:relative;
}
.check.done::after{
  content:'✓';
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  font-size:10px;font-weight:800;color:var(--forest);
}

.view-col h3{
  font-family:var(--display);
  font-weight:700;
  font-size:17px;
  margin-bottom:12px;
}
.view-list{list-style:none;}
.view-list li{
  position:relative;
  font-size:13.5px;
  line-height:1.55;
  color:#5C6B5F;
  padding-left:18px;
  margin-bottom:9px;
}
.view-list li::before{
  content:'';
  position:absolute;
  left:0; top:7px;
  width:6px;height:6px;
  border-radius:50%;
  background:var(--green);
}

.public-banner{
  display:flex;
  align-items:center;
  gap:28px;
  background:var(--forest);
  color:rgba(255,255,255,0.8);
  border-radius:16px;
  padding:24px 28px;
  margin-top:36px;
  font-size:14px;
  line-height:1.6;
}
.public-banner-shot{
  flex-shrink:0;
  width:160px;
  aspect-ratio:10/9;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 16px 32px -16px rgba(0,0,0,0.55);
}
.public-banner-shot img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
}
.public-banner-text{
  display:flex;
  align-items:flex-start;
  gap:18px;
}
.public-icon{font-size:22px;flex-shrink:0;}
.public-banner strong{display:block;color:#fff;font-size:15px;margin-bottom:4px;}

/* ── ONBOARDING ─────────────────────────────────────── */
.onboarding{
  background:var(--forest);
  color:#fff;
  padding:130px 0;
}
.onboarding .section-kicker{color:var(--gold);}
.onboarding .section-heading{color:#fff;margin-bottom:56px;}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
}
.step{position:relative;}
.step-num{
  font-family:var(--display);
  font-weight:900;
  font-size:42px;
  color:rgba(245,200,0,0.3);
  margin-bottom:14px;
}
.step h3{font-size:17px;font-weight:700;margin-bottom:10px;}
.step p{font-size:13.5px;line-height:1.6;color:rgba(255,255,255,0.55);}

.import-preview{
  margin-top:18px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:12px;
  padding:14px 16px;
}
.import-row{
  display:flex;justify-content:space-between;
  font-size:12px;font-weight:600;color:rgba(255,255,255,0.8);
  margin-bottom:10px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.import-ok{color:#4ADE80;}
.import-stat{font-size:12.5px;color:rgba(255,255,255,0.65);margin-bottom:4px;}
.import-stat strong{color:#fff;}
.import-stat.warn strong{color:var(--gold);}

.invite-preview{
  margin-top:18px;
  border-radius:10px;
  overflow:hidden;
  background:#0E2913;
  border:1px solid rgba(255,255,255,0.1);
}
.invite-preview .shot-frame{aspect-ratio:6/5;}

/* ── PRICING ────────────────────────────────────────── */
.pricing{
  background:var(--bg-light);
  padding:130px 0;
}
.price-toggle{
  display:inline-flex;
  background:#fff;
  border:0.5px solid rgba(0,0,0,0.08);
  border-radius:100px;
  padding:4px;
  gap:2px;
  margin-top:32px;
}
.price-toggle-btn{
  padding:10px 18px;
  border-radius:100px;
  border:none;
  background:transparent;
  cursor:pointer;
  font-family:'Manrope', sans-serif;
  font-size:13px;
  font-weight:700;
  color:#4A5568;
  transition:all .15s ease;
  white-space:nowrap;
}
.price-toggle-btn.is-active{
  background:var(--forest);
  color:var(--gold);
}
.price-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
  margin-top:32px;
  align-items:stretch;
}
.price-card{
  position:relative;
  background:#fff;
  border:1px solid rgba(10,31,13,0.08);
  border-radius:18px;
  padding:32px 28px;
  display:flex;
  flex-direction:column;
  box-shadow:0 18px 40px -30px rgba(10,31,13,0.2);
}
.price-card.featured{
  background:var(--forest);
  color:#fff;
  border-color:var(--forest);
  transform:translateY(-10px);
  box-shadow:0 26px 50px -20px rgba(10,31,13,0.4);
}
.price-ribbon{
  position:absolute;
  top:-13px;left:28px;
  background:var(--gold);
  color:var(--forest);
  font-size:11px;
  font-weight:800;
  padding:5px 12px;
  border-radius:100px;
}
.price-name{font-size:14px;font-weight:700;color:var(--green);margin-bottom:10px;}
.price-card.featured .price-name{color:var(--gold);}
.price-amount{
  font-family:var(--display);
  font-weight:900;
  font-size:38px;
  margin-bottom:10px;
}
.price-amount .amt-monthly span,
.price-amount .amt-annual span{font-size:14px;font-weight:500;opacity:0.5;}
.price-desc{
  font-size:13.5px;
  color:#5C6B5F;
  margin-bottom:22px;
  min-height:40px;
}
.price-card.featured .price-desc{color:rgba(255,255,255,0.6);}
.price-list{list-style:none;flex:1;margin-bottom:26px;}
.price-list li{
  position:relative;
  font-size:13.5px;
  padding-left:20px;
  margin-bottom:11px;
  color:#3A463C;
}
.price-card.featured .price-list li{color:rgba(255,255,255,0.85);}
.price-list li::before{
  content:'✓';
  position:absolute;left:0;
  color:var(--green);
  font-weight:800;
  font-size:12px;
}
.price-card.featured .price-list li::before{color:var(--gold);}
.btn-outline{
  border:1.5px solid rgba(10,31,13,0.2);
  color:var(--forest);
  font-weight:700;
  font-size:14px;
  padding:13px 24px;
  border-radius:12px;
  text-align:center;
  transition:all .2s ease;
}
.btn-outline:hover{border-color:var(--forest);background:rgba(10,31,13,0.04);}

.trust-strip{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:36px;
  margin-top:48px;
  padding-top:36px;
  border-top:1px solid rgba(10,31,13,0.08);
}
.trust-item{
  display:flex;
  align-items:center;
  gap:9px;
  font-size:13px;
  font-weight:600;
  color:#4A5568;
}
.trust-item svg{width:18px;height:18px;color:var(--green);flex-shrink:0;}

.price-note{
  text-align:center;
  font-size:12.5px;
  color:#9AA5A0;
  margin-top:40px;
  font-style:italic;
}

/* ── FAQ ────────────────────────────────────────────── */
.faq{
  background:#fff;
  padding:120px 0;
}
.faq .section-heading{margin-bottom:48px;}
.faq-list{display:flex;flex-direction:column;gap:2px;}
.faq-item{
  border-bottom:1px solid rgba(10,31,13,0.08);
  padding:22px 0;
}
.faq-item summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  font-size:16px;
  font-weight:700;
  color:var(--forest);
  cursor:pointer;
  list-style:none;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:'+';
  font-size:22px;
  font-weight:400;
  color:var(--green);
  flex-shrink:0;
  transition:transform .2s ease;
}
.faq-item[open] summary::after{transform:rotate(45deg);}
.faq-item p{
  font-size:14.5px;
  line-height:1.65;
  color:#5C6B5F;
  margin-top:14px;
  padding-right:36px;
}

/* ── FOUNDER QUOTE ──────────────────────────────────── */
.quote-section{
  background:var(--cream);
  padding:120px 0;
  text-align:center;
}
.quote-mark{
  font-family:var(--display);
  font-weight:900;
  font-size:90px;
  color:rgba(27,94,48,0.18);
  line-height:1;
  margin-bottom:-20px;
}
.quote-text{
  font-family:var(--display);
  font-style:italic;
  font-weight:600;
  font-size:clamp(20px, 2.4vw, 28px);
  line-height:1.5;
  color:var(--forest);
  margin-bottom:36px;
}
.quote-author{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
}
.quote-avatar{
  width:46px;height:46px;border-radius:50%;
  background:var(--forest);color:var(--gold);
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:14px;flex-shrink:0;
}
.quote-name{font-size:14px;font-weight:800;color:var(--forest);}
.quote-role{font-size:12.5px;color:#7A8A7D;margin-top:2px;}

/* ── MOBILE / APP STORES ────────────────────────────── */
.mobile-cta{
  background:var(--forest);
  color:#fff;
  padding:120px 0;
  text-align:center;
}
.mobile-cta .section-kicker{color:var(--gold);justify-content:center;}
.mobile-cta .section-heading{color:#fff;margin-bottom:14px;}
.mobile-cta .container{display:flex;flex-direction:column;align-items:center;}
.store-row{
  display:flex;
  gap:16px;
  margin-top:32px;
}
.store-badge{
  display:flex;
  align-items:center;
  gap:12px;
  background:#000;
  border:1px solid rgba(255,255,255,0.15);
  border-radius:12px;
  padding:10px 20px;
  font-weight:700;
  font-size:16px;
  color:#fff;
  cursor:default;
  transition:border-color .2s ease, background .2s ease;
}
.store-badge:hover{border-color:rgba(255,255,255,0.35);background:#0a0a0a;}
.store-badge small{
  display:block;
  font-size:10px;
  font-weight:500;
  letter-spacing:.02em;
  color:rgba(255,255,255,0.5);
  margin-bottom:1px;
}
.store-icon{
  width:26px;height:26px;
  flex-shrink:0;
  color:#fff;
}

/* ── SITE FOOTER ────────────────────────────────────── */
.site-footer{
  background:var(--forest);
  color:rgba(255,255,255,0.55);
  padding:80px 0 28px;
}
.footer-top{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.footer-brand .wordmark{margin-bottom:14px;}
.footer-brand p{
  font-size:13.5px;
  line-height:1.6;
  color:rgba(255,255,255,0.45);
  max-width:280px;
}
.footer-heading{
  font-size:11px;
  font-weight:800;
  letter-spacing:0.08em;
  color:rgba(255,255,255,0.35);
  margin-bottom:16px;
}
.footer-col{display:flex;flex-direction:column;}
.footer-col a{
  font-size:13.5px;
  color:rgba(255,255,255,0.65);
  margin-bottom:12px;
  transition:color .15s ease;
}
.footer-col a:hover{color:var(--gold);}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  padding-top:24px;
  font-size:12px;
  color:rgba(255,255,255,0.35);
}

/* ── SCROLL-IN REVEAL ───────────────────────────────── */
.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .65s cubic-bezier(.16,.8,.3,1), transform .65s cubic-bezier(.16,.8,.3,1);
}
.reveal.is-visible{opacity:1;transform:translateY(0);}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1;transform:none;transition:none;}
  .live-dot::after{animation:none;}
}

/* ── CLOSING CTA ────────────────────────────────────── */
.closing-cta{
  background:var(--gold);
  padding:110px 0;
  text-align:center;
}
.closing-cta .section-heading{color:var(--forest);margin-bottom:0;}
.closing-cta .section-sub{color:rgba(10,31,13,0.65);margin:14px auto 36px;}
.closing-cta-row{justify-content:center;}
.btn-dark{
  background:var(--forest);
  color:var(--gold);
  box-shadow:0 10px 30px -8px rgba(10,31,13,0.35);
}
.btn-dark:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 34px -8px rgba(10,31,13,0.5);
}
.btn-ghost-dark{
  color:var(--forest);
  font-weight:600;
  padding:16px 4px;
  opacity:0.7;
}
.btn-ghost-dark:hover{opacity:1;}

/* ── LEGAL PAGES ────────────────────────────────────── */
.legal-page{
  background:#fff;
  padding:160px 0 100px;
}
.legal-page .container-narrow{max-width:720px;}
.legal-back{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  font-weight:600;
  color:#1B5E30;
  text-decoration:none;
  margin-bottom:28px;
}
.legal-back:hover{text-decoration:underline;}
.legal-page h1{
  font-family:var(--display);
  font-weight:900;
  font-size:clamp(32px, 5vw, 44px);
  letter-spacing:-1px;
  color:var(--forest);
  margin-bottom:10px;
}
.legal-updated{
  font-size:13px;
  color:#9AA5A0;
  margin-bottom:32px;
}
.legal-notice{
  background:#FFF8E1;
  border:0.5px solid rgba(245,200,0,0.35);
  border-radius:12px;
  padding:16px 20px;
  font-size:13px;
  color:#854F0B;
  line-height:1.6;
  margin-bottom:40px;
}
.legal-page h2{
  font-family:var(--display);
  font-weight:700;
  font-size:20px;
  color:var(--forest);
  margin:36px 0 12px;
}
.legal-page p, .legal-page li{
  font-size:14.5px;
  line-height:1.75;
  color:#4A5568;
}
.legal-page ul{margin:8px 0 8px 20px;}
.legal-page li{margin-bottom:6px;}
.legal-page strong{color:#0A1F0D;}

/* ── RESPONSIVE ─────────────────────────────────────── */
/* Tablet landscape: trim 3-col grids to 2 */
@media (max-width: 1180px){
  .module-grid{grid-template-columns:repeat(2, 1fr);}
  .module-card.span-2{grid-column:span 2;}
  .view-grid, .steps-grid, .price-grid, .why-grid{grid-template-columns:repeat(2, 1fr);}
  .price-card.featured{transform:none;}
  .footer-top{grid-template-columns:1fr 1fr;gap:36px 24px;}
}
@media (max-width: 900px){
  .topnav{display:none;}
  .ghost-link{display:none;}
  .menu-toggle{display:flex;}
}
/* Tablet portrait / large mobile */
@media (max-width: 980px){
  .hero-inner{grid-template-columns:1fr;}
  .hero-visual{margin-top:60px;}
  .device-stage{transform:rotate(0);max-width:480px;margin:0 auto;}
  .phone{right:-2%;}
  .columns{grid-template-columns:1fr;}
  .headline{font-size:clamp(34px,9vw,52px);}
}
@media (max-width: 760px){
  .module-grid, .view-grid, .steps-grid, .price-grid, .why-grid{grid-template-columns:1fr;}
  .module-card.span-2{grid-column:span 1;}
  .module-card.span-2 .shot-frame{aspect-ratio:16/9.6;}
  .price-card.featured{transform:none;}
  .modules, .views, .onboarding, .pricing, .quote-section, .mobile-cta, .faq, .closing-cta, .why{padding:80px 0;}
  .section-heading{margin-bottom:36px;}
  .public-banner{flex-direction:column;align-items:flex-start;}
  .public-banner-shot{width:100%;max-width:260px;}
  .store-row{flex-direction:column;width:100%;max-width:280px;}
  .store-badge{width:100%;justify-content:center;}
  .trust-strip{flex-direction:column;align-items:flex-start;gap:16px;}
  .footer-top{grid-template-columns:1fr;gap:32px;}
  .footer-bottom{flex-direction:column;align-items:flex-start;}
}
@media (max-width: 540px){
  .topbar-inner{padding:0 20px;}
  .hero-inner{padding:0 20px;}
  .ghost-link{display:none;}
  .laptop{max-width:100%;}
  .phone{width:120px;right:-4%;bottom:-10%;}
  .live-toast{top:-16px;left:-10px;padding:7px 12px 7px 10px;font-size:11px;}
  .comparison-inner{padding:0 20px;}
  .container, .container-narrow{padding:0 20px;}
  .quote-mark{font-size:60px;}
}
