:root {
  --ink: #07080b;
  --ink-soft: #0b0d12;
  --panel: #11141b;
  --panel-2: #171a22;
  --paper: #f2f0eb;
  --white: #fff;
  --muted: #9da1aa;
  --muted-dark: #626872;
  --line: rgba(255, 255, 255, .14);
  --line-soft: rgba(255, 255, 255, .07);
  --red: #df1f2d;
  --red-bright: #ff3d49;
  --red-dark: #74121c;
  --gold: #eebc4c;
  --blue: #6da3b9;
  --max: 1240px;
  --radius: 6px;
  --ease: cubic-bezier(.22, .8, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 0%, rgba(223, 31, 45, .08), transparent 28rem),
    var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
body::selection { color: var(--ink); background: var(--gold); }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
.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-noise {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.52'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 440px;
  height: 440px;
  pointer-events: none;
  opacity: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 31, 45, .13), transparent 67%);
  transform: translate(-50%, -50%);
  transition: opacity .35s ease;
}
.section-shell { width: min(var(--max), calc(100% - 96px)); margin-inline: auto; }

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 0 48px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(7, 8, 11, .72);
  backdrop-filter: blur(22px);
  transition: min-height .3s ease, background .3s ease, border-color .3s ease;
}
.topbar.is-scrolled {
  min-height: 66px;
  border-color: var(--line);
  background: rgba(7, 8, 11, .94);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.brand-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  background: #0b0d10;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .025), 0 8px 28px rgba(0, 0, 0, .25);
  transition: transform .35s var(--ease), border-color .35s ease;
}
.brand-logo::after {
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  content: "";
}
.brand-logo img {
  width: 145%;
  height: 145%;
  object-fit: contain;
  transform: scale(1.08);
  transition: transform .35s var(--ease);
}
.brand:hover .brand-logo { border-color: rgba(255, 255, 255, .65); transform: rotate(-5deg); }
.brand:hover .brand-logo img { transform: scale(1.15); }
.brand-lockup { display: flex; flex-direction: column; line-height: 1; }
.brand-lockup strong { font-size: 14px; letter-spacing: .08em; }
.brand-lockup em { color: var(--red-bright); font-style: normal; }
.brand-lockup small { margin-top: 5px; color: var(--muted); font-size: 8px; letter-spacing: .4em; }
.desktop-nav { display: flex; gap: clamp(18px, 3vw, 42px); color: var(--muted); font-size: 12px; }
.desktop-nav a, .topbar-cta { transition: color .2s ease, border-color .2s ease, background .2s ease; }
.desktop-nav a { position: relative; padding: 10px 0; }
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--red-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--paper); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.topbar-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  color: var(--paper);
  font-size: 11px;
  letter-spacing: .04em;
}
.topbar-cta > span:last-child { color: var(--red-bright); font-size: 16px; transition: transform .2s ease; }
.topbar-cta:hover { border-color: var(--red); background: rgba(223, 31, 45, .1); }
.topbar-cta:hover > span:last-child { transform: translate(2px, -2px); }
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #68bd77;
  box-shadow: 0 0 0 4px rgba(104, 189, 119, .1);
  animation: pulse 2.4s infinite;
}
.status-dot-muted { background: var(--gold); box-shadow: 0 0 0 4px rgba(238, 188, 76, .1); }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

