:root{
  --green:#2E8B5A;
  --green-light:#4CAF82;
  --green-surface:#E8F5EE;
  --green-border:#B8DFC9;
  --bg:#F9F9F7;
  --card:#FFFFFF;
  --divider:#F0EEE8;
  --card-border:#E8E6E0;
  --text:#1A1A1A;
  --text-2:#999999;
  --muted:#CCCCCC;
  --danger:#C0392B;
  --warm:#E8B86A;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}

/* Skip link — visible only on keyboard focus */
.skip-link{
  position:absolute;left:-9999px;top:0;z-index:9999;
  background:var(--green);color:#fff;padding:12px 20px;
  text-decoration:none;font-weight:600;font-size:14px;border-radius:0 0 8px 0;
}
.skip-link:focus{left:0}
body{
  font-family:"Plus Jakarta Sans",system-ui,-apple-system,sans-serif;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-size:16px;
  line-height:1.5;
}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
img,svg{display:block}
.container{max-width:1120px;margin:0 auto;padding:0 24px}

/* ---------- Pills / overlines ---------- */
.overline{
  display:inline-block;
  background:var(--green-surface);
  color:var(--green);
  border:0.5px solid var(--green-border);
  border-radius:100px;
  padding:4px 12px;
  font-size:11px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.06em;
}

/* =========== NAV =========== */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:50;
  background:#fff;
  border-bottom:0.5px solid var(--divider);
  transition:box-shadow 200ms ease;
}
.nav.scrolled{box-shadow:0 1px 4px rgba(0,0,0,0.06)}
.nav-inner{
  max-width:1120px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 24px;
}
.brand{display:flex;align-items:center;gap:10px}
.brand-mark{
  width:32px;height:32px;border-radius:8px;background:var(--green);
  display:flex;align-items:center;justify-content:center;
}
.brand-name{font-size:16px;font-weight:700;color:var(--text);letter-spacing:-0.01em}
.nav-links{display:flex;gap:32px}
.nav-links a{
  font-size:14px;font-weight:500;color:var(--text);
  transition:color 200ms ease;
}
.nav-links a:hover{color:var(--green)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:8px;border-radius:8px;font-weight:600;
  transition:background 150ms ease, box-shadow 200ms ease, color 150ms ease;
  cursor:pointer;text-decoration:none;
  white-space:nowrap;
}
.btn-primary{
  background:var(--green);color:#fff;
  padding:10px 20px;font-size:14px;
}
.btn-primary:hover{background:var(--green-light)}
.nav-hamburger{display:none;background:none;border:none;padding:6px;color:var(--text)}
.nav-mobile{
  display:none;
  background:#fff;border-top:0.5px solid var(--divider);
}
.nav-mobile.open{display:block}
.nav-mobile a{
  display:block;font-size:16px;font-weight:500;
  padding:16px 24px;
  border-bottom:0.5px solid var(--divider);
}
.nav-mobile a:last-child{border-bottom:none}

