@charset "UTF-8";

@font-face { font-family: "Poppins"; src: url("../fonts/poppins-300.woff2") format("woff2"); font-style: normal; font-weight: 300; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("../fonts/poppins-400.woff2") format("woff2"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("../fonts/poppins-500.woff2") format("woff2"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("../fonts/poppins-600.woff2") format("woff2"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("../fonts/poppins-700.woff2") format("woff2"); font-style: normal; font-weight: 700; font-display: swap; }

:root {
  --bg: #0d1117;
  --bg-deep: #050811;
  --surface: #111821;
  --surface-2: #152231;
  --surface-3: #1b2b3c;
  --ink: #f5f7fa;
  --muted: #a5adba;
  --faint: #6b7280;
  --line: rgba(0, 163, 255, 0.15);
  --line-strong: rgba(0, 230, 184, 0.28);
  --acid: #00e6b8;
  --acid-2: #00a3ff;
  --cyan: #1a56db;
  --brand-gradient: linear-gradient(120deg, #00e6b8 0%, #00a3ff 56%, #1a56db 100%);
  --danger: #ff716b;
  --glass: rgba(13, 17, 23, 0.78);
  --shadow: 0 30px 90px rgba(0, 5, 16, 0.42);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1240px;
  --header-h: 78px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #f5f7fa;
  --bg-deep: #e9eef5;
  --surface: #ffffff;
  --surface-2: #edf4fb;
  --surface-3: #dce9f5;
  --ink: #0d1117;
  --muted: #4f5968;
  --faint: #6b7280;
  --line: rgba(26, 86, 219, 0.13);
  --line-strong: rgba(0, 163, 255, 0.28);
  --acid: #00aa8a;
  --acid-2: #008fe3;
  --cyan: #1a56db;
  --brand-gradient: linear-gradient(120deg, #00bfa0 0%, #008fe3 56%, #1a56db 100%);
  --glass: rgba(245, 247, 250, 0.84);
  --shadow: 0 30px 90px rgba(12, 35, 68, 0.14);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 26px); }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -10%, rgba(0, 163, 255, .11), transparent 34rem),
    var(--bg);
  color: var(--ink);
  font-family: "Poppins", "Aptos", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color .35s ease, color .35s ease;
}

body.menu-open, body.dialog-open { overflow: hidden; }
img { display: block; max-width: 100%; }
svg { width: 1.1em; height: 1.1em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button, select { cursor: pointer; }
::selection { background: var(--acid); color: #04131b; }
:focus-visible { outline: 2px solid var(--acid); outline-offset: 4px; }
.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; }
.skip-link { position: fixed; z-index: 9999; left: 16px; top: 12px; transform: translateY(-150%); background: var(--brand-gradient); color: #fff; padding: 10px 16px; border-radius: 8px; font-weight: 700; }
.skip-link:focus { transform: none; }

.ambient { position: fixed; z-index: -1; width: 38rem; height: 38rem; filter: blur(120px); border-radius: 50%; opacity: .07; pointer-events: none; }
.ambient-a { top: 18vh; left: -25rem; background: var(--acid); }
.ambient-b { right: -26rem; top: 64vh; background: var(--cyan); }
.page-loader { position: fixed; z-index: 9998; inset: 0 0 auto; height: 3px; pointer-events: none; }
.page-loader span { display: block; height: 100%; width: 0; background: var(--brand-gradient); box-shadow: 0 0 20px var(--acid-2); transition: width .4s var(--ease), opacity .25s ease; }
.page-loader.loading span { width: 78%; }
.page-loader.complete span { width: 100%; opacity: 0; transition: width .2s ease, opacity .35s ease .15s; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: color-mix(in srgb, var(--bg) 82%, transparent); border-color: var(--line); box-shadow: 0 12px 40px rgba(0, 0, 0, .14); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); }
.nav-shell { width: min(var(--max), calc(100% - 48px)); height: 100%; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 42px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-symbol { width: 38px; height: 29px; display: grid; place-items: center; filter: drop-shadow(0 0 10px rgba(0, 163, 255, .22)); }
.brand-symbol img { width: 100%; height: 100%; object-fit: contain; }
.brand-name { font-size: 15px; font-weight: 700; line-height: 1; letter-spacing: .09em; }
.brand-name span { background: var(--brand-gradient); background-clip: text; -webkit-background-clip: text; color: transparent; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: clamp(18px, 2.4vw, 35px); }
.desktop-nav a { position: relative; padding: 28px 0 25px; color: var(--muted); font-size: 12px; font-weight: 500; letter-spacing: .04em; transition: color .2s ease; }
.desktop-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: -1px; height: 2px; background: var(--brand-gradient); box-shadow: 0 0 12px rgba(0, 163, 255, .48); transition: left .25s var(--ease), right .25s var(--ease); }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--ink); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { left: 0; right: 0; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn { display: inline-grid; place-items: center; width: 39px; height: 39px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--muted); transition: .2s ease; }
.icon-btn:hover { border-color: var(--line-strong); background: var(--surface-2); color: var(--acid); transform: translateY(-1px); }
.theme-btn span { display: none; }
[data-theme="light"] .theme-btn > svg { display: none; }
[data-theme="light"] .theme-btn span { display: grid; }
.nav-cta { margin-left: 4px; padding: 10px 16px; border: 1px solid transparent; border-radius: 100px; background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--brand-gradient) border-box; color: var(--acid); font-size: 11px; font-weight: 600; letter-spacing: .03em; transition: .2s ease; }
.nav-cta:hover { background: var(--brand-gradient); color: #fff; box-shadow: 0 0 28px rgba(0, 163, 255, .26); }
.menu-btn { display: none; }
.mobile-nav, .nav-scrim { display: none; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 20px; border: 1px solid transparent; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: .02em; transition: transform .2s var(--ease), background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease; }
.btn svg, .text-link svg { transition: transform .2s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover svg, .text-link:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--brand-gradient); color: #fff; box-shadow: 0 10px 32px rgba(0, 163, 255, .21); }
.btn-primary:hover { box-shadow: 0 14px 44px rgba(0, 163, 255, .34); filter: saturate(1.08) brightness(1.04); }
.btn-ghost { background: var(--surface); border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--acid); color: var(--acid); }
.btn-line { border-color: var(--line-strong); color: var(--muted); margin: 32px auto 0; display: flex; width: max-content; }
.btn-line:hover { border-color: var(--acid); color: var(--acid); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--acid); font-size: 12px; font-weight: 600; }
.text-link svg { width: 16px; }
.eyebrow { display: inline-block; color: var(--acid); font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.hero { position: relative; min-height: calc(100vh - var(--header-h)); display: flex; flex-direction: column; justify-content: center; padding: 64px 0 0; overflow: hidden; }
.hero::before { content: ""; position: absolute; z-index: -1; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(circle at 50% 40%, black, transparent 78%); opacity: .33; }
.circuit-motif { position: absolute; z-index: 0; left: -18px; top: 12%; width: 205px; height: 170px; opacity: .38; pointer-events: none; }
.circuit-motif i { position: absolute; left: 0; width: 150px; height: 32px; border-top: 1px solid var(--acid-2); border-right: 1px solid var(--acid-2); transform: skewX(-38deg); }
.circuit-motif i:nth-child(1) { top: 8px; }
.circuit-motif i:nth-child(2) { top: 63px; width: 125px; }
.circuit-motif i:nth-child(3) { top: 118px; width: 170px; }
.circuit-motif span { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--acid-2); box-shadow: 0 0 14px var(--acid-2); }
.circuit-motif span:nth-of-type(1) { left: 151px; top: 4px; }
.circuit-motif span:nth-of-type(2) { left: 126px; top: 59px; }
.circuit-motif span:nth-of-type(3) { left: 171px; top: 114px; }
.hero-grid { width: min(var(--max), calc(100% - 48px)); margin: auto; display: grid; grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr); align-items: center; gap: clamp(28px, 4vw, 70px); }
.hero-copy { position: relative; z-index: 2; padding-bottom: 50px; }
.live-label { display: flex; align-items: center; gap: 9px; color: var(--muted); font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.live-label span, .pulse-dot { width: 7px; height: 7px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 0 5px color-mix(in srgb, var(--acid) 12%, transparent), 0 0 18px var(--acid); animation: pulse 2s infinite; }
.hero h1 { max-width: 720px; margin: 24px 0 22px; font-size: clamp(48px, 5.4vw, 84px); line-height: .96; letter-spacing: -.055em; font-weight: 700; }
.hero h1 em, .section-heading h2 em, .newsletter-band h2 em, .page-hero h1 em, .manifesto h2 em, .related-section h2 em { background: var(--brand-gradient); background-clip: text; -webkit-background-clip: text; color: transparent; font-style: normal; }
.hero-copy > p { max-width: 585px; margin: 0; color: var(--muted); font-size: clamp(16px, 1.5vw, 19px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-proof { display: flex; align-items: center; gap: 22px; margin-top: 42px; }
.hero-proof div { display: flex; align-items: center; gap: 10px; }
.hero-proof b { color: var(--ink); font-size: 23px; letter-spacing: -.04em; }
.hero-proof span { color: var(--faint); font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 9px; line-height: 1.3; letter-spacing: .08em; text-transform: uppercase; }
.hero-proof > i { width: 1px; height: 26px; background: var(--line); }
.hero-visual { position: relative; }
.morph-frame { position: relative; aspect-ratio: 1.16 / 1; border: 1px solid var(--line-strong); border-radius: 45% 55% 49% 51% / 38% 34% 66% 62%; background: var(--surface); box-shadow: var(--shadow), inset 0 0 55px rgba(0, 163, 255, .05), 0 0 90px rgba(26, 86, 219, .1); overflow: hidden; animation: morph 11s ease-in-out infinite alternate; }
.morph-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(125deg, rgba(4, 12, 9, .6) 0%, transparent 45%), linear-gradient(0deg, rgba(3, 8, 6, .35), transparent 35%); }
[data-theme="light"] .morph-frame::after { background: linear-gradient(125deg, rgba(235, 244, 237, .32), transparent 45%); }
.morph-frame > .hero-photo { width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); }
.hero-brand-stamp { position: absolute; z-index: 4; right: 8%; top: 10%; display: flex; align-items: center; gap: 8px; padding: 7px 10px 7px 7px; border: 1px solid rgba(0, 230, 184, .25); border-radius: 100px; background: rgba(5, 8, 17, .66); color: #f5f7fa; box-shadow: 0 12px 30px rgba(0, 0, 0, .2); backdrop-filter: blur(10px); }
.hero-brand-stamp img { width: 29px; height: 22px; object-fit: contain; }
.hero-brand-stamp span { font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 7px; letter-spacing: .12em; }
.scan-line { position: absolute; z-index: 2; inset: 0 0 auto; height: 2px; background: linear-gradient(90deg, transparent, var(--acid), var(--acid-2), transparent); box-shadow: 0 0 20px var(--acid-2); opacity: .5; animation: scan 5s linear infinite; }
.float-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid rgba(222, 255, 238, .2); border-radius: 4px; background: rgba(5, 14, 11, .68); color: #dbe9e3; font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 8px; letter-spacing: .13em; backdrop-filter: blur(10px); }
.float-chip i { width: 5px; height: 5px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 10px var(--acid); }
.chip-a { left: 9%; top: 14%; }
.chip-b { right: 9%; bottom: 15%; }
.corner { position: absolute; z-index: 3; width: 30px; height: 30px; }
.corner-a { top: 8%; right: 12%; border-top: 1px solid var(--acid); border-right: 1px solid var(--acid); }
.corner-b { bottom: 9%; left: 11%; border-bottom: 1px solid var(--acid); border-left: 1px solid var(--acid); }
.ticker { width: 100%; margin-top: 28px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; background: color-mix(in srgb, var(--surface) 65%, transparent); }
.ticker div { width: max-content; display: flex; align-items: center; gap: 28px; padding: 12px 0; animation: ticker 28s linear infinite; }
.ticker span { color: var(--muted); font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 9px; letter-spacing: .15em; }
.ticker i { color: var(--acid); font-size: 8px; font-style: normal; }

.section-shell { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-heading h2 { max-width: 720px; margin: 10px 0 0; font-size: clamp(32px, 3.5vw, 52px); line-height: 1.03; letter-spacing: -.045em; }
.section-heading.compact h2 { font-size: clamp(30px, 3vw, 44px); }
.feature-section { padding-block: 118px; }
.lead-story { display: grid; grid-template-columns: 1.12fr .88fr; min-height: 510px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; box-shadow: var(--shadow); }
.lead-image { position: relative; min-height: 420px; overflow: hidden; }
.lead-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 65%, var(--surface)); pointer-events: none; }
.lead-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.lead-story:hover .lead-image img { transform: scale(1.035); }
.lead-image > span, .card-type { position: absolute; z-index: 2; left: 20px; top: 20px; padding: 7px 10px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 100px; background: rgba(4, 12, 9, .7); color: #edfff5; font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(8px); }
.lead-body { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 52px; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 9px 16px; color: var(--faint); font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.article-meta > span + span { position: relative; }
.article-meta > span + span::before { content: ""; position: absolute; left: -9px; top: 50%; width: 2px; height: 2px; background: var(--faint); border-radius: 50%; }
.article-meta span:first-child { color: var(--acid); }
.article-meta span:last-child { display: inline-flex; align-items: center; gap: 5px; }
.article-meta svg { width: 12px; height: 12px; }
.lead-body h2 { margin: 18px 0 18px; font-size: clamp(31px, 3vw, 46px); line-height: 1.06; letter-spacing: -.045em; }
.lead-body h2 a, .article-card h3 a { background: linear-gradient(var(--acid), var(--acid)) 0 100% / 0 1px no-repeat; transition: background-size .35s var(--ease); }
.lead-body h2 a:hover, .article-card h3 a:hover { background-size: 100% 1px; }
.lead-body > p { color: var(--muted); margin: 0 0 28px; }

.topics-section { padding-bottom: 118px; }
.topic-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.topic-card { position: relative; min-height: 270px; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; border-right: 1px solid var(--line); overflow: hidden; transition: background .3s ease, transform .3s var(--ease); }
.topic-card:last-child { border-right: 0; }
.topic-card::before { content: ""; position: absolute; inset: 100% 0 0; background: linear-gradient(160deg, color-mix(in srgb, var(--acid) 9%, transparent), transparent 70%); transition: inset .35s var(--ease); }
.topic-card:hover { background: var(--surface); transform: translateY(-5px); }
.topic-card:hover::before { inset: 0; }
.topic-card > span { color: var(--faint); font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 10px; }
.topic-card h3 { position: relative; margin: 0 0 8px; font-size: 28px; letter-spacing: -.04em; }
.topic-card p { position: relative; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.topic-card > svg { align-self: end; width: 24px; height: 24px; color: var(--acid); }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 58px; padding-bottom: 120px; }
.article-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px 24px; }
.article-card { min-width: 0; }
.card-image { position: relative; display: block; aspect-ratio: 3 / 2; border-radius: var(--radius-sm); background: var(--surface-2); overflow: hidden; }
.card-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2, 8, 6, .35), transparent 55%); opacity: .8; transition: opacity .3s ease; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease), filter .4s ease; }
.article-card:hover .card-image img { transform: scale(1.045); filter: saturate(1.08); }
.article-card:hover .card-image::after { opacity: .25; }
.card-body { padding: 18px 4px 0; }
.card-body h3 { margin: 12px 0 10px; font-size: 23px; line-height: 1.18; letter-spacing: -.035em; }
.card-body > p { margin: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.sidebar { min-width: 0; }
.side-card { padding: 28px 0; border-top: 1px solid var(--line); }
.side-card:first-child { padding-top: 0; border-top: 0; }
.side-about { position: relative; padding: 28px !important; border: 1px solid var(--line) !important; border-radius: var(--radius-sm); background: linear-gradient(150deg, color-mix(in srgb, var(--surface-2) 90%, transparent), var(--surface)); overflow: hidden; }
.side-about::before { content: ""; position: absolute; right: -70px; top: -60px; width: 160px; height: 160px; border: 1px solid color-mix(in srgb, var(--acid) 18%, transparent); border-radius: 40% 60% 60% 40%; animation: spin 16s linear infinite; }
.side-about h2 { position: relative; margin: 14px 0 12px; font-size: 24px; line-height: 1.12; letter-spacing: -.035em; }
.side-about p { position: relative; color: var(--muted); font-size: 13px; }
.side-title { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.side-title span { color: var(--faint); font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 9px; }
.side-title h2 { margin: 0; font-size: 15px; text-transform: uppercase; letter-spacing: .08em; }
.popular-list { display: grid; }
.popular-list a { display: grid; grid-template-columns: 28px 1fr; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.popular-list a:last-child { border-bottom: 0; }
.popular-list b { color: var(--acid); font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 9px; font-weight: 500; }
.popular-list span { font-size: 13px; font-weight: 750; line-height: 1.35; transition: color .2s ease; }
.popular-list a:hover span { color: var(--acid); }
.popular-list small { display: block; margin-top: 5px; color: var(--faint); font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 8px; font-weight: 500; text-transform: uppercase; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-cloud button, .article-tags button { padding: 6px 10px; border: 1px solid var(--line); border-radius: 100px; background: transparent; color: var(--muted); font-size: 10px; transition: .2s ease; }
.tag-cloud button:hover, .article-tags button:hover { border-color: var(--acid); color: var(--acid); }
.newsletter-mini { position: relative; margin-top: 4px; padding: 24px !important; border: 1px solid var(--line) !important; border-radius: var(--radius-sm); background: var(--surface); }
.newsletter-mini .pulse-dot { display: inline-block; margin-right: 8px; }
.newsletter-mini h2 { margin: 12px 0 18px; font-size: 21px; line-height: 1.15; letter-spacing: -.03em; }
.newsletter-mini form { display: grid; grid-template-columns: 1fr 38px; border-bottom: 1px solid var(--line-strong); }
.newsletter-mini input { width: 100%; height: 40px; padding: 0; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 12px; }
.newsletter-mini button { display: grid; place-items: center; border: 0; background: transparent; color: var(--acid); }
.newsletter-mini small { display: block; margin-top: 10px; color: var(--faint); font-size: 9px; }
.newsletter-band { width: min(var(--max), calc(100% - 48px)); min-height: 350px; margin: 0 auto 120px; display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: 70px; padding: 55px 65px; border: 1px solid color-mix(in srgb, var(--acid) 25%, transparent); border-radius: var(--radius); background: linear-gradient(135deg, color-mix(in srgb, var(--acid) 8%, var(--surface)), var(--surface) 70%); box-shadow: 0 0 80px color-mix(in srgb, var(--acid) 5%, transparent); overflow: hidden; }
.newsletter-band h2 { margin: 14px 0 0; font-size: clamp(38px, 4.5vw, 62px); line-height: .97; letter-spacing: -.055em; }
.newsletter-band form { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 12px; }
.newsletter-band label { display: grid; gap: 8px; color: var(--faint); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.newsletter-band input { height: 50px; padding: 0 16px; border: 1px solid var(--line-strong); border-radius: 100px; outline: 0; background: color-mix(in srgb, var(--bg) 50%, transparent); color: var(--ink); font-size: 13px; }
.newsletter-band input:focus { border-color: var(--acid); box-shadow: 0 0 0 3px color-mix(in srgb, var(--acid) 10%, transparent); }

.site-footer { position: relative; border-top: 1px solid var(--line); background: var(--bg-deep); overflow: hidden; }
.footer-glow { position: absolute; width: 540px; height: 260px; left: 4%; bottom: -210px; background: var(--acid); filter: blur(130px); opacity: .08; }
.footer-main { position: relative; width: min(var(--max), calc(100% - 48px)); margin: auto; display: grid; grid-template-columns: 1.8fr .65fr .7fr 1fr; gap: 70px; padding: 80px 0 60px; }
.footer-brand > p { max-width: 380px; margin: 20px 0; color: var(--muted); font-size: 13px; }
.status-pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border: 1px solid var(--line); border-radius: 100px; color: var(--faint); font-size: 9px; letter-spacing: .04em; text-transform: uppercase; }
.status-pill span { width: 6px; height: 6px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 10px var(--acid); }
.footer-links, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-links h3, .footer-contact h3 { margin: 0 0 8px; color: var(--faint); font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; }
.footer-links a, .footer-contact a, .footer-contact > span { color: var(--muted); font-size: 12px; transition: color .2s ease; }
.footer-links a:hover, .footer-contact a:hover { color: var(--acid); }
.footer-contact a, .footer-contact > span { display: flex; align-items: flex-start; gap: 9px; }
.footer-contact svg { flex: 0 0 auto; width: 14px; margin-top: 3px; color: var(--acid); }
.footer-bottom { width: min(var(--max), calc(100% - 48px)); margin: auto; display: flex; align-items: center; justify-content: space-between; padding: 18px 0; border-top: 1px solid var(--line); color: var(--faint); font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 9px; letter-spacing: .04em; }
.footer-bottom p { margin: 0; }
.footer-bottom a:hover { color: var(--acid); }

.search-dialog { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; border: 0; background: transparent; color: var(--ink); }
.search-dialog::backdrop { background: rgba(2, 7, 5, .82); backdrop-filter: blur(14px); }
.search-dialog[open] { display: grid; place-items: start center; }
.search-panel { width: min(820px, calc(100% - 32px)); max-height: calc(100vh - 60px); margin-top: 30px; padding: 34px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--surface); box-shadow: 0 30px 100px rgba(0, 0, 0, .55); overflow-y: auto; animation: dialog-in .25s var(--ease); }
.search-head { display: flex; justify-content: space-between; align-items: start; gap: 20px; }
.search-head h2 { margin: 7px 0 24px; font-size: 31px; line-height: 1.1; letter-spacing: -.04em; }
.search-field { height: 58px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 0 17px; border: 1px solid var(--line-strong); border-radius: 12px; background: var(--bg); }
.search-field > svg { color: var(--acid); }
.search-field input { min-width: 0; height: 100%; border: 0; outline: 0; background: transparent; font-size: 15px; }
.search-field kbd { padding: 3px 7px; border: 1px solid var(--line); border-radius: 5px; color: var(--faint); font-family: ui-monospace, monospace; font-size: 8px; }
.search-suggestions { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; padding: 16px 2px; color: var(--faint); font-size: 10px; }
.search-suggestions button { border: 0; background: transparent; color: var(--muted); font-size: 10px; }
.search-suggestions button:hover { color: var(--acid); }
.search-results { display: grid; gap: 3px; min-height: 100px; border-top: 1px solid var(--line); }
.search-results a { display: grid; grid-template-columns: 75px 1fr auto; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.search-results img { width: 75px; aspect-ratio: 3/2; object-fit: cover; border-radius: 7px; }
.search-results h3 { margin: 0 0 3px; font-size: 14px; line-height: 1.3; }
.search-results span { color: var(--faint); font-size: 9px; text-transform: uppercase; }
.search-results svg { color: var(--acid); }
.empty-state { margin: 32px auto; color: var(--faint); font-size: 13px; text-align: center; }
.toast { position: fixed; z-index: 2500; left: 50%; bottom: 25px; transform: translate(-50%, 30px); padding: 11px 16px; border: 1px solid var(--line-strong); border-radius: 100px; background: var(--ink); color: var(--bg); box-shadow: var(--shadow); font-size: 12px; font-weight: 750; opacity: 0; pointer-events: none; transition: .3s var(--ease); }
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.back-top { position: fixed; z-index: 800; right: 22px; bottom: 22px; width: 42px; height: 42px; border: 1px solid var(--line-strong); border-radius: 50%; background: var(--glass); color: var(--acid); box-shadow: var(--shadow); backdrop-filter: blur(12px); opacity: 0; transform: translateY(15px); pointer-events: none; transition: .25s var(--ease); }
.back-top.visible { opacity: 1; transform: none; pointer-events: auto; }

.channel-hero { width: min(var(--max), calc(100% - 48px)); min-height: 570px; margin: 40px auto 105px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 70px; }
.channel-copy { position: relative; }
.channel-copy h1 { margin: 16px 0 20px; font-size: clamp(70px, 10vw, 145px); line-height: .82; letter-spacing: -.09em; }
.channel-copy > p { max-width: 470px; color: var(--muted); font-size: 17px; }
.channel-count { display: flex; align-items: center; gap: 14px; margin-top: 40px; }
.channel-count b { font-size: 42px; line-height: 1; color: var(--acid); }
.channel-count span { color: var(--faint); font-family: ui-monospace, monospace; font-size: 9px; line-height: 1.3; text-transform: uppercase; letter-spacing: .1em; }
.channel-feature { position: relative; min-height: 500px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.channel-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2, 8, 6, .9), transparent 65%); }
.channel-feature > img { width: 100%; height: 100%; position: absolute; object-fit: cover; transition: transform .7s var(--ease); }
.channel-feature:hover > img { transform: scale(1.035); }
.channel-feature > div { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 30px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 10px; color: #f5fff9; }
.channel-feature > div > span { grid-column: 1 / -1; color: var(--acid); font-family: ui-monospace, monospace; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.channel-feature h2 { margin: 0; max-width: 630px; font-size: clamp(28px, 3.1vw, 45px); line-height: 1.05; letter-spacing: -.045em; }
.channel-feature svg { width: 29px; height: 29px; color: var(--acid); }
.channel-list { padding-bottom: 120px; }
.filter-bar { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 34px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.filter-bar p { margin: 0; font-weight: 600; }
.filter-bar p span { color: var(--faint); }
.filter-bar label { display: flex; align-items: center; gap: 10px; color: var(--faint); font-size: 10px; text-transform: uppercase; }
.filter-bar select { padding: 8px 28px 8px 10px; border: 1px solid var(--line); border-radius: 6px; background: var(--surface); color: var(--ink); font-size: 11px; }
.more-topic { grid-column: 1/-1; margin-top: 80px; padding-top: 48px; border-top: 1px solid var(--line); }
.more-topic > span { color: var(--acid); font-family: ui-monospace, monospace; font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.more-topic > h2 { font-size: 34px; letter-spacing: -.04em; }
.more-topic > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.reading-progress { position: fixed; z-index: 1100; left: 0; right: 0; top: var(--header-h); height: 2px; }
.reading-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--acid)); box-shadow: 0 0 12px var(--acid); }
.article-page { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.article-hero { max-width: 980px; margin: 70px auto 44px; text-align: center; }
.breadcrumbs { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; color: var(--faint); font-family: ui-monospace, monospace; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.breadcrumbs a:hover { color: var(--acid); }
.article-kicker { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--acid); font-family: ui-monospace, monospace; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.article-kicker i { width: 18px; height: 1px; background: var(--line-strong); }
.article-hero h1 { margin: 20px auto; max-width: 1000px; font-size: clamp(46px, 6vw, 78px); line-height: .99; letter-spacing: -.065em; }
.article-deck { max-width: 780px; margin: 0 auto; color: var(--muted); font-size: clamp(17px, 2vw, 21px); }
.byline { display: flex; align-items: center; justify-content: center; margin-top: 30px; }
.avatar { flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; margin-right: 10px; border: 1px solid color-mix(in srgb, var(--acid) 40%, transparent); border-radius: 50%; background: linear-gradient(135deg, var(--surface-3), var(--surface)); color: var(--acid); font-family: ui-monospace, monospace; font-size: 10px; font-weight: 700; }
.byline > div:nth-child(2) { display: grid; text-align: left; }
.byline b { font-size: 12px; }
.byline span { color: var(--faint); font-family: ui-monospace, monospace; font-size: 8px; text-transform: uppercase; }
.article-share { display: flex !important; flex-direction: row !important; gap: 6px; margin-left: 28px; padding-left: 28px; border-left: 1px solid var(--line); }
.article-share button, .toc-share button { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 100px; background: transparent; color: var(--muted); font-size: 9px; transition: .2s ease; }
.article-share button:hover, .toc-share button:hover { border-color: var(--acid); color: var(--acid); }
.article-cover { margin: 0; }
.article-cover img { width: 100%; max-height: 690px; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.article-cover figcaption { margin-top: 10px; color: var(--faint); font-family: ui-monospace, monospace; font-size: 8px; letter-spacing: .04em; text-align: right; text-transform: uppercase; }
.article-layout { display: grid; grid-template-columns: 250px minmax(0, 720px); justify-content: center; gap: 80px; padding: 75px 0 120px; }
.article-toc { position: sticky; top: calc(var(--header-h) + 40px); align-self: start; }
.article-toc nav { display: grid; margin-top: 18px; border-top: 1px solid var(--line); }
.article-toc nav a { display: grid; grid-template-columns: 24px 1fr; gap: 8px; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; line-height: 1.35; transition: color .2s ease; }
.article-toc nav a:hover, .article-toc nav a.active { color: var(--acid); }
.article-toc nav span { color: var(--faint); font-family: ui-monospace, monospace; font-size: 8px; }
.toc-share { margin-top: 25px; }
.toc-share > span { display: block; margin-bottom: 10px; color: var(--faint); font-size: 9px; text-transform: uppercase; }
.toc-share button { width: 34px; height: 34px; justify-content: center; padding: 0; }
.prose { min-width: 0; }
.prose > section { margin-bottom: 54px; }
.prose h2 { margin: 0 0 22px; font-size: clamp(28px, 3vw, 38px); line-height: 1.12; letter-spacing: -.04em; }
.prose p { margin: 0 0 19px; color: color-mix(in srgb, var(--ink) 75%, var(--muted)); font-family: "Poppins", system-ui, sans-serif; font-size: 16px; font-weight: 300; line-height: 1.95; }
.prose > section:first-child p:first-of-type::first-letter { float: left; margin: 8px 9px 0 0; background: var(--brand-gradient); background-clip: text; -webkit-background-clip: text; color: transparent; font-family: "Poppins", system-ui, sans-serif; font-size: 66px; font-weight: 700; line-height: .75; }
.article-callout { position: relative; margin: 32px 0; padding: 27px 30px 23px; border: 1px solid color-mix(in srgb, var(--acid) 28%, transparent); border-left: 3px solid var(--acid); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: linear-gradient(100deg, color-mix(in srgb, var(--acid) 7%, var(--surface)), var(--surface)); }
.article-callout span { color: var(--acid); font-family: ui-monospace, monospace; font-size: 9px; letter-spacing: .13em; }
.article-callout p { margin: 8px 0 0; color: var(--ink); font-family: inherit; font-size: 15px; line-height: 1.65; }
.article-tags { display: flex; flex-wrap: wrap; gap: 7px; padding: 25px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.author-box { display: grid; grid-template-columns: auto 1fr; gap: 17px; margin-top: 40px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.avatar.big { width: 55px; height: 55px; margin: 0; }
.author-box span { color: var(--faint); font-family: ui-monospace, monospace; font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.author-box h3 { margin: 2px 0 5px; font-size: 18px; }
.author-box p { margin: 0; color: var(--muted); font-family: inherit; font-size: 12px; line-height: 1.6; }
.related-section { padding-bottom: 120px; }
.related-section .article-grid { grid-template-columns: repeat(3, 1fr); }

.page-hero { width: min(var(--max), calc(100% - 48px)); min-height: 620px; margin: 20px auto 80px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.page-hero h1 { margin: 18px 0 24px; font-size: clamp(60px, 7vw, 96px); line-height: .93; letter-spacing: -.075em; }
.page-hero p { max-width: 650px; color: var(--muted); font-size: 18px; }
.about-orbit { position: relative; width: min(480px, 90vw); aspect-ratio: 1; display: grid; place-items: center; justify-self: end; border: 1px solid var(--line); border-radius: 50%; }
.about-orbit::before, .about-orbit::after, .about-orbit > i { content: ""; position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.about-orbit::before { inset: 14%; }
.about-orbit::after { inset: 31%; }
.about-orbit > i:first-of-type { inset: 5%; border-style: dashed; animation: spin 24s linear infinite; }
.about-orbit > i:last-of-type { width: 50%; height: 1px; border: 0; border-top: 1px solid var(--line); border-radius: 0; transform: rotate(35deg); }
.orbit-core { position: relative; z-index: 2; padding: 24px; border: 1px solid color-mix(in srgb, var(--acid) 40%, transparent); border-radius: 12px; background: var(--surface); box-shadow: 0 0 60px color-mix(in srgb, var(--acid) 12%, transparent); }
.about-orbit > span { position: absolute; padding: 5px 9px; border: 1px solid var(--line); border-radius: 100px; background: var(--bg); color: var(--faint); font-family: ui-monospace, monospace; font-size: 8px; letter-spacing: .1em; }
.about-orbit > span:nth-of-type(1) { top: 14%; left: 6%; }
.about-orbit > span:nth-of-type(2) { right: 4%; top: 36%; }
.about-orbit > span:nth-of-type(3) { left: 19%; bottom: 9%; }
.manifesto { display: grid; grid-template-columns: .4fr 1.6fr; padding: 110px 0; border-top: 1px solid var(--line); }
.manifesto-index { color: var(--faint); font-family: ui-monospace, monospace; font-size: 10px; }
.manifesto h2 { margin: 18px 0 28px; font-size: clamp(45px, 6vw, 78px); line-height: .98; letter-spacing: -.065em; }
.manifesto p { max-width: 690px; color: var(--muted); font-size: 17px; }
.brand-signature { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 65px; margin-bottom: 110px; padding: 48px; border: 1px solid rgba(0, 163, 255, .28); border-radius: var(--radius); background: #0d1117; box-shadow: 0 28px 90px rgba(0, 5, 16, .28), inset 0 0 70px rgba(0, 163, 255, .04); color: #f5f7fa; overflow: hidden; }
.brand-lockup { min-height: 260px; display: grid; place-items: center; padding: 30px; border: 1px solid rgba(0, 230, 184, .16); border-radius: var(--radius-sm); background-image: linear-gradient(rgba(0, 163, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 163, 255, .05) 1px, transparent 1px); background-size: 28px 28px; }
.brand-lockup img { width: min(100%, 520px); filter: drop-shadow(0 0 28px rgba(0, 163, 255, .12)); }
.brand-signature h2 { margin: 12px 0; font-size: clamp(34px, 4vw, 52px); line-height: 1; letter-spacing: -.045em; }
.brand-signature p { margin: 0 0 20px; color: #a5adba; font-size: 14px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); padding-bottom: 120px; }
.values article { min-height: 280px; padding: 30px; border: 1px solid var(--line); border-right: 0; transition: background .3s ease, transform .3s var(--ease); }
.values article:last-child { border-right: 1px solid var(--line); }
.values article:hover { background: var(--surface); transform: translateY(-5px); }
.values span { color: var(--acid); font-family: ui-monospace, monospace; font-size: 9px; }
.values h2 { margin: 90px 0 10px; font-size: 29px; letter-spacing: -.04em; }
.values p { margin: 0; color: var(--muted); font-size: 13px; }
.location-band { width: min(var(--max), calc(100% - 48px)); min-height: 460px; margin: 0 auto 120px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 60px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.location-band h2 { margin: 13px 0; font-size: clamp(44px, 5vw, 70px); letter-spacing: -.06em; }
.location-band p { max-width: 500px; color: var(--muted); }
.map-grid { position: relative; align-self: stretch; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 34px 34px; mask-image: radial-gradient(circle, black, transparent 72%); }
.map-grid i { position: absolute; left: 55%; top: 45%; width: 13px; height: 13px; border: 2px solid var(--acid); border-radius: 50%; box-shadow: 0 0 0 12px color-mix(in srgb, var(--acid) 7%, transparent), 0 0 30px var(--acid); }
.map-grid span { position: absolute; color: var(--faint); font-family: ui-monospace, monospace; font-size: 8px; }
.map-grid span:first-child { left: 10%; top: 20%; }
.map-grid span:nth-child(2) { right: 10%; bottom: 16%; }

.contact-hero { min-height: 480px; margin-bottom: 0; grid-template-columns: 1.2fr .8fr; }
.contact-lines { position: relative; height: 300px; }
.contact-lines i { position: absolute; inset: 50% 0 auto; height: 1px; background: linear-gradient(90deg, transparent, var(--acid), transparent); box-shadow: 0 0 20px var(--acid); transform: rotate(-8deg); }
.contact-lines i:nth-child(2) { transform: rotate(13deg) translateY(-60px); opacity: .45; }
.contact-lines i:nth-child(3) { transform: rotate(-21deg) translateY(70px); opacity: .22; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; padding-bottom: 120px; }
.contact-cards { display: grid; align-content: start; gap: 12px; }
.contact-cards > * { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 13px; min-height: 90px; padding: 19px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); transition: border-color .2s ease, transform .2s var(--ease); }
.contact-cards > a:hover { border-color: var(--acid); transform: translateX(5px); }
.contact-cards > * > svg:first-child { width: 21px; height: 21px; color: var(--acid); }
.contact-cards > * > svg:last-child { color: var(--faint); }
.contact-cards span { display: grid; }
.contact-cards small { color: var(--faint); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.contact-cards b { font-size: 13px; }
.contact-form { padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.form-head h2 { margin: 8px 0 28px; font-size: 38px; line-height: 1; letter-spacing: -.045em; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 18px; color: var(--faint); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 9px; outline: 0; background: var(--bg); color: var(--ink); font-size: 13px; text-transform: none; letter-spacing: 0; resize: vertical; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--acid); box-shadow: 0 0 0 3px color-mix(in srgb, var(--acid) 9%, transparent); }
.form-actions { display: flex; gap: 10px; margin-top: 5px; }
.contact-form > p { display: flex; align-items: center; gap: 7px; margin: 15px 0 0; color: var(--faint); font-size: 9px; }
.contact-form > p span { width: 5px; height: 5px; background: var(--acid); border-radius: 50%; }

.legal-hero { width: min(900px, calc(100% - 48px)); margin: 90px auto 80px; text-align: center; }
.legal-hero h1 { margin: 18px 0; font-size: clamp(53px, 7vw, 85px); line-height: .95; letter-spacing: -.065em; }
.legal-hero p { max-width: 680px; margin-inline: auto; color: var(--muted); font-size: 18px; }
.legal-hero small { color: var(--faint); font-family: ui-monospace, monospace; font-size: 9px; text-transform: uppercase; }
.legal-content { display: grid; grid-template-columns: 250px minmax(0, 720px); justify-content: center; gap: 80px; padding-bottom: 120px; }
.legal-content > nav { position: sticky; top: calc(var(--header-h) + 30px); align-self: start; display: grid; border-top: 1px solid var(--line); }
.legal-content > nav a { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.legal-content > nav a:hover { color: var(--acid); }
.legal-content section { position: relative; padding: 0 0 50px 50px; }
.legal-content section > span { position: absolute; left: 0; top: 7px; color: var(--acid); font-family: ui-monospace, monospace; font-size: 9px; }
.legal-content h2 { margin: 0 0 15px; font-size: 31px; letter-spacing: -.04em; }
.legal-content p { color: var(--muted); font-family: "Poppins", system-ui, sans-serif; font-size: 16px; font-weight: 300; line-height: 1.9; }

.not-found { min-height: calc(100vh - var(--header-h)); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 80px 24px; text-align: center; }
.glitch { position: relative; background: var(--brand-gradient); background-clip: text; -webkit-background-clip: text; color: transparent; font-size: clamp(110px, 22vw, 260px); line-height: .75; font-weight: 700; letter-spacing: -.1em; filter: drop-shadow(0 0 40px rgba(0, 163, 255, .18)); }
.glitch::before, .glitch::after { content: attr(data-text); position: absolute; inset: 0; opacity: .4; }
.glitch::before { color: var(--cyan); transform: translateX(-4px); clip-path: inset(20% 0 55%); animation: glitch 2.3s infinite; }
.glitch::after { color: var(--danger); transform: translateX(4px); clip-path: inset(62% 0 12%); animation: glitch 1.9s infinite reverse; }
.not-found .eyebrow { margin-top: 35px; }
.not-found h1 { margin: 12px 0 4px; font-size: 35px; letter-spacing: -.045em; }
.not-found p { color: var(--muted); margin-bottom: 25px; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
[data-reveal].revealed { opacity: 1; transform: none; }

@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .55; transform: scale(.75); } }
@keyframes morph { 0% { border-radius: 45% 55% 49% 51% / 38% 34% 66% 62%; } 50% { border-radius: 55% 45% 38% 62% / 52% 62% 38% 48%; } 100% { border-radius: 41% 59% 58% 42% / 63% 42% 58% 37%; } }
@keyframes scan { 0% { top: -2%; } 100% { top: 102%; } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes dialog-in { from { opacity: 0; transform: translateY(-20px) scale(.98); } }
@keyframes glitch { 0%, 90%, 100% { transform: translateX(-3px); } 92% { transform: translateX(8px); } 96% { transform: translateX(-7px); } }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .menu-btn { display: inline-grid; }
  .nav-shell { grid-template-columns: auto 1fr; }
  .nav-actions { justify-self: end; }
  .mobile-nav { position: fixed; z-index: 1200; display: flex; flex-direction: column; width: min(430px, 88vw); inset: 0 0 0 auto; padding: 25px; background: var(--surface); border-left: 1px solid var(--line); transform: translateX(105%); transition: transform .35s var(--ease); }
  .mobile-nav-top { display: flex; align-items: center; justify-content: space-between; }
  .mobile-nav nav { display: grid; margin-top: 50px; }
  .mobile-nav nav a { padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 24px; font-weight: 780; letter-spacing: -.03em; }
  .mobile-nav nav a.active { color: var(--acid); }
  .mobile-nav > p { margin-top: auto; color: var(--faint); font-size: 12px; }
  .nav-scrim { position: fixed; z-index: 1100; display: block; inset: 0; background: rgba(0, 0, 0, .65); opacity: 0; pointer-events: none; transition: opacity .3s ease; }
  .menu-open .mobile-nav { transform: none; }
  .menu-open .nav-scrim { opacity: 1; pointer-events: auto; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero h1 { font-size: clamp(46px, 6.5vw, 70px); }
  .content-layout { grid-template-columns: minmax(0, 1fr) 290px; gap: 35px; }
  .channel-hero { gap: 38px; }
  .channel-feature { min-height: 440px; }
  .article-layout { grid-template-columns: 210px minmax(0, 680px); gap: 45px; }
  .footer-main { gap: 36px; }
}

@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .circuit-motif { display: none; }
  .hero { min-height: auto; padding-top: 58px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 10px; }
  .hero-visual { width: min(620px, 100%); margin: auto; }
  .morph-frame { aspect-ratio: 1.35 / 1; }
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-card:nth-child(2) { border-right: 0; }
  .topic-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .side-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
  .side-card:first-child { padding: 24px; border: 1px solid var(--line); }
  .newsletter-mini { margin: 0; }
  .newsletter-band { grid-template-columns: 1fr; gap: 35px; }
  .lead-story { grid-template-columns: 1fr; }
  .lead-image::after { background: linear-gradient(0deg, var(--surface), transparent 35%); }
  .lead-body { padding: 35px; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
  .channel-hero { grid-template-columns: 1fr; margin-top: 70px; }
  .channel-copy h1 { font-size: clamp(75px, 18vw, 130px); }
  .channel-feature { min-height: 500px; }
  .article-layout { grid-template-columns: 1fr; padding-top: 55px; }
  .article-toc { position: static; }
  .article-toc nav { grid-template-columns: 1fr 1fr; gap: 0 20px; }
  .toc-share { display: none; }
  .related-section .article-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { grid-template-columns: 1fr; padding-top: 60px; }
  .about-orbit { justify-self: center; }
  .manifesto { grid-template-columns: 1fr; gap: 20px; }
  .brand-signature { grid-template-columns: 1fr; gap: 35px; }
  .values { grid-template-columns: 1fr; }
  .values article, .values article:last-child { min-height: auto; border-right: 1px solid var(--line); border-bottom: 0; }
  .values article:last-child { border-bottom: 1px solid var(--line); }
  .values h2 { margin-top: 45px; }
  .location-band { grid-template-columns: 1fr; }
  .map-grid { min-height: 280px; }
  .contact-hero { grid-template-columns: 1fr; }
  .contact-lines { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 35px; }
  .legal-content { grid-template-columns: 1fr; gap: 45px; }
  .legal-content > nav { position: static; grid-template-columns: repeat(2, 1fr); gap: 0 20px; }
}

@media (max-width: 620px) {
  :root { --radius: 17px; --radius-sm: 12px; }
  .nav-shell, .section-shell, .footer-main, .footer-bottom, .newsletter-band, .channel-hero, .article-page, .page-hero, .location-band, .legal-hero { width: min(100% - 28px, var(--max)); }
  .nav-shell { gap: 10px; }
  .nav-cta { display: none; }
  .nav-actions { gap: 5px; }
  .icon-btn { width: 36px; height: 36px; }
  .hero-grid { width: calc(100% - 28px); }
  .hero h1 { font-size: clamp(42px, 14vw, 64px); }
  .hero-proof { gap: 12px; justify-content: space-between; }
  .hero-proof > i { display: none; }
  .hero-proof div { display: grid; gap: 1px; }
  .morph-frame { aspect-ratio: 1.1 / 1; }
  .float-chip { font-size: 6px; }
  .ticker { margin-top: 40px; }
  .feature-section { padding-block: 85px; }
  .section-heading { align-items: start; margin-bottom: 30px; }
  .section-heading > .text-link { display: none; }
  .section-heading h2 { font-size: 34px; }
  .lead-image { min-height: 300px; }
  .lead-body { padding: 27px 21px 30px; }
  .lead-body h2 { font-size: 30px; }
  .topics-section { padding-bottom: 85px; }
  .topic-card { min-height: 230px; padding: 20px; }
  .article-grid { grid-template-columns: 1fr; gap: 32px; }
  .sidebar { grid-template-columns: 1fr; }
  .content-layout { padding-bottom: 90px; }
  .newsletter-band { margin-bottom: 90px; padding: 34px 22px; }
  .newsletter-band h2 { font-size: 39px; }
  .newsletter-band form { grid-template-columns: 1fr; }
  .newsletter-band .btn { width: 100%; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 25px; padding: 60px 0 40px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; gap: 20px; }
  .footer-bottom p { max-width: 250px; }
  .search-panel { margin-top: 10px; max-height: calc(100vh - 20px); padding: 23px 17px; }
  .search-head h2 { font-size: 25px; }
  .search-results a { grid-template-columns: 60px 1fr auto; }
  .search-results img { width: 60px; }
  .channel-hero { margin: 55px auto 85px; }
  .channel-copy h1 { font-size: 78px; }
  .channel-feature { min-height: 380px; }
  .channel-feature > div { left: 22px; right: 22px; bottom: 22px; }
  .channel-feature h2 { font-size: 28px; }
  .filter-bar { align-items: flex-start; }
  .filter-bar label { display: grid; }
  .more-topic > div { grid-template-columns: 1fr; }
  .article-hero { margin-top: 45px; }
  .breadcrumbs { justify-content: flex-start; }
  .article-hero { text-align: left; }
  .article-kicker { justify-content: flex-start; }
  .article-hero h1 { font-size: 43px; }
  .byline { justify-content: flex-start; flex-wrap: wrap; gap: 9px 0; }
  .article-share { width: 100%; margin: 15px 0 0; padding: 15px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .article-cover img { min-height: 300px; }
  .article-cover figcaption { text-align: left; }
  .article-layout { gap: 42px; padding-bottom: 90px; }
  .article-toc nav { grid-template-columns: 1fr; }
  .prose p { font-size: 17px; line-height: 1.82; }
  .prose h2 { font-size: 29px; }
  .related-section .article-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: auto; margin-top: 35px; }
  .page-hero h1 { font-size: 51px; }
  .about-orbit { width: 95%; }
  .orbit-core { padding: 16px; }
  .manifesto { padding: 80px 0; }
  .manifesto h2 { font-size: 43px; }
  .brand-signature { padding: 22px; margin-bottom: 85px; }
  .brand-lockup { min-height: 210px; padding: 18px; }
  .location-band { padding: 30px 22px; margin-bottom: 90px; }
  .contact-hero { padding-top: 50px; }
  .contact-form { padding: 27px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-actions { display: grid; }
  .legal-content > nav { grid-template-columns: 1fr; }
  .legal-content section { padding-left: 35px; }
  .back-top { right: 14px; bottom: 14px; }
}

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