/* Shared */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 158px;
  padding: 14px 17px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease, color .25s ease;
}
.button span { color: var(--red-bright); font-size: 18px; font-weight: 400; line-height: 1; transition: transform .25s var(--ease); }
.button:hover { transform: translateY(-3px); }
.button:hover span { transform: translate(3px, -2px); }
.button-primary { background: var(--red); color: #fff; box-shadow: 0 11px 30px rgba(223, 31, 45, .18); }
.button-primary:hover { background: var(--red-bright); }
.button-ghost { border-color: var(--line); color: #e9e8e4; }
.button-ghost:hover { border-color: rgba(255, 255, 255, .55); background: rgba(255, 255, 255, .05); }
.button-wide { width: 100%; margin-top: 15px; }
.section-index {
  margin: 0;
  color: var(--red-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
}
h2 {
  margin: 22px 0 0;
  color: var(--paper);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.07em;
}
h2 span { color: var(--red-bright); }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.section-heading-row { align-items: end; }
.section-lede { max-width: 520px; margin: 0; color: #b2b5bb; font-size: 18px; line-height: 1.7; }
.section-lede-short { max-width: 360px; justify-self: end; font-size: 15px; line-height: 1.75; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--red);
  color: #ecebea;
  font-size: 13px;
  font-weight: 700;
}
.text-link span { color: var(--red-bright); font-size: 18px; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }
[data-reveal] { transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js [data-reveal] { opacity: 0; transform: translateY(28px); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="80"] { transition-delay: 80ms; }
[data-reveal-delay="100"] { transition-delay: 100ms; }
[data-reveal-delay="120"] { transition-delay: 120ms; }
[data-reveal-delay="160"] { transition-delay: 160ms; }
[data-reveal-delay="200"] { transition-delay: 200ms; }
[data-reveal-delay="240"] { transition-delay: 240ms; }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(90deg, rgba(7, 8, 11, .98) 0%, rgba(7, 8, 11, .78) 44%, rgba(7, 8, 11, .46) 100%),
    radial-gradient(circle at 76% 36%, rgba(223, 31, 45, .2), transparent 24rem),
    #0a0c10;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 85%);
}
.hero-grid::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(223, 31, 45, .08), transparent 65%);
  content: "";
  animation: grid-sweep 8s ease-in-out infinite;
}
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(2px); }
.hero-orb-one {
  top: 15%;
  right: 12%;
  width: 32vw;
  height: 32vw;
  max-width: 500px;
  max-height: 500px;
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: inset 0 0 100px rgba(223, 31, 45, .05), 0 0 140px rgba(223, 31, 45, .1);
  animation: float 8s ease-in-out infinite;
}
.hero-orb-two {
  top: 24%;
  right: 20%;
  width: 17vw;
  height: 17vw;
  max-width: 270px;
  max-height: 270px;
  border: 1px solid rgba(238, 188, 76, .12);
  animation: float 6s ease-in-out -2s infinite reverse;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: clamp(42px, 7vw, 120px);
  min-height: calc(100svh - 78px);
  padding-top: 76px;
  padding-bottom: 96px;
}
.hero-copy { position: relative; z-index: 3; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 23px;
  color: #d6d6d2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
}
.eyebrow-line { display: block; width: 26px; height: 1px; background: var(--red); }
.hero h1 {
  max-width: 660px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(64px, 8.2vw, 122px);
  font-weight: 800;
  line-height: .86;
  letter-spacing: -.095em;
}
.hero h1 span { display: inline-block; color: var(--red-bright); }
.hero-lede { max-width: 500px; margin: 31px 0 0; color: #b9bbc0; font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 35px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 15px 25px; margin-top: 38px; color: var(--muted-dark); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.hero-tags span { display: inline-flex; align-items: center; gap: 8px; }
.hero-tags span::before { width: 4px; height: 4px; border-radius: 50%; background: var(--red); content: ""; }
.hero-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 580px;
  isolation: isolate;
  transform: perspective(1200px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .35s var(--ease);
}
.showcase-glow {
  position: absolute;
  width: min(39vw, 560px);
  height: min(39vw, 560px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 31, 45, .3) 0%, rgba(223, 31, 45, .12) 33%, transparent 70%);
  filter: blur(18px);
  animation: glow-breathe 5s ease-in-out infinite;
}
.showcase-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.showcase-ring::after {
  position: absolute;
  top: 7%;
  right: 14%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(238, 188, 76, .9);
  content: "";
}
.showcase-ring-one { width: min(38vw, 555px); height: min(38vw, 555px); border-color: rgba(223, 31, 45, .3); animation: spin 26s linear infinite; }
.showcase-ring-two { width: min(29vw, 420px); height: min(29vw, 420px); border-style: dashed; border-color: rgba(238, 188, 76, .18); animation: spin-reverse 20s linear infinite; }
.hero-logo {
  position: relative;
  z-index: 2;
  width: min(31vw, 465px);
  height: min(31vw, 465px);
  object-fit: contain;
  filter: drop-shadow(0 25px 38px rgba(0, 0, 0, .72));
  animation: logo-float 6s ease-in-out infinite;
}
.showcase-topline, .showcase-bottom {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(31vw, 465px);
  color: rgba(255, 255, 255, .55);
  font-size: 9px;
  letter-spacing: .16em;
}
.showcase-topline { top: 48px; }
.showcase-counter { color: var(--red-bright); }
.showcase-bottom { bottom: 45px; padding-top: 13px; border-top: 1px solid rgba(255, 255, 255, .2); }
.showcase-label { display: block; color: var(--muted-dark); font-size: 8px; letter-spacing: .18em; }
.showcase-bottom strong { display: block; margin-top: 3px; color: #f1eee4; font-size: 11px; letter-spacing: .14em; }
.showcase-corner { color: var(--red-bright); font-size: 24px; line-height: 1; }
.hero-edge {
  position: absolute;
  right: max(48px, calc((100vw - var(--max)) / 2));
  bottom: 25px;
  left: max(48px, calc((100vw - var(--max)) / 2));
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--muted-dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .2em;
}
.hero-edge > span:first-child { color: var(--red-bright); }
.hero-edge-line { width: 72px; height: 1px; background: var(--line); }
.hero-edge > span:last-child { margin-left: auto; }

/* Ticker and server */
.ticker { overflow: hidden; border-bottom: 1px solid var(--line-soft); background: var(--red); color: #fff; }
.ticker-track {
  display: flex;
  width: max-content;
  gap: 38px;
  padding: 11px 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  animation: ticker 28s linear infinite;
}
.signal-bar { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line-soft); background: #0c0e13; }
.signal-bar > div { min-height: 119px; padding: 25px max(20px, calc((100vw - var(--max)) / 2)); border-right: 1px solid var(--line-soft); }
.signal-bar > div:not(:first-child) { padding-left: 28px; }
.signal-bar > div:last-child { border-right: 0; }
.signal-bar span, .signal-bar small { display: block; color: var(--muted-dark); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.signal-bar strong { display: block; margin: 5px 0 2px; color: #e9e9e8; font-size: 14px; }
.signal-bar small { color: var(--muted); font-size: 10px; letter-spacing: 0; text-transform: none; }
.server-section, .manifesto, .systems-section, .story-section, .steps-section, .activity-section, .updates-section, .faq-section { padding-top: 132px; }
.server-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(46px, 9vw, 150px); align-items: center; margin-top: 68px; }
.server-copy { max-width: 450px; }
.server-number { margin: 0; color: rgba(255, 255, 255, .15); font-size: clamp(32px, 4vw, 58px); font-weight: 800; letter-spacing: -.08em; line-height: .95; }
.server-number span { color: rgba(223, 31, 45, .55); }
.server-description { margin: 32px 0 0; color: #b0b3b9; font-size: 15px; line-height: 1.8; }
.server-facts { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 40px; border-top: 1px solid var(--line); }
.server-facts div { padding: 17px 14px 13px 0; border-bottom: 1px solid var(--line); }
.server-facts div:nth-child(odd) { border-right: 1px solid var(--line); }
.server-facts div:nth-child(even) { padding-left: 14px; }
.server-facts span { display: block; color: var(--muted-dark); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.server-facts strong { display: block; margin-top: 5px; color: #e9e9e5; font-size: 13px; }
.server-card { padding: clamp(25px, 3.2vw, 43px); border: 1px solid rgba(255, 255, 255, .18); background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .015) 45%), var(--panel); box-shadow: 20px 20px 0 rgba(223, 31, 45, .08); }
.server-card-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 19px; border-bottom: 1px solid var(--line); }
.card-kicker, .server-status { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.server-status { display: inline-flex; align-items: center; gap: 8px; color: #d9c88f; letter-spacing: .08em; }
.server-title { margin-top: 27px; font-size: clamp(29px, 4vw, 54px); font-weight: 800; letter-spacing: -.08em; line-height: .9; }
.server-title span { display: block; color: var(--red-bright); }
.server-subtitle { margin: 17px 0 0; color: var(--muted); font-size: 12px; }
.server-progress { height: 4px; margin-top: 31px; overflow: hidden; background: rgba(255, 255, 255, .1); }
.server-progress span { display: block; width: 44%; height: 100%; background: linear-gradient(90deg, var(--red-dark), var(--red-bright)); animation: progress-glow 2.7s ease-in-out infinite alternate; }
.server-progress-meta { display: flex; justify-content: space-between; gap: 16px; margin-top: 9px; color: var(--muted-dark); font-size: 8px; font-weight: 700; letter-spacing: .14em; }
.server-progress-meta strong { color: var(--red-bright); font-size: 8px; }
.server-address { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 26px; padding: 14px; border: 1px solid var(--line-soft); background: rgba(255, 255, 255, .025); }
.address-label { display: block; margin-bottom: 5px; color: var(--muted-dark); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.server-address strong { color: #e5e6e9; font-size: 12px; font-weight: 600; }
.copy-button { flex: none; padding: 8px 10px; border: 1px solid var(--line); background: transparent; color: #e0e1e5; cursor: pointer; font-size: 11px; transition: border-color .2s ease, background .2s ease; }
.copy-button:hover { border-color: var(--red); background: rgba(223, 31, 45, .1); }

/* Manifesto */
.manifesto-top { margin-bottom: 54px; }
.manifesto-content { display: grid; grid-template-columns: minmax(0, 1fr) 1px minmax(190px, .42fr); align-items: center; gap: 30px; padding-top: 46px; }
.manifesto-rule { height: 72px; background: var(--red); }
.section-note { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle-card { position: relative; min-height: 270px; padding: 27px 28px 32px; border-right: 1px solid var(--line); transition: background .3s ease; }
.principle-card:last-child { border-right: 0; }
.principle-card:hover { background: rgba(255, 255, 255, .035); }
.principle-card-accent { background: linear-gradient(135deg, rgba(223, 31, 45, .17), rgba(223, 31, 45, .02)); }
.principle-card-accent:hover { background: linear-gradient(135deg, rgba(223, 31, 45, .23), rgba(223, 31, 45, .04)); }
.card-number { color: var(--red-bright); font-size: 11px; letter-spacing: .2em; }
.principle-card h3 { margin: 43px 0 10px; font-size: 22px; letter-spacing: -.04em; }
.principle-card p { max-width: 300px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.card-arrow { position: absolute; right: 28px; bottom: 26px; color: var(--red); font-size: 22px; transition: transform .2s ease; }
.principle-card:hover .card-arrow { transform: translate(3px, -3px); }

/* Systems */
.system-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 52px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.filter-button { display: inline-flex; align-items: center; gap: 10px; padding: 9px 13px; border: 1px solid transparent; background: transparent; color: var(--muted); cursor: pointer; font-size: 11px; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.filter-button span { color: var(--muted-dark); font-size: 9px; }
.filter-button:hover, .filter-button.is-active { border-color: var(--line); background: rgba(255, 255, 255, .05); color: var(--paper); }
.filter-button.is-active { border-color: rgba(223, 31, 45, .55); background: rgba(223, 31, 45, .11); }
.filter-button.is-active span { color: var(--red-bright); }
.systems-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 18px; }
.system-card { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 282px; border: 1px solid var(--line); background: var(--panel); transform: perspective(800px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: opacity .35s ease, transform .35s var(--ease), border-color .25s ease, background .25s ease; }
.system-card:hover { border-color: rgba(223, 31, 45, .65); background: #151821; }
.system-card.is-hidden { display: none; }
.system-card-featured { grid-column: span 2; grid-template-columns: 1.05fr .95fr; min-height: 320px; }
.system-visual { position: relative; min-height: 250px; overflow: hidden; border-right: 1px solid var(--line-soft); background-color: #171a21; }
.system-card-featured .system-visual { min-height: 320px; }
.system-visual::before { position: absolute; inset: 14px; border: 1px solid rgba(255, 255, 255, .13); content: ""; transition: inset .35s var(--ease), border-color .3s ease; }
.system-card:hover .system-visual::before { inset: 21px; border-color: rgba(255, 255, 255, .28); }
.visual-red { background: radial-gradient(circle at 70% 23%, rgba(255, 54, 66, .7), transparent 21%), linear-gradient(135deg, #4b0c15, #120d13 65%); }
.visual-dark { background: radial-gradient(circle at 35% 60%, rgba(223, 31, 45, .25), transparent 28%), linear-gradient(135deg, #232329, #08090d); }
.visual-gray { background: linear-gradient(145deg, #34373e, #101216 58%); }
.visual-gold { background: radial-gradient(circle at 78% 20%, rgba(238, 188, 76, .45), transparent 25%), linear-gradient(145deg, #4b3a18, #11100e 68%); }
.visual-blue { background: radial-gradient(circle at 25% 25%, rgba(109, 163, 185, .44), transparent 25%), linear-gradient(145deg, #152f3b, #0b1015 65%); }
.visual-outline { background: linear-gradient(135deg, rgba(255, 255, 255, .04), transparent), repeating-linear-gradient(120deg, transparent 0 28px, rgba(255, 255, 255, .07) 29px 30px); }
.visual-code { position: absolute; top: 28px; left: 29px; color: rgba(255, 255, 255, .55); font-size: 8px; font-weight: 700; letter-spacing: .17em; }
.visual-word { position: absolute; bottom: 22px; left: 28px; color: rgba(255, 255, 255, .18); font-size: clamp(38px, 5vw, 78px); font-weight: 800; letter-spacing: -.09em; transform: rotate(-90deg) translateX(-100%); transform-origin: bottom left; }
.visual-symbol { position: absolute; top: 24px; right: 28px; color: rgba(255, 255, 255, .78); font-size: 32px; }
.system-card-body { display: flex; flex-direction: column; padding: 27px 25px 24px; }
.system-card-body > span { color: var(--red-bright); font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.system-card-body h3 { margin: auto 0 10px; font-size: clamp(22px, 2.5vw, 30px); line-height: 1; letter-spacing: -.05em; }
.system-card-body p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.system-card-body a, .update-card a { display: inline-flex; align-items: center; justify-content: space-between; margin-top: 24px; color: #f0f0ef; font-size: 12px; font-weight: 700; }
.system-card-body a b, .update-card a b { color: var(--red-bright); font-size: 16px; font-weight: 400; transition: transform .2s ease; }
.system-card-body a:hover b, .update-card a:hover b { transform: translate(3px, -3px); }

/* Paths and steps */
.story-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(48px, 9vw, 140px); align-items: start; }
.story-heading .section-lede { margin-top: 28px; font-size: 15px; }
.story-paths { display: grid; gap: 11px; }
.story-path { display: grid; grid-template-columns: 44px 1fr 30px; gap: 18px; align-items: center; min-height: 150px; padding: 25px 28px; border: 1px solid var(--line); transition: transform .25s var(--ease), border-color .25s ease; }
.story-path:hover { transform: translateX(7px); border-color: rgba(255, 255, 255, .4); }
.story-path-red { background: linear-gradient(110deg, rgba(223, 31, 45, .22), rgba(17, 19, 25, .8)); }
.story-path-dark { background: linear-gradient(110deg, rgba(255, 255, 255, .08), rgba(17, 19, 25, .8)); }
.story-path-light { background: linear-gradient(110deg, rgba(238, 188, 76, .16), rgba(17, 19, 25, .8)); }
.path-index { align-self: start; color: var(--red-bright); font-size: 12px; font-weight: 700; letter-spacing: .16em; }
.story-path-light .path-index { color: var(--gold); }
.path-kicker { display: block; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .17em; }
.story-path h3 { margin: 9px 0 5px; font-size: 25px; line-height: 1; letter-spacing: -.06em; }
.story-path p { margin: 0; color: #adb0b6; font-size: 13px; line-height: 1.6; }
.path-arrow { justify-self: end; color: var(--red-bright); font-size: 22px; transition: transform .2s ease; }
.story-path:hover .path-arrow { transform: translate(4px, -4px); }
.steps-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(48px, 9vw, 150px); }
.steps-intro .section-lede { margin-top: 28px; font-size: 15px; }
.steps-list { border-top: 1px solid var(--line); }
.step-row { display: grid; grid-template-columns: 50px 1fr 30px; gap: 22px; align-items: start; padding: 28px 0; border-bottom: 1px solid var(--line); transition: padding-left .25s ease, background .25s ease; }
.step-row:hover { padding-left: 12px; }
.step-index { color: var(--red-bright); font-size: 11px; letter-spacing: .15em; }
.step-row h3 { margin: 0 0 8px; font-size: 21px; letter-spacing: -.04em; }
.step-row p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.step-arrow { justify-self: end; color: var(--red); font-size: 20px; }

/* Activity */
.activity-section { padding-bottom: 132px; }
.activity-topline { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.activity-live { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 10px; letter-spacing: .16em; }
.activity-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: end; margin-top: 30px; }
.activity-layout h2 { margin-top: 0; }
.activity-list { border-top: 1px solid var(--line); }
.activity-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.activity-list span { color: var(--red); font-size: 11px; }
.activity-list strong { font-size: 16px; }
.activity-list p { grid-column: 2; margin: -8px 0 0; color: var(--muted); font-size: 13px; }
.city-banner { position: relative; display: flex; align-items: flex-end; justify-content: space-between; min-height: 320px; margin-top: 64px; overflow: hidden; border: 1px solid var(--line); background: radial-gradient(circle at 70% 25%, rgba(223, 31, 45, .45), transparent 17%), linear-gradient(145deg, #441019, #0b0d11 62%); }
.city-banner::before { position: absolute; inset: 0; opacity: .55; background: linear-gradient(145deg, transparent 0 49%, rgba(255, 255, 255, .08) 49% 49.2%, transparent 49.2%), repeating-linear-gradient(90deg, transparent 0 70px, rgba(255, 255, 255, .06) 71px 72px); content: ""; }
.city-banner-grid { position: absolute; right: 8%; bottom: 0; width: 48%; height: 72%; opacity: .62; border-top: 1px solid rgba(255, 255, 255, .24); background: repeating-linear-gradient(90deg, transparent 0 26px, rgba(255, 255, 255, .15) 27px 30px), linear-gradient(90deg, transparent, rgba(255, 255, 255, .07)); clip-path: polygon(0 32%, 8% 24%, 15% 35%, 24% 16%, 31% 29%, 42% 3%, 51% 23%, 61% 10%, 72% 34%, 82% 18%, 92% 29%, 100% 0, 100% 100%, 0 100%); animation: city-flicker 4s ease-in-out infinite alternate; }
.city-banner-copy, .city-banner-stamp { position: relative; z-index: 1; padding: 32px; }
.city-banner-copy span { display: block; margin-bottom: 13px; color: #f4c1c4; font-size: 10px; font-weight: 700; letter-spacing: .3em; }
.city-banner-copy strong { display: block; font-size: clamp(30px, 5vw, 63px); line-height: .86; letter-spacing: -.08em; }
.city-banner-copy em { color: var(--red-bright); font-style: normal; }
.city-banner-stamp { display: flex; flex-direction: column; align-items: flex-end; color: rgba(255, 255, 255, .8); }
.city-banner-stamp img { width: clamp(78px, 10vw, 126px); height: clamp(78px, 10vw, 126px); object-fit: contain; filter: drop-shadow(0 13px 17px rgba(0, 0, 0, .5)); }
.city-banner-stamp small { margin-top: 13px; font-size: 8px; letter-spacing: .32em; }

/* Updates and access */
.updates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 54px; }
.update-card { min-height: 310px; padding: 27px; border: 1px solid var(--line); background: var(--panel); transition: transform .25s var(--ease), border-color .25s ease; }
.update-card:hover { transform: translateY(-7px); border-color: rgba(255, 255, 255, .35); }
.update-card-featured { background: linear-gradient(145deg, rgba(223, 31, 45, .22), rgba(17, 19, 25, .96) 60%); }
.update-label { color: var(--red-bright); font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.update-card time { display: block; margin-top: 34px; color: var(--muted-dark); font-size: 10px; letter-spacing: .13em; }
.update-card h3 { margin: 16px 0 10px; font-size: 23px; line-height: 1; letter-spacing: -.05em; }
.update-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.access-section { padding-top: 132px; }
.access-card { position: relative; min-height: 400px; overflow: hidden; padding: 62px clamp(30px, 7vw, 92px); border: 1px solid rgba(255, 255, 255, .18); background: radial-gradient(circle at 72% 20%, rgba(255, 67, 78, .5), transparent 26%), linear-gradient(120deg, #72131e, #270e15 58%, #111016); }
.access-lines { position: absolute; inset: 0; opacity: .28; background: repeating-linear-gradient(105deg, transparent 0 74px, rgba(255, 255, 255, .12) 75px 76px); transform: translateX(24%); animation: access-lines 12s linear infinite; }
.access-content { position: relative; z-index: 1; max-width: 620px; }
.access-content .section-index { color: #ffc4c7; }
.access-content h2 { margin-top: 20px; }
.access-content h2 span { color: #fff; }
.access-content > p:not(.section-index) { max-width: 490px; margin: 24px 0 0; color: #e6bdc0; font-size: 15px; }
.access-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.button-light { background: #fff; color: #261016; }
.button-light:hover { background: #f2e9e9; }
.button-outline-light { border-color: rgba(255, 255, 255, .36); color: #fff; }
.button-outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.access-logo { position: absolute; right: clamp(28px, 8vw, 110px); bottom: 28px; display: flex; flex-direction: column; align-items: center; transform: rotate(7deg); }
.access-logo img { width: clamp(150px, 19vw, 245px); height: clamp(150px, 19vw, 245px); object-fit: contain; opacity: .72; filter: grayscale(.2) drop-shadow(0 16px 22px rgba(0, 0, 0, .45)); }
.access-logo span { margin-top: -8px; color: rgba(255, 255, 255, .5); font-size: 9px; letter-spacing: .3em; }

/* FAQ and footer */
.faq-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; padding-bottom: 132px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; cursor: pointer; list-style: none; font-size: 17px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--red-bright); font-size: 22px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 650px; margin: -5px 40px 24px 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.footer { display: grid; grid-template-columns: 1fr 1fr; gap: 65px; padding-top: 54px; padding-bottom: 30px; border-top: 1px solid var(--line); }
.brand-logo-footer { width: 54px; height: 54px; }
.footer-brand p { max-width: 250px; margin: 20px 0 0; color: var(--muted); font-size: 13px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.footer-links div { display: flex; flex-direction: column; gap: 9px; }
.footer-links span { margin-bottom: 8px; color: var(--red-bright); font-size: 10px; font-weight: 700; letter-spacing: .2em; }
.footer-links a { width: max-content; color: var(--muted); font-size: 13px; transition: color .2s ease, transform .2s ease; }
.footer-links a:hover { color: #fff; transform: translateX(3px); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--line-soft); color: var(--muted-dark); font-size: 9px; letter-spacing: .15em; }
.toast { position: fixed; right: 24px; bottom: 24px; z-index: 40; max-width: min(340px, calc(100% - 48px)); padding: 13px 16px; border: 1px solid var(--red); background: #161117; color: #f5e6e7; box-shadow: 0 18px 48px rgba(0, 0, 0, .35); font-size: 13px; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .2s ease, transform .2s ease; }
.toast.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1080px) {
  .hero-content { gap: 34px; }
  .hero h1 { font-size: clamp(60px, 8vw, 92px); }
  .hero-showcase { min-height: 500px; }
  .server-layout { gap: 50px; }
  .story-section { gap: 55px; }
}

@media (max-width: 980px) {
  .topbar { grid-template-columns: 1fr auto auto; padding: 0 26px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; flex-direction: column; gap: 5px; align-items: flex-end; width: 35px; padding: 8px 0 8px 8px; border: 0; background: transparent; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 1px; background: #fff; transition: transform .2s ease, width .2s ease; }
  .menu-toggle span:last-of-type { width: 16px; }
  .menu-toggle[aria-expanded="true"] span:first-of-type { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(-3px) rotate(-45deg); width: 25px; }
  .mobile-menu { position: sticky; top: 78px; z-index: 19; padding: 17px 26px 22px; border-bottom: 1px solid var(--line); background: rgba(7, 8, 11, .98); }
  .mobile-menu.is-open { display: grid; gap: 8px; }
  .mobile-menu a { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line-soft); color: var(--muted); font-size: 14px; }
  .mobile-menu-cta { color: #fff !important; }
  .section-shell { width: min(var(--max), calc(100% - 52px)); }
  .hero { min-height: auto; }
  .hero-content { grid-template-columns: 1fr; min-height: auto; padding: 102px 26px 105px; }
  .hero-copy { max-width: 700px; }
  .hero-showcase { width: min(100%, 620px); min-height: 570px; margin: 0 auto; }
  .hero-logo, .showcase-topline, .showcase-bottom { width: min(62vw, 450px); }
  .showcase-ring-one { width: min(70vw, 540px); height: min(70vw, 540px); }
  .showcase-ring-two { width: min(56vw, 430px); height: min(56vw, 430px); }
  .showcase-glow { width: min(70vw, 560px); height: min(70vw, 560px); }
  .hero-edge { right: 26px; bottom: 25px; left: 26px; }
  .signal-bar { grid-template-columns: repeat(2, 1fr); }
  .signal-bar > div, .signal-bar > div:not(:first-child) { padding: 20px 26px; }
  .signal-bar > div:nth-child(2) { border-right: 0; }
  .signal-bar > div:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .section-heading, .server-layout, .story-section, .steps-section, .activity-layout, .faq-section { grid-template-columns: 1fr; gap: 34px; }
  .section-lede-short { justify-self: start; }
  .server-copy { max-width: 650px; }
  .server-card { width: min(100%, 700px); }
  .story-heading { max-width: 650px; }
  .faq-section { gap: 45px; }
  .access-logo { right: 5%; opacity: .75; }
}

@media (max-width: 660px) {
  .topbar { min-height: 66px; padding: 0 18px; }
  .topbar.is-scrolled { min-height: 62px; }
  .topbar-cta { display: none; }
  .mobile-menu { top: 66px; padding-inline: 18px; }
  .brand-logo { width: 41px; height: 41px; }
  .brand-lockup strong { font-size: 12px; }
  .section-shell { width: calc(100% - 36px); }
  .hero { background: radial-gradient(circle at 78% 20%, rgba(223, 31, 45, .2), transparent 18rem), #0a0c10; }
  .hero-grid { background-size: 42px 42px; }
  .hero-content { padding: 75px 18px 88px; }
  .eyebrow { font-size: 8px; letter-spacing: .13em; }
  .hero h1 { font-size: clamp(53px, 16vw, 78px); }
  .hero-lede { margin-top: 25px; font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; margin-top: 28px; }
  .button { width: 100%; }
  .hero-tags { gap: 12px 16px; font-size: 8px; letter-spacing: .11em; }
  .hero-showcase { min-height: 430px; margin-top: -4px; }
  .hero-logo, .showcase-topline, .showcase-bottom { width: min(75vw, 330px); }
  .hero-logo { height: min(75vw, 330px); }
  .showcase-topline { top: 24px; font-size: 7px; }
  .showcase-bottom { bottom: 17px; }
  .showcase-ring-one { width: min(86vw, 390px); height: min(86vw, 390px); }
  .showcase-ring-two { width: min(68vw, 310px); height: min(68vw, 310px); }
  .showcase-glow { width: min(90vw, 410px); height: min(90vw, 410px); }
  .hero-edge { right: 18px; bottom: 18px; left: 18px; gap: 9px; font-size: 7px; }
  .hero-edge-line { flex: 1; width: auto; }
  .hero-edge > span:last-child { display: none; }
  .ticker-track { gap: 24px; padding: 9px 0; font-size: 8px; }
  .signal-bar { grid-template-columns: 1fr; }
  .signal-bar > div, .signal-bar > div:not(:first-child) { min-height: auto; padding: 18px; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .signal-bar > div:last-child { border-bottom: 0; }
  .server-section, .manifesto, .systems-section, .story-section, .steps-section, .activity-section, .updates-section, .faq-section, .access-section { padding-top: 88px; }
  .activity-section { padding-bottom: 88px; }
  h2 { font-size: clamp(42px, 12.5vw, 64px); }
  .section-lede { font-size: 16px; }
  .server-layout { margin-top: 43px; }
  .server-number { font-size: 38px; }
  .server-description { margin-top: 22px; font-size: 14px; }
  .server-facts { margin-top: 28px; }
  .server-card { padding: 21px; }
  .server-card-top { align-items: flex-start; flex-direction: column; gap: 12px; }
  .server-title { font-size: 34px; }
  .server-address { align-items: flex-start; flex-direction: column; }
  .copy-button { width: 100%; }
  .manifesto-content { grid-template-columns: 1fr; gap: 18px; padding-top: 35px; }
  .manifesto-rule { width: 72px; height: 1px; }
  .principles-grid, .systems-grid, .updates-grid { grid-template-columns: 1fr; }
  .principle-card { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--line); }
  .principle-card:last-child { border-bottom: 0; }
  .system-filters { overflow-x: auto; flex-wrap: nowrap; margin-top: 35px; }
  .filter-button { flex: none; }
  .system-card, .system-card-featured { grid-column: auto; grid-template-columns: 1fr; }
  .system-visual, .system-card-featured .system-visual { min-height: 165px; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .system-card-body { min-height: 226px; }
  .visual-word { transform: none; left: 28px; bottom: 17px; }
  .story-path { grid-template-columns: 28px 1fr 20px; gap: 12px; min-height: 160px; padding: 22px 18px; }
  .story-path h3 { font-size: 22px; }
  .steps-list { margin-top: 10px; }
  .step-row { grid-template-columns: 34px 1fr 20px; gap: 12px; }
  .step-row h3 { font-size: 18px; }
  .activity-topline { align-items: flex-start; flex-direction: column; }
  .activity-layout { margin-top: 28px; }
  .activity-list p { grid-column: 1 / -1; margin-left: 0; }
  .city-banner { min-height: 285px; }
  .city-banner-copy, .city-banner-stamp { padding: 21px; }
  .city-banner-stamp img { width: 85px; height: 85px; }
  .city-banner-stamp small { font-size: 7px; }
  .update-card { min-height: 275px; }
  .access-card { min-height: 540px; padding: 40px 25px; }
  .access-logo { right: 10px; bottom: 16px; opacity: .63; }
  .access-logo img { width: 142px; height: 142px; }
  .access-actions { flex-direction: column; }
  .faq-list summary { font-size: 15px; }
  .faq-list details p { margin-right: 0; }
  .footer { grid-template-columns: 1fr; gap: 42px; padding-top: 45px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .cursor-glow { display: none; }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.78); }
}
@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 18px, 0); }
}
@keyframes logo-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -10px, 0) rotate(1.5deg); }
}
@keyframes glow-breathe {
  0%, 100% { opacity: .8; transform: scale(.95); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes spin { to { transform: rotate(342deg); } }
@keyframes spin-reverse { to { transform: rotate(-378deg); } }
@keyframes grid-sweep { 0%, 100% { transform: translateX(-12%); opacity: .35; } 50% { transform: translateX(12%); opacity: .8; } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes progress-glow { from { width: 42%; } to { width: 47%; } }
@keyframes city-flicker { from { opacity: .4; transform: translateX(0); } to { opacity: .75; transform: translateX(-12px); } }
@keyframes access-lines { to { transform: translateX(-2%); } }

/* Premium identity pass */
.brand-logo {
  border-radius: 11px;
  background: linear-gradient(145deg, #15191f, #050609);
}
.brand-logo::after { border-radius: 7px; }
.brand-logo img { width: 132%; height: 132%; transform: scale(1.02); }
.brand:hover .brand-logo img { transform: scale(1.08); }
.hero {
  background:
    linear-gradient(90deg, rgba(7, 8, 11, .99) 0%, rgba(7, 8, 11, .78) 35%, rgba(7, 8, 11, .25) 100%),
    linear-gradient(0deg, rgba(7, 8, 11, .62) 0%, transparent 42%, rgba(7, 8, 11, .26) 100%),
    url("/north-street-city.png") 61% center / cover no-repeat,
    #090b0f;
}
.hero::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
  opacity: .28;
  background: linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, .12) 48.15% 48.35%, transparent 48.5%), linear-gradient(155deg, transparent 0 65%, rgba(223, 31, 45, .25) 65.1% 65.3%, transparent 65.5%);
  content: "";
  pointer-events: none;
}
.hero-showcase {
  min-height: 650px;
  perspective: 1200px;
}
.hero-showcase::before {
  position: absolute;
  inset: 8% 5%;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50% 50% 9px 9px;
  background: linear-gradient(155deg, rgba(255, 255, 255, .07), transparent 34%), radial-gradient(circle at 50% 45%, rgba(223, 31, 45, .14), transparent 52%);
  box-shadow: inset 0 0 90px rgba(0, 0, 0, .34), 0 30px 80px rgba(0, 0, 0, .22);
  content: "";
  transform: rotate(-5deg);
}
.hero-showcase::after {
  position: absolute;
  top: 11%;
  right: 12%;
  bottom: 11%;
  left: 12%;
  z-index: -1;
  border-top: 1px solid rgba(238, 188, 76, .18);
  border-bottom: 1px solid rgba(223, 31, 45, .22);
  background: repeating-linear-gradient(180deg, transparent 0 17px, rgba(255, 255, 255, .025) 18px 19px);
  content: "";
  pointer-events: none;
  animation: showcase-scan 7s linear infinite;
}
.hero-logo {
  width: min(35vw, 510px);
  height: min(35vw, 510px);
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, .84)) drop-shadow(0 0 20px rgba(223, 31, 45, .16));
}
.showcase-ring-one { border-color: rgba(223, 31, 45, .42); }
.showcase-ring-two { border-color: rgba(238, 188, 76, .26); }
.showcase-topline, .showcase-bottom { width: min(35vw, 510px); }
.showcase-chip {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 3px;
  min-width: 132px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(8, 9, 13, .7);
  box-shadow: 0 13px 28px rgba(0, 0, 0, .24);
  backdrop-filter: blur(12px);
  animation: chip-float 5.5s ease-in-out infinite;
}
.showcase-chip::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 18px;
  height: 18px;
  border-top: 1px solid var(--red-bright);
  border-left: 1px solid var(--red-bright);
  content: "";
}
.showcase-chip span { color: var(--muted-dark); font-size: 8px; font-weight: 700; letter-spacing: .16em; }
.showcase-chip strong { color: #f1eee5; font-size: 10px; letter-spacing: .08em; }
.showcase-chip-left { top: 24%; left: 0; }
.showcase-chip-right { top: 37%; right: -1%; animation-delay: -2.2s; }
.showcase-chip-bottom { right: 9%; bottom: 15%; min-width: 154px; animation-delay: -3.4s; }
.showcase-chip-right::before { right: -1px; left: auto; border-right: 1px solid var(--gold); border-left: 0; }
.showcase-chip-bottom::before { top: auto; bottom: -1px; border-top: 0; border-bottom: 1px solid var(--gold); }
.hero-edge { letter-spacing: .24em; }
.hero-scene-caption {
  position: absolute;
  right: max(48px, calc((100vw - var(--max)) / 2));
  bottom: 55px;
  z-index: 3;
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, .46);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .17em;
}
.hero-scene-caption span:last-child { color: var(--red-bright); }
.ticker { position: relative; z-index: 2; }
.server-card {
  border-color: rgba(255, 255, 255, .25);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .09), transparent 35%),
    radial-gradient(circle at 100% 0%, rgba(223, 31, 45, .17), transparent 37%),
    var(--panel);
}
.server-card::before {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--red-bright), var(--gold));
  content: "";
}
.system-card-featured {
  position: relative;
  overflow: hidden;
}
.system-card-featured::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  content: "";
}
.access-card {
  background:
    linear-gradient(110deg, rgba(114, 19, 30, .92), rgba(39, 14, 21, .96) 58%, rgba(17, 16, 22, .98)),
    radial-gradient(circle at 78% 15%, rgba(238, 188, 76, .3), transparent 25%);
}
.access-logo img { filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .55)); }
@keyframes showcase-scan {
  0%, 100% { opacity: .35; transform: translateY(-8px); }
  50% { opacity: .75; transform: translateY(8px); }
}
@keyframes chip-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

@media (max-width: 980px) {
  .hero-showcase { min-height: 620px; }
  .hero-logo, .showcase-topline, .showcase-bottom { width: min(63vw, 470px); }
  .hero-logo { height: min(63vw, 470px); }
  .showcase-chip-left { left: 4%; }
  .showcase-chip-right { right: 4%; }
}

@media (max-width: 660px) {
  .hero-showcase { min-height: 470px; }
  .hero-showcase::before { inset: 7% 1%; }
  .hero-showcase::after { right: 4%; left: 4%; }
  .hero-logo, .showcase-topline, .showcase-bottom { width: min(76vw, 342px); }
  .hero-logo { height: min(76vw, 342px); }
  .showcase-chip { min-width: 112px; padding: 8px 10px; }
  .showcase-chip span { font-size: 7px; }
  .showcase-chip strong { font-size: 8px; }
  .showcase-chip-left { top: 21%; left: -3%; }
  .showcase-chip-right { top: 35%; right: -3%; }
  .showcase-chip-bottom { right: 1%; bottom: 10%; min-width: 125px; }
  .brand-logo { border-radius: 9px; }
}

/* Editorial city universe */
.universe-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(46px, 8vw, 124px);
  align-items: start;
  padding-top: 112px;
}
.universe-intro { max-width: 420px; }
.universe-intro .section-lede { margin-top: 28px; font-size: 15px; }
.universe-bento {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  grid-template-rows: 1fr 1fr;
  gap: 13px;
}
.universe-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), border-color .25s ease, box-shadow .35s ease;
}
.universe-card:hover { border-color: rgba(255, 255, 255, .42); box-shadow: 18px 18px 0 rgba(223, 31, 45, .08); }
.universe-card-main {
  display: flex;
  min-height: 440px;
  grid-row: span 2;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 72% 38%, rgba(223, 31, 45, .46), transparent 25%),
    linear-gradient(145deg, #24252a, #0c0e13 57%, #280d14);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}
.universe-card-main::before {
  position: absolute;
  top: 18%;
  right: -7%;
  width: 68%;
  height: 68%;
  border: 1px solid rgba(238, 188, 76, .25);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(223, 31, 45, .15);
  content: "";
  transform: rotate(-20deg);
}
.universe-card-main::after {
  position: absolute;
  right: 19%;
  bottom: 12%;
  width: 34%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  content: "";
  transform: rotate(-26deg);
}
.universe-lines {
  position: absolute;
  inset: 0;
  opacity: .35;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(255, 255, 255, .2) 46.2% 46.35%, transparent 46.5%),
    repeating-linear-gradient(90deg, transparent 0 45px, rgba(255, 255, 255, .08) 46px 47px);
  mask-image: linear-gradient(90deg, transparent 0%, black 40%, black 100%);
}
.universe-card-top, .universe-card-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .62);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
}
.universe-card-top strong { color: var(--gold); font-weight: 700; }
.universe-main-word {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: #f3f0e8;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: .84;
  letter-spacing: -.1em;
}
.universe-main-word em { color: var(--red-bright); font-style: normal; }
.universe-card-bottom { margin-top: 42px; color: rgba(255, 255, 255, .52); }
.universe-mark { color: var(--red-bright); font-size: 22px; line-height: .6; }
.universe-card-red {
  background: linear-gradient(135deg, rgba(223, 31, 45, .78), #5e101b 55%, #190b11);
}
.universe-card-red::after {
  position: absolute;
  right: -30px;
  bottom: -48px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 50%;
  content: "";
}
.universe-card-gold {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 75% 30%, rgba(238, 188, 76, .27), transparent 36%),
    linear-gradient(145deg, #292218, #11100e 70%);
}
.universe-card-number { position: relative; z-index: 1; color: rgba(255, 255, 255, .63); font-size: 8px; font-weight: 700; letter-spacing: .18em; }
.universe-icon { position: absolute; top: 19px; right: 25px; color: rgba(255, 255, 255, .75); font-size: 30px; }
.universe-card h3 { position: relative; z-index: 1; margin: auto 0 12px; color: #fff; font-size: clamp(25px, 3vw, 37px); line-height: .9; letter-spacing: -.07em; }
.universe-card h3 span { color: #ffc1c4; }
.universe-card p { position: relative; z-index: 1; max-width: 260px; margin: 0; color: rgba(255, 255, 255, .67); font-size: 13px; line-height: 1.6; }
.universe-logo {
  position: absolute;
  right: 12%;
  bottom: 19%;
  width: 148px;
  height: 148px;
  object-fit: contain;
  opacity: .72;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, .5));
  transform: rotate(7deg);
}
.universe-card-gold p { max-width: 210px; color: rgba(255, 255, 255, .64); }
.server-ip {
  color: #fff2d0 !important;
  font-family: "Courier New", monospace;
  font-size: 14px !important;
  letter-spacing: .04em;
}
.server-connect { position: relative; overflow: hidden; }
.server-connect::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -35%;
  width: 25%;
  background: rgba(255, 255, 255, .23);
  content: "";
  transform: skewX(-18deg);
  transition: left .55s var(--ease);
}
.server-connect:hover::after { left: 115%; }
.access-copy { cursor: pointer; font-weight: 700; }

@media (max-width: 980px) {
  .universe-section { grid-template-columns: 1fr; gap: 34px; }
  .universe-intro { max-width: 650px; }
  .universe-bento { width: min(100%, 760px); }
  .hero { background-position: 62% center; }
  .hero-scene-caption { right: 26px; }
}

@media (max-width: 660px) {
  .universe-section { padding-top: 88px; }
  .universe-bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .universe-card-main { grid-row: auto; min-height: 380px; }
  .universe-card { min-height: 220px; padding: 21px; }
  .universe-main-word { font-size: 48px; }
  .universe-logo { width: 120px; height: 120px; right: 9%; bottom: 18%; }
  .hero {
    background:
      linear-gradient(90deg, rgba(7, 8, 11, .92), rgba(7, 8, 11, .3)),
      linear-gradient(0deg, rgba(7, 8, 11, .72), transparent 50%, rgba(7, 8, 11, .24)),
      url("/north-street-city.png") 67% center / cover no-repeat,
      #0a0c10;
  }
  .hero-scene-caption {
    right: 18px;
    bottom: 43px;
    left: 18px;
    justify-content: space-between;
    gap: 10px;
    font-size: 7px;
  }
  .server-ip { font-size: 13px !important; }
}

/* Organic city pass — softer surfaces, stronger rhythm, touch-first responsive layout */
:root {
  --radius: 26px;
  --radius-sm: 16px;
}

html { overflow-x: clip; }
body {
  background:
    radial-gradient(circle at 4% 10%, rgba(223, 31, 45, .1), transparent 24rem),
    radial-gradient(circle at 94% 58%, rgba(238, 188, 76, .045), transparent 28rem),
    var(--ink);
}

.topbar {
  width: min(calc(100% - 32px), 1340px);
  margin: 12px auto 0;
  min-height: 70px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(10, 11, 15, .78);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .05);
}
.topbar.is-scrolled {
  min-height: 62px;
  margin-top: 6px;
  border-color: rgba(255, 255, 255, .23);
  background: rgba(10, 11, 15, .94);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .35);
}
.topbar-cta,
.button,
.copy-button,
.filter-button {
  border-radius: 999px;
}
.topbar-cta { padding-inline: 16px; }
.button { min-height: 48px; padding-inline: 20px; }

.hero {
  margin-top: -82px;
  padding-top: 82px;
  border-bottom: 0;
  border-radius: 0 0 clamp(54px, 8vw, 108px) clamp(54px, 8vw, 108px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
}
.hero::after {
  opacity: .8;
  background:
    radial-gradient(ellipse at 70% 46%, rgba(223, 31, 45, .18), transparent 30%),
    linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, .04), transparent 68%);
}
.hero-showcase::before {
  border-radius: 44% 56% 62% 38% / 48% 36% 64% 52%;
  transform: rotate(-7deg);
}
.hero-showcase::after { border-radius: 50%; }
.showcase-chip { border-radius: 999px; box-shadow: 0 12px 30px rgba(0, 0, 0, .25); }
.showcase-bottom { border-color: rgba(255, 255, 255, .28); }
.hero-edge { opacity: .82; }

.signal-bar {
  overflow: hidden;
  border-bottom: 0;
  border-radius: 0 0 38px 38px;
  background:
    radial-gradient(circle at 12% 0%, rgba(223, 31, 45, .12), transparent 20rem),
    #0c0e13;
}

.universe-section,
.server-section,
.manifesto,
.systems-section,
.story-section,
.steps-section,
.activity-section,
.updates-section,
.faq-section,
.access-section {
  position: relative;
  isolation: isolate;
}
.universe-section::before,
.manifesto::before,
.systems-section::before,
.story-section::before,
.updates-section::before,
.faq-section::before {
  position: absolute;
  z-index: -1;
  width: min(34vw, 430px);
  height: min(34vw, 430px);
  border-radius: 62% 38% 49% 51% / 42% 56% 44% 58%;
  background: radial-gradient(circle, rgba(223, 31, 45, .13), transparent 68%);
  content: "";
  filter: blur(4px);
  opacity: .8;
  pointer-events: none;
}
.universe-section::before { top: 8%; right: -9%; }
.manifesto::before { top: 22%; left: -12%; transform: rotate(26deg); }
.systems-section::before { top: 14%; right: -13%; background: radial-gradient(circle, rgba(238, 188, 76, .08), transparent 68%); }
.story-section::before { top: 28%; left: -13%; transform: rotate(-24deg); }
.updates-section::before { top: 6%; right: -11%; }
.faq-section::before { bottom: 7%; left: -12%; background: radial-gradient(circle, rgba(109, 163, 185, .07), transparent 68%); }

.universe-bento,
.systems-grid,
.updates-grid { gap: 18px; }
.universe-card,
.server-card,
.system-card,
.story-path,
.update-card,
.access-card,
.city-banner {
  border-radius: 28px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .2);
}
.universe-card { border-color: rgba(255, 255, 255, .16); }
.universe-card-main { border-radius: 38px 18px 38px 18px; }
.universe-card-red { border-radius: 18px 38px 18px 38px; }
.universe-card-gold { border-radius: 38px 18px 38px 18px; }
.universe-logo { transform: rotate(7deg); }

.server-card {
  border-color: rgba(255, 255, 255, .22);
  border-radius: 34px 16px 34px 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .3), 14px 14px 0 rgba(223, 31, 45, .07);
}
.server-progress { overflow: hidden; border-radius: 999px; }
.server-address { border-radius: 20px; }
.copy-button { min-height: 44px; padding-inline: 17px; }
.server-connect { border-radius: 999px; }

.principles-grid {
  gap: 14px;
  border: 0;
}
.principle-card {
  min-height: 250px;
  padding: 30px 27px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .015));
  box-shadow: 0 18px 50px rgba(0, 0, 0, .14);
}
.principle-card:nth-child(2) { border-radius: 17px 31px 17px 31px; }
.principle-card:nth-child(3) { border-radius: 31px 17px 31px 17px; }
.principle-card-accent { background: linear-gradient(145deg, rgba(223, 31, 45, .18), rgba(17, 19, 25, .72)); }

.system-card,
.system-card-featured { overflow: hidden; }
.system-card { border-color: rgba(255, 255, 255, .15); }
.system-card-featured { border-radius: 36px 18px 36px 18px; }
.system-card:not(.system-card-featured) { border-radius: 22px 32px 22px 32px; }
.system-card-body { background: linear-gradient(135deg, rgba(255, 255, 255, .025), transparent); }
.story-path { border-color: rgba(255, 255, 255, .15); }
.story-path:nth-child(2) { border-radius: 18px 34px 18px 34px; }
.story-path:nth-child(3) { border-radius: 34px 18px 34px 18px; }
.steps-list { display: grid; gap: 12px; }
.step-row {
  padding: 25px 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .025);
}
.step-row:hover { padding-left: 30px; background: rgba(255, 255, 255, .05); }
.city-banner { border-radius: 36px 15px 36px 15px; }
.updates-grid { margin-top: 48px; }
.update-card { border-color: rgba(255, 255, 255, .15); }
.update-card:nth-child(2) { border-radius: 18px 34px 18px 34px; }
.update-card:nth-child(3) { border-radius: 34px 18px 34px 18px; }
.access-card {
  border-radius: 42px 16px 42px 16px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, .32);
}
.faq-list { border-top: 0; }
.faq-list details {
  margin-bottom: 10px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, .025);
}
.faq-list summary { padding: 20px 22px; }
.faq-list details p { margin: -2px 22px 22px; }

@media (max-width: 980px) {
  .topbar {
    width: calc(100% - 24px);
    margin-top: 8px;
    padding-inline: 20px;
  }
  .topbar.is-scrolled { margin-top: 4px; }
  .mobile-menu {
    top: 76px;
    width: calc(100% - 24px);
    margin-inline: auto;
    padding: 15px 20px 19px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-top: 0;
    border-radius: 0 0 24px 24px;
    background: rgba(10, 11, 15, .97);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .35);
  }
  .mobile-menu a { min-height: 45px; align-items: center; padding: 10px 2px; }
  .hero { margin-top: -78px; padding-top: 78px; }
  .hero-content { padding-top: 96px; padding-bottom: 112px; }
  .hero-showcase { min-height: 530px; }
  .section-shell { width: min(var(--max), calc(100% - 42px)); }
  .signal-bar { border-radius: 0 0 32px 32px; }
  .principle-card { min-height: 225px; }
}

@media (max-width: 660px) {
  body { font-size: 15px; }
  .topbar {
    min-height: 64px;
    padding: env(safe-area-inset-top) 16px 0;
    border-radius: 22px;
  }
  .topbar.is-scrolled { min-height: 60px; }
  .brand { gap: 9px; }
  .brand-logo { width: 40px; height: 40px; }
  .brand-lockup strong { font-size: 11px; letter-spacing: .06em; }
  .brand-lockup small { margin-top: 4px; font-size: 7px; }
  .menu-toggle { width: 42px; min-height: 44px; justify-content: center; }
  .mobile-menu { top: 70px; width: calc(100% - 20px); padding-inline: 17px; border-radius: 0 0 22px 22px; }
  .hero {
    margin-top: -72px;
    padding-top: 72px;
    border-radius: 0 0 48px 48px;
    background:
      linear-gradient(180deg, rgba(7, 8, 11, .88), rgba(7, 8, 11, .44) 46%, rgba(7, 8, 11, .9) 100%),
      linear-gradient(90deg, rgba(7, 8, 11, .78), rgba(7, 8, 11, .2) 72%),
      url("/north-street-city.png") 69% center / cover no-repeat,
      #0a0c10;
  }
  .hero-content {
    width: calc(100% - 32px);
    padding: 82px 0 92px;
  }
  .hero h1 { font-size: clamp(52px, 15vw, 72px); letter-spacing: -.085em; }
  .hero-lede { max-width: 33rem; margin-top: 22px; font-size: 15px; line-height: 1.65; }
  .hero-actions { gap: 9px; margin-top: 27px; }
  .hero-actions .button { min-height: 52px; }
  .hero-tags { gap: 10px 14px; margin-top: 27px; line-height: 1.35; }
  .hero-showcase { min-height: 410px; margin-top: -5px; }
  .hero-showcase::before { inset: 8% 4%; }
  .hero-logo { width: min(69vw, 290px); height: min(69vw, 290px); }
  .showcase-topline, .showcase-bottom { width: min(69vw, 290px); font-size: 7px; }
  .showcase-topline { top: 25px; }
  .showcase-bottom { bottom: 24px; padding-top: 10px; }
  .showcase-bottom strong { font-size: 9px; }
  .showcase-ring-one { width: min(80vw, 330px); height: min(80vw, 330px); }
  .showcase-ring-two { width: min(59vw, 245px); height: min(59vw, 245px); }
  .showcase-glow { width: min(85vw, 350px); height: min(85vw, 350px); }
  .showcase-chip { min-width: 104px; padding: 8px 10px; }
  .showcase-chip span { font-size: 6px; letter-spacing: .11em; }
  .showcase-chip strong { font-size: 7px; letter-spacing: .04em; }
  .showcase-chip-left { top: 17%; left: -2px; }
  .showcase-chip-right { top: 45%; right: -2px; }
  .showcase-chip-bottom { right: 6%; bottom: 5%; min-width: 112px; }
  .hero-edge { right: 16px; bottom: 17px; left: 16px; }
  .hero-scene-caption { right: 16px; bottom: 40px; left: 16px; }
  .ticker-track { gap: 25px; padding-block: 10px; font-size: 8px; }
  .signal-bar { border-radius: 0 0 28px 28px; }
  .signal-bar > div, .signal-bar > div:not(:first-child) { padding: 16px; }
  .section-shell { width: calc(100% - 32px); }
  .server-section, .manifesto, .systems-section, .story-section, .steps-section, .activity-section, .updates-section, .faq-section, .access-section { padding-top: 78px; }
  .universe-section { gap: 26px; padding-top: 76px; }
  .universe-intro .section-lede { margin-top: 20px; }
  .universe-bento { gap: 12px; }
  .universe-card,
  .universe-card-main,
  .universe-card-red,
  .universe-card-gold { min-height: 236px; border-radius: 26px 14px 26px 14px; }
  .universe-card-main { min-height: 342px; }
  .universe-card { padding: 21px; }
  .universe-main-word { font-size: clamp(40px, 13vw, 52px); }
  .universe-logo { width: 112px; height: 112px; right: 8%; bottom: 15%; }
  .server-layout { margin-top: 38px; }
  .server-card { padding: 21px 18px; border-radius: 28px 14px 28px 14px; }
  .server-card-top { gap: 10px; }
  .server-title { font-size: clamp(29px, 10vw, 40px); }
  .server-progress-meta { gap: 8px; font-size: 8px; }
  .server-address { gap: 15px; padding: 15px; }
  .server-ip { font-size: 13px !important; letter-spacing: .02em; }
  .copy-button { width: 100%; min-height: 48px; }
  .principles-grid { gap: 12px; }
  .principle-card,
  .principle-card:nth-child(2),
  .principle-card:nth-child(3) { min-height: 218px; padding: 25px 21px; border-radius: 24px; }
  .system-card,
  .system-card-featured,
  .system-card:not(.system-card-featured) { border-radius: 25px 14px 25px 14px; }
  .system-card-body { min-height: 218px; padding: 23px 20px 21px; }
  .story-path,
  .story-path:nth-child(2),
  .story-path:nth-child(3) { min-height: 148px; border-radius: 24px 14px 24px 14px; }
  .steps-list { gap: 10px; }
  .step-row { grid-template-columns: 32px 1fr 18px; gap: 11px; padding: 21px 16px; border-radius: 18px; }
  .step-row:hover { padding-left: 16px; }
  .city-banner { min-height: 260px; margin-top: 44px; border-radius: 30px 13px 30px 13px; }
  .city-banner-copy, .city-banner-stamp { padding: 20px; }
  .city-banner-copy strong { font-size: clamp(29px, 10vw, 50px); }
  .city-banner-stamp img { width: 75px; height: 75px; }
  .updates-grid { gap: 12px; margin-top: 37px; }
  .update-card,
  .update-card:nth-child(2),
  .update-card:nth-child(3) { min-height: 250px; padding: 23px 20px; border-radius: 24px 14px 24px 14px; }
  .access-card { min-height: 525px; padding: 37px 22px; border-radius: 34px 13px 34px 13px; }
  .access-content > p:not(.section-index) { font-size: 14px; }
  .access-actions { gap: 9px; }
  .access-actions .button { min-height: 50px; }
  .access-logo { right: 3px; bottom: 12px; }
  .access-logo img { width: 132px; height: 132px; }
  .faq-list details { border-radius: 16px; }
  .faq-list summary { min-height: 62px; padding: 17px 16px; font-size: 14px; }
  .faq-list details p { margin: -1px 16px 18px; font-size: 13px; }
  .footer { gap: 35px; }
  .toast { right: 16px; bottom: 16px; max-width: calc(100% - 32px); border-radius: 16px; }
}

@media (hover: none) {
  .universe-card:hover,
  .story-path:hover,
  .update-card:hover,
  .system-card:hover,
  .button:hover { transform: none; }
}

/* North Street — visual direction 02: editorial, cinematic and fully ordered */
:root {
  --max: 1280px;
  --section-space: clamp(96px, 10vw, 154px);
  --glass: rgba(14, 16, 23, .72);
  --glass-strong: rgba(11, 13, 18, .9);
  --stroke: rgba(255, 255, 255, .14);
  --stroke-soft: rgba(255, 255, 255, .075);
}

body {
  background:
    radial-gradient(circle at 4% 0%, rgba(223, 31, 45, .12), transparent 26rem),
    radial-gradient(circle at 96% 24%, rgba(238, 188, 76, .055), transparent 24rem),
    linear-gradient(180deg, #08090d 0%, #07080b 55%, #090a0f 100%);
}
main { position: relative; }
section:not(.hero) { scroll-margin-top: 112px; }

/* Floating navigation */
.topbar {
  width: min(calc(100% - 48px), 1380px);
  margin: 14px auto 0;
  min-height: 74px;
  padding-inline: 25px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 26px;
  background: rgba(8, 10, 14, .76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .06);
}
.topbar.is-scrolled {
  min-height: 64px;
  margin-top: 7px;
  border-color: rgba(255, 255, 255, .24);
  background: rgba(8, 10, 14, .95);
}
.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .35), 0 0 0 1px rgba(255, 255, 255, .05);
}
.brand-lockup strong { letter-spacing: .1em; }
.desktop-nav {
  gap: 3px;
  padding: 5px;
  border: 1px solid var(--stroke-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
}
.desktop-nav a {
  padding: 9px 15px;
  border-radius: 999px;
}
.desktop-nav a::after { display: none; }
.desktop-nav a:hover,
.desktop-nav a.is-active {
  background: rgba(223, 31, 45, .13);
  color: #fff;
}
.topbar-cta {
  min-height: 42px;
  padding-inline: 17px;
  border-color: rgba(223, 31, 45, .48);
  background: rgba(223, 31, 45, .09);
}

/* Cinematic hero */
.hero {
  min-height: clamp(760px, calc(100svh + 25px), 980px);
  margin-top: -88px;
  padding-top: 88px;
  border-radius: 0 0 clamp(58px, 8vw, 112px) clamp(58px, 8vw, 112px);
  background:
    linear-gradient(90deg, rgba(7, 8, 11, .98) 0%, rgba(7, 8, 11, .8) 34%, rgba(7, 8, 11, .18) 100%),
    linear-gradient(0deg, rgba(7, 8, 11, .84) 0%, transparent 46%, rgba(7, 8, 11, .28) 100%),
    url("/north-street-city.png") 61% center / cover no-repeat,
    #090b0f;
  box-shadow: 0 35px 100px rgba(0, 0, 0, .34);
}
.hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 35%, rgba(223, 31, 45, .2), transparent 25rem),
    linear-gradient(108deg, transparent 44%, rgba(255, 255, 255, .055) 44.15%, transparent 44.4%);
  content: "";
  pointer-events: none;
}
.hero-content {
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(48px, 6vw, 104px);
  min-height: clamp(700px, calc(100svh - 10px), 890px);
  padding-top: clamp(112px, 13vh, 165px);
  padding-bottom: 116px;
}
.hero-copy {
  max-width: 620px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 36px 16px 36px 16px;
  background: linear-gradient(145deg, rgba(19, 21, 28, .78), rgba(8, 10, 14, .48));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .055);
  backdrop-filter: blur(12px);
  isolation: isolate;
}
.hero-copy::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red-bright), transparent 82%);
  box-shadow: 0 0 24px rgba(255, 61, 73, .45);
  content: "";
  pointer-events: none;
}
.eyebrow {
  width: max-content;
  max-width: 100%;
  margin-bottom: 27px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  font-size: 9px;
  letter-spacing: .16em;
}
.eyebrow-line { width: 17px; }
.hero h1 {
  font-size: clamp(66px, 7.5vw, 116px);
  line-height: .83;
  letter-spacing: -.105em;
}
.hero-lede { max-width: 470px; margin-top: 29px; font-size: 16px; line-height: 1.72; }
.hero-actions { margin-top: 30px; }
.hero-actions .button { min-width: 176px; }
.hero-tags {
  gap: 10px 18px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .56);
}
.hero-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 999px;
  background: rgba(0, 0, 0, .16);
}
.hero-tags span::before { width: 5px; height: 5px; }
.hero-showcase {
  min-height: 680px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 48px 18px 48px 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .055), transparent 38%),
    radial-gradient(circle at 58% 46%, rgba(223, 31, 45, .12), transparent 41%),
    rgba(7, 9, 13, .2);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .04);
}
.hero-showcase::before { inset: 7% 7%; border-radius: 50% 50% 20% 20%; }
.hero-showcase::after { top: 9%; right: 10%; bottom: 9%; left: 10%; }
.hero-logo { width: min(35vw, 500px); height: min(35vw, 500px); }
.showcase-topline, .showcase-bottom { width: min(35vw, 500px); }
.showcase-topline { top: 55px; }
.showcase-bottom { bottom: 51px; }
.showcase-chip { border-radius: 999px; }