/* =========== HERO =========== */
.hero{
  background:var(--bg);
  padding:180px 0 80px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
.hero h1{
  font-size:48px;font-weight:700;line-height:1.15;
  letter-spacing:-0.02em;
  margin:16px 0 0;
  color:var(--text);
}
.hero h1 .accent{color:var(--green);display:inline-block;position:relative}
.rotator{
  display:inline-block;position:relative;
  color:var(--green);
  min-width:0;
  white-space:nowrap;
}
.rotator .word{
  display:inline-block;
  transition:opacity 320ms ease, transform 320ms cubic-bezier(.2,.8,.2,1), filter 320ms ease;
}
.rotator .word.out{opacity:0;transform:translateY(-12px);filter:blur(2px)}
.rotator .word.in{opacity:0;transform:translateY(12px);filter:blur(2px)}
.rotator .word.in.show{opacity:1;transform:translateY(0);filter:blur(0)}
.rotator::after{
  content:"";
  display:inline-block;width:2px;height:0.9em;
  background:var(--green);
  margin-left:2px;vertical-align:-0.1em;
  animation:caret 1s steps(2) infinite;
  opacity:.55;
}
@keyframes caret{50%{opacity:0}}
.hero .tagline{font-size:20px;font-weight:600;margin:8px 0 0}
.mission{display:none}
.mission-mark{
  width:40px;height:0.5px;
  background:rgba(255,255,255,0.25);
  margin:40px auto 20px;
  opacity:0;transition:opacity 800ms ease 600ms;
}
.final p.mission-quiet{
  font-size:15px;font-weight:300;
  color:rgba(255,255,255,0.55);
  line-height:1.55;
  max-width:280px;
  margin:0 auto 40px;
  text-align:center;
  opacity:0;transition:opacity 800ms ease 600ms;
}
.final.in .mission-mark, .final.in .mission-quiet{opacity:1}
.hero .subhead{
  font-size:18px;font-weight:300;color:var(--text-2);
  line-height:1.6;max-width:480px;margin:12px 0 0;
}
.hero-ctas{display:flex;gap:12px;margin-top:28px;flex-wrap:wrap}
.btn-dark{
  background:var(--text);color:#fff;
  padding:13px 24px;font-size:14px;
}
.btn-dark:hover{background:#000}
.btn-light{
  background:#fff;color:var(--text);
  border:1px solid var(--card-border);
  padding:13px 24px;font-size:14px;
}
.btn-light:hover{background:#fafafa}
.hero-fineprint{font-size:12px;font-weight:300;color:var(--text-2);margin-top:12px}

/* phone mockup - iPhone 17 Pro Max style */
.phone-wrap{display:flex;justify-content:center}
.phone{
  width:300px;
  background:#1A1A1A;
  border-radius:48px;
  border:none;
  box-shadow:
    0 0 0 2px #2a2a2a,
    0 0 0 8px #1A1A1A,
    0 0 0 9px #2f2f2f,
    0 30px 60px rgba(0,0,0,0.18),
    0 12px 24px rgba(0,0,0,0.10);
  padding:8px;
  position:relative;
}
.phone-screen{
  background:var(--bg);
  border-radius:42px;
  overflow:hidden;
  position:relative;
  min-height:600px;
  display:flex;flex-direction:column;
}
.phone-island{
  position:absolute;top:10px;left:50%;transform:translateX(-50%);
  width:104px;height:30px;background:#000;border-radius:20px;z-index:5;
  display:flex;align-items:center;justify-content:flex-end;padding-right:12px;
}
.phone-island::before{
  content:"";width:6px;height:6px;border-radius:50%;
  background:#1a1a1a;border:1px solid #2a2a2a;
}
.phone-status{
  display:flex;justify-content:space-between;align-items:center;
  padding:14px 28px 6px;
  font-size:13px;font-weight:600;color:var(--text);
  position:relative;z-index:1;
}
.phone-status .icons{display:flex;align-items:center;gap:5px}
.phone-status .icons svg{width:14px;height:14px}
.phone-side{position:absolute;background:#0e0e0e}
.phone-side.vol-up{left:-3px;top:110px;width:3px;height:32px;border-radius:2px 0 0 2px}
.phone-side.vol-down{left:-3px;top:152px;width:3px;height:54px;border-radius:2px 0 0 2px}
.phone-side.action{left:-3px;top:78px;width:3px;height:24px;border-radius:2px 0 0 2px}
.phone-side.power{right:-3px;top:120px;width:3px;height:80px;border-radius:0 2px 2px 0}
.phone-inner{
  background:var(--bg);
  padding-top:8px;
  min-height:540px;
  display:flex;flex-direction:column;
}
.ph-bar{
  background:#fff;border-bottom:0.5px solid var(--divider);
  padding:12px 16px;
  display:flex;align-items:center;justify-content:space-between;
}
.ph-greet{font-size:13px;font-weight:700;color:var(--text);line-height:1.2}
.ph-sub{font-size:9px;font-weight:300;color:var(--text-2);margin-top:2px}
.ph-avatar{
  width:26px;height:26px;border-radius:50%;
  background:var(--green-surface);color:var(--green);
  display:flex;align-items:center;justify-content:center;
  font-size:8px;font-weight:700;
}
.ph-card{
  background:#fff;border:0.5px solid var(--card-border);border-radius:8px;
  padding:10px 12px;margin:10px;
}
.ph-card .ovl{font-size:8px;font-weight:500;color:var(--text-2);text-transform:uppercase;letter-spacing:0.04em}
.ph-card .val{font-size:22px;font-weight:700;color:var(--text);margin-top:2px;line-height:1.1}
.ph-card .delta{font-size:8px;font-weight:300;color:var(--green-light);margin-top:2px}
.ph-card .val.danger{color:var(--danger);font-size:18px}
.ph-card .val.small{font-size:14px}
.ph-grid2{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin:0 10px}
.ph-grid2 .ph-card{margin:0}
.ph-section{
  display:flex;justify-content:space-between;align-items:center;
  padding:14px 16px 6px;
}
.ph-section h4{font-size:10px;font-weight:600;color:var(--text);margin:0}
.ph-section a{font-size:8px;font-weight:500;color:var(--green)}
.ph-list{margin:0 10px;background:#fff;border:0.5px solid var(--card-border);border-radius:8px;overflow:hidden}
.ph-row{
  display:flex;align-items:center;gap:8px;padding:8px 10px;
  border-bottom:0.5px solid var(--divider);
}
.ph-row:last-child{border-bottom:none}
.ph-row .av{
  width:26px;height:26px;border-radius:50%;
  background:var(--green-surface);color:var(--green);
  display:flex;align-items:center;justify-content:center;
  font-size:8px;font-weight:700;flex-shrink:0;
}
.ph-row .who{flex:1;min-width:0}
.ph-row .who .nm{font-size:9px;font-weight:500;color:var(--text)}
.ph-row .who .st{font-size:8px;font-weight:300;color:var(--text-2);margin-top:1px}
.ph-row .amt{font-size:9px;font-weight:600;color:var(--text);text-align:right}
.ph-row .amt .stt{font-size:7px;font-weight:500;display:block;margin-top:1px}
.ph-row .amt .stt.ok{color:var(--green-light)}
.ph-row .amt .stt.pend{color:#D6A23F}
.ph-nav{
  margin-top:auto;
  background:#fff;border-top:0.5px solid var(--divider);
  display:grid;grid-template-columns:repeat(5,1fr);
  padding:8px 0 10px;
}
.ph-tab{
  display:flex;flex-direction:column;align-items:center;gap:3px;
  color:var(--card-border);
  font-size:7px;font-weight:500;
  position:relative;
}
.ph-tab.active{color:var(--green)}
.ph-tab.active::after{
  content:"";width:3px;height:3px;border-radius:50%;
  background:var(--green);
  position:absolute;bottom:-4px;left:50%;transform:translateX(-50%);
}
.ph-tab svg{width:16px;height:16px}

/* =========== SOCIAL PROOF =========== */
.proof{
  background:#fff;
  border-top:0.5px solid var(--divider);
  border-bottom:0.5px solid var(--divider);
  padding:28px 0;
}
.proof-row{
  display:flex;align-items:center;justify-content:center;
  gap:48px;
}
.proof-stat{text-align:center}
.proof-stat .v{font-size:26px;font-weight:700;color:var(--text);line-height:1.1;letter-spacing:-0.01em}
.proof-stat .l{font-size:12px;font-weight:300;color:var(--text-2);margin-top:4px}
.proof-div{width:1px;height:36px;background:var(--card-border)}

/* =========== SECTION HEADERS =========== */
section{padding:80px 0}
.sec-head{max-width:600px;margin:0 auto;text-align:center}
.sec-head h2{
  font-size:36px;font-weight:700;color:var(--text);
  line-height:1.2;letter-spacing:-0.02em;
  margin:16px 0 0;
  text-wrap:balance;
}
.sec-head p{
  font-size:16px;font-weight:300;color:var(--text-2);
  line-height:1.6;margin:12px 0 0;
}

/* =========== FEATURES =========== */
.features{background:var(--bg)}
.features-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:24px;margin-top:48px;
}
.feature-card{
  position:relative;
  background:#fff;
  border:0.5px solid var(--card-border);
  border-radius:12px;
  padding:28px 24px;
  box-shadow:0 1px 4px rgba(0,0,0,0.06);
  transition:box-shadow 200ms ease, transform 300ms ease, opacity 300ms ease;
  opacity:0;transform:translateY(16px);
}
.feature-card.in{opacity:1;transform:translateY(0)}
.feature-card:hover{box-shadow:0 4px 16px rgba(0,0,0,0.08)}
.feature-card h3{font-size:16px;font-weight:600;color:var(--text);margin:16px 0 0}
.feature-card p{font-size:14px;font-weight:400;color:var(--text-2);line-height:1.6;margin:8px 0 0}
.feature-icon{width:64px;height:64px}
.feature-badge{
  position:absolute;top:16px;right:16px;
  background:var(--green-surface);color:var(--green);
  font-size:10px;font-weight:600;
  border-radius:100px;padding:4px 10px;
  letter-spacing:0.04em;
}

/* =========== HOW IT WORKS =========== */
.how{background:#fff}
.how-steps{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:48px;margin:56px auto 0;
  max-width:960px;
  position:relative;
}
.how-steps::before{
  content:"";position:absolute;
  top:22px;left:14%;right:14%;
  border-top:1.5px dashed var(--green-border);
  z-index:0;
}
.step{text-align:center;position:relative;z-index:1}
.step-num{
  width:44px;height:44px;border-radius:50%;
  background:var(--green);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:18px;font-weight:700;
  margin:0 auto;
  border:4px solid #fff;
}
.step h3{font-size:16px;font-weight:600;color:var(--text);margin:16px 0 0}
.step p{font-size:14px;color:var(--text-2);line-height:1.6;margin:8px auto 0;max-width:260px}
.how-cta{text-align:center;margin-top:56px}
.btn-primary-lg{
  background:var(--green);color:#fff;
  padding:14px 32px;font-size:15px;font-weight:600;
  border-radius:8px;
}
.btn-primary-lg:hover{background:var(--green-light)}
.how-fineprint{font-size:12px;font-weight:300;color:var(--text-2);margin-top:14px}

/* =========== PLANS =========== */
.plans{background:var(--bg)}
.toggle-wrap{display:flex;justify-content:center;margin-top:24px}
.toggle{
  background:#F5F5F3;
  border-radius:8px;padding:3px;
  display:inline-flex;
}
.toggle button{
  padding:7px 20px;font-size:13px;font-weight:500;color:var(--text-2);
  border-radius:6px;transition:all 150ms ease;
}
.toggle button.active{
  background:#fff;color:var(--text);font-weight:600;
  box-shadow:0 1px 3px rgba(0,0,0,0.08);
}
.plans-row{
  display:flex;gap:24px;
  max-width:720px;margin:40px auto 0;
}
.plan{
  flex:1;
  border-radius:16px;padding:32px;
}
.plan.basic{background:#fff;border:1px solid var(--card-border)}
.plan.pro{background:var(--green);color:#fff}
.plan-name{
  font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:0.10em;
  color:var(--text-2);
}
.plan.pro .plan-name{color:rgba(255,255,255,0.60)}
.plan-price{
  font-size:40px;font-weight:700;color:var(--text);
  line-height:1.1;letter-spacing:-0.02em;
  margin-top:6px;
}
.plan.pro .plan-price{color:#fff}
.plan-unit{font-size:16px;font-weight:300;color:rgba(255,255,255,0.70);margin-left:4px}
.plan-sub{font-size:14px;font-weight:300;color:var(--text-2);margin-top:6px}
.plan.pro .plan-sub{color:rgba(255,255,255,0.65);font-size:11px}
.plan-divider{height:0.5px;background:var(--divider);margin:20px 0}
.plan.pro .plan-divider{background:rgba(255,255,255,0.20)}
.plan-popular{
  display:inline-block;
  background:rgba(255,255,255,0.20);color:#fff;
  border-radius:100px;padding:4px 14px;
  font-size:11px;font-weight:600;
  margin-bottom:16px;
}
.plan-features{list-style:none;margin:0;padding:0}
.plan-features li{
  font-size:14px;font-weight:400;line-height:2;
  display:flex;align-items:flex-start;gap:8px;
}
.plan.basic li.on{color:var(--text)}
.plan.basic li.off{color:var(--muted);text-decoration:line-through;opacity:0.5}
.plan.pro li{color:rgba(255,255,255,0.85)}
.plan-features .ic{flex-shrink:0;width:14px;text-align:center;line-height:1.6}
.plan.basic li.on .ic{color:var(--green)}
.plan.basic li.off .ic{color:var(--muted)}
.plan.pro .ic{color:#fff}
.plan-foot{
  text-align:center;font-size:13px;font-weight:400;color:var(--text-2);
  margin-top:20px;
}
.btn-on-green{
  width:100%;background:#fff;color:var(--green);
  padding:14px;font-size:14px;font-weight:600;
  border-radius:8px;margin-top:24px;
  transition:background 150ms ease;
}
.btn-on-green:hover{background:#f0f8f3}
.plans-note{
  text-align:center;font-size:12px;font-weight:300;color:var(--text-2);
  margin-top:24px;max-width:600px;margin-left:auto;margin-right:auto;
}

/* =========== FOR WHOM =========== */
.whom{background:#fff}
.whom-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:40px;
}
.whom-card{
  background:var(--bg);border:0.5px solid var(--card-border);border-radius:12px;
  padding:20px 24px;
  display:flex;gap:16px;align-items:flex-start;
}
.whom-card svg{width:48px;height:48px;flex-shrink:0}
.whom-card h3{font-size:15px;font-weight:600;color:var(--text);margin:0}
.whom-card p{font-size:13px;font-weight:400;color:var(--text-2);line-height:1.6;margin:4px 0 0}

/* =========== FAQ =========== */
.faq{background:var(--bg)}
.faq-list{max-width:720px;margin:40px auto 0}
.faq-item{
  background:#fff;border:0.5px solid var(--card-border);border-radius:10px;
  margin-bottom:8px;overflow:hidden;
}
.faq-q{
  display:flex;justify-content:space-between;align-items:center;
  padding:18px 20px;cursor:pointer;width:100%;
  text-align:left;
}
.faq-q span{font-size:15px;font-weight:600;color:var(--text);padding-right:16px}
.faq-icon{
  color:var(--green);font-size:20px;font-weight:300;line-height:1;
  transition:transform 200ms ease;
  flex-shrink:0;
}
.faq-item.open .faq-icon{transform:rotate(45deg)}
.faq-a{
  overflow:hidden;height:0;
  transition:height 200ms ease;
}
.faq-a-inner{
  font-size:14px;font-weight:400;color:var(--text-2);
  line-height:1.7;padding:0 20px 18px;
}

/* =========== FINAL CTA =========== */
.final{
  background:var(--green);
  padding:96px 0;
  text-align:center;
}
.final .ovl{
  font-size:12px;font-weight:600;text-transform:uppercase;
  letter-spacing:0.08em;color:rgba(255,255,255,0.70);
}
.final h2{
  font-size:44px;font-weight:700;color:#fff;
  line-height:1.15;letter-spacing:-0.02em;
  margin:12px auto 0;max-width:600px;
  text-wrap:balance;
}
.final p{
  font-size:18px;font-weight:300;color:rgba(255,255,255,0.80);
  line-height:1.6;margin:16px auto 0;max-width:560px;
}
.final-ctas{display:inline-flex;gap:12px;margin-top:32px;flex-wrap:wrap;justify-content:center}
.btn-white{
  background:#fff;color:var(--green);
  padding:14px 28px;font-size:14px;font-weight:600;
  border-radius:8px;
}
.btn-white:hover{background:#f0f8f3}
.btn-glass{
  background:rgba(255,255,255,0.15);color:#fff;
  border:1px solid rgba(255,255,255,0.30);
  padding:14px 28px;font-size:14px;font-weight:600;
  border-radius:8px;
}
.btn-glass:hover{background:rgba(255,255,255,0.25)}
.final-fine{
  font-size:12px;font-weight:300;color:rgba(255,255,255,0.65);
  margin-top:14px;
}

/* =========== FOOTER =========== */
footer{
  background:var(--text);
  padding:48px 0;
  color:rgba(255,255,255,0.60);
}
.foot-top{
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:16px;
}
.foot-brand{display:flex;align-items:center;gap:10px;color:#fff;font-size:16px;font-weight:700}
.foot-links{display:flex;gap:32px;flex-wrap:wrap}
.foot-links a{
  font-size:13px;font-weight:400;color:rgba(255,255,255,0.60);
  transition:color 200ms ease;
}
.foot-links a:hover{color:rgba(255,255,255,0.90)}
.foot-div{height:0.5px;background:rgba(255,255,255,0.10);margin:24px 0}
.foot-bot{
  display:flex;justify-content:space-between;
  flex-wrap:wrap;gap:8px;
  font-size:12px;font-weight:300;color:rgba(255,255,255,0.40);
}

/* =========== RESPONSIVE =========== */
@media (max-width: 1119px){
  .hero-grid{gap:40px}
  .features-grid{grid-template-columns:repeat(2,1fr)}
  .whom-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 767px){
  section{padding:48px 0}
  .hero{padding:120px 0 48px}
  .hero-grid{grid-template-columns:1fr;gap:40px}
  .hero h1{font-size:32px}
  .hero .tagline{font-size:18px}
  .hero .subhead{font-size:16px}
  .hero-ctas{flex-direction:column;align-items:stretch}
  .btn-dark,.btn-light{width:100%}
  .nav-links,.btn-primary.desktop{display:none}
  .nav-hamburger{display:flex;align-items:center;justify-content:center}
  .features-grid{grid-template-columns:1fr}
  .whom-grid{grid-template-columns:1fr}
  .how-steps{grid-template-columns:1fr;gap:40px}
  .how-steps::before{display:none}
  .plans-row{flex-direction:column}
  .proof-row{display:grid;grid-template-columns:1fr 1fr;gap:24px}
  .proof-div{display:none}
  .sec-head h2{font-size:28px}
  .final h2{font-size:32px}
  .final p{font-size:16px}
  .foot-top, .foot-bot{flex-direction:column;align-items:center;text-align:center}
  .foot-links{justify-content:center}
}
