/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:#09090B; --bg2:#0F1012; --bg3:#161719;
  --surface:#1C1E22; --surface2:#23262C;
  --border:rgba(255,255,255,0.06); --border2:rgba(255,255,255,0.10);
  --accent:#00D98B; --accent2:#00A86B;
  --adim:rgba(0,217,139,0.08); --aglow:rgba(0,217,139,0.12);
  --sand:#C8B89A; --sand-dim:rgba(200,184,154,0.08);
  --text:#EDEDEE; --text2:#888D97; --text3:#4E5360;
  --serif:'DM Serif Display',Georgia,serif;
  --sans:'DM Sans',sans-serif;
  --mono:'DM Mono',monospace;
  --header-h: 62px;
}

html { scroll-behavior:smooth; scroll-padding-top: var(--header-h); }
body { background:var(--bg); color:var(--text); font-family:var(--sans); font-size:16px; line-height:1.6; overflow-x:hidden; }
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--bg); }
::-webkit-scrollbar-thumb { background:var(--surface2); border-radius:3px; }

/* ─── NAV ────────────────────────────────────────────────────── */
.site-header {
  position:fixed; top:0; left:0; right:0; z-index:100;
  height:var(--header-h);
  background:rgba(9,9,11,0.88); backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
  transition: background .2s, box-shadow .2s;
}
.site-header.scrolled {
  background: var(--bg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  padding:0 52px; height:100%; gap:32px;
}
.logo { display:flex; align-items:center; gap:11px; font-family:var(--serif); font-size:19px; color:var(--text); text-decoration:none; letter-spacing:-0.01em; flex-shrink:0; }
.logo-mark { width:30px; height:30px; border-radius:7px; background:var(--accent); display:flex; align-items:center; justify-content:center; font-family:var(--serif); font-size:14px; color:#000; }
.nav-links { display:flex; align-items:center; gap:4px; list-style:none; flex:1; }
.nav-links a { font-size:13.5px; color:var(--text2); text-decoration:none; padding:6px 12px; border-radius:6px; transition:color .2s, background .2s; }
.nav-links a:hover, .nav-links a.active { color:var(--text); background:var(--surface); }
.nav-cta { font-size:13.5px; font-weight:500; padding:8px 18px; border-radius:8px; background:var(--accent); color:#000; text-decoration:none; flex-shrink:0; transition:background .2s,transform .15s; }
.nav-cta:hover { background:#00ffaa; transform:translateY(-1px); }
.nav-toggle { display:none; flex-direction:column; gap:5px; padding:8px; margin-left:auto; background:none; border:none; cursor:pointer; }
.nav-toggle span { display:block; width:22px; height:2px; background:var(--text); border-radius:2px; transition:transform .2s, opacity .2s; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height:100vh; display:flex; flex-direction:column; justify-content:center;
  padding:130px 52px 90px; position:relative; overflow:hidden;
}
.hero-grid {
  position:absolute; inset:0;
  background-image:linear-gradient(var(--border) 1px,transparent 1px),linear-gradient(90deg,var(--border) 1px,transparent 1px);
  background-size:56px 56px;
  mask-image:radial-gradient(ellipse 75% 65% at 50% 38%,black 30%,transparent 100%);
  pointer-events:none;
}
.hero-glow { position:absolute; top:-100px; right:-80px; width:640px; height:640px; border-radius:50%; background:radial-gradient(circle,rgba(0,217,139,0.09) 0%,transparent 68%); pointer-events:none; }
.hero-glow2 { position:absolute; bottom:-60px; left:-60px; width:440px; height:440px; border-radius:50%; background:radial-gradient(circle,rgba(200,184,154,0.05) 0%,transparent 70%); pointer-events:none; }
.hero-inner { position:relative; max-width:860px; }
.hero-eyebrow { display:inline-flex; align-items:center; gap:10px; font-family:var(--mono); font-size:11.5px; color:var(--sand); border:1px solid rgba(200,184,154,0.2); border-radius:100px; padding:5px 14px; margin-bottom:36px; opacity:0; animation:up .6s .05s ease forwards; }
.eyebrow-dot { width:5px; height:5px; border-radius:50%; background:var(--accent); animation:pulse 2.2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.35;} }
.hero-h1 { font-family:var(--serif); font-size:clamp(42px,6.5vw,76px); line-height:1.07; letter-spacing:-0.025em; color:var(--text); margin-bottom:30px; opacity:0; animation:up .7s .12s ease forwards; }
.hero-h1 em { font-style:italic; color:var(--accent); }
.hero-h1 .sand { color:var(--sand); }
.hero-sub { font-size:17px; color:var(--text2); line-height:1.72; max-width:540px; margin-bottom:48px; opacity:0; animation:up .7s .22s ease forwards; }
.hero-actions { display:flex; gap:12px; align-items:center; opacity:0; animation:up .7s .32s ease forwards; flex-wrap:wrap; }
.btn-primary { display:inline-flex; align-items:center; gap:8px; font-size:14.5px; font-weight:500; padding:13px 26px; border-radius:9px; background:var(--accent); color:#000; text-decoration:none; border:none; cursor:pointer; font-family:var(--sans); transition:all .2s; }
.btn-primary:hover { background:#00ffaa; transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,217,139,.22); }
.btn-full { width:100%; justify-content:center; }
.btn-ghost { display:inline-flex; align-items:center; gap:8px; font-size:14.5px; color:var(--text2); padding:13px 22px; border-radius:9px; border:1px solid var(--border2); text-decoration:none; transition:all .2s; }
.btn-ghost:hover { color:var(--text); background:var(--surface); border-color:rgba(255,255,255,.15); }
.hero-divider { display:flex; gap:0; margin-top:80px; padding-top:48px; border-top:1px solid var(--border); opacity:0; animation:up .7s .42s ease forwards; }
.hero-pillar { flex:1; padding:0 32px 0 0; border-right:1px solid var(--border); }
.hero-pillar:first-child { padding-left:0; }
.hero-pillar:last-child { border-right:none; padding-right:0; }
.pillar-label { font-family:var(--mono); font-size:10.5px; color:var(--text3); letter-spacing:.1em; text-transform:uppercase; margin-bottom:8px; }
.pillar-val { font-family:var(--serif); font-size:15px; color:var(--text); line-height:1.4; }
@keyframes up { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }

/* ─── SECTION COMMON ─────────────────────────────────────────── */
section { padding:96px 52px; }
.label { font-family:var(--mono); font-size:11px; letter-spacing:.11em; text-transform:uppercase; color:var(--accent); margin-bottom:14px; display:block; }
.h2 { font-family:var(--serif); font-size:clamp(30px,4vw,48px); line-height:1.1; letter-spacing:-0.02em; color:var(--text); margin-bottom:14px; }
.h2 em { font-style:italic; color:var(--text2); }
.lead { font-size:16.5px; color:var(--text2); line-height:1.68; max-width:520px; }

/* ─── STRIP ──────────────────────────────────────────────────── */
.strip { background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:28px 52px; display:flex; align-items:center; }
.strip-item { flex:1; padding:0 32px; border-right:1px solid var(--border); display:flex; align-items:center; gap:10px; }
.strip-item:first-child { padding-left:0; }
.strip-item:last-child { border-right:none; }
.strip-icon { color:var(--accent); font-size:15px; flex-shrink:0; }
.strip-text { font-size:13px; color:var(--text2); line-height:1.5; }
.strip-text strong { color:var(--text); font-weight:500; display:block; }

/* ─── FOUNDER ────────────────────────────────────────────────── */
.founder-section { background:var(--bg2); }
.founder-grid { display:grid; grid-template-columns:1fr 1.1fr; gap:80px; align-items:start; margin-top:56px; }
.founder-card { background:var(--surface); border:1px solid var(--border); border-radius:16px; overflow:hidden; }
.founder-card-top { background:var(--surface2); padding:32px; border-bottom:1px solid var(--border); display:flex; align-items:center; gap:20px; }
.founder-avatar { width:60px; height:60px; border-radius:50%; background:var(--adim); border:1px solid rgba(0,217,139,0.2); display:flex; align-items:center; justify-content:center; font-family:var(--serif); font-size:22px; color:var(--accent); flex-shrink:0; }
.founder-name { font-size:16px; font-weight:500; color:var(--text); }
.founder-title { font-size:13px; color:var(--text2); margin-top:3px; line-height:1.4; }
.founder-card-body { padding:28px 32px; }
.founder-quote { font-family:var(--serif); font-style:italic; font-size:17px; color:var(--text); line-height:1.65; margin-bottom:24px; quotes:"\201C" "\201D"; }
.founder-quote::before { content:open-quote; color:var(--accent); }
.founder-quote::after  { content:close-quote; color:var(--accent); }
.founder-tags { display:flex; flex-wrap:wrap; gap:8px; }
.tag-chip { font-family:var(--mono); font-size:10.5px; letter-spacing:.06em; color:var(--text3); border:1px solid var(--border2); padding:4px 10px; border-radius:100px; }
.gcctag { display:inline-flex; align-items:center; gap:7px; font-family:var(--mono); font-size:10.5px; color:var(--sand); border:1px solid rgba(200,184,154,0.18); border-radius:100px; padding:4px 12px; margin-top:20px; }
.founder-body { font-size:15px; color:var(--text2); line-height:1.78; margin-bottom:32px; }
.founder-body p { margin-bottom:16px; }
.founder-body p:last-child { margin-bottom:0; }
.founder-body strong { color:var(--text); font-weight:500; }
.credibility-list { list-style:none; display:flex; flex-direction:column; gap:16px; }
.cred-item { display:flex; gap:16px; align-items:flex-start; padding:18px 20px; border-radius:10px; border:1px solid var(--border); background:var(--bg); }
.cred-icon { color:var(--accent); margin-top:1px; font-size:14px; flex-shrink:0; }
.cred-text { font-size:13.5px; color:var(--text2); line-height:1.55; }
.cred-text strong { color:var(--text); font-weight:500; display:block; margin-bottom:2px; }

/* ─── APPROACH ───────────────────────────────────────────────── */
.approach-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; border:1px solid var(--border); border-radius:16px; overflow:hidden; margin-top:56px; }
.approach-card { background:var(--bg); padding:40px 34px; transition:background .25s; }
.approach-card:hover { background:var(--surface); }
.approach-card--featured { background:var(--surface); }
.approach-num { font-family:var(--mono); font-size:11px; color:var(--text3); letter-spacing:.1em; margin-bottom:20px; }
.approach-icon { width:40px; height:40px; border-radius:9px; background:var(--surface2); display:flex; align-items:center; justify-content:center; font-size:17px; margin-bottom:20px; }
.approach-icon--accent { background:var(--adim); }
.approach-h3 { font-family:var(--serif); font-size:21px; color:var(--text); margin-bottom:12px; line-height:1.25; }
.approach-desc { font-size:14px; color:var(--text2); line-height:1.65; margin-bottom:24px; }
.approach-list { list-style:none; }
.approach-list li { font-size:13px; color:var(--text2); padding:8px 0; border-top:1px solid var(--border); display:flex; align-items:center; gap:10px; }
.approach-list li::before { content:'—'; color:var(--accent); font-size:11px; }

/* ─── OUTCOMES ───────────────────────────────────────────────── */
.outcomes-section { background:var(--bg2); }
.outcomes-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:56px; }
.outcome-card { background:var(--bg); border:1px solid var(--border); border-radius:14px; padding:36px 30px; transition:border-color .2s,transform .2s; }
.outcome-card:hover { border-color:var(--border2); transform:translateY(-3px); }
.outcome-sector { font-family:var(--mono); font-size:10px; letter-spacing:.1em; color:var(--accent); text-transform:uppercase; margin-bottom:20px; }
.outcome-h3 { font-family:var(--serif); font-size:19px; color:var(--text); margin-bottom:12px; line-height:1.3; }
.outcome-body { font-size:13.5px; color:var(--text2); line-height:1.65; }
.outcome-result { margin-top:24px; padding-top:20px; border-top:1px solid var(--border); font-family:var(--mono); font-size:11px; color:var(--text3); line-height:1.5; }
.outcome-result strong { color:var(--text2); font-weight:500; }

/* ─── PHILOSOPHY ─────────────────────────────────────────────── */
.philosophy { position:relative; overflow:hidden; border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:var(--bg2); padding:96px 52px; }
.phil-glow { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:600px; height:300px; background:radial-gradient(ellipse,rgba(0,217,139,0.06) 0%,transparent 70%); pointer-events:none; }
.phil-inner { position:relative; max-width:760px; margin:0 auto; text-align:center; }
.phil-body { font-size:16px; color:var(--text2); line-height:1.78; margin:24px auto 0; max-width:620px; text-align:left; }
.phil-body p { margin-bottom:16px; }
.phil-body p:last-child { margin-bottom:0; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-layout { display:grid; grid-template-columns:1fr 1.6fr; gap:80px; }
.faq-list { margin-top:8px; }
.faq-item { border-top:1px solid var(--border); padding:22px 0; cursor:pointer; }
.faq-item:last-child { border-bottom:1px solid var(--border); }
.faq-q { display:flex; align-items:center; justify-content:space-between; font-size:14.5px; font-weight:500; color:var(--text); gap:14px; user-select:none; }
.faq-plus { color:var(--text3); font-size:20px; transition:transform .2s,color .2s; flex-shrink:0; line-height:1; }
.faq-item.open .faq-plus { transform:rotate(45deg); color:var(--accent); }
.faq-a { font-size:13.5px; color:var(--text2); line-height:1.72; max-height:0; overflow:hidden; transition:max-height .3s ease,margin-top .2s; }
.faq-item.open .faq-a { max-height:220px; margin-top:14px; }

/* ─── CTA / CONTACT ──────────────────────────────────────────── */
.cta-section { position:relative; overflow:hidden; text-align:center; }
.cta-glow { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:700px; height:400px; background:radial-gradient(ellipse,rgba(0,217,139,0.07) 0%,transparent 70%); pointer-events:none; }
.cta-inner { position:relative; max-width:620px; margin:0 auto; }
.cta-h2 { font-family:var(--serif); font-size:clamp(34px,5vw,54px); line-height:1.1; letter-spacing:-0.02em; margin-bottom:18px; }
.cta-sub { font-size:16px; color:var(--text2); margin-bottom:40px; line-height:1.65; }
.cta-btn { font-family:var(--sans); font-size:14px; font-weight:500; padding:12px 22px; border-radius:9px; background:var(--accent); color:#000; border:none; cursor:pointer; transition:all .2s; white-space:nowrap; display:inline-flex; align-items:center; justify-content:center; }
.cta-btn:hover { background:#00ffaa; transform:translateY(-1px); }
.cta-note { font-size:12px; color:var(--text3); margin-top:14px; }

/* Contact form (dark theme) */
.contact-form { text-align:left; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:14px; }
.form-group label { font-size:12.5px; font-weight:500; color:var(--text2); font-family:var(--mono); letter-spacing:.04em; }
.form-group label span { color:var(--accent); }
.form-group input,
.form-group textarea {
  font-family:var(--sans); font-size:14px; padding:11px 14px;
  border-radius:9px; background:var(--surface); border:1px solid var(--border2);
  color:var(--text); outline:none; resize:vertical;
  transition:border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color:rgba(0,217,139,.4); }
.form-group input::placeholder,
.form-group textarea::placeholder { color:var(--text3); }

.form-success { text-align:center; padding:40px 24px; }
.form-success svg { width:52px; height:52px; color:var(--accent); margin:0 auto 16px; }
.form-success h3 { font-family:var(--serif); font-size:24px; color:var(--text); margin-bottom:8px; }
.form-success p { color:var(--text2); }

.form-error { background:rgba(239,68,68,0.1); border:1px solid rgba(239,68,68,0.3); border-radius:9px; color:#FCA5A5; font-size:13.5px; padding:12px 16px; margin-bottom:18px; text-align:left; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background:var(--bg2); border-top:1px solid var(--border); padding:52px 52px 36px; }
.footer-top { display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:48px; margin-bottom:44px; }
.footer-brand-text { font-size:13px; color:var(--text3); margin-top:12px; line-height:1.65; max-width:240px; }
.footer-col h4 { font-size:11.5px; font-weight:500; color:var(--text); margin-bottom:14px; letter-spacing:.04em; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:9px; }
.footer-col ul li a { font-size:13px; color:var(--text3); text-decoration:none; transition:color .2s; }
.footer-col ul li a:hover { color:var(--text); }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; padding-top:28px; border-top:1px solid var(--border); font-size:12.5px; color:var(--text3); }
.footer-mono { font-family:var(--mono); font-size:10.5px; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .approach-grid,
  .outcomes-grid { grid-template-columns:1fr 1fr; }
  .founder-grid { grid-template-columns:1fr; gap:40px; }
  .footer-top { grid-template-columns:1fr 1fr; gap:32px; }
}

@media (max-width: 900px) {
  .faq-layout { grid-template-columns:1fr; gap:40px; }
  .strip { flex-wrap:wrap; gap:20px; padding:20px 32px; }
  .strip-item { border-right:none; padding:0; flex:none; width:calc(50% - 10px); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display:none; }
  .nav-toggle { display:flex; }
  .nav-links.open {
    display:flex; flex-direction:column;
    position:fixed; top:var(--header-h); left:0; right:0;
    background:var(--bg); padding:20px 24px 32px;
    border-bottom:1px solid var(--border); gap:4px; z-index:99;
  }
  .nav-links.open li a { padding:12px 16px; font-size:16px; display:block; }
  .nav-toggle.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity:0; }
  .nav-toggle.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

  .hero { padding:calc(var(--header-h) + 52px) 24px 60px; }
  .hero-divider { flex-direction:column; gap:20px; }
  .hero-pillar { border-right:none; padding:0 !important; border-bottom:1px solid var(--border); padding-bottom:16px !important; }
  .hero-pillar:last-child { border-bottom:none; }

  section { padding:64px 24px; }
  .philosophy { padding:64px 24px; }
  .strip { padding:20px 24px; }
  .nav-inner { padding:0 24px; }

  .approach-grid,
  .outcomes-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; gap:28px; }
  .site-footer { padding:40px 24px 28px; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction:column; align-items:flex-start; }
  .strip-item { width:100%; }
}
