@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600&family=IBM+Plex+Mono:wght@500&family=Inter:wght@400;500;600&display=swap');

:root{
  --bg:#0B1615;
  --surface:#122120;
  --surface-2:#182B29;
  --border:rgba(237,239,234,0.10);
  --border-strong:rgba(237,239,234,0.18);
  --text:#EDEFEA;
  --text-muted:#8FA39B;
  --accent:#4FD1A5;
  --accent-ink:#04342C;
  --amber:#E8B34C;
  --amber-ink:#412402;
  --radius:10px;
  --maxw:1120px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',sans-serif;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{
  font-family:'Space Grotesk',sans-serif;
  font-weight:600;
  line-height:1.15;
  margin:0 0 .5em;
}
p{margin:0 0 1em;color:var(--text);}
a{color:var(--accent);text-decoration:none;}
a:hover{text-decoration:underline;}
.eyebrow{
  font-family:'IBM Plex Mono',monospace;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--accent);
  display:inline-block;
  margin-bottom:12px;
}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px;}

/* ---------- Nav ---------- */
.site-nav{
  border-bottom:1px solid var(--border);
  background:rgba(11,22,21,0.85);
  backdrop-filter:blur(6px);
  position:sticky;top:0;z-index:50;
}
.site-nav .wrap{
  display:flex;align-items:center;justify-content:space-between;
  height:64px;
}
.brand{
  display:flex;flex-direction:column;line-height:1.1;
}
.brand strong{
  font-family:'Space Grotesk',sans-serif;font-size:16px;color:var(--text);
}
.brand span{font-size:11px;color:var(--text-muted);font-family:'IBM Plex Mono',monospace;}
.nav-links{display:flex;align-items:center;gap:28px;}
.nav-links a{
  color:var(--text-muted);font-size:14px;font-weight:500;
}
.nav-links a:hover{color:var(--text);text-decoration:none;}
.nav-links a.current{color:var(--accent);}
.nav-cta{
  border:1px solid var(--border-strong);
  padding:8px 16px;border-radius:var(--radius);
  color:var(--text) !important;font-size:14px;
}
.nav-cta:hover{border-color:var(--accent);background:rgba(79,209,165,0.08);text-decoration:none;}
.nav-toggle{display:none;background:none;border:1px solid var(--border-strong);border-radius:8px;color:var(--text);width:40px;height:40px;font-size:18px;cursor:pointer;}

@media(max-width:820px){
  .nav-links{
    position:absolute;top:64px;left:0;right:0;
    background:var(--surface);border-bottom:1px solid var(--border);
    flex-direction:column;align-items:flex-start;gap:0;
    display:none;
  }
  .nav-links.open{display:flex;}
  .nav-links a{width:100%;padding:14px 24px;border-bottom:1px solid var(--border);}
  .nav-cta{margin:14px 24px;display:inline-block;}
  .nav-toggle{display:block;}
}

/* ---------- Hero ---------- */
.hero{padding:88px 0 64px;border-bottom:1px solid var(--border);}
.hero h1{font-size:44px;max-width:720px;}
.hero p.lead{font-size:18px;color:var(--text-muted);max-width:560px;}
.hero-cta{display:flex;gap:14px;margin-top:28px;flex-wrap:wrap;}
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:12px 22px;border-radius:var(--radius);
  font-size:14px;font-weight:600;font-family:'Inter',sans-serif;
  cursor:pointer;border:1px solid transparent;
}
.btn-primary{background:var(--accent);color:var(--accent-ink);}
.btn-primary:hover{background:#3fbd91;text-decoration:none;}
.btn-secondary{border-color:var(--border-strong);color:var(--text);}
.btn-secondary:hover{border-color:var(--accent);text-decoration:none;}

/* ---------- Pipeline strip ---------- */
.pipeline{
  display:flex;align-items:center;gap:0;margin-top:56px;
  overflow-x:auto;padding-bottom:8px;
}
.pipeline .stage{
  flex:0 0 auto;min-width:118px;text-align:center;padding:14px 10px;
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);
}
.pipeline .stage .num{font-family:'IBM Plex Mono',monospace;font-size:11px;color:var(--accent);}
.pipeline .stage .label{font-size:13px;font-weight:600;margin-top:4px;}
.pipeline .arrow{flex:0 0 auto;color:var(--text-muted);padding:0 10px;font-size:16px;}

/* ---------- Sections ---------- */
.section{padding:64px 0;}
.section-head{max-width:640px;margin-bottom:40px;}
.section-head h2{font-size:28px;}
.section-head p{color:var(--text-muted);}

/* ---------- Service cards ---------- */
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:16px;}
.card{
  background:var(--surface);border:1px solid var(--border);border-radius:12px;
  padding:22px;
}
.card .icon{
  width:36px;height:36px;border-radius:8px;background:var(--surface-2);
  display:flex;align-items:center;justify-content:center;margin-bottom:16px;
  color:var(--accent);font-family:'IBM Plex Mono',monospace;font-size:14px;
}
.card h3{font-size:16px;margin-bottom:8px;}
.card p{color:var(--text-muted);font-size:14px;margin-bottom:0;}

/* ---------- CTA band ---------- */
.cta-band{
  background:var(--surface);border-top:1px solid var(--border);border-bottom:1px solid var(--border);
  padding:56px 0;text-align:center;
}
.cta-band h2{font-size:26px;}
.cta-band p{color:var(--text-muted);max-width:480px;margin:0 auto 24px;}

/* ---------- Footer ---------- */
.site-footer{border-top:1px solid var(--border);padding:40px 0 28px;}
.footer-top{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:24px;
  padding-bottom:24px;border-bottom:1px solid var(--border);margin-bottom:20px;
}
.footer-legal{display:flex;gap:20px;flex-wrap:wrap;}
.footer-legal a{color:var(--text-muted);font-size:13px;}
.footer-legal a:hover{color:var(--text);}
.footer-bottom{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;
  font-size:12px;color:var(--text-muted);font-family:'IBM Plex Mono',monospace;
}

/* ---------- Simple legal page shell (for terms / refund / privacy / data-deletion) ---------- */
.legal{padding:56px 0;max-width:760px;margin:0 auto;}
.legal h1{font-size:30px;}
.legal .updated{color:var(--text-muted);font-family:'IBM Plex Mono',monospace;font-size:13px;margin-bottom:28px;}
.legal h2{font-size:19px;margin-top:32px;}
.legal ul{padding-left:20px;color:var(--text);}
.legal li{margin-bottom:8px;}
.legal p{color:var(--text);}

/* ---------- WhatsApp connect page ---------- */
.connect-box{
  background:var(--surface);border:1px solid var(--border);border-radius:12px;
  padding:40px;max-width:480px;margin:56px auto;text-align:center;
}
.connect-box .icon-lg{
  width:56px;height:56px;border-radius:12px;background:var(--surface-2);
  display:flex;align-items:center;justify-content:center;margin:0 auto 20px;
  color:var(--accent);font-size:24px;
}