/* Connection module visible before the first scroll */
.hero-connection {
  max-width: 490px;
  margin-top: 24px;
  padding: 15px 17px 14px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 22px 10px 22px 10px;
  background: rgba(4, 6, 9, .55);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .05);
  backdrop-filter: blur(14px);
}
.hero-connection-top,
.hero-connection-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, .5);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
}
.hero-connection-live { display: inline-flex; align-items: center; gap: 7px; color: #d8c789; }
.hero-connection-main { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 13px 0 14px; }
.hero-connection-main strong { color: #fff3d2; font-family: "Courier New", monospace; font-size: clamp(15px, 2vw, 20px); letter-spacing: .04em; }
.hero-copy-button {
  flex: none;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.hero-copy-button:hover { border-color: var(--red-bright); background: rgba(223, 31, 45, .18); transform: translateY(-2px); }
.hero-connection-bottom { padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, .09); }
.hero-connection-bottom a { color: #fff; transition: color .2s ease; }
.hero-connection-bottom a:hover { color: var(--red-bright); }
.hero-connection-bottom b { margin-left: 5px; color: var(--red-bright); font-size: 14px; }

/* A compact information rail instead of a heavy full-width strip */
.signal-bar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  width: min(var(--max), calc(100% - 96px));
  margin: -38px auto 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.signal-bar > div,
.signal-bar > div:not(:first-child) {
  position: relative;
  min-height: 104px;
  padding: 20px 20px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 22px 10px 22px 10px;
  background: linear-gradient(145deg, rgba(20, 23, 30, .9), rgba(9, 11, 16, .88));
  box-shadow: 0 18px 48px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .04);
}
.signal-bar > div::after {
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  content: "";
  opacity: .9;
}
.signal-bar > div:nth-child(2) { border-radius: 10px 22px 10px 22px; }
.signal-bar > div:nth-child(3) { border-color: rgba(238, 188, 76, .2); }
.signal-bar span, .signal-bar small { font-size: 8px; }
.signal-bar strong { margin-top: 8px; font-size: 14px; }
.signal-bar small { max-width: 150px; font-size: 10px; line-height: 1.35; }

/* Consistent section hierarchy */
.server-section,
.manifesto,
.systems-section,
.story-section,
.steps-section,
.activity-section,
.updates-section,
.faq-section { padding-top: var(--section-space); }
.section-heading { gap: clamp(40px, 9vw, 142px); }
.section-index {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 7px 11px;
  border: 1px solid rgba(223, 31, 45, .22);
  border-radius: 999px;
  background: rgba(223, 31, 45, .07);
  font-size: 9px;
  letter-spacing: .17em;
}
h2 { font-size: clamp(48px, 6.2vw, 86px); line-height: .9; }
.section-lede { color: #b9bbc1; font-size: 16px; line-height: 1.72; }
.section-lede-short { max-width: 405px; }

/* Server identity block */
.server-layout { gap: clamp(42px, 7vw, 104px); margin-top: 58px; }
.server-copy { max-width: 500px; padding-left: 23px; border-left: 2px solid rgba(223, 31, 45, .75); }
.server-number { font-size: clamp(36px, 4.2vw, 64px); }
.server-description { margin-top: 25px; font-size: 15px; }
.server-facts { gap: 9px; margin-top: 32px; border: 0; }
.server-facts div,
.server-facts div:nth-child(even) {
  min-height: 78px;
  padding: 14px 15px !important;
  border: 1px solid var(--stroke-soft) !important;
  border-radius: 15px;
  background: rgba(255, 255, 255, .025);
}
.server-facts strong { font-size: 12px; }
.server-card {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 34px 15px 34px 15px;
  border-color: rgba(255, 255, 255, .2);
  background:
    radial-gradient(circle at 92% 4%, rgba(223, 31, 45, .2), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .018) 46%),
    #10131a;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34), 14px 14px 0 rgba(223, 31, 45, .07);
}
.server-card::after {
  position: absolute;
  top: 20px;
  right: 21px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 7px rgba(255, 61, 73, .08), 0 0 25px rgba(255, 61, 73, .65);
  content: "";
}
.server-card-top { padding-bottom: 17px; }
.server-title { margin-top: 32px; font-size: clamp(34px, 4vw, 59px); }
.server-subtitle { font-size: 13px; }
.server-progress { height: 5px; margin-top: 34px; }
.server-progress-meta { margin-top: 11px; }
.server-address { margin-top: 28px; padding: 17px; border-radius: 18px; background: rgba(0, 0, 0, .18); }
.server-address strong { font-size: 13px; }
.server-connect { min-height: 56px; margin-top: 16px; }

/* Bento universe */
.universe-section { grid-template-columns: .7fr 1.3fr; gap: clamp(42px, 7vw, 110px); padding-top: clamp(108px, 11vw, 170px); }
.universe-intro { position: sticky; top: 126px; }
.universe-intro .section-lede { margin-top: 25px; font-size: 16px; }
.universe-bento { grid-template-columns: 1.14fr .86fr; gap: 15px; }
.universe-card { min-height: 226px; border-color: rgba(255, 255, 255, .17); box-shadow: 0 24px 68px rgba(0, 0, 0, .2); }
.universe-card-main { min-height: 468px; border-radius: 42px 16px 42px 16px; }
.universe-card-red { border-radius: 16px 42px 16px 42px; }
.universe-card-gold { border-radius: 42px 16px 42px 16px; }
.universe-main-word { font-size: clamp(48px, 5.6vw, 82px); }
.universe-card h3 { font-size: clamp(28px, 3vw, 40px); }

/* Principles and systems become a proper visual library */
.manifesto-top { margin-bottom: 44px; }
.manifesto-content { padding-top: 38px; }
.principles-grid { gap: 13px; }
.principle-card,
.principle-card:nth-child(2),
.principle-card:nth-child(3) {
  min-height: 260px;
  padding: 28px 26px;
  border: 1px solid var(--stroke) !important;
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .012));
  box-shadow: 0 20px 60px rgba(0, 0, 0, .16);
}
.principle-card:nth-child(2) { border-radius: 15px 31px 15px 31px; }
.principle-card:nth-child(3) { border-radius: 31px 15px 31px 15px; }
.principle-card h3 { margin-top: 38px; font-size: 23px; }
.principle-card p { font-size: 13px; }
.systems-section { padding-top: clamp(108px, 11vw, 170px); }
.system-filters {
  width: max-content;
  max-width: 100%;
  margin-top: 38px;
  padding: 6px;
  overflow: hidden;
  border: 1px solid var(--stroke-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
}
.filter-button { min-height: 38px; padding: 8px 15px; border-radius: 999px; }
.filter-button.is-active { box-shadow: 0 6px 18px rgba(223, 31, 45, .12); }
.systems-grid { gap: 18px; margin-top: 19px; }
.system-card,
.system-card:not(.system-card-featured),
.system-card-featured {
  border-radius: 28px 14px 28px 14px;
  border-color: var(--stroke);
  box-shadow: 0 20px 58px rgba(0, 0, 0, .18);
}
.system-card-featured { min-height: 350px; grid-template-columns: 1.12fr .88fr; border-radius: 38px 16px 38px 16px; }
.system-visual,
.system-card-featured .system-visual { min-height: 290px; border-right: 0; }
.system-visual::before { inset: 17px; border-radius: 15px; }
.visual-word { right: 23px; bottom: 15px; left: auto; color: rgba(255, 255, 255, .15); transform: none; }
.visual-symbol { top: 26px; right: 25px; }
.system-card-body { padding: 29px 27px 26px; }
.system-card-body h3 { margin: 30px 0 11px; font-size: clamp(24px, 2.6vw, 34px); }
.system-card-body p { font-size: 13px; }

/* Path, onboarding and activity */
.story-section { grid-template-columns: .68fr 1.32fr; gap: clamp(44px, 8vw, 120px); }
.story-heading { padding: 25px 0 0 23px; border-left: 2px solid rgba(223, 31, 45, .72); }
.story-heading .section-lede { margin-top: 24px; }
.story-paths { gap: 13px; }
.story-path,
.story-path:nth-child(2),
.story-path:nth-child(3) { min-height: 158px; border-radius: 28px 14px 28px 14px; border-color: var(--stroke); box-shadow: 0 16px 45px rgba(0, 0, 0, .15); }
.story-path h3 { font-size: 27px; }
.steps-section { grid-template-columns: .7fr 1.3fr; gap: clamp(44px, 8vw, 120px); }
.steps-intro { padding: 25px 0 0 23px; border-left: 2px solid rgba(238, 188, 76, .55); }
.steps-intro .section-lede { margin-top: 24px; }
.steps-list {
  gap: 11px;
  padding: 11px;
  border: 1px solid var(--stroke-soft);
  border-radius: 30px 13px 30px 13px;
  background: rgba(255, 255, 255, .018);
}
.step-row { min-height: 104px; padding: 23px 20px; border: 1px solid var(--stroke-soft); border-radius: 20px; background: rgba(255, 255, 255, .03); }
.step-row:hover { padding-left: 28px; border-color: rgba(223, 31, 45, .4); }
.step-row h3 { font-size: 20px; }
.activity-section { padding-bottom: var(--section-space); }
.activity-topline { padding-bottom: 17px; border-bottom: 1px solid var(--stroke-soft); }
.activity-layout { grid-template-columns: .82fr 1.18fr; gap: clamp(45px, 8vw, 110px); margin-top: 34px; }
.activity-list { display: grid; gap: 10px; border-top: 0; }
.activity-list > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--stroke-soft);
  border-radius: 18px 9px 18px 9px;
  background: rgba(255, 255, 255, .025);
}
.activity-list p { margin-top: -4px; font-size: 12px; }
.city-banner {
  min-height: 360px;
  margin-top: 54px;
  border-radius: 40px 15px 40px 15px;
  background:
    linear-gradient(90deg, rgba(13, 9, 13, .96) 0%, rgba(36, 13, 20, .65) 48%, rgba(7, 8, 11, .42) 100%),
    url("/north-street-city.png") 62% center / cover no-repeat;
  box-shadow: 0 30px 85px rgba(0, 0, 0, .32);
}
.city-banner::before { opacity: .25; }
.city-banner-copy strong { font-size: clamp(36px, 5.5vw, 76px); }

