@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --forest:#0a1e17; --forest2:#0e2a1e; --green:#1b9e74; --greenmid:#157a5c;
  --greenlt:#e0f4ed; --amber:#c97d0c; --amberlt:#fdf0d8;
  --ink:#161614; --slate:#3e3e3b; --muted:#767670;
  --border:#e2e2dc; --bg:#f9f7f3; --white:#ffffff;
  --serif:'DM Serif Display',Georgia,serif;
  --sans:'DM Sans',system-ui,sans-serif;
  --maxw:1060px; --r:8px; --rl:14px;
}
body { font-family:var(--sans); font-size:16px; line-height:1.72; color:var(--ink); background:var(--bg); }
img  { display:block; max-width:100%; }
a    { color:var(--green); text-decoration:none; }
a:hover { text-decoration:underline; }

.wrap { max-width:var(--maxw); margin:0 auto; padding:0 28px; }
.sec       { padding:88px 0; }
.sec--dark { background:var(--forest); }
.sec--w    { background:var(--white); }
.sec--tint { background:var(--bg); }

.g2 { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:24px; }
.g3 { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:20px; }
.g4 { display:grid; grid-template-columns:repeat(auto-fit,minmax(190px,1fr)); gap:16px; }

.eye { display:block; font-size:10.5px; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--green); margin-bottom:16px; }
.eye--lt { color:#7bd4ac; }

h1 { font-family:var(--serif); font-size:clamp(34px,5.5vw,60px); font-weight:400; line-height:1.08; color:var(--ink); margin-bottom:28px; }
h2 { font-family:var(--serif); font-size:clamp(24px,3.8vw,38px); font-weight:400; line-height:1.15; color:var(--ink); margin-bottom:18px; }
h3 { font-family:var(--sans); font-size:18px; font-weight:600; line-height:1.35; color:var(--ink); margin-bottom:10px; }
h4 { font-family:var(--sans); font-size:12px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); margin-bottom:10px; }

.lead { font-size:19px; line-height:1.65; color:var(--slate); max-width:640px; margin-bottom:36px; }
p { color:var(--slate); margin-bottom:14px; }
p:last-child { margin-bottom:0; }

.sec--dark h1,.sec--dark h2,.sec--dark h3 { color:var(--white); }
.sec--dark p { color:rgba(255,255,255,.62); }

