/* ============================================================
   PRAXISY — Design System
   Istituzionale, luminoso, svizzero-moderno. Verde di accento.
   ============================================================ */

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

:root {
  /* Surfaces */
  --bg:        #F5F7F5;
  --surface:   #FFFFFF;
  --surface-2: #FAFBFA;
  --ink-on-green: #FFFFFF;

  /* Ink */
  --ink:   #121A15;
  --ink-2: #3C463F;
  --ink-3: #6C766F;
  --ink-4: #9AA29C;

  /* Lines */
  --line:   #E2E7E3;
  --line-2: #ECF0ED;

  /* Green system */
  --green:        #0E7A47;
  --green-700:    #0A5C36;
  --green-900:    #06301D;
  --green-bright: #14A165;
  --green-tint:   #E9F4EE;
  --green-tint-2: #F1F8F3;
  --green-glow:   rgba(20,161,101,0.16);

  /* Functional */
  --neg:      #B0492F;
  --neg-tint: #FBEEEA;
  --warn:     #9A6B12;

  /* Type */
  --sans: "Helvetica Neue", Helvetica, Arial, "Segoe UI", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Geometry */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 30px;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 64px);

  /* Motion */
  --ease: cubic-bezier(.22,.68,.16,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
::selection { background: var(--green); color: #fff; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 920px; }
section { position: relative; }
.section-pad { padding-block: clamp(72px, 10vw, 150px); }
.divider { border: 0; border-top: 1px solid var(--line); }

/* ---------- Type ---------- */
.display {
  font-size: clamp(2.7rem, 6.2vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 700;
}
h1, h2, h3 { font-weight: 700; letter-spacing: -0.028em; line-height: 1.04; text-wrap: balance; }
.h-section { font-size: clamp(2rem, 4.2vw, 3.5rem); letter-spacing: -0.032em; }
.h-lg { font-size: clamp(1.6rem, 2.8vw, 2.4rem); }
.h-md { font-size: clamp(1.25rem, 1.8vw, 1.6rem); letter-spacing: -0.02em; }
.lead {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  line-height: 1.5; color: var(--ink-2);
  letter-spacing: -0.014em; font-weight: 400; text-wrap: pretty;
}
.muted { color: var(--ink-3); }
.green-text { color: var(--green); }
em { font-style: normal; color: var(--green); }
strong { font-weight: 600; color: var(--ink); }

/* Eyebrow / mono label */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.55em;
}
.eyebrow.on-dark { color: var(--green-bright); }
.mono { font-family: var(--mono); }
.kicker {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-weight: 600; font-size: 0.96rem; letter-spacing: -0.01em;
  padding: 0.85em 1.4em; border-radius: 100px;
  transition: transform .35s var(--ease), background .25s, box-shadow .35s var(--ease), color .25s;
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: var(--green); color: #fff;
  box-shadow: 0 1px 1px rgba(6,48,29,.18), 0 8px 22px -10px var(--green-glow);
}
.btn-primary:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(14,122,71,.5); }
.btn-ghost { background: var(--surface); color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink-3); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-lg { font-size: 1.02rem; padding: 1.05em 1.7em; }

/* ---------- Top bar (language + nav) ---------- */
.topbar { position: fixed; inset: 0 0 auto 0; z-index: 100; }

/* ---------- Language / country bar ---------- */
.langbar { background: var(--green-900); color: #fff; border-bottom: 1px solid rgba(255,255,255,.08); }
.langbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; padding-block: 6px; }
.langbar-label { font-family: var(--mono); font-size: 0.66rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.72); white-space: nowrap; }
.lang-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.lang-pill {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: .04em;
  color: rgba(255,255,255,.78); padding: 5px 11px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.04);
  transition: background .25s var(--ease), color .25s, border-color .25s, transform .25s var(--ease);
  line-height: 1;
}
.lang-pill b { font-weight: 600; }
.lang-pill:hover { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); transform: translateY(-1px); }
.lang-pill.active { background: var(--green-bright); color: #062c1a; border-color: transparent; font-weight: 600; }
.lang-pill.eu { border-color: rgba(20,161,101,.55); color: var(--green-bright); }
.lang-pill.eu.active { color: #062c1a; }
@media (max-width: 680px) {
  .langbar-label { display: none; }
  .langbar-inner { justify-content: center; }
  .lang-pills { justify-content: center; }
  .lang-pill { padding: 5px 9px; font-size: 0.72rem; }
}

/* Language switch fade */
[data-i18n] { transition: opacity .18s ease; }
.lang-switching [data-i18n] { opacity: 0; }

/* ---------- Nav ---------- */
.nav {
  position: relative; z-index: 1;
  transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(245,247,245,0.82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 0.6em; font-weight: 700; letter-spacing: -0.03em; font-size: 1.18rem; }
.brand .mark {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px;
  background: var(--green); color: #fff; font-size: 0.92rem;
  box-shadow: 0 4px 12px -4px var(--green-glow);
}
.brand .mark.logo { background: #F5EFE2; overflow: hidden; box-shadow: 0 2px 8px -4px rgba(18,26,21,.25); }
.brand .mark.logo img { width: 100%; height: 100%; object-fit: cover; }

/* Brand lockup (founder) */
.brand-lockup { display: flex; align-items: center; gap: 16px; padding: 20px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); }
.brand-lockup .logo-tile { width: 72px; height: 72px; border-radius: 18px; background: #F5EFE2; overflow: hidden; flex: none; box-shadow: 0 8px 20px -10px rgba(18,26,21,.3); }
.brand-lockup .logo-tile img { width: 100%; height: 100%; object-fit: cover; }
.brand-lockup h4 { font-size: 1.2rem; letter-spacing: -0.03em; }
.brand-lockup .k { font-family: var(--mono); font-size: 0.64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; }

/* Project / press cards */
.proj-media { aspect-ratio: 16/10; border-radius: var(--r) var(--r) 0 0; overflow: hidden; background:
  repeating-linear-gradient(135deg, var(--green-tint-2) 0 16px, var(--surface) 16px 32px);
  display: grid; place-items: center; }
.proj-media .logo-emblem { width: 96px; height: 96px; border-radius: 24px; background: #F5EFE2; overflow: hidden; box-shadow: 0 14px 30px -14px rgba(18,26,21,.35); }
.proj-media .logo-emblem img { width: 100%; height: 100%; object-fit: cover; }
.press-card { display: block; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 22px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s; }
.press-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -28px rgba(18,26,21,.3); }
.press-card .src-tag { font-family: var(--mono); font-size: 0.64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.press-card h5 { font-size: 1.04rem; letter-spacing: -0.02em; margin: 10px 0 8px; line-height: 1.25; }
.press-card p { font-size: 0.88rem; color: var(--ink-3); line-height: 1.5; }
.press-card .read { display: inline-flex; align-items: center; gap: .4em; margin-top: 14px; font-size: 0.84rem; font-weight: 600; color: var(--green-700); }
.brand small { font-family: var(--mono); font-weight: 400; font-size: 0.62rem; letter-spacing: 0.12em; color: var(--ink-3); text-transform: uppercase; }

/* Founder intro quote */
.founder-intro { border-left: 3px solid var(--green); padding: 2px 0 2px 22px; margin-bottom: 22px;
  font-size: clamp(1.06rem, 1.4vw, 1.3rem); line-height: 1.5; color: var(--ink-2); letter-spacing: -0.012em; text-wrap: pretty; }
.founder-intro strong { color: var(--green); font-weight: 600; }

/* Philosophy banner */
.philosophy { background: var(--green-900); color: #fff; border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 76px) clamp(24px, 4vw, 56px); text-align: center; }
.philosophy .eyebrow { color: var(--green-bright); justify-content: center; }
.philosophy .big { color: #fff; margin-top: 16px; }
.philosophy .big em { color: var(--green-bright); }
.philosophy .tr { margin-top: 12px; font-family: var(--mono); font-size: 0.82rem; letter-spacing: .04em; color: rgba(255,255,255,.62); }
.philosophy .why { margin-top: 26px; max-width: 60ch; margin-inline: auto; color: rgba(255,255,255,.84); }

/* Porty Clothes — other project */
.proj-lockup { display: flex; align-items: center; gap: 16px; }
.proj-lockup .em { width: 60px; height: 60px; border-radius: 16px; overflow: hidden; flex: none;
  background: #F5EFE2; box-shadow: 0 12px 26px -14px rgba(18,26,21,.4); }
.proj-lockup .em img { width: 100%; height: 100%; object-fit: cover; }
.proj-lockup h3 { font-size: 1.5rem; letter-spacing: -0.03em; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.nav-links a.nl {
  font-size: 0.94rem; font-weight: 500; color: var(--ink-2); position: relative; padding: 4px 0;
  transition: color .2s;
}
.nav-links a.nl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px;
  background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav-links a.nl:hover { color: var(--ink); }
.nav-links a.nl:hover::after, .nav-links a.nl.active::after { transform: scaleX(1); }
.nav-links a.nl.active { color: var(--ink); }
.nav-cta { display: inline-flex; align-items: center; gap: 1.2rem; }
.nav-toggle { display: none; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding-top: clamp(120px, 16vh, 180px); padding-bottom: clamp(60px, 8vw, 110px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
.badge {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em;
  padding: 0.5em 0.9em; border: 1px solid var(--line); border-radius: 100px;
  background: var(--surface); color: var(--ink-2); white-space: nowrap;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 0 var(--green-glow); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(20,161,101,.4);} 70%{ box-shadow: 0 0 0 8px rgba(20,161,101,0);} 100%{ box-shadow: 0 0 0 0 rgba(20,161,101,0);} }
.hero h1 { margin-top: 0.6em; }
.hero .lead { margin-top: 1.1em; max-width: 30ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2em; align-items: center; }
.hero-note { margin-top: 1.1em; font-size: 0.85rem; color: var(--ink-3); display: flex; align-items: center; gap: 0.5em; }

/* Background grid texture */
.grid-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(var(--line-2) 1px, transparent 1px), linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 0%, transparent 75%);
  opacity: .7;
}
.grid-bg > * { position: relative; z-index: 1; }

/* ---------- Dashboard mockup ---------- */
.mock {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: 0 1px 1px rgba(18,26,21,.03), 0 30px 60px -36px rgba(18,26,21,.28), 0 8px 18px -14px rgba(18,26,21,.18);
  overflow: hidden;
}
.mock-bar { display: flex; align-items: center; gap: 0.6em; padding: 12px 16px; border-bottom: 1px solid var(--line-2); background: var(--surface-2); }
.mock-bar .dots { display: flex; gap: 6px; }
.mock-bar .dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.mock-bar .url { font-family: var(--mono); font-size: 0.7rem; color: var(--ink-3); margin-left: 6px; }
.mock-body { display: grid; grid-template-columns: 132px 1fr; min-height: 360px; }
@media (max-width: 520px) { .mock-body { grid-template-columns: 1fr; } .mock-side { display: none; } }
.mock-side { border-right: 1px solid var(--line-2); padding: 14px 10px; background: var(--surface-2); }
.mock-side .grp { font-family: var(--mono); font-size: 0.58rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-4); margin: 12px 8px 6px; }
.mock-side .item { display: flex; align-items: center; gap: 0.5em; font-size: 0.78rem; color: var(--ink-2); padding: 7px 8px; border-radius: 8px; }
.mock-side .item.on { background: var(--green-tint); color: var(--green-700); font-weight: 600; }
.mock-side .item .badge-n { margin-left: auto; font-family: var(--mono); font-size: 0.62rem; background: var(--green); color: #fff; border-radius: 100px; padding: 1px 6px; }
.mock-main { padding: 18px; }
.mock-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mock-h h4 { font-size: 0.98rem; }
.mock-h .tag { font-family: var(--mono); font-size: 0.6rem; color: var(--ink-3); border: 1px solid var(--line); border-radius: 100px; padding: 3px 8px; }
.mock-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mock-card { border: 1px solid var(--line-2); border-radius: var(--r-sm); padding: 12px; background: var(--surface); }
.mock-card .lbl { font-size: 0.68rem; color: var(--ink-3); display: flex; align-items: center; gap: .4em; }
.mock-card .num { font-size: 1.7rem; font-weight: 700; letter-spacing: -0.03em; margin-top: 4px; }
.mock-card .num small { font-size: 0.7rem; font-weight: 500; color: var(--green); letter-spacing: 0; }
.mock-insight { margin-top: 10px; border: 1px solid var(--green-tint); background: var(--green-tint-2); border-radius: var(--r-sm); padding: 12px; }
.mock-insight .lbl { font-family: var(--mono); font-size: 0.58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--green); display:flex; align-items:center; gap:.5em; }
.mock-insight p { font-size: 0.82rem; color: var(--ink-2); margin-top: 6px; line-height: 1.5; }
.mock-bars { margin-top: 10px; display: flex; flex-direction: column; gap: 8px; }
.mock-progress { height: 8px; border-radius: 100px; background: var(--line-2); overflow: hidden; }
.mock-progress i { display: block; height: 100%; background: linear-gradient(90deg, var(--green), var(--green-bright)); border-radius: 100px; width: 0; transition: width 1.4s var(--ease); }
.mock-row { display:flex; align-items:center; justify-content:space-between; font-size:0.72rem; color:var(--ink-2); }
.mock-ticket { margin-top:10px; display:flex; align-items:center; gap:.6em; font-size:0.78rem; border:1px solid var(--line-2); border-radius:var(--r-sm); padding:10px 12px; }
.mock-ticket .pin { width:26px;height:26px;border-radius:7px;background:var(--green-tint);color:var(--green);display:grid;place-items:center;font-size:.8rem; }
.mock-ticket .st { margin-left:auto; font-family:var(--mono); font-size:.6rem; color:var(--green-700); background:var(--green-tint); padding:2px 7px; border-radius:100px; }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat { padding: clamp(22px, 3vw, 40px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats .stat:nth-child(4n) { border-right: 0; }
@media (max-width: 760px) { .stats .stat:nth-child(2n) { border-right: 0; } .stats .stat:nth-child(odd) { border-right: 1px solid var(--line); } }
.stat .glyph { color: var(--green); font-size: 0.9rem; }
.stat .big { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1; margin: 0.4em 0 0.3em; }
.stat .cap { font-size: 0.88rem; color: var(--ink-3); line-height: 1.35; }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--line); background: var(--surface); overflow: hidden; padding-block: 16px; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: scroll-x 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; gap: 0.55em; padding-inline: clamp(20px, 3vw, 44px); font-weight: 600; font-size: 1.02rem; letter-spacing: -0.01em; color: var(--ink-2); white-space: nowrap; }
.marquee-item .g { color: var(--green); }
.marquee-item::after { content: "·"; margin-left: clamp(20px,3vw,44px); color: var(--line); }

/* ---------- Generic card ---------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 38px); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.card.hover:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(18,26,21,.28); border-color: var(--line); }
.icn { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--green-tint); color: var(--green-700); font-size: 1.15rem; }
.icn.ink { background: var(--ink); color: #fff; }

/* ---------- Before / After ---------- */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 820px) { .ba-grid { grid-template-columns: 1fr; } }
.ba { border-radius: var(--r-lg); padding: clamp(24px,3vw,36px); border: 1px solid var(--line); }
.ba.bad { background: var(--surface); }
.ba.good { background: var(--green-900); color: #fff; border-color: transparent; }
.ba.good .ba-head, .ba.good .li-t { color: #fff; }
.ba.good .li-d { color: rgba(255,255,255,.7); }
.ba.good .li-i { background: rgba(255,255,255,.12); color: #fff; }
.ba-head { font-family: var(--mono); font-size: 0.72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); display:flex; align-items:center; gap:.5em; margin-bottom: 18px; }
.ba-list { display: flex; flex-direction: column; gap: 16px; }
.ba-li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start; }
.li-i { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; font-size: 0.8rem; background: var(--neg-tint); color: var(--neg); margin-top: 2px; }
.ba.good .li-i { background: var(--green-bright); color: #062c1a; }
.li-t { font-weight: 600; font-size: 1rem; }
.li-d { font-size: 0.88rem; color: var(--ink-3); margin-top: 2px; line-height: 1.45; }

/* ---------- Pillars ---------- */
.pillar { border-radius: var(--r-xl); padding: clamp(28px, 4vw, 52px); overflow: hidden; position: relative; }
.pillar.light { background: var(--surface); border: 1px solid var(--line); }
.pillar.dark { background: var(--ink); color: #fff; }
.pillar.dark .muted { color: rgba(255,255,255,.6); }
.pl-list { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.pl-li { display: flex; gap: 12px; align-items: start; font-size: 0.98rem; line-height: 1.4; }
.pl-li .g { color: var(--green); flex: none; width: 1.4em; }
.pillar.dark .pl-li .g { color: var(--green-bright); }

/* ---------- Feature blocks (Prodotto) ---------- */
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,76px); align-items: center; }
.feat.flip .feat-media { order: -1; }
@media (max-width: 880px) { .feat { grid-template-columns: 1fr; gap: 36px; } .feat.flip .feat-media { order: 0; } }
.feat-num { font-family: var(--mono); font-size: 0.72rem; letter-spacing: .14em; color: var(--green); text-transform: uppercase; }
.feat h3 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); margin: 0.4em 0 0.5em; letter-spacing: -0.03em; }
.feat-list { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.feat-li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; font-size: 0.96rem; color: var(--ink-2); line-height: 1.45; }
.feat-li .g { color: var(--green); font-size: 1.05rem; }
.feat-stat { margin-top: 26px; display: inline-flex; align-items: baseline; gap: 0.6em; }
.feat-stat .n { font-size: 2.4rem; font-weight: 700; letter-spacing: -0.04em; color: var(--green); }
.feat-stat .t { font-size: 0.86rem; color: var(--ink-3); line-height: 1.3; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; } }
.price-card { text-align: left; }
.price-card .ic { font-size: 1.8rem; }
.price-card .k { font-family: var(--mono); font-size: 0.66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; }

/* ---------- Tables ---------- */
.tbl-wrap { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); }
table.data { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
table.data th, table.data td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line-2); vertical-align: top; }
table.data thead th { font-family: var(--mono); font-size: 0.64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); background: var(--surface-2); font-weight: 500; }
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr { transition: background .2s; }
table.data tbody tr:hover { background: var(--green-tint-2); }
table.data .cost { color: var(--green-700); font-weight: 600; }
table.data .src { font-family: var(--mono); font-size: 0.7rem; color: var(--ink-4); }
@media (max-width: 720px) { .tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; } table.data { min-width: 620px; } }

/* ---------- MOAT grid ---------- */
.moat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
@media (max-width: 900px) { .moat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .moat-grid { grid-template-columns: 1fr; } }
.moat { background: var(--surface); padding: clamp(22px,2.6vw,32px); transition: background .3s; }
.moat:hover { background: var(--green-tint-2); }
.moat .n { font-family: var(--mono); font-size: 0.66rem; letter-spacing: .14em; color: var(--green); text-transform: uppercase; }
.moat h4 { font-size: 1.1rem; margin: 14px 0 8px; letter-spacing: -0.02em; }
.moat p { font-size: 0.88rem; color: var(--ink-3); line-height: 1.5; }

/* ---------- Roadmap ---------- */
.road { display: flex; flex-direction: column; gap: 0; }
.phase { display: grid; grid-template-columns: 200px 1fr; gap: clamp(20px,4vw,56px); padding: clamp(26px,3vw,40px) 0; border-top: 1px solid var(--line); position: relative; }
@media (max-width: 760px) { .phase { grid-template-columns: 1fr; gap: 14px; } }
.phase-meta .ph { font-family: var(--mono); font-weight: 600; font-size: 0.8rem; letter-spacing: .08em; color: var(--green); }
.phase-meta .when { font-size: 0.84rem; color: var(--ink-3); margin-top: 4px; }
.phase h4 { font-size: 1.35rem; letter-spacing: -0.02em; }
.phase p { color: var(--ink-2); margin-top: 10px; font-size: 0.96rem; line-height: 1.55; }
.phase .kpi { margin-top: 14px; font-family: var(--mono); font-size: 0.74rem; color: var(--green-700); background: var(--green-tint); display: inline-block; padding: 7px 12px; border-radius: 100px; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; font-weight: 600; font-size: clamp(1.02rem,1.5vw,1.2rem); letter-spacing: -0.02em; transition: color .2s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--green); }
.faq summary .pm { flex: none; width: 26px; height: 26px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; font-size: 1rem; transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s; }
.faq details[open] summary .pm { transform: rotate(45deg); background: var(--green); color: #fff; border-color: var(--green); }
.faq .ans { padding: 0 4px 26px; color: var(--ink-2); font-size: 1rem; line-height: 1.6; max-width: 70ch; }

/* ---------- Big stat trio ---------- */
.bigstats { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 820px) { .bigstats { grid-template-columns: 1fr; } }
.bigstat { border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px,3vw,38px); background: var(--surface); }
.bigstat .n { font-size: clamp(2.6rem,5vw,3.8rem); font-weight: 700; letter-spacing: -0.04em; color: var(--green); line-height: 1; }
.bigstat h4 { margin: 0.5em 0 0.4em; font-size: 1.1rem; }
.bigstat p { font-size: 0.9rem; color: var(--ink-3); line-height: 1.5; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--green-900); color: #fff; border-radius: var(--r-xl); padding: clamp(40px,6vw,84px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 50% -10%, rgba(20,161,101,.45), transparent 60%); pointer-events:none; }
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(2rem,4.4vw,3.6rem); letter-spacing: -0.035em; }
.cta-band em { color: var(--green-bright); }
.cta-band .lead { color: rgba(255,255,255,.72); margin: 1em auto 0; max-width: 52ch; }
.cta-band .hero-cta { justify-content: center; }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.cta-band .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.cta-band .btn-primary { background: #fff; color: var(--green-900); }
.cta-band .btn-primary:hover { background: var(--green-tint); }

/* ---------- Founder ---------- */
.founder-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px,5vw,64px); align-items: start; }
@media (max-width: 880px) { .founder-grid { grid-template-columns: 1fr; } }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-size: 0.84rem; padding: 8px 14px; border: 1px solid var(--line); border-radius: 100px; background: var(--surface); color: var(--ink-2); transition: border-color .25s, color .25s; }
.chip:hover { border-color: var(--green); color: var(--green-700); }
.chip.solid { background: var(--green-tint); border-color: transparent; color: var(--green-700); font-weight: 600; }
.cert { display: grid; grid-template-columns: 46px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line-2); }
.cert:last-child { border-bottom: 0; }
.cert .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--green-tint); color: var(--green-700); display: grid; place-items: center; font-size: 1.2rem; }
.cert h5 { font-size: 1rem; }
.cert .meta { font-size: 0.84rem; color: var(--ink-3); margin-top: 2px; }
.cert .skills { font-family: var(--mono); font-size: 0.68rem; color: var(--ink-4); margin-top: 6px; letter-spacing: .02em; }