/* Updates, access and footer */
.updates-grid { gap: 18px; margin-top: 45px; }
.update-card,
.update-card:nth-child(2),
.update-card:nth-child(3) {
  min-height: 325px;
  padding: 29px 26px;
  border-radius: 28px 14px 28px 14px;
  border-color: var(--stroke);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .16);
}
.update-card time { margin-top: 38px; }
.update-card h3 { font-size: 25px; }
.access-section { padding-top: var(--section-space); }
.access-card { min-height: 430px; border-radius: 46px 16px 46px 16px; box-shadow: 0 35px 95px rgba(0, 0, 0, .35); }
.access-content { max-width: 680px; }
.access-content h2 { font-size: clamp(48px, 6vw, 82px); }
.access-actions .button { min-height: 52px; }
.access-note { display: block; margin-top: 15px; color: rgba(255, 255, 255, .56); font-size: 11px; }
.faq-section { gap: clamp(42px, 8vw, 120px); padding-bottom: var(--section-space); }
.faq-heading { padding: 25px 0 0 23px; border-left: 2px solid rgba(109, 163, 185, .5); }
.faq-list { display: grid; gap: 10px; }
.faq-list details { margin: 0; border-color: var(--stroke-soft); border-radius: 20px 10px 20px 10px; background: rgba(255, 255, 255, .025); }
.faq-list summary { min-height: 64px; padding: 19px 22px; }
.faq-list details p { margin: -3px 22px 22px; }
.footer { gap: 75px; padding-top: 36px; border-top-color: var(--stroke); }
.footer-brand { padding: 25px; border: 1px solid var(--stroke-soft); border-radius: 26px 12px 26px 12px; background: rgba(255, 255, 255, .025); }
.footer-links { padding-top: 25px; }

