:root{
  --bg:#f5f8f6;
  --surface:#ffffff;
  --surface-2:#eaf1ed;
  --ink:#17312b;
  --muted:#5e746d;
  --line:#d9e5df;
  --accent:#2f6b5d;
  --accent-dark:#204e44;
  --accent-soft:#cfe3da;
  --warm:#e8d7b6;
  --shadow:0 18px 45px rgba(26,58,50,.10);
  --radius:22px;
  --container:1160px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.65;
}
a{color:inherit}
img{max-width:100%}
h1,h2,h3{
  font-family:Manrope,Inter,sans-serif;
  letter-spacing:-.03em;
  line-height:1.12;
  margin-top:0;
}
h1{font-size:clamp(2.7rem,6vw,5.7rem);max-width:920px;margin-bottom:24px}
h2{font-size:clamp(2rem,4vw,3.35rem);margin-bottom:20px}
h3{font-size:1.2rem}
p{margin-top:0}
.container{width:min(calc(100% - 40px),var(--container));margin-inline:auto}
.narrow{max-width:820px}
.section{padding:100px 0}
.alt{background:var(--surface)}
.skip-link{
  position:absolute;left:-9999px;top:10px;background:#fff;padding:10px 14px;z-index:999;
}
.skip-link:focus{left:10px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(245,248,246,.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(217,229,223,.85);
}
.nav-wrap{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:30px}
.brand{display:inline-flex;align-items:center;gap:13px;text-decoration:none}
.brand-mark{width:42px;height:42px;display:grid;place-items:center;position:relative;border-radius:50%;background:var(--ink)}
.brand-mark span{position:absolute;border:1.5px solid rgba(255,255,255,.75);border-radius:50%}
.brand-mark span:nth-child(1){width:24px;height:12px;transform:rotate(25deg)}
.brand-mark span:nth-child(2){width:24px;height:12px;transform:rotate(-25deg)}
.brand-mark span:nth-child(3){width:10px;height:10px;background:var(--warm);border:0}
.brand-text{display:flex;flex-direction:column;line-height:1.1}
.brand-text strong{font-family:Manrope,sans-serif;font-size:1.2rem;letter-spacing:.04em}
.brand-text small{font-size:.72rem;color:var(--muted);margin-top:4px}
.main-nav{display:flex;align-items:center;gap:28px}
.main-nav a{text-decoration:none;font-weight:600;font-size:.95rem}
.main-nav a:hover{color:var(--accent)}
.menu-button{display:none;border:0;background:none;padding:8px}
.menu-button span:not(.sr-only){display:block;width:24px;height:2px;background:var(--ink);margin:5px}

.hero{padding:85px 0 105px;overflow:hidden}
.hero-grid{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(300px,.75fr);gap:70px;align-items:center}
.eyebrow,.section-kicker{
  font-size:.78rem;font-weight:800;letter-spacing:.16em;text-transform:uppercase;color:var(--accent);margin-bottom:18px
}
.lead,.section-lead{font-size:1.16rem;color:var(--muted);max-width:780px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin:32px 0}
.button{
  display:inline-flex;align-items:center;justify-content:center;min-height:52px;padding:0 22px;border-radius:999px;
  text-decoration:none;font-weight:700;border:1px solid var(--ink);transition:.2s ease
}
.button.primary{background:var(--ink);color:#fff}
.button.primary:hover{background:var(--accent-dark);transform:translateY(-1px)}
.button.secondary{background:transparent}
.button.secondary:hover{background:var(--surface)}
.trust-row{display:flex;flex-wrap:wrap;gap:12px 22px;color:var(--muted);font-size:.9rem;font-weight:600}

.hero-card{
  min-height:470px;background:linear-gradient(150deg,var(--accent),var(--ink));border-radius:34px;color:#fff;
  padding:36px;display:flex;flex-direction:column;justify-content:space-between;box-shadow:var(--shadow);position:relative;overflow:hidden
}
.hero-card:before{
  content:"";position:absolute;width:260px;height:260px;border-radius:50%;background:rgba(255,255,255,.06);right:-70px;top:-70px
}
.hero-card p{font-size:1.1rem;max-width:340px;position:relative;z-index:2;margin-bottom:0}
.hero-symbol{width:230px;height:230px;position:relative;display:grid;place-items:center;margin:20px auto}
.hero-symbol-core{
  width:88px;height:88px;border-radius:50%;display:grid;place-items:center;background:var(--warm);color:var(--ink);
  font-family:Manrope,sans-serif;font-weight:800;font-size:1.35rem;position:relative;z-index:3
}
.orbit{position:absolute;border:1.5px solid rgba(255,255,255,.55);border-radius:50%}
.orbit.one{width:210px;height:80px;transform:rotate(15deg)}
.orbit.two{width:210px;height:80px;transform:rotate(75deg)}
.orbit.three{width:210px;height:80px;transform:rotate(135deg)}

.intro{text-align:center}
.intro .section-kicker{justify-content:center}
.section-heading{display:flex;justify-content:space-between;align-items:end;gap:50px;margin-bottom:42px}
.section-heading>div{max-width:720px}
.section-heading>p{max-width:430px;color:var(--muted);margin-bottom:7px}

.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{
  background:var(--bg);border:1px solid var(--line);border-radius:var(--radius);padding:28px;min-height:260px;
  transition:.2s ease
}
.card:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(26,58,50,.07)}
.card .icon{
  width:46px;height:46px;border-radius:14px;display:grid;place-items:center;background:var(--surface-2);
  color:var(--accent-dark);font-family:Manrope,sans-serif;font-weight:800;margin-bottom:28px
}
.card p{color:var(--muted);margin-bottom:0}

.split{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start}
.principles{border-top:1px solid var(--line)}
.principle{display:grid;grid-template-columns:52px 1fr;gap:18px;padding:24px 0;border-bottom:1px solid var(--line)}
.principle>span{font-family:Manrope,sans-serif;font-weight:800;color:var(--accent)}
.principle h3{margin-bottom:8px}
.principle p{color:var(--muted);margin-bottom:0}

.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.steps article{padding:26px;border-top:3px solid var(--accent);background:var(--bg)}
.steps article>span{display:block;font-family:Manrope,sans-serif;font-size:2.8rem;font-weight:800;color:var(--accent-soft);margin-bottom:30px}
.steps p{color:var(--muted);margin-bottom:0}

.contact-section{background:var(--ink);color:#fff}
.contact-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:70px;align-items:start}
.contact-section h2{max-width:620px}
.contact-section>div>div:first-child>p:not(.section-kicker){color:#c7d5d0;max-width:560px}
.section-kicker.light{color:var(--warm)}
.contact-card{background:#fff;color:var(--ink);border-radius:var(--radius);padding:30px;box-shadow:var(--shadow)}
.contact-card>div{padding:17px 0;border-bottom:1px solid var(--line)}
.contact-card>div:last-child{border-bottom:0}
.contact-card .label{display:block;font-size:.74rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);margin-bottom:5px}
.contact-card a{text-decoration:none;font-weight:700}
.contact-card p{margin-bottom:0}

.legal-note{padding:65px 0}
.legal-note h2{font-size:1.5rem}
.legal-note p{color:var(--muted);margin-bottom:0}

.site-footer{background:#10251f;color:#fff;padding:55px 0 28px}
.footer-grid{display:flex;justify-content:space-between;gap:40px;align-items:flex-start}
.footer-brand .brand-text small{color:#9fb2ab}
.site-footer p{color:#9fb2ab;margin:18px 0 0}
.footer-links{display:flex;gap:24px;flex-wrap:wrap}
.footer-links a{text-decoration:none;color:#dbe6e2}
.footer-bottom{
  margin-top:45px;padding-top:22px;border-top:1px solid rgba(255,255,255,.12);
  display:flex;justify-content:space-between;gap:20px;color:#8fa49d;font-size:.82rem
}

.legal-page{padding:80px 0 120px}
.legal-page .legal-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:40px;max-width:850px}
.legal-page h1{font-size:clamp(2.4rem,5vw,4.2rem)}
.legal-page h2{font-size:1.35rem;margin-top:35px}
.placeholder{background:#fff4d8;border:1px solid #ead19a;padding:14px 16px;border-radius:12px;color:#6b531f}

@media (max-width:900px){
  .hero-grid,.split,.contact-grid{grid-template-columns:1fr}
  .hero-card{min-height:380px}
  .cards{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr)}
  .section-heading{display:block}
  .section-heading>p{margin-top:16px}
  .menu-button{display:block}
  .main-nav{
    position:absolute;left:20px;right:20px;top:76px;background:#fff;border:1px solid var(--line);border-radius:18px;
    box-shadow:var(--shadow);padding:18px;display:none;flex-direction:column;align-items:stretch;gap:0
  }
  .main-nav.open{display:flex}
  .main-nav a{padding:12px}
}
@media (max-width:620px){
  .container{width:min(calc(100% - 28px),var(--container))}
  .section{padding:72px 0}
  .hero{padding:58px 0 75px}
  .hero-grid{gap:40px}
  h1{font-size:clamp(2.45rem,13vw,4rem)}
  .cards,.steps{grid-template-columns:1fr}
  .hero-card{padding:25px}
  .hero-symbol{transform:scale(.85);margin:0 auto}
  .footer-grid,.footer-bottom{flex-direction:column}
  .brand-text small{max-width:180px}
  .legal-page .legal-card{padding:24px}
}
