:root {
  --bg: #07090d;
  --bg-soft: #0d1118;
  --panel: rgba(255,255,255,.045);
  --panel-strong: rgba(255,255,255,.075);
  --line: rgba(255,255,255,.12);
  --line-strong: rgba(255,255,255,.22);
  --text: #f6f8fb;
  --muted: #aab3c2;
  --muted-2: #778194;
  --accent: #e72f3c;
  --accent-2: #ff5a64;
  --success: #8ed7b2;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 22px 80px rgba(0,0,0,.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 4%, rgba(231,47,60,.15), transparent 28rem),
    radial-gradient(circle at 10% 55%, rgba(68,84,120,.12), transparent 32rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
::selection { background: rgba(231,47,60,.35); color: #fff; }
:focus-visible { outline: 3px solid rgba(255,90,100,.8); outline-offset: 3px; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 1rem;
  top: -5rem;
  padding: .8rem 1rem;
  border-radius: 10px;
  background: white;
  color: #111;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2.5rem), var(--max)); margin-inline: auto; }
.section { padding: clamp(5.5rem, 9vw, 9rem) 0; position: relative; }
.section--compact { padding: clamp(4rem, 7vw, 6.5rem) 0; }
.section--line { border-top: 1px solid var(--line); }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1.2rem;
  color: var(--accent-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.section-kicker::before { content: ""; width: 1.8rem; height: 2px; background: currentColor; }
.section-heading { max-width: 790px; margin-bottom: clamp(2.8rem, 5vw, 4.4rem); }
.section-heading h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.15rem, 5.5vw, 4.8rem);
  line-height: .99;
  letter-spacing: -.055em;
}
.section-heading p { max-width: 660px; margin: 1.5rem 0 0; color: var(--muted); font-size: clamp(1.02rem, 1.5vw, 1.2rem); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .52rem .8rem;
  border: 1px solid rgba(231,47,60,.38);
  border-radius: 999px;
  background: rgba(231,47,60,.08);
  color: #ff8b92;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.eyebrow-dot { width: .48rem; height: .48rem; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 6px rgba(231,47,60,.12); }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled { background: rgba(7,9,13,.82); border-color: var(--line); backdrop-filter: blur(18px); }
.nav { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; font-weight: 900; letter-spacing: -.03em; }
.brand img { width: 38px; height: 38px; border-radius: 9px; }
.brand-word { font-size: 1.02rem; }
.nav-links { display: flex; align-items: center; gap: 1.35rem; }
.nav-links a { text-decoration: none; color: #c8ced9; font-size: .9rem; font-weight: 650; transition: color .2s ease; }
.nav-links a:hover, .nav-links a:focus-visible { color: #fff; }
.lang-link { padding: .5rem .65rem; border: 1px solid var(--line); border-radius: 10px; }
.nav-cta { padding: .72rem 1rem; background: #fff; color: #111 !important; border-radius: 10px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 12px; background: transparent; color: white; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
body.menu-open .menu-toggle span { opacity: 0; }
body.menu-open .menu-toggle::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .menu-toggle::after { transform: translateY(-6px) rotate(-45deg); }

.hero { position: relative; min-height: 100svh; display: grid; align-items: center; padding: 9.5rem 0 5.5rem; overflow: hidden; }
.hero::after {
  content: "";
  position: absolute;
  width: 42rem;
  height: 42rem;
  right: -14rem;
  top: 8rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(231,47,60,.05);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(2.5rem, 7vw, 6rem); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { margin: 1.3rem 0 1.4rem; max-width: 800px; font-size: clamp(3.2rem, 8.4vw, 7.3rem); line-height: .88; letter-spacing: -.075em; }
.hero h1 em { color: var(--accent-2); font-style: normal; }
.hero-lead { max-width: 700px; color: #c1c9d6; font-size: clamp(1.08rem, 1.8vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: .65rem; padding: .85rem 1.2rem; border: 1px solid transparent; border-radius: 12px; text-decoration: none; font-weight: 800; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--accent); color: #fff; box-shadow: 0 14px 42px rgba(231,47,60,.23); }
.button--primary:hover { background: var(--accent-2); }
.button--secondary { border-color: var(--line-strong); background: rgba(255,255,255,.025); color: #fff; }
.button--secondary:hover { background: rgba(255,255,255,.07); }
.button svg { width: 18px; height: 18px; }
.hero-note { margin-top: 1.6rem; color: var(--muted-2); font-size: .82rem; }

.signal-card { position: relative; min-height: 590px; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)); box-shadow: var(--shadow); overflow: hidden; }
.signal-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(231,47,60,.12), transparent 38%); }
.signal-top { display: flex; justify-content: space-between; align-items: center; padding: 1.35rem 1.4rem; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.signal-live { display: flex; align-items: center; gap: .5rem; }
.signal-live i { width: .5rem; height: .5rem; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(142,215,178,.12); }
.signal-body { position: relative; height: 445px; padding: 2rem; }
.orbit { position: absolute; inset: 10% 6%; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; animation: orbit 18s linear infinite; }
.orbit:nth-child(2) { inset: 22% 18%; animation-direction: reverse; animation-duration: 14s; }
.orbit::after { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--accent-2); top: 7%; left: 16%; box-shadow: 0 0 22px var(--accent); }
.core { position: absolute; inset: 50% auto auto 50%; width: 146px; height: 146px; transform: translate(-50%,-50%); border-radius: 50%; display: grid; place-items: center; text-align: center; background: radial-gradient(circle at 30% 25%, #303641, #141922 62%, #0b0e13); border: 1px solid rgba(255,255,255,.18); box-shadow: 0 0 80px rgba(231,47,60,.14); }
.core strong { display: block; font-size: 1.4rem; letter-spacing: -.04em; }
.core span { color: var(--accent-2); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.signal-chip { position: absolute; padding: .75rem .9rem; border: 1px solid var(--line); border-radius: 14px; background: rgba(10,13,19,.86); backdrop-filter: blur(9px); color: #dce1e9; font-size: .75rem; box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.signal-chip small { display: block; color: var(--muted-2); margin-top: .12rem; }
.signal-chip:nth-of-type(4) { top: 14%; left: 7%; }
.signal-chip:nth-of-type(5) { top: 12%; right: 7%; }
.signal-chip:nth-of-type(6) { bottom: 12%; left: 5%; }
.signal-chip:nth-of-type(7) { bottom: 13%; right: 5%; }
.signal-footer { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; border-top: 1px solid var(--line); background: var(--line); }
.signal-metric { padding: 1rem; background: rgba(8,10,14,.84); }
.signal-metric strong { display: block; font-size: 1.05rem; }
.signal-metric span { color: var(--muted-2); font-size: .7rem; }
@keyframes orbit { to { transform: rotate(360deg); } }

.statement { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.018); }
.statement-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.statement-item { padding: clamp(2rem, 4vw, 3.4rem); border-right: 1px solid var(--line); }
.statement-item:last-child { border-right: 0; }
.statement-item span { color: var(--muted-2); font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.statement-item strong { display: block; margin-top: .65rem; font-size: clamp(1.4rem, 2.5vw, 2.2rem); line-height: 1.08; letter-spacing: -.04em; }
.statement-item:last-child strong { color: var(--accent-2); }

.problem-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }
.problem-copy { position: sticky; top: 120px; }
.problem-copy h2 { margin: 0; font-size: clamp(2.2rem, 5.3vw, 4.8rem); line-height: .98; letter-spacing: -.055em; }
.problem-copy p { color: var(--muted); font-size: 1.08rem; }
.problem-stack { display: grid; gap: 1rem; }
.problem-card { padding: clamp(1.5rem, 3vw, 2.2rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.problem-number { color: var(--accent-2); font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.problem-card h3 { margin: .9rem 0 .65rem; font-size: clamp(1.4rem, 2.4vw, 2rem); letter-spacing: -.035em; }
.problem-card p { margin: 0; color: var(--muted); }

.flow { display: grid; gap: 1rem; }
.flow-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.flow-card { min-height: 210px; display: flex; flex-direction: column; justify-content: space-between; padding: 1.45rem; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); }
.flow-card--accent { border-color: rgba(231,47,60,.44); background: linear-gradient(145deg, rgba(231,47,60,.16), rgba(231,47,60,.035)); }
.flow-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 12px; color: var(--accent-2); }
.flow-card h3 { margin: 1.4rem 0 .4rem; font-size: 1.18rem; }
.flow-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.flow-arrow { display: grid; place-items: center; color: var(--muted-2); font-size: 1.3rem; }
.flow-loop { margin-top: 1rem; padding: 1.1rem 1.3rem; border: 1px dashed rgba(255,255,255,.2); border-radius: 16px; color: #c5ccd6; text-align: center; }

.committee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.agent-card { position: relative; min-height: 370px; padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); overflow: hidden; }
.agent-card::after { content: attr(data-index); position: absolute; right: 1rem; bottom: -2rem; color: rgba(255,255,255,.035); font-size: 11rem; font-weight: 900; line-height: 1; }
.agent-role { color: var(--accent-2); font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.agent-card h3 { margin: .75rem 0 .3rem; font-size: 2rem; letter-spacing: -.04em; }
.agent-sub { color: #d1d7e0; font-weight: 700; }
.agent-card p { color: var(--muted); }
.agent-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.agent-tags span { padding: .45rem .6rem; border: 1px solid var(--line); border-radius: 999px; color: #bcc5d2; font-size: .72rem; }
.synthesis { margin-top: 1rem; padding: clamp(1.5rem, 3vw, 2.3rem); border: 1px solid rgba(231,47,60,.4); border-radius: var(--radius); background: linear-gradient(110deg, rgba(231,47,60,.15), rgba(255,255,255,.02)); display: grid; grid-template-columns: auto 1fr auto; gap: 1.4rem; align-items: center; }
.synthesis-mark { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px; background: var(--accent); font-weight: 900; }
.synthesis h3 { margin: 0; font-size: 1.45rem; }
.synthesis p { margin: .35rem 0 0; color: var(--muted); }
.synthesis-result { text-align: right; color: #fff; font-size: .88rem; font-weight: 800; }

.learning-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.learning-copy h2 { margin: 0; font-size: clamp(2.3rem, 5.4vw, 5rem); line-height: .95; letter-spacing: -.06em; }
.learning-copy p { color: var(--muted); font-size: 1.08rem; }
.learning-panel { padding: 1.4rem; border: 1px solid var(--line); border-radius: 28px; background: var(--panel); }
.timeline { display: grid; gap: .8rem; }
.timeline-item { display: grid; grid-template-columns: 46px 1fr auto; gap: 1rem; align-items: center; padding: 1rem; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.025); }
.timeline-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: rgba(231,47,60,.12); color: var(--accent-2); font-weight: 900; }
.timeline-item strong { display: block; }
.timeline-item span { color: var(--muted-2); font-size: .8rem; }
.timeline-tag { color: var(--success) !important; font-weight: 800; }

.status-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2.5rem, 7vw, 7rem); }
.status-intro h2 { margin: 0; font-size: clamp(2.3rem, 5vw, 4.6rem); line-height: .98; letter-spacing: -.055em; }
.status-intro p { color: var(--muted); }
.status-list { display: grid; gap: .8rem; }
.status-item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.35rem; border: 1px solid var(--line); border-radius: 16px; background: var(--panel); }
.status-check { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; background: rgba(142,215,178,.12); color: var(--success); font-weight: 900; }
.status-item h3 { margin: 0; font-size: 1rem; }
.status-item p { margin: .3rem 0 0; color: var(--muted); font-size: .9rem; }
.status-disclaimer { margin-top: 1rem; padding: 1rem 1.15rem; border-left: 3px solid var(--accent); background: rgba(231,47,60,.075); color: #cbd2dc; font-size: .88rem; }

.founder-card { display: grid; grid-template-columns: minmax(280px,.78fr) 1.22fr; gap: clamp(2rem, 6vw, 5rem); padding: clamp(1.1rem, 2vw, 1.5rem); border: 1px solid var(--line); border-radius: 30px; background: var(--panel); }
.founder-photo { min-height: 520px; border-radius: 22px; overflow: hidden; background: #111; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-copy { padding: clamp(1rem, 3vw, 2.6rem) clamp(.5rem, 2vw, 1.5rem) clamp(1rem, 3vw, 2.6rem) 0; align-self: center; }
.founder-copy h2 { margin: 0; font-size: clamp(2.3rem, 5vw, 4.7rem); line-height: .98; letter-spacing: -.055em; }
.founder-title { margin: .8rem 0 1.7rem; color: var(--accent-2); font-weight: 800; }
.founder-copy p { color: var(--muted); font-size: 1.02rem; }
.founder-pillars { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.5rem; }
.founder-pillars span { padding: .55rem .72rem; border: 1px solid var(--line); border-radius: 999px; color: #c8d0dc; font-size: .76rem; }

.contact-panel { position: relative; overflow: hidden; padding: clamp(2.3rem, 6vw, 5.4rem); border: 1px solid rgba(231,47,60,.38); border-radius: 30px; background: linear-gradient(125deg, rgba(231,47,60,.2), rgba(255,255,255,.035) 55%, rgba(255,255,255,.015)); }
.contact-panel::after { content: "P1"; position: absolute; right: -1rem; bottom: -5rem; color: rgba(255,255,255,.035); font-size: 18rem; font-weight: 950; line-height: 1; letter-spacing: -.15em; }
.contact-panel h2 { position: relative; z-index: 2; margin: 0; max-width: 800px; font-size: clamp(2.4rem, 6vw, 5.6rem); line-height: .95; letter-spacing: -.065em; }
.contact-panel p { position: relative; z-index: 2; max-width: 680px; color: #c7ced9; font-size: 1.05rem; }
.contact-actions { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.contact-details { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 1rem 2rem; margin-top: 2rem; color: #cbd2dc; font-size: .88rem; }
.contact-details a { text-decoration: none; }

.site-footer { padding: 2.2rem 0; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .8rem; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: white; }

.consent { position: fixed; z-index: 2000; inset: auto 1rem 1rem; max-width: 560px; margin-left: auto; padding: 1.1rem; border: 1px solid var(--line-strong); border-radius: 17px; background: rgba(12,15,21,.96); box-shadow: 0 18px 70px rgba(0,0,0,.4); backdrop-filter: blur(16px); transform: translateY(150%); opacity: 0; transition: transform .3s ease, opacity .3s ease; }
.consent.visible { transform: translateY(0); opacity: 1; }
.consent p { margin: 0; color: #bdc5d1; font-size: .83rem; }
.consent-actions { display: flex; gap: .6rem; margin-top: .85rem; }
.consent button { min-height: 39px; padding: .55rem .8rem; border-radius: 9px; border: 1px solid var(--line); background: transparent; color: white; cursor: pointer; font-weight: 800; }
.consent .accept { background: #fff; color: #111; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .nav-links { position: fixed; inset: 78px 0 auto; display: none; flex-direction: column; align-items: stretch; padding: 1.4rem 1.25rem 2rem; background: rgba(7,9,13,.98); border-bottom: 1px solid var(--line); }
  body.menu-open .nav-links { display: flex; }
  .nav-links a { padding: .75rem; border-bottom: 1px solid var(--line); }
  .nav-cta { text-align: center; border-bottom: 0 !important; }
  .menu-toggle { display: block; }
  .hero-grid, .problem-grid, .learning-grid, .status-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 8.2rem; }
  .signal-card { min-height: 540px; }
  .problem-copy { position: static; }
  .flow-row { grid-template-columns: repeat(2, 1fr); }
  .committee-grid { grid-template-columns: 1fr; }
  .agent-card { min-height: 300px; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-photo { min-height: 460px; }
  .founder-copy { padding: 1rem; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 1.5rem), var(--max)); }
  .nav { height: 70px; }
  .nav-links { inset: 70px 0 auto; }
  .brand-word { font-size: .95rem; }
  .hero { position: relative; min-height: auto; padding: 7.5rem 0 4rem; }
  .hero h1 { font-size: clamp(3rem, 17vw, 5rem); }
  .hero-actions, .contact-actions { flex-direction: column; }
  .button { width: 100%; }
  .signal-card { min-height: 485px; }
  .signal-body { height: 365px; padding: 1rem; }
  .signal-chip { font-size: .66rem; padding: .6rem .7rem; }
  .core { width: 120px; height: 120px; }
  .statement-grid { grid-template-columns: 1fr; }
  .statement-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .statement-item:last-child { border-bottom: 0; }
  .flow-row { grid-template-columns: 1fr; }
  .flow-card { min-height: 180px; }
  .synthesis { grid-template-columns: 1fr; }
  .synthesis-result { text-align: left; }
  .timeline-item { grid-template-columns: 42px 1fr; }
  .timeline-tag { grid-column: 2; }
  .founder-photo { min-height: 390px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .contact-panel::after { font-size: 11rem; }
}