/* Placeholder portrait */
.portrait {
  aspect-ratio: 4/5; border-radius: var(--r-lg); border: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, var(--green-tint-2) 0 14px, var(--surface) 14px 28px);
  display: grid; place-items: center; text-align: center; color: var(--ink-4);
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: .08em; position: relative;
}
.portrait span { background: var(--surface); border: 1px solid var(--line); padding: 6px 12px; border-radius: 100px; }

/* ---------- Footer ---------- */
.foot { background: var(--ink); color: rgba(255,255,255,.7); padding-block: clamp(48px,6vw,80px); }
.foot a { color: rgba(255,255,255,.7); transition: color .2s; }
.foot a:hover { color: #fff; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 760px) { .foot-top { grid-template-columns: 1fr 1fr; } }
.foot .brand { color: #fff; }
.foot .brand .mark { background: var(--green-bright); color: #06301d; }
.foot .col h6 { font-family: var(--mono); font-size: 0.66rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 14px; }
.foot .col a { display: block; font-size: 0.92rem; margin-bottom: 9px; }
.foot-bot { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,.45); font-family: var(--mono); letter-spacing: .04em; }

/* ---------- Section heading helper ---------- */
.sec-head { max-width: 760px; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head h2 { margin-bottom: 18px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Utility */
.center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 48px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 760px) { .grid-2 { grid-template-columns: 1fr; } }
.flex { display: flex; } .ac { align-items: center; } .gap { gap: 12px; } .wrap-flex { flex-wrap: wrap; }
