:root {
  color-scheme: dark;
  --bg: #0e0f12;
  --bg-2: #16181d;
  --ink: #f3efe6;
  --muted: #9b968c;
  --line: #2a2d33;
  --signal: #e4572e;
  --signal-2: #f2c14e;
  --steel: #8b93a1;
  --font: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --serif: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.mark {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  border: 1px solid var(--signal);
  color: var(--signal);
  padding: 4px 7px;
}
.brand-name { font-size: 14px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
}
.nav-links a { text-decoration: none; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
.lang {
  display: flex;
  border: 1px solid var(--line);
}
.lang button {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  background: transparent;
  color: var(--muted);
  border: 0;
  padding: 7px 10px;
  cursor: pointer;
}
.lang button[aria-pressed="true"] {
  background: var(--bg-2);
  color: var(--ink);
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1px;
  background: var(--ink);
}
.nav-toggle span:first-child { top: 15px; }
.nav-toggle span:last-child { top: 23px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}
.btn-solid {
  background: var(--signal);
  color: #140a06;
  border-color: var(--signal);
}
.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.hero {
  position: relative;
  min-height: 92vh;
  padding: 72px 28px 48px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 1280px;
  margin: 0 auto;
}
#mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal-2);
  margin: 0 0 16px;
  position: relative;
}
.hero h1,
.section h2 {
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 20px;
}
.hero h1 {
  font-size: clamp(34px, 5.2vw, 60px);
  max-width: 18ch;
  position: relative;
}
.hero h1 em {
  font-style: normal;
  font-weight: 400;
  color: #c4bfb5;
}
.hero-lead {
  max-width: 62ch;
  color: var(--muted);
  font-size: 18px;
  position: relative;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 24px;
  position: relative;
}
.live-stat {
  position: relative;
  margin: 0 0 32px;
  padding: 16px 18px;
  max-width: 420px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-2) 82%, transparent);
}
.live-stat-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ecf8e;
  box-shadow: 0 0 0 0 rgba(62, 207, 142, 0.55);
  animation: live-pulse 1.8s ease-out infinite;
}
.live-stat-value {
  margin: 8px 0 4px;
  font-family: var(--mono);
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.live-stat-hint {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.live-stat-link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
  text-decoration: none;
}
.live-stat-link:hover { color: var(--ink); }
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(62, 207, 142, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(62, 207, 142, 0); }
  100% { box-shadow: 0 0 0 0 rgba(62, 207, 142, 0); }
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  position: relative;
}
.hero-stats dt {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-stats dd {
  margin: 6px 0 0;
  font-size: 15px;
}

.ticker {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 14px 0;
  background: var(--bg-2);
}
.ticker-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 28px;
  scroll-margin-top: 72px;
}
.section h2 {
  font-size: clamp(28px, 3.4vw, 42px);
}
.section p { color: var(--muted); max-width: 64ch; }
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}
.steps li {
  border: 1px solid var(--line);
  padding: 20px;
  background: var(--bg-2);
}
.steps strong {
  display: block;
  color: var(--ink);
  margin-bottom: 8px;
  font-size: 15px;
}

.pillars,
.unlock {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.pillars article,
.unlock article {
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #1b1d22, #13151a);
  min-height: 240px;
}
.code-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--signal);
  letter-spacing: 0.08em;
  margin: 0 0 18px;
}
.pillars h3,
.unlock h3 {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.pillars p,
.unlock p { margin: 0; }

.cid-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background:
    radial-gradient(600px 200px at 80% 20%, rgba(228, 87, 46, 0.12), transparent 60%);
}
.vision-quote {
  margin: 0;
  padding: 32px;
  border-left: 3px solid var(--signal);
  background: var(--bg-2);
  font-family: var(--font);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  font-style: normal;
}
.outcomes {
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.outcomes li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: #0a0b0e;
  color: var(--ink);
}

.verticals ul {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.verticals li {
  font-family: var(--font);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.founders-lead { margin-bottom: 36px; }
.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
}
.founder-grid figure {
  margin: 0;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.founder-grid img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 50% 18%;
  filter: saturate(0.92) contrast(1.04);
}
.founder-grid figcaption {
  padding: 18px 18px 22px;
  display: grid;
  gap: 6px;
}
.founder-grid figcaption strong { font-size: 16px; }
.founder-grid figcaption span {
  color: var(--muted);
  font-size: 14px;
}

.cta {
  border-top: 1px solid var(--line);
  text-align: left;
}
.cta code {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--signal-2);
}

.foot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 28px 40px;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.foot a { color: var(--signal); text-decoration: none; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    gap: 14px;
  }
  .nav.open .nav-links { display: flex; }
  .split,
  .pillars,
  .unlock,
  .cid-band,
  .founder-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .founder-grid img { height: 420px; }
  .hero { min-height: auto; padding-top: 48px; }
  .live-stat { max-width: none; }
  .section { padding: 64px 20px; }
  .nav { padding: 14px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .live-dot { animation: none; }
  html { scroll-behavior: auto; }
}
