
:root{
  --bg: #f5f8f5;
  --bg-2: #eef8f1;
  --text: #111817;
  --muted: #60706a;
  --line: rgba(16, 22, 20, 0.08);
  --white: #ffffff;
  --dark: #101614;
  --dark-2: #18211d;
  --green: #16a36b;
  --green-2: #27c57f;
  --green-soft: #dff7e8;
  --shadow: 0 18px 55px rgba(16, 22, 20, 0.08);
  --shadow-heavy: 0 32px 90px rgba(16, 22, 20, 0.15);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 88% 6%, rgba(39,197,127,0.12), transparent 24%),
    radial-gradient(circle at 8% 18%, rgba(39,197,127,0.08), transparent 20%),
    linear-gradient(180deg, #f8fbf8 0%, #f5f8f5 100%);
  color:var(--text);
  overflow-x:hidden;
}
img{max-width:100%; display:block}
a{text-decoration:none; color:inherit}
.container{width:min(var(--container), calc(100% - 40px)); margin-inline:auto}

.bg-orb{
  position:fixed; border-radius:50%; filter:blur(60px); z-index:-2; opacity:0.22; pointer-events:none;
}
.orb-1{width:320px;height:320px; background:#7ff3b0; top:-70px; right:-100px}
.orb-2{width:280px;height:280px; background:#b4ffd1; bottom:14%; left:-80px}
.grid-glow{
  position:fixed; inset:0; z-index:-3; opacity:0.25; pointer-events:none;
  background-image:
    linear-gradient(rgba(16,22,20,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,22,20,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,0.9), transparent 85%);
}

.site-header{
  position:sticky; top:0; z-index:30;
  backdrop-filter: blur(16px);
  background:rgba(248,251,248,0.75);
  border-bottom:1px solid rgba(16,22,20,0.05);
}
.nav{
  min-height:88px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.brand-logo{
  width:min(240px, 42vw);
  height:auto;
}
.nav-links{display:flex; align-items:center; gap:28px; color:#31403a; font-weight:700}
.nav-links a:hover{color:var(--green)}
.nav-cta{white-space:nowrap}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:800;
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-dark{
  background:var(--dark); color:white; box-shadow:0 12px 28px rgba(16,22,20,0.12);
}
.btn-gradient{
  background:linear-gradient(135deg, var(--dark), var(--green));
  color:#fff; box-shadow:0 18px 40px rgba(22,163,107,0.25);
}

.mobile-menu-btn{
  display:none; background:transparent; border:0; padding:8px; cursor:pointer;
}
.mobile-menu-btn span{
  display:block; width:26px; height:3px; background:var(--dark); border-radius:999px; margin:5px 0;
}
.mobile-panel{
  display:none; padding:0 20px 18px; border-top:1px solid rgba(16,22,20,0.05); background:rgba(248,251,248,0.92);
}
.mobile-panel a{
  display:block; padding:14px 0; font-weight:700; color:#31403a;
}

.hero{padding:52px 0 22px}
.hero-grid{
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:58px; align-items:center;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 16px; border-radius:999px;
  background:rgba(22,163,107,0.08); color:var(--green); font-weight:900; letter-spacing:0.02em;
}
.pulse-dot{
  width:10px; height:10px; border-radius:50%; background:var(--green); box-shadow:0 0 0 0 rgba(22,163,107,0.45);
  animation:pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow:0 0 0 0 rgba(22,163,107,0.45); }
  70% { box-shadow:0 0 0 12px rgba(22,163,107,0); }
  100% { box-shadow:0 0 0 0 rgba(22,163,107,0); }
}
.hero-copy h1{
  font-size:clamp(3rem, 6.4vw, 5.4rem);
  line-height:0.95; letter-spacing:-0.065em; margin:18px 0 22px;
}
.hero-text{
  font-size:1.15rem; line-height:1.85; color:var(--muted); max-width:720px;
}
.hero-highlights{
  display:flex; flex-wrap:wrap; gap:12px; margin:26px 0 28px;
}
.hero-highlights span{
  padding:11px 15px; border-radius:999px; background:#fff; border:1px solid var(--line);
  box-shadow:var(--shadow); font-weight:700; color:#23302b;
}
.live-counter{
  display:flex;
  align-items:center;
  gap:16px;
  max-width:520px;
  margin:8px 0 24px;
  padding:16px 18px;
  border-radius:24px;
  background:rgba(255,255,255,0.78);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  backdrop-filter:blur(12px);
}
.counter-number{
  min-width:86px;
  height:70px;
  padding:0 14px;
  border-radius:20px;
  background:linear-gradient(135deg, var(--dark), var(--green));
  color:#fff;
  display:grid;
  place-items:center;
  font-size:2rem;
  font-weight:950;
  letter-spacing:-.04em;
}
.live-counter strong{
  display:block;
  font-size:1rem;
  color:#17211d;
}
.live-counter span{
  display:block;
  margin-top:4px;
  color:var(--muted);
  line-height:1.45;
}


.signup-counter-hero{
  position:relative;
  width:min(100%, 520px);
  margin:20px 0 24px;
  padding:20px;
  border-radius:30px;
  background:linear-gradient(135deg, #101614 0%, #173728 100%);
  color:#fff;
  box-shadow:0 28px 70px rgba(16,22,20,0.2);
  overflow:hidden;
}
.signup-counter-hero:before{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  right:-60px;
  top:-70px;
  border-radius:50%;
  background:rgba(39,197,127,0.32);
  filter:blur(8px);
}
.counter-label{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.1);
  color:#9bf2c1;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:.78rem;
}
.live-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#4cff9c;
  box-shadow:0 0 0 0 rgba(76,255,156,.55);
  animation:pulse 1.8s infinite;
}
.counter-main{
  position:relative;
  z-index:1;
  display:flex;
  align-items:flex-end;
  gap:12px;
  margin-top:12px;
}
.counter-main span{
  display:block;
  font-size:clamp(3rem, 8vw, 5.4rem);
  line-height:.85;
  font-weight:950;
  letter-spacing:-.08em;
}
.counter-main small{
  color:#b8f7cf;
  font-size:1.05rem;
  font-weight:900;
  margin-bottom:8px;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.signup-counter-hero p{
  position:relative;
  z-index:1;
  margin:12px 0 0;
  color:rgba(255,255,255,.76);
  line-height:1.6;
}
.nav-counter{
  display:flex;
  align-items:center;
  gap:7px;
  padding:10px 13px;
  border-radius:999px;
  background:#e8fff1;
  border:1px solid rgba(22,163,107,.18);
  color:#0e6f49;
  font-weight:950;
  white-space:nowrap;
}
.nav-counter span{
  font-weight:950;
}
.nav-counter small{
  color:#386b57;
  font-weight:800;
}
.other-interest{
  display:none;
}
.other-interest.show{
  display:flex;
}

.social-proof{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:14px;
}
.social-proof div{
  background:#fff; border:1px solid var(--line); border-radius:20px; padding:16px 16px 14px; box-shadow:var(--shadow);
}
.social-proof strong{display:block; font-size:0.98rem; margin-bottom:5px}
.social-proof span{color:var(--muted); font-size:0.92rem; line-height:1.45}

.hero-visual{position:relative; min-height:690px}
.phone-shell{
  position:relative;
  margin-left:auto;
  width:min(100%, 450px);
  background:var(--dark);
  padding:24px;
  border-radius:42px;
  box-shadow:var(--shadow-heavy);
  overflow:hidden;
}
.phone-shell:before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 28%);
  pointer-events:none;
}
.phone-topbar{
  width:88px; height:8px; border-radius:999px; background:#2b3531; margin:0 auto 26px;
}
.community-card{
  border-radius:26px; padding:22px 20px; margin-bottom:16px;
}
.community-top{display:flex; align-items:flex-start; gap:14px}
.community-top h3{margin:0 0 6px; font-size:1.5rem}
.community-top p{margin:0; line-height:1.55; opacity:0.92}
.emoji{
  display:grid; place-items:center; min-width:44px; height:44px;
  border-radius:14px; background:rgba(255,255,255,0.16); font-size:1.35rem;
}
.community-green{
  color:#082414;
  background:linear-gradient(135deg, #28c67f 0%, #9bf2c1 100%);
}
.community-dark{
  color:#fff; background:#18211d;
}
.community-white{
  color:#111817; background:#f5fff8;
}
.small-card{transform:translateX(20px)}

.visual-chip, .floating-bubble{
  position:absolute; z-index:2;
  padding:10px 14px; border-radius:999px; font-weight:800; box-shadow:var(--shadow);
}
.visual-chip{background:#fff; color:#1f2b27}
.chip-1{top:34px; right:10px}
.chip-2{top:92px; left:-18px}
.floating-icon{
  position:absolute; right:18px; bottom:48px; width:84px; height:84px;
  background:#fff; border-radius:24px; box-shadow:var(--shadow-heavy); padding:12px;
  animation:floatY 4.5s ease-in-out infinite;
}
.floating-icon img{width:100%; height:100%; object-fit:contain}
.floating-bubble{
  background:#fff;
  animation:floatY 5s ease-in-out infinite;
}
.bubble-a{left:-10px; top:260px}
.bubble-b{right:-14px; top:190px; animation-delay:.6s}
.bubble-c{left:40px; bottom:88px; animation-delay:1.2s}
@keyframes floatY {
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}

.waitlist-section{padding:42px 0 20px}
.waitlist-grid{
  display:grid; grid-template-columns:0.95fr 1.05fr; gap:28px; align-items:stretch;
}
.waitlist-copy, .form-card{
  background:#fff; border:1px solid var(--line); border-radius:30px; box-shadow:var(--shadow);
}
.waitlist-copy{padding:34px}
.form-card{padding:28px}
.section-label{
  color:var(--green); font-weight:900; text-transform:uppercase; letter-spacing:.06em; font-size:0.82rem;
}
.waitlist-copy h2, .section-header h2, .cta-card h2{
  font-size:clamp(2rem, 4vw, 3rem); line-height:1.02; margin:10px 0 14px; letter-spacing:-.05em;
}
.waitlist-copy p, .section-header p{
  color:var(--muted); line-height:1.8; font-size:1.04rem;
}
.waitlist-points{padding-left:18px; color:#24312c; line-height:1.9; font-weight:600}
.waitlist-form{display:flex; flex-direction:column; gap:16px}
.field-row{display:flex; flex-direction:column; gap:8px}
.field-row.double{display:grid; grid-template-columns:1fr 1fr; gap:14px}
.field-row label{
  font-weight:800; color:#21302a; font-size:0.95rem;
}
.field-row input,
.field-row select,
.field-row textarea{
  width:100%;
  padding:16px 16px;
  border-radius:16px;
  border:1px solid rgba(16,22,20,0.12);
  background:#fff;
  font:inherit;
  color:var(--text);
  transition:border-color .18s ease, box-shadow .18s ease;
}
.field-row textarea{resize:vertical; min-height:120px}
.field-row input:focus,
.field-row select:focus,
.field-row textarea:focus{
  outline:none; border-color:rgba(22,163,107,0.55); box-shadow:0 0 0 4px rgba(22,163,107,0.1);
}
.submit-btn{margin-top:4px; padding:18px 20px; font-size:1rem; border:0; cursor:pointer}
.form-note{margin:0; color:var(--muted); font-size:.92rem}
.form-status{min-height:22px; font-weight:700}
.form-status.success{color:var(--green)}
.form-status.error{color:#c23a3a}

.feature-section, .steps-section, .community-showcase, .cta-section{
  padding:56px 0 20px;
}
.section-header{
  max-width:760px; margin:0 auto 28px; text-align:center;
}
.feature-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:18px;
}
.feature-card{
  background:#fff; border:1px solid var(--line); border-radius:26px; padding:24px; box-shadow:var(--shadow);
}
.feature-icon{
  width:52px; height:52px; border-radius:16px; background:var(--green-soft); color:var(--green);
  display:grid; place-items:center; font-size:1.4rem; margin-bottom:14px;
}
.feature-card h3{margin:0 0 10px; font-size:1.2rem}
.feature-card p{margin:0; color:var(--muted); line-height:1.75}

.steps-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:18px;
}
.step-card{
  background:linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
  border:1px solid var(--line); border-radius:26px; padding:26px; box-shadow:var(--shadow);
}
.step-number{
  width:46px; height:46px; border-radius:14px; background:var(--dark); color:#fff;
  display:grid; place-items:center; font-weight:900; margin-bottom:14px;
}
.step-card h3{margin:0 0 10px; font-size:1.2rem}
.step-card p{margin:0; color:var(--muted); line-height:1.75}

.showcase-grid{
  display:flex; flex-wrap:wrap; gap:14px; justify-content:center;
}
.showcase-pill{
  padding:16px 18px; border-radius:999px; background:#fff; border:1px solid var(--line);
  box-shadow:var(--shadow); font-weight:800; color:#20302a;
}

.cta-card{
  display:grid; grid-template-columns:auto 1fr auto; gap:24px; align-items:center;
  background:linear-gradient(135deg, #101614 0%, #183026 100%);
  color:#fff; padding:30px; border-radius:30px; box-shadow:var(--shadow-heavy);
}
.cta-card p{margin:0; color:rgba(255,255,255,0.78); line-height:1.7}
.cta-mark{
  width:72px; height:72px; object-fit:contain; background:#fff; border-radius:20px; padding:10px;
}

.site-footer{
  padding:42px 0 54px;
}
.footer-row{
  background:#101614; color:#fff; border-radius:30px; padding:28px;
  display:flex; align-items:center; justify-content:space-between; gap:30px;
}
.footer-brand img{width:260px; max-width:100%}
.footer-text p{margin:6px 0; color:rgba(255,255,255,0.8)}
.footer-text a{color:#8ff0b5}

.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

@media (max-width: 1080px){
  .nav-links{display:none}
  .mobile-menu-btn{display:block}
  .hero-grid, .waitlist-grid{grid-template-columns:1fr}
  .hero-visual{min-height:auto}
  .phone-shell{margin-inline:auto}
  .feature-grid, .steps-grid{grid-template-columns:repeat(2, 1fr)}
  .cta-card{grid-template-columns:1fr; text-align:center}
  .cta-mark{margin-inline:auto}
}

@media (max-width: 720px){
  .container{width:min(var(--container), calc(100% - 28px))}
  .site-header{position:sticky}
  .nav{min-height:76px}
  .brand-logo{width:min(180px, 54vw)}
  .nav-counter{display:none}
  .nav-cta{display:none}
  .hero{padding-top:28px}
  .hero-copy h1{font-size:clamp(2.55rem, 13vw, 4rem)}
  .hero-text{font-size:1rem}
  .live-counter{align-items:flex-start}
  .counter-number{min-width:74px;height:62px;font-size:1.65rem}
  .social-proof{grid-template-columns:1fr}
  .hero-highlights{gap:10px}
  .hero-highlights span{padding:10px 13px; font-size:.94rem}
  .phone-shell{padding:18px; border-radius:30px; width:100%}
  .community-top h3{font-size:1.2rem}
  .community-top p{font-size:.95rem}
  .visual-chip, .floating-bubble{font-size:.85rem}
  .chip-2{left:8px; top:86px}
  .bubble-b{right:4px}
  .field-row.double{grid-template-columns:1fr}
  .feature-grid, .steps-grid{grid-template-columns:1fr}
  .waitlist-copy, .form-card{padding:22px}
  .footer-row{flex-direction:column; text-align:center}
  .footer-brand img{width:210px}
  .small-card{transform:none}
}

.live-counter{display:none!important;}