@media (max-width: 1080px) {
  .hero-content { grid-template-columns: 1fr; gap: 26px; padding-top: 120px; }
  .hero-copy { max-width: 700px; }
  .hero-showcase { width: min(100%, 700px); min-height: 580px; margin: 0 auto; }
  .hero-logo, .showcase-topline, .showcase-bottom { width: min(52vw, 450px); }
  .hero-logo { height: min(52vw, 450px); }
  .universe-intro { position: static; }
  .server-layout, .story-section, .steps-section, .activity-layout { gap: 42px; }
}

@media (max-width: 980px) {
  .topbar { width: calc(100% - 24px); margin-top: 8px; padding-inline: 20px; border-radius: 22px; }
  .topbar.is-scrolled { margin-top: 4px; }
  .mobile-menu { top: 76px; width: calc(100% - 24px); margin-inline: auto; border-radius: 0 0 24px 24px; }
  .hero { margin-top: -78px; padding-top: 78px; }
  .hero-content { width: min(var(--max), calc(100% - 42px)); padding-bottom: 100px; }
  .signal-bar { width: min(var(--max), calc(100% - 42px)); margin-top: -30px; }
  .signal-bar > div, .signal-bar > div:not(:first-child) { padding: 18px; }
  .section-heading, .server-layout, .story-section, .steps-section, .activity-layout, .faq-section { grid-template-columns: 1fr; }
  .section-lede-short { justify-self: start; }
  .server-copy, .story-heading, .steps-intro, .faq-heading { max-width: 720px; }
  .system-card-featured { grid-column: span 2; }
}