.btn { display:inline-block; padding:13px 27px; border-radius:var(--r); font-size:15px; font-weight:500; text-decoration:none; transition:opacity .16s,transform .16s; cursor:pointer; border:none; font-family:var(--sans); }
.btn:hover { opacity:.84; transform:translateY(-1px); text-decoration:none; }
.btn--g   { background:var(--green); color:#fff; }
.btn--w   { background:#fff; color:var(--forest); }
.btn--ghl { background:transparent; color:rgba(255,255,255,.8); border:1.5px solid rgba(255,255,255,.25); }
.btn--ghl:hover { border-color:rgba(255,255,255,.6); color:#fff; }
.btns { display:flex; flex-wrap:wrap; gap:12px; margin-top:10px; }

.tags { display:flex; flex-wrap:wrap; gap:6px; margin:16px 0 0; }
.tag { display:inline-block; font-size:11.5px; font-weight:500; padding:3px 11px; border-radius:20px; border:1px solid transparent; }
.tag--g { background:var(--greenlt); color:#07503d; border-color:#a8dfc8; }
.tag--a { background:var(--amberlt); color:#7a4800; border-color:#f0c47a; }
.tag--k { background:#f0ede8; color:#4a4a46; border-color:#ccc9c0; }

.card { background:var(--white); border:1px solid var(--border); border-radius:var(--rl); padding:28px 30px; }
.card--tg { border-top:3px solid var(--green); }
.card--ta { border-top:3px solid var(--amber); }
.div { border:none; border-top:1px solid var(--border); margin:28px 0; }

.pil { display:inline-block; font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; padding:4px 12px; border-radius:20px; margin-bottom:16px; }
.pil--g { background:var(--greenlt); color:#07503d; }
.pil--a { background:var(--amberlt); color:#7a4800; }

/* Stats dark */
.stats { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:1px; background:rgba(255,255,255,.08); border-radius:var(--rl); overflow:hidden; margin-top:48px; }
.stat-item { background:rgba(255,255,255,.04); padding:28px 24px; transition:background .2s; }
.stat-item:hover { background:rgba(27,158,116,.14); }
.stat-num { font-family:var(--serif); font-size:40px; color:var(--green); line-height:1; margin-bottom:8px; font-style:italic; }
.stat-label { font-size:13px; font-weight:500; color:rgba(255,255,255,.72); line-height:1.4; }
.stat-src { font-size:11px; color:rgba(255,255,255,.35); margin-top:4px; }

/* Risk cards */
.risk-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:16px; margin-top:40px; }
.risk-card { padding:26px 28px; background:var(--white); border:1px solid var(--border); border-radius:var(--rl); position:relative; }
.risk-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; border-radius:var(--rl) var(--rl) 0 0; }
.risk-card--k::before { background:var(--muted); }
.risk-card--a::before { background:var(--amber); }
.risk-card--r::before { background:#c03030; }
.risk-badge { display:inline-block; font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:3px 10px; border-radius:20px; margin-bottom:14px; }
.risk-badge--k { background:#f0ede8; color:var(--muted); }
.risk-badge--a { background:var(--amberlt); color:#7a4800; }
.risk-badge--r { background:#fdecea; color:#8b1a1a; }

/* Quote */
.quote-dark { border-left:3px solid var(--green); padding:16px 24px; margin:32px 0; background:rgba(255,255,255,.04); border-radius:0 var(--r) var(--r) 0; }
.quote-dark p { font-style:italic; font-size:16px; color:rgba(255,255,255,.75); margin-bottom:6px; }
.quote-dark cite { font-size:11px; color:var(--green); font-style:normal; font-weight:600; }
.quote-lt { border-left:3px solid var(--green); padding:16px 24px; margin:32px 0; background:var(--greenlt); border-radius:0 var(--r) var(--r) 0; }
.quote-lt p { font-style:italic; font-size:16px; color:var(--slate); margin-bottom:6px; }
.quote-lt cite { font-size:11px; color:var(--greenmid); font-style:normal; font-weight:600; }

/* Logic strip */
.logic-strip { display:flex; align-items:stretch; border:1px solid var(--border); border-radius:var(--rl); overflow:hidden; }
.logic-step { flex:1; padding:28px 24px; background:var(--white); }
.logic-step:not(:last-child) { border-right:1px solid var(--border); }
.logic-num { font-family:var(--serif); font-size:44px; line-height:1; font-style:italic; color:var(--greenlt); margin-bottom:10px; }
.logic-title { font-size:15px; font-weight:600; color:var(--ink); margin-bottom:8px; }
.logic-text  { font-size:13px; color:var(--muted); line-height:1.6; }

/* Standards band */
.std-band { margin-top:32px; padding:18px 22px; background:var(--greenlt); border-left:3px solid var(--green); border-radius:0 var(--r) var(--r) 0; }
.std-band p { font-size:13.5px; color:var(--slate); margin:0; line-height:1.65; }
.std-band strong { color:var(--ink); font-weight:600; }

/* Pillars */
.pillars-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:40px; }

/* Realisations */
.real-wrap { overflow-x:auto; padding:20px 0 28px; margin-top:30px; scrollbar-width:thin; scrollbar-color:var(--green) var(--border); -webkit-overflow-scrolling:touch; }
.real-wrap::-webkit-scrollbar { height:5px; display:block; }
.real-wrap::-webkit-scrollbar-track { background:var(--bg); border-radius:10px; }
.real-wrap::-webkit-scrollbar-thumb { background:var(--green); border-radius:10px; }
.real-track { display:flex; gap:20px; width:max-content; }
.real-card { flex:0 0 380px; padding:24px 26px; background:var(--white); border:1px solid var(--border); border-left:3px solid var(--green); border-radius:0 var(--rl) var(--rl) 0; }
.real-title { font-size:14px; font-weight:600; color:var(--ink); margin-bottom:10px; }

/* Ecosystem */
.eco-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:14px; margin-top:40px; }
.eco-card { display:flex; flex-direction:column; align-items:center; text-align:center; gap:10px; padding:22px 18px; background:var(--white); border:1px solid var(--border); border-radius:var(--rl); text-decoration:none; transition:border-color .16s,box-shadow .16s; }
.eco-card:hover { border-color:var(--green); box-shadow:0 2px 14px rgba(27,158,116,.1); text-decoration:none; }
.eco-card img { height:38px; width:auto; object-fit:contain; }
.eco-name { font-size:13px; font-weight:600; color:var(--ink); }
.eco-desc { font-size:12px; color:var(--muted); line-height:1.5; }

/* Founder */
.founder-grid { display:grid; grid-template-columns:1fr 210px; gap:52px; align-items:start; }
.founder-photo { width:210px; height:250px; border-radius:var(--rl); object-fit:cover; border:1px solid var(--border); }

/* Certif */
.certif-list { display:flex; flex-direction:column; gap:9px; margin-top:16px; }
.certif-item { display:flex; align-items:flex-start; gap:12px; padding:12px 15px; background:var(--bg); border:1px solid var(--border); border-radius:var(--r); }
.certif-dot  { flex-shrink:0; width:8px; height:8px; border-radius:50%; margin-top:6px; }
.certif-txt  { font-size:13px; color:var(--slate); line-height:1.5; }

/* CTA */
.cta-band { background:var(--forest); border-radius:var(--rl); padding:64px 52px; text-align:center; }
.cta-band h2 { color:var(--white); margin-bottom:14px; }
.cta-band .sub { color:rgba(255,255,255,.58); margin-bottom:32px; font-size:17px; max-width:500px; margin-left:auto; margin-right:auto; }

/* Contact */
.contact-box { background:var(--white); border:1px solid var(--border); border-radius:var(--rl); padding:36px; position:sticky; top:84px; text-align:center; }
.em-protect { display:inline-flex; align-items:center; font-size:17px; font-weight:500; cursor:pointer; color:var(--green); padding:12px 22px; background:var(--greenlt); border:1.5px solid rgba(27,158,116,.3); border-radius:var(--r); transition:background .16s,border-color .16s; margin-top:8px; }
.em-protect:hover { background:var(--white); border-color:var(--green); }
.sp { display:inline-block; width:0; overflow:hidden; height:0; user-select:none; }

/* Footnotes */
.fnt { margin-top:40px; padding-top:20px; border-top:1px solid var(--border); }
.fnt p { font-size:11px; color:var(--muted); line-height:1.6; margin-bottom:3px; }

/* Nav */
nav { position:sticky; top:0; z-index:200; background:rgba(249,247,243,.94); backdrop-filter:blur(12px); border-bottom:1px solid var(--border); }
.nav-in { display:flex; align-items:center; justify-content:space-between; height:62px; gap:16px; }
.logo { font-family:var(--serif); font-size:21px; color:var(--forest); text-decoration:none; }
.logo span { color:var(--green); }
.nav-r { display:flex; align-items:center; gap:2px; }
.nav-r a { font-size:13.5px; font-weight:500; color:var(--slate); padding:5px 11px; border-radius:6px; text-decoration:none; transition:background .14s,color .14s; }
.nav-r a:hover { background:var(--greenlt); color:var(--greenmid); }
.nav-r a.on { color:var(--greenmid); font-weight:600; }
.lang { display:flex; align-items:center; gap:3px; font-size:12.5px; font-weight:500; background:var(--white); border:1px solid var(--border); border-radius:20px; padding:4px 13px; color:var(--muted); text-decoration:none; transition:border-color .14s; margin-left:6px; }
.lang:hover { border-color:var(--green); color:var(--green); text-decoration:none; }
.lang .on { color:var(--greenmid); font-weight:700; }
.lang .sep { opacity:.25; margin:0 3px; }
.lang .off { color:var(--muted); }

/* Hero */
.hero { background:var(--forest); padding:96px 0 80px; position:relative; overflow:hidden; }
.hero::before { content:''; position:absolute; top:-100px; right:-140px; width:580px; height:580px; border-radius:50%; border:1px solid rgba(27,158,116,.1); pointer-events:none; }
.hero::after  { content:''; position:absolute; top:-10px; right:-30px; width:320px; height:320px; border-radius:50%; border:1px solid rgba(27,158,116,.07); pointer-events:none; }
.hero h1 { color:var(--white); }
.hero .lead { color:rgba(255,255,255,.66); }
.page-hero { background:var(--forest); padding:72px 0 56px; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; top:-80px; right:-120px; width:400px; height:400px; border-radius:50%; border:1px solid rgba(27,158,116,.1); pointer-events:none; }
.page-hero h1 { color:var(--white); font-size:clamp(28px,4vw,46px); }
.page-hero .lead { color:rgba(255,255,255,.65); margin-bottom:0; }

/* Footer */
footer { background:var(--forest); padding:36px 0; }
.foot-in { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px; }
.foot-logo { font-family:var(--serif); font-size:19px; color:var(--white); text-decoration:none; }
.foot-links { display:flex; gap:18px; }
.foot-links a { font-size:13px; color:rgba(255,255,255,.48); text-decoration:none; }
.foot-links a:hover { color:#7bd4ac; }
.foot-copy { font-size:12px; color:rgba(255,255,255,.32); }

@media (max-width:760px) {
  .sec { padding:60px 0; }
  .wrap { padding:0 18px; }
  .hero,.page-hero { padding:70px 0 58px; }
  .hero::before,.hero::after,.page-hero::before { display:none; }
  .pillars-grid { grid-template-columns:1fr; }
  .founder-grid { grid-template-columns:1fr; }
  .cta-band { padding:40px 22px; }
  .logic-strip { flex-direction:column; }
  .logic-step:not(:last-child) { border-right:none; border-bottom:1px solid var(--border); }
  .nav-r a:not(.on):not(.lang) { display:none; }
  .nav-r a.lang { display:flex; }
  .real-card { flex:0 0 300px; }
}