@media (max-width: 660px) {
  .topbar { width: calc(100% - 20px); min-height: 64px; padding-inline: 16px; }
  .topbar.is-scrolled { min-height: 60px; }
  .brand-logo { width: 41px; height: 41px; border-radius: 12px; }
  .desktop-nav, .topbar-cta { display: none; }
  .mobile-menu { top: 70px; width: calc(100% - 20px); padding-inline: 17px; }
  .hero {
    min-height: auto;
    margin-top: -72px;
    padding-top: 72px;
    border-radius: 0 0 48px 48px;
    background:
      linear-gradient(180deg, rgba(7, 8, 11, .9), rgba(7, 8, 11, .42) 46%, rgba(7, 8, 11, .93) 100%),
      linear-gradient(90deg, rgba(7, 8, 11, .84), rgba(7, 8, 11, .22) 78%),
      url("/north-street-city.png") 69% center / cover no-repeat,
      #090b0f;
  }
  .hero-content { width: calc(100% - 32px); min-height: 0; padding: 82px 0 88px; }
  .hero-copy { padding: 22px 17px 19px; border-radius: 28px 12px 28px 12px; }
  .eyebrow { margin-bottom: 22px; font-size: 8px; }
  .hero h1 { font-size: clamp(54px, 15.5vw, 76px); }
  .hero-lede { margin-top: 23px; font-size: 15px; }
  .hero-actions { flex-direction: column; margin-top: 25px; }
  .hero-actions .button { width: 100%; min-height: 51px; }
  .hero-tags { gap: 7px; margin-top: 23px; }
  .hero-tags span { padding: 6px 8px; font-size: 7px; letter-spacing: .08em; }
  .hero-connection { margin-top: 20px; padding: 14px; border-radius: 20px 9px 20px 9px; }
  .hero-connection-main { align-items: flex-start; flex-direction: column; gap: 10px; }
  .hero-connection-main strong { font-size: 16px; }
  .hero-copy-button { width: 100%; min-height: 44px; }
  .hero-connection-bottom { flex-wrap: wrap; gap: 8px; font-size: 7px; }
  .hero-showcase { min-height: 405px; border-radius: 32px 13px 32px 13px; }
  .hero-logo, .showcase-topline, .showcase-bottom { width: min(70vw, 292px); }
  .hero-logo { height: min(70vw, 292px); }
  .showcase-topline { top: 25px; }
  .showcase-bottom { bottom: 23px; }
  .showcase-ring-one { width: min(80vw, 330px); height: min(80vw, 330px); }
  .showcase-ring-two { width: min(59vw, 245px); height: min(59vw, 245px); }
  .showcase-glow { width: min(84vw, 350px); height: min(84vw, 350px); }
  .showcase-chip { min-width: 104px; padding: 8px 10px; }
  .showcase-chip-left { top: 17%; left: 2px; }
  .showcase-chip-right { top: 44%; right: 2px; }
  .showcase-chip-bottom { right: 5%; bottom: 5%; }
  .signal-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); width: calc(100% - 32px); margin-top: -24px; gap: 9px; }
  .signal-bar > div, .signal-bar > div:not(:first-child) { min-height: 104px; padding: 15px 13px; border-radius: 18px 9px 18px 9px; }
  .signal-bar > div:nth-child(2) { border-radius: 9px 18px 9px 18px; }
  .signal-bar strong { font-size: 12px; }
  .signal-bar small { font-size: 9px; }
  .section-shell { width: calc(100% - 32px); }
  .server-section, .manifesto, .systems-section, .story-section, .steps-section, .activity-section, .updates-section, .faq-section, .access-section { padding-top: 82px; }
  .section-heading { gap: 25px; }
  .section-index { padding: 6px 9px; font-size: 8px; }
  h2 { font-size: clamp(43px, 12.6vw, 64px); }
  .section-lede { font-size: 15px; }
  .universe-section { grid-template-columns: 1fr; gap: 25px; padding-top: 78px; }
  .universe-bento { grid-template-columns: 1fr; gap: 11px; }
  .universe-card,
  .universe-card-main,
  .universe-card-red,
  .universe-card-gold { min-height: 235px; border-radius: 27px 13px 27px 13px; }
  .universe-card-main { min-height: 350px; }
  .universe-main-word { font-size: clamp(42px, 13vw, 54px); }
  .universe-card h3 { font-size: 29px; }
  .server-layout { margin-top: 37px; }
  .server-copy, .story-heading, .steps-intro, .faq-heading { padding-left: 16px; }
  .server-number { font-size: 39px; }
  .server-facts { grid-template-columns: 1fr 1fr; }
  .server-facts div, .server-facts div:nth-child(even) { min-height: 75px; padding: 13px 11px !important; }
  .server-facts strong { font-size: 11px; }
  .server-card { padding: 22px 17px; border-radius: 28px 13px 28px 13px; }
  .server-title { font-size: clamp(30px, 10vw, 42px); }
  .server-progress-meta { font-size: 7px; }
  .server-address { align-items: stretch; flex-direction: column; padding: 14px; }
  .copy-button, .server-connect { width: 100%; min-height: 49px; }
  .manifesto-content { grid-template-columns: 1fr; gap: 18px; padding-top: 28px; }
  .manifesto-rule { width: 74px; height: 2px; }
  .principles-grid { grid-template-columns: 1fr; gap: 10px; }
  .principle-card, .principle-card:nth-child(2), .principle-card:nth-child(3) { min-height: 210px; border-radius: 23px 12px 23px 12px; }
  .system-filters { width: 100%; margin-top: 30px; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .system-filters::-webkit-scrollbar { display: none; }
  .filter-button { flex: none; min-height: 42px; font-size: 12px; }
  .systems-grid { grid-template-columns: 1fr; gap: 12px; }
  .system-card-featured { grid-column: auto; }
  .system-card,
  .system-card:not(.system-card-featured),
  .system-card-featured { grid-template-columns: 1fr; border-radius: 26px 13px 26px 13px; }
  .system-visual, .system-card-featured .system-visual { min-height: 174px; border-bottom: 1px solid var(--stroke-soft); }
  .visual-word { right: 18px; bottom: 13px; font-size: 52px; }
  .system-card-body { min-height: 220px; padding: 23px 19px 20px; }
  .system-card-body h3 { margin-top: 25px; font-size: 27px; }
  .story-section, .steps-section { gap: 26px; }
  .story-path,
  .story-path:nth-child(2),
  .story-path:nth-child(3) { min-height: 150px; padding: 21px 16px; border-radius: 24px 12px 24px 12px; }
  .story-path { grid-template-columns: 28px 1fr 20px; gap: 11px; }
  .story-path h3 { font-size: 22px; }
  .steps-list { padding: 8px; border-radius: 24px 12px 24px 12px; }
  .step-row { grid-template-columns: 30px 1fr 18px; gap: 10px; min-height: 95px; padding: 19px 14px; border-radius: 17px; }
  .step-row:hover { padding-left: 14px; }
  .step-row h3 { font-size: 18px; }
  .step-row p { font-size: 13px; }
  .activity-topline { align-items: flex-start; flex-direction: column; gap: 12px; }
  .activity-layout { margin-top: 26px; }
  .activity-list > div { padding: 15px 14px; border-radius: 17px 9px 17px 9px; }
  .city-banner { min-height: 275px; margin-top: 42px; border-radius: 30px 13px 30px 13px; background-position: 63% center; }
  .city-banner-copy, .city-banner-stamp { padding: 20px; }
  .city-banner-copy strong { font-size: clamp(31px, 10vw, 53px); }
  .city-banner-stamp img { width: 78px; height: 78px; }
  .updates-grid { grid-template-columns: 1fr; gap: 11px; margin-top: 35px; }
  .update-card, .update-card:nth-child(2), .update-card:nth-child(3) { min-height: 255px; padding: 23px 19px; border-radius: 25px 12px 25px 12px; }
  .update-card h3 { font-size: 23px; }
  .access-card { min-height: 540px; padding: 38px 21px; border-radius: 35px 13px 35px 13px; }
  .access-content h2 { font-size: clamp(44px, 12vw, 63px); }
  .access-actions { flex-direction: column; gap: 9px; }
  .access-actions .button { width: 100%; min-height: 51px; }
  .access-note { max-width: 260px; line-height: 1.5; }
  .access-logo { right: 2px; bottom: 11px; }
  .access-logo img { width: 130px; height: 130px; }
  .faq-list summary { padding: 17px 15px; font-size: 14px; }
  .faq-list details p { margin: -2px 15px 18px; }
  .footer { grid-template-columns: 1fr; gap: 25px; padding-top: 30px; }
  .footer-brand { padding: 20px; }
  .footer-links { gap: 30px; padding-top: 0; }
}

@media (hover: none) {
  .hero-copy-button:hover { transform: none; }
  .desktop-nav a:hover { background: transparent; }
}

/* Final polish — restore the original ordered information rail */
.ticker {
  position: relative;
  z-index: 2;
  border-bottom: 0;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .14);
}

.signal-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  border-radius: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(223, 31, 45, .1), transparent 24rem),
    linear-gradient(180deg, #12151c 0%, #0c0e13 100%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
}

.signal-bar > div,
.signal-bar > div:not(:first-child) {
  min-height: 112px;
  padding: 21px 24px 20px;
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: background .25s ease, transform .25s ease;
}

.signal-bar > div:first-child {
  border-radius: 20px 0 0 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .055), transparent 76%);
}

.signal-bar > div:last-child {
  border-right: 0;
  border-radius: 0 20px 20px 0;
}

.signal-bar > div:hover {
  background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(223, 31, 45, .045));
  transform: translateY(-2px);
}

.signal-bar > div::after {
  right: 24px;
  bottom: 15px;
  width: 29px;
  height: 2px;
  opacity: .8;
}

.signal-bar > div:nth-child(2),
.signal-bar > div:nth-child(3) {
  border-radius: 0;
}

.signal-bar > div:nth-child(3) { border-color: transparent; }
.signal-bar span, .signal-bar small { font-size: 8px; }
.signal-bar strong { margin-top: 8px; font-size: 14px; }
.signal-bar small { max-width: 170px; font-size: 10px; line-height: 1.4; }

@media (max-width: 980px) {
  .signal-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px max(21px, calc((100vw - var(--max)) / 2));
  }

  .signal-bar > div,
  .signal-bar > div:not(:first-child) {
    min-height: 102px;
    padding: 19px 20px;
    border-right: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0;
  }

  .signal-bar > div:nth-child(2) { border-radius: 0 18px 0 0; }
  .signal-bar > div:nth-child(3) { border-radius: 0 0 0 18px; }
  .signal-bar > div:nth-child(4) { border-right: 0; border-radius: 0 0 18px 0; }
  .signal-bar > div:nth-child(3), .signal-bar > div:nth-child(4) { border-bottom: 0; }
}

@media (max-width: 660px) {
  .ticker-track { padding-block: 10px; font-size: 8px; }

  .signal-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    padding: 9px 16px 12px;
    gap: 8px;
    border-top: 0;
    background:
      radial-gradient(circle at 5% 0%, rgba(223, 31, 45, .11), transparent 15rem),
      #0c0e13;
  }

  .signal-bar > div,
  .signal-bar > div:not(:first-child) {
    min-height: 97px;
    padding: 16px 13px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px 9px 18px 9px !important;
    background: linear-gradient(145deg, rgba(20, 23, 30, .88), rgba(9, 11, 16, .88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
  }

  .signal-bar > div:nth-child(2) { border-color: rgba(255, 255, 255, .1); }
  .signal-bar > div:hover { transform: none; }
  .signal-bar > div::after { right: 13px; bottom: 12px; width: 24px; }
  .signal-bar strong { margin-top: 7px; font-size: 12px; }
  .signal-bar small { max-width: 118px; font-size: 9px; line-height: 1.3; }
}

/* North Street — visual refinement 04 */
:root {
  --max: 1320px;
  --section-space: clamp(104px, 10vw, 156px);
  --red: #e32736;
  --red-bright: #ff4050;
  --red-deep: #801421;
  --gold: #efc65a;
  --stroke: rgba(255, 255, 255, .15);
  --stroke-soft: rgba(255, 255, 255, .075);
}

html { background: #07080b; }
body {
  background:
    radial-gradient(circle at 4% 0%, rgba(223, 31, 45, .13), transparent 27rem),
    radial-gradient(circle at 96% 36%, rgba(238, 188, 76, .045), transparent 25rem),
    linear-gradient(180deg, #07080b 0%, #08090d 48%, #0a0b10 100%);
}

.topbar {
  width: min(calc(100% - 48px), 1420px);
  min-height: 76px;
  margin-top: 12px;
  padding-inline: 26px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 24px;
  background: linear-gradient(105deg, rgba(8, 10, 14, .94), rgba(15, 17, 23, .74));
  box-shadow: 0 22px 72px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .07);
}

.topbar.is-scrolled {
  border-color: rgba(255, 255, 255, .25);
  background: rgba(8, 10, 14, .96);
  box-shadow: 0 18px 58px rgba(0, 0, 0, .42);
}

.brand-logo {
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 15px 6px 15px 6px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .015));
  box-shadow: 0 12px 28px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.desktop-nav { gap: 8px; }
.desktop-nav a { position: relative; padding: 11px 15px; border-radius: 12px; color: rgba(255, 255, 255, .62); transition: color .2s ease, background .2s ease; }
.desktop-nav a::after { position: absolute; right: 15px; bottom: 4px; left: 15px; height: 2px; border-radius: 999px; background: var(--red-bright); content: ""; opacity: 0; transform: scaleX(.25); transition: opacity .2s ease, transform .2s ease; }
.desktop-nav a:hover { background: rgba(255, 255, 255, .05); color: #fff; }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { opacity: 1; transform: scaleX(1); }
.desktop-nav a.is-active { color: #fff; }
.topbar-cta { min-height: 45px; padding-inline: 17px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 14px 6px 14px 6px; background: rgba(255, 255, 255, .035); transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.topbar-cta:hover { border-color: rgba(255, 61, 73, .62); background: rgba(223, 31, 45, .11); transform: translateY(-2px); }

.hero {
  min-height: clamp(740px, calc(100svh + 5px), 960px);
  margin-top: -88px;
  padding-top: 88px;
  overflow: hidden;
  border-radius: 0 0 clamp(62px, 8vw, 112px) clamp(62px, 8vw, 112px);
  background:
    linear-gradient(90deg, rgba(6, 8, 11, .99) 0%, rgba(6, 8, 11, .9) 32%, rgba(6, 8, 11, .28) 76%, rgba(6, 8, 11, .72) 100%),
    linear-gradient(180deg, rgba(6, 8, 11, .32), rgba(6, 8, 11, .86)),
    url("/north-street-city.png") 62% center / cover no-repeat,
    #090b0f;
  box-shadow: 0 38px 120px rgba(0, 0, 0, .42);
}

.hero::before {
  background:
    radial-gradient(circle at 70% 38%, rgba(255, 61, 73, .19), transparent 27rem),
    linear-gradient(108deg, transparent 44%, rgba(255, 255, 255, .055) 44.15%, transparent 44.4%),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: auto, auto, 88px 88px, 88px 88px;
  opacity: .9;
}

.hero-content {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 6vw, 106px);
  min-height: clamp(690px, calc(100svh - 34px), 860px);
  padding-top: clamp(112px, 12vh, 154px);
  padding-bottom: clamp(78px, 9vh, 116px);
}

.hero-copy {
  max-width: 638px;
  padding: clamp(29px, 3.2vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 38px 15px 38px 15px;
  background:
    linear-gradient(145deg, rgba(25, 28, 36, .86), rgba(7, 9, 13, .68)),
    rgba(9, 11, 15, .76);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .075), 14px 14px 0 rgba(223, 31, 45, .055);
  backdrop-filter: blur(18px);
}

.hero-copy::before { top: 20px; bottom: 20px; width: 3px; background: linear-gradient(180deg, var(--red-bright), rgba(255, 61, 73, .12) 78%, transparent); }
.hero-copy::after { position: absolute; top: -150px; right: -180px; width: 390px; height: 390px; border-radius: 50%; background: radial-gradient(circle, rgba(223, 31, 45, .16), transparent 68%); content: ""; pointer-events: none; }
.hero-copy > * { position: relative; z-index: 2; }

.eyebrow {
  margin-bottom: clamp(28px, 3.6vh, 39px);
  padding: 10px 15px;
  border-color: rgba(255, 255, 255, .16);
  background: linear-gradient(90deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
  font-size: 9px;
  letter-spacing: .19em;
}

.eyebrow-line { width: 25px; background: linear-gradient(90deg, var(--red-bright), var(--gold)); }
.hero h1 { max-width: 620px; font-size: clamp(65px, 7vw, 112px); font-weight: 900; line-height: .82; letter-spacing: -.11em; text-wrap: balance; }
.hero h1 span { color: var(--red-bright); text-shadow: 0 14px 40px rgba(223, 31, 45, .25); }
.hero-lede { max-width: 500px; margin-top: clamp(27px, 3.6vh, 37px); color: #c1c3c8; font-size: 17px; line-height: 1.68; }
.hero-actions { gap: 12px; margin-top: clamp(28px, 3.8vh, 39px); }
.hero-actions .button { min-width: 185px; min-height: 53px; border-radius: 999px; font-size: 14px; }
.button-primary { box-shadow: 0 16px 30px rgba(223, 31, 45, .23); }
.button-primary:hover { box-shadow: 0 22px 40px rgba(223, 31, 45, .36); }
.button-ghost { border-color: rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .025); }
.button-ghost:hover { border-color: var(--red-bright); background: rgba(223, 31, 45, .1); }
.hero-tags { gap: 8px; margin-top: 26px; }
.hero-tags span { padding: 8px 11px; border-color: rgba(255, 255, 255, .12); background: rgba(0, 0, 0, .22); font-size: 8px; letter-spacing: .13em; }
.hero-tags span::before { background: var(--red-bright); box-shadow: 0 0 9px rgba(255, 61, 73, .65); }

.hero-showcase {
  min-height: 680px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 48px 18px 48px 18px;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, .22), rgba(8, 10, 14, .64)),
    radial-gradient(circle at 56% 46%, rgba(223, 31, 45, .17), transparent 42%),
    url("/north-street-city.png") 68% center / cover no-repeat;
  box-shadow: 0 38px 100px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .08), -14px 14px 0 rgba(238, 188, 76, .035);
}

.hero-showcase::before { inset: 7%; border: 1px solid rgba(255, 255, 255, .1); border-radius: 50%; box-shadow: 0 0 0 1px rgba(223, 31, 45, .12), inset 0 0 70px rgba(223, 31, 45, .06); }
.hero-showcase::after { top: 8%; right: 9%; bottom: 8%; left: 9%; border-color: rgba(255, 255, 255, .08); }
.showcase-glow { width: min(44vw, 600px); height: min(44vw, 600px); opacity: .95; filter: blur(24px); }
.showcase-ring-one { border-color: rgba(255, 61, 73, .4); }
.showcase-ring-two { border-color: rgba(239, 198, 90, .23); }
.hero-logo { width: min(34vw, 500px); height: min(34vw, 500px); filter: drop-shadow(0 26px 42px rgba(0, 0, 0, .78)) drop-shadow(0 0 22px rgba(223, 31, 45, .14)); }
.showcase-topline, .showcase-bottom { width: min(35vw, 500px); }
.showcase-topline { top: 48px; }
.showcase-bottom { bottom: 44px; }
.showcase-chip { border-color: rgba(255, 255, 255, .23); background: rgba(8, 10, 14, .72); box-shadow: 0 16px 36px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .06); backdrop-filter: blur(16px); }
.showcase-chip-right strong { color: #fff; }
.showcase-chip-bottom strong { color: #fff1c7; }

.hero-connection {
  max-width: 510px;
  margin-top: 22px;
  padding: 16px 18px 15px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 23px 10px 23px 10px;
  background: linear-gradient(145deg, rgba(5, 7, 10, .68), rgba(20, 22, 29, .42));
  box-shadow: 0 20px 48px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .06);
}
.hero-connection-main strong { color: #fff3d2; font-size: clamp(15px, 1.8vw, 21px); text-shadow: 0 0 18px rgba(238, 188, 76, .12); }
.hero-copy-button { min-height: 40px; border-color: rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .055); }
.hero-copy-button:hover { border-color: var(--red-bright); background: rgba(223, 31, 45, .2); }

.ticker { position: relative; z-index: 4; border-bottom: 0; background: linear-gradient(90deg, #b91829, #ed2637 48%, #bd1728); box-shadow: 0 10px 28px rgba(0, 0, 0, .2); }
.ticker-track { padding-block: 12px; color: rgba(255, 255, 255, .92); text-shadow: 0 1px 8px rgba(0, 0, 0, .18); }

.signal-bar { background: linear-gradient(180deg, #151821, #0d0f15); box-shadow: 0 22px 60px rgba(0, 0, 0, .28); }
.signal-bar > div { background: linear-gradient(145deg, rgba(255, 255, 255, .055), transparent 70%); }
.signal-bar > div:hover { background: linear-gradient(145deg, rgba(255, 255, 255, .095), rgba(223, 31, 45, .07)); }

/* Give every section the same premium rhythm */
main > section:not(.hero), .footer { position: relative; }
main > section:not(.hero)::before { position: absolute; top: 0; right: max(48px, calc((100vw - var(--max)) / 2)); left: max(48px, calc((100vw - var(--max)) / 2)); height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1) 18%, rgba(255, 61, 73, .18) 50%, rgba(255, 255, 255, .1) 82%, transparent); content: ""; opacity: .72; }
.section-index { border-color: rgba(255, 61, 73, .3); background: linear-gradient(90deg, rgba(223, 31, 45, .12), rgba(223, 31, 45, .025)); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035); }
h2 { font-weight: 900; letter-spacing: -.085em; text-shadow: 0 12px 32px rgba(0, 0, 0, .2); }
.section-lede { color: #c0c2c8; }
.server-copy, .story-heading { border-left-color: rgba(255, 61, 73, .82); }
.steps-intro { border-left-color: rgba(239, 198, 90, .7); }
.universe-card, .principle-card, .system-card, .story-path, .update-card, .faq-list details, .server-card, .access-card { box-shadow: 0 26px 74px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .045); }
.universe-card:hover, .principle-card:hover, .system-card:hover, .story-path:hover, .update-card:hover { border-color: rgba(255, 61, 73, .34); box-shadow: 0 30px 84px rgba(0, 0, 0, .32), 0 0 0 1px rgba(255, 61, 73, .08); }
.visual-blue, .system-visual.visual-blue { background: linear-gradient(145deg, #3c121d, #17141b 60%, #0c0e13) !important; }
.faq-heading { border-left-color: rgba(255, 61, 73, .64); }
.footer { border-top-color: rgba(255, 255, 255, .12); }

@media (max-width: 1080px) {
  .hero { min-height: auto; }
  .hero-content { grid-template-columns: 1fr; min-height: auto; padding-top: 125px; padding-bottom: 106px; }
  .hero-copy, .hero-showcase { width: min(100%, 760px); max-width: 760px; margin-inline: auto; }
  .hero-showcase { min-height: 620px; }
  .hero-logo, .showcase-topline, .showcase-bottom { width: min(54vw, 470px); }
  .hero-logo { height: min(54vw, 470px); }
}

@media (max-width: 660px) {
  .topbar { width: calc(100% - 20px); min-height: 64px; margin-top: 8px; padding-inline: 15px; border-radius: 20px; }
  .hero { margin-top: -72px; padding-top: 72px; border-radius: 0 0 45px 45px; }
  .hero-content { grid-template-columns: 1fr; width: calc(100% - 32px); padding-top: 82px; padding-bottom: 87px; }
  .hero-copy { padding: 24px 18px 20px; border-radius: 29px 12px 29px 12px; box-shadow: 0 25px 70px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .065); }
  .hero-copy::before { top: 17px; bottom: 17px; }
  .eyebrow { margin-bottom: 22px; padding: 8px 10px; font-size: 8px; }
  .hero h1 { font-size: clamp(54px, 15.5vw, 76px); letter-spacing: -.105em; }
  .hero-lede { margin-top: 23px; font-size: 15px; }
  .hero-actions { margin-top: 26px; }
  .hero-tags { margin-top: 22px; }
  .hero-connection { margin-top: 19px; }
  .hero-showcase { min-height: 430px; border-radius: 33px 13px 33px 13px; }
  .hero-logo, .showcase-topline, .showcase-bottom { width: min(72vw, 300px); }
  .hero-logo { height: min(72vw, 300px); }
  main > section:not(.hero)::before { right: 18px; left: 18px; }
  h2 { letter-spacing: -.07em; }
}

/* Touch devices must never keep the desktop split layout */
@media (pointer: coarse) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-copy, .hero-showcase { width: min(100%, 760px); max-width: 760px; margin-inline: auto; }
}

/* North Street — official community access */
.topbar-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.topbar-actions .topbar-cta { justify-self: auto; }

.topbar-discord,
.footer-community-link,
.hero-community-link {
  transition: border-color .25s ease, background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.topbar-discord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 45px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px 6px 14px 6px;
  background: rgba(255, 255, 255, .025);
  color: rgba(255, 255, 255, .84);
  font-size: 11px;
  letter-spacing: .04em;
}

.topbar-discord:hover {
  border-color: rgba(255, 61, 73, .64);
  background: rgba(223, 31, 45, .13);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .22);
}

.topbar-discord > span:last-child,
.footer-community-link > span:last-child,
.hero-community-arrow { color: var(--red-bright); font-size: 16px; }

.discord-mark {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 23px;
  height: 23px;
  border: 1px solid rgba(255, 255, 255, .27);
  border-radius: 8px 5px 8px 5px;
  background: linear-gradient(145deg, var(--red-bright), var(--red));
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(223, 31, 45, .25);
}

.hero-community-link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 510px);
  margin-top: 13px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px 8px 18px 8px;
  background: linear-gradient(105deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018));
  color: rgba(255, 255, 255, .8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .055);
}

.hero-community-link > span:nth-child(2),
.footer-community-link > span:nth-child(2) {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 3px;
}

.hero-community-link small,
.footer-community-link small {
  color: rgba(255, 255, 255, .48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .17em;
}

.hero-community-link strong,
.footer-community-link strong { color: #fff; font-size: 13px; letter-spacing: .01em; }
.hero-community-link:hover { border-color: rgba(255, 61, 73, .56); background: rgba(223, 31, 45, .11); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0, 0, 0, .24); }
.discord-mark-large { width: 30px; height: 30px; border-radius: 10px 6px 10px 6px; font-size: 15px; }

.footer-community-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 300px);
  margin-top: 22px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px 7px 16px 7px;
  background: rgba(255, 255, 255, .025);
  color: rgba(255, 255, 255, .78);
}

.footer-community-link:hover { border-color: rgba(255, 61, 73, .52); background: rgba(223, 31, 45, .1); color: #fff; transform: translateY(-2px); }

@media (max-width: 980px) {
  .topbar-actions { gap: 7px; }
  .topbar-discord { padding-inline: 11px; }
}

@media (max-width: 660px) {
  .topbar-actions { display: none; }
  .mobile-community-link {
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
    padding: 13px 12px !important;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    border-radius: 16px 7px 16px 7px;
    background: rgba(223, 31, 45, .09);
  }
  .mobile-community-link > span:first-child { display: flex; flex: 1; flex-direction: column; gap: 4px; }
  .mobile-community-link small { color: rgba(255, 255, 255, .48); font-size: 8px; font-weight: 700; letter-spacing: .16em; }
  .mobile-community-link strong { color: #fff; font-size: 14px; }
  .mobile-community-link > span:last-child { color: var(--red-bright); font-size: 17px; }
  .hero-community-link { width: 100%; padding: 11px 12px; }
  .hero-community-link strong { font-size: 12px; }
  .footer-community-link { width: 100%; max-width: none; }
}

/* North Street — PCU and launcher access */
.topbar-tools {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  border-left: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease;
}

.topbar-tools:hover { border-color: rgba(255, 61, 73, .6); color: #fff; }

.access-tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 680px);
  margin-top: 22px;
}

.access-tool {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 13px 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px 8px 18px 8px;
  background: rgba(10, 9, 13, .25);
  color: rgba(255, 255, 255, .84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07);
  transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.access-tool:hover {
  border-color: rgba(255, 255, 255, .52);
  background: rgba(10, 9, 13, .4);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.access-tool-pcu { background: linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(12, 10, 14, .22)); }
.access-tool-launcher { border-color: rgba(255, 213, 126, .27); background: linear-gradient(135deg, rgba(238, 188, 76, .14), rgba(12, 10, 14, .22)); }
.access-tool-launcher:hover { border-color: rgba(255, 220, 141, .68); }

.access-tool-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 10px 5px 10px 5px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.access-tool-launcher .access-tool-icon { border-color: rgba(255, 225, 153, .42); color: #ffe19a; background: rgba(238, 188, 76, .14); }
.access-tool > span:nth-child(2) { display: flex; min-width: 0; flex: 1; flex-direction: column; gap: 3px; }
.access-tool small { overflow: hidden; color: rgba(255, 255, 255, .56); font-size: 7px; font-weight: 800; letter-spacing: .12em; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.access-tool strong { color: #fff; font-size: 14px; line-height: 1.1; }
.access-tool em { overflow: hidden; color: rgba(255, 255, 255, .6); font-size: 10px; font-style: normal; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.access-tool > b { flex: 0 0 auto; color: rgba(255, 255, 255, .8); font-size: 16px; font-weight: 400; }

@media (max-width: 1080px) {
  .topbar-tools { display: none; }
}

@media (max-width: 700px) {
  .access-tools { grid-template-columns: 1fr; }
  .access-tool { min-height: 70px; }
  .access-tool em { white-space: normal; }
}

@media (max-width: 660px) {
  .topbar-tools { display: none; }
  .access-tools { gap: 9px; margin-top: 20px; }
  .access-tool { padding: 12px; border-radius: 16px 7px 16px 7px; }
  .access-tool strong { font-size: 13px; }
  .access-tool em { font-size: 10px; }
}

/* North Street — launcher download */
.launcher-page {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 96px 24px 48px;
  background:
    radial-gradient(circle at 78% 30%, rgba(223, 31, 45, .2), transparent 30rem),
    radial-gradient(circle at 18% 90%, rgba(238, 188, 76, .08), transparent 24rem),
    #07080b;
}

.launcher-page::before,
.launcher-page::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.launcher-page::before {
  inset: 0;
  opacity: .38;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.launcher-page::after {
  top: 8%;
  right: -12rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(255, 61, 73, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 61, 73, .025), 0 0 0 160px rgba(255, 61, 73, .02);
}

.launcher-backdrop {
  position: absolute;
  z-index: -1;
  width: 36rem;
  height: 12rem;
  pointer-events: none;
  filter: blur(30px);
  opacity: .24;
  transform: rotate(-18deg);
}

.launcher-backdrop-one { top: 20%; left: -10rem; background: var(--red); }
.launcher-backdrop-two { right: -12rem; bottom: 12%; background: var(--gold); }

.launcher-back {
  position: absolute;
  top: 32px;
  left: max(24px, calc(50% - 600px));
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .2s ease, transform .2s ease;
}

.launcher-back:hover { color: #fff; transform: translateX(-4px); }
.launcher-back span { color: var(--red-bright); font-size: 19px; line-height: 1; }

.launcher-download-card {
  position: relative;
  width: min(100%, 820px);
  overflow: hidden;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 30px 10px 30px 10px;
  background: linear-gradient(138deg, rgba(27, 29, 38, .92), rgba(10, 10, 15, .9));
  box-shadow: 0 34px 100px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .09);
}

.launcher-download-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: 4px;
  background: linear-gradient(90deg, var(--red-bright), var(--gold));
  content: "";
}

.launcher-download-card::after {
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 61, 73, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255, 61, 73, .035), 0 0 0 84px rgba(255, 61, 73, .025);
  content: "";
  pointer-events: none;
}

.launcher-download-topline,
.launcher-download-progress-labels { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.launcher-download-topline { position: relative; z-index: 1; margin-bottom: clamp(36px, 7vw, 70px); }
.launcher-download-topline .section-index { margin: 0; }
.launcher-download-code { color: var(--red-bright); font-size: 10px; font-weight: 800; letter-spacing: .16em; }

.launcher-download-heading { position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.launcher-download-kicker { margin: 0 0 15px; color: rgba(255, 255, 255, .52); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.launcher-download-heading h1 { margin: 0; color: var(--paper); font-size: clamp(3.2rem, 8vw, 6.8rem); letter-spacing: -.085em; line-height: .86; }
.launcher-download-heading h1 span { color: var(--red-bright); }
.launcher-download-logo { display: grid; flex: 0 0 auto; width: clamp(76px, 13vw, 118px); aspect-ratio: 1; place-items: center; border: 1px solid rgba(255, 255, 255, .16); border-radius: 50%; background: rgba(0, 0, 0, .24); box-shadow: 0 0 0 10px rgba(255, 255, 255, .025); }
.launcher-download-logo img { width: 145%; height: 145%; object-fit: contain; }
.launcher-download-lede { position: relative; z-index: 1; max-width: 650px; margin: clamp(28px, 4vw, 42px) 0 0; color: rgba(242, 240, 235, .7); font-size: clamp(16px, 2vw, 20px); line-height: 1.6; }

.launcher-download-meta { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.launcher-download-meta span { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.launcher-download-meta small { color: rgba(255, 255, 255, .42); font-size: 8px; font-weight: 800; letter-spacing: .18em; }
.launcher-download-meta strong { color: #fff; font-size: 13px; }

.launcher-download-progress-wrap { position: relative; z-index: 1; margin-top: 42px; }
.launcher-download-progress-track { height: 8px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .13); border-radius: 999px; background: rgba(255, 255, 255, .07); }
.launcher-download-progress-track span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--red-bright), var(--gold)); box-shadow: 0 0 22px rgba(255, 61, 73, .55); transition: width .35s ease; }
.launcher-download-progress-labels { margin-top: 12px; color: rgba(255, 255, 255, .5); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.launcher-download-progress-labels strong { color: var(--gold); font-size: 11px; }

.launcher-download-button { position: relative; z-index: 1; width: 100%; min-height: 60px; margin-top: 28px; border: 0; cursor: pointer; }
.launcher-download-button.is-disabled { cursor: wait; opacity: .56; filter: saturate(.55); }
.launcher-download-button.is-ready { box-shadow: 0 18px 50px rgba(223, 31, 45, .25); }
.launcher-download-button b { margin-left: auto; font-size: 19px; font-weight: 400; }
.launcher-download-note { position: relative; z-index: 1; margin: 14px 0 0; color: rgba(255, 255, 255, .42); font-size: 11px; line-height: 1.55; text-align: center; }

@media (max-width: 620px) {
  .launcher-page { padding: 90px 14px 28px; }
  .launcher-back { top: 24px; left: 18px; font-size: 9px; }
  .launcher-download-card { padding: 28px 20px 24px; border-radius: 22px 8px 22px 8px; }
  .launcher-download-topline { margin-bottom: 38px; }
  .launcher-download-heading { gap: 12px; }
  .launcher-download-heading h1 { font-size: clamp(2.9rem, 15vw, 5rem); }
  .launcher-download-logo { width: 68px; box-shadow: 0 0 0 6px rgba(255, 255, 255, .025); }
  .launcher-download-lede { font-size: 15px; }
  .launcher-download-meta { gap: 8px; margin-top: 28px; }
  .launcher-download-meta small { font-size: 7px; letter-spacing: .1em; }
  .launcher-download-meta strong { font-size: 11px; }
  .launcher-download-progress-wrap { margin-top: 34px; }
}
