:root {
  --bg:        #0A0A0C;
  --bg-2:      #111114;
  --bg-3:      #16161A;
  --fg:        #EDE8DC;
  --fg-muted:  #8B8579;
  --fg-faint:  #4F4B43;
  --accent:    #E89B4D;
  --accent-dim:#6F4E2A;
  --rule:      #1F1E1A;
  --max:       1280px;
  --pad:       clamp(1.5rem, 4vw, 3rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 350;
  font-size: 17px;
  line-height: 1.55;
  font-variation-settings: "opsz" 14, "SOFT" 30;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--bg); }

/* ===== Type ===== */
.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
h1, h2, h3, h4 { font-weight: 350; letter-spacing: -0.02em; }
h1 { font-variation-settings: "opsz" 144, "SOFT" 50; }
h2 { font-variation-settings: "opsz" 96,  "SOFT" 40; }
.display {
  font-size: clamp(2.75rem, 7vw, 5.75rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 22ch;
}
.italic { font-style: italic; font-variation-settings: "opsz" 96, "SOFT" 80, "WONK" 1; }

/* ===== Layout ===== */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ===== Header ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  background: rgba(10, 10, 12, 0.55);
  border-bottom: 1px solid var(--rule);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 36, "SOFT" 60;
  color: var(--fg);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}
.brand::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-2px);
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--fg); }
.nav-links a.active { color: var(--fg); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
}
@media (max-width: 720px) {
  .nav-links { gap: 1.1rem; }
  .nav-links a { font-size: 0.62rem; letter-spacing: 0.14em; }
}
@media (max-width: 540px) {
  .nav-links a:not(.always) { display: none; }
}

/* ===== Home Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
}
.hero canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.85;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, transparent 0%, var(--bg) 78%),
    linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 6rem 0 4rem;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: fadeUp 1.1s 0.2s forwards;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.hero h1 {
  max-width: 16ch;
  opacity: 0;
  animation: fadeUp 1.2s 0.45s forwards;
}
.hero h1 .italic { color: var(--accent); }
.hero-sub {
  margin-top: 2rem;
  max-width: 48ch;
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--fg);
  opacity: 0;
  animation: fadeUp 1.2s 0.7s forwards;
}
.hero-meta {
  position: absolute;
  bottom: 2.5rem;
  left: var(--pad);
  right: var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 3;
  opacity: 0;
  animation: fadeUp 1.2s 0.95s forwards;
}
.hero-meta .stack { display: flex; flex-direction: column; gap: 0.4rem; }
.hero-meta .label { color: var(--fg-faint); }
.hero-meta .value { color: var(--fg); font-size: 0.85rem; letter-spacing: 0.05em; }
.scroll-cue {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@media (max-width: 640px) {
  .hero-meta .stack:nth-child(2) { display: none; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* ===== Inner Page Hero ===== */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.page-hero canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.55;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 64px; left: 0; right: 0; bottom: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 25% 55%, var(--bg) 0%, rgba(10,10,12,0.55) 35%, transparent 70%),
    linear-gradient(to bottom, transparent 70%, var(--bg) 100%);
  pointer-events: none;
}
.page-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: end;
}
@media (max-width: 800px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero { padding: 8rem 0 4rem; }
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 18ch;
}
.page-hero .lead {
  margin-top: 1.75rem;
  max-width: 52ch;
}
.page-hero .ornament {
  width: 140px;
  height: 140px;
  color: var(--accent);
  opacity: 0.7;
}
@media (max-width: 800px) {
  .page-hero .ornament { width: 90px; height: 90px; }
}

/* ===== Sections ===== */
section.content {
  padding: 7rem 0;
  border-top: 1px solid var(--rule);
  position: relative;
}
section.content:first-of-type { border-top: none; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
  section.content { padding: 5rem 0; }
}
.section-num {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.section-num .roman {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-variation-settings: "opsz" 72, "WONK" 1;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}
.lead {
  font-size: 1.4rem;
  line-height: 1.5;
  max-width: 38ch;
  color: var(--fg);
  margin-bottom: 1.75rem;
  font-variation-settings: "opsz" 30, "SOFT" 40;
}
.body-copy {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 60ch;
}
.body-copy strong { color: var(--fg); font-weight: 500; }
.body-copy + .body-copy { margin-top: 1.1rem; }
.body-copy + .lead { margin-top: 2.25rem; }

/* ===== Sectors grid ===== */
.sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 4rem;
}
@media (max-width: 800px) { .sectors { grid-template-columns: 1fr; } }
.sector {
  background: var(--bg);
  padding: 2.5rem 2rem 2.25rem;
  position: relative;
  transition: background 0.4s;
}
.sector:hover { background: var(--bg-2); }
.sector .tag {
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}
.sector h3 {
  font-size: 1.6rem;
  margin: 1.5rem 0 1rem;
  letter-spacing: -0.015em;
}
.sector p {
  color: var(--fg-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}
.sector-svg {
  width: 56px;
  height: 56px;
  margin-bottom: 0.5rem;
  color: var(--fg-muted);
}

/* ===== Gates ===== */
.gates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
@media (max-width: 800px) { .gates { grid-template-columns: 1fr; gap: 2.25rem; } }
.gate {
  border-top: 1px solid var(--accent);
  padding-top: 1.5rem;
}
.gate-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.12em;
}
.gate h4 {
  font-size: 1.25rem;
  font-weight: 350;
  margin: 0.75rem 0 0.85rem;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.gate p {
  color: var(--fg-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}
.gate-coda {
  margin-top: 3.5rem;
  padding: 1.85rem 2rem;
  border-left: 1px solid var(--accent);
  background: var(--bg-2);
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--fg);
  max-width: 70ch;
}

/* ===== Triad ===== */
.triad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}
@media (max-width: 800px) { .triad { grid-template-columns: 1fr; gap: 1.25rem; } }
.triad-cell {
  padding: 1.75rem;
  border: 1px solid var(--rule);
  background: var(--bg-2);
  position: relative;
}
.triad-cell.featured {
  background: var(--bg-3);
  border-color: var(--accent-dim);
}
.triad-cell .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  margin-bottom: 0.85rem;
}
.triad-cell.featured .role { color: var(--accent); }
.triad-cell .name {
  font-size: 1.3rem;
  font-variation-settings: "opsz" 60, "SOFT" 40;
  margin-bottom: 0.6rem;
}
.triad-cell .desc {
  color: var(--fg-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ===== Definition rows ===== */
.def-list { margin-top: 4rem; }
.def-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.def-row:last-of-type { border-bottom: 1px solid var(--rule); }
.def-row .term {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
  padding-top: 0.35rem;
}
.def-row .description h3 {
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  line-height: 1.25;
  max-width: 30ch;
}
.def-row .description p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 60ch;
}
.def-row .description p + p { margin-top: 0.9rem; }
@media (max-width: 800px) {
  .def-row { grid-template-columns: 1fr; gap: 0.85rem; padding: 1.75rem 0; }
}

/* ===== Comparison row ===== */
.compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3rem;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (max-width: 800px) { .compare { grid-template-columns: 1fr; } }
.compare-cell { background: var(--bg); padding: 2rem 1.85rem; }
.compare-cell .head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.compare-cell .symptom {
  font-size: 1.35rem;
  font-variation-settings: "opsz" 60, "SOFT" 40;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  color: var(--fg);
}
.compare-cell .explain {
  color: var(--fg-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ===== Application cards ===== */
.apps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 4rem;
}
@media (max-width: 800px) { .apps { grid-template-columns: 1fr; } }
.app {
  background: var(--bg);
  padding: 2.5rem 2.25rem;
  transition: background 0.3s;
  position: relative;
}
.app:hover { background: var(--bg-2); }
.app .domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.app .domain::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.app h3 {
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  margin: 1.25rem 0 0.85rem;
  line-height: 1.2;
  max-width: 22ch;
}
.app .body-copy {
  font-size: 1rem;
  line-height: 1.65;
  max-width: none;
}
.app .props {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.app .prop {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 4px 10px;
  border: 1px solid var(--rule);
  border-radius: 2px;
}

/* ===== Timeline ===== */
.timeline {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 800px) { .timeline { grid-template-columns: 1fr; } }
.milestone {
  padding: 1.75rem 2rem 1.75rem 0;
  border-top: 1px solid var(--rule);
  position: relative;
}
.milestone:nth-child(odd) { padding-right: 2.5rem; }
.milestone:nth-child(even) { padding-left: 2.5rem; padding-right: 0; }
@media (max-width: 800px) {
  .milestone, .milestone:nth-child(odd), .milestone:nth-child(even) { padding: 1.5rem 0; }
}
.milestone .when {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}
.milestone .what {
  font-size: 1.15rem;
  margin-top: 0.65rem;
  line-height: 1.4;
  max-width: 36ch;
}
.milestone .detail {
  color: var(--fg-muted);
  font-size: 0.98rem;
  margin-top: 0.7rem;
  line-height: 1.6;
  max-width: 42ch;
}
.milestone.future .when { color: var(--fg-muted); }
.milestone.future .what { color: var(--fg-muted); }
.milestone.future .detail { color: var(--fg-faint); }

/* ===== Detailed roadmap rows ===== */
.roadmap-rows { margin-top: 4rem; }
.roadmap-row {
  display: grid;
  grid-template-columns: 60px 1fr 200px;
  gap: 2.5rem;
  padding: 2.25rem 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.roadmap-row:last-of-type { border-bottom: 1px solid var(--rule); }
@media (max-width: 800px) {
  .roadmap-row { grid-template-columns: 1fr; gap: 0.85rem; padding: 1.75rem 0; }
}
.roadmap-row .stage {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.12em;
}
.roadmap-row .stage-body h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
  line-height: 1.25;
  max-width: 30ch;
}
.roadmap-row .stage-body p {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 56ch;
}
.roadmap-row .status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--fg-muted);
  text-transform: uppercase;
  padding-top: 0.4rem;
}
.roadmap-row .status.done { color: var(--accent); }
.roadmap-row .status.now { color: var(--fg); }

/* ===== Tier cards ===== */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
@media (max-width: 800px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  padding: 2.25rem 1.85rem 2rem;
  border: 1px solid var(--rule);
  background: var(--bg-2);
  position: relative;
  transition: border-color 0.3s;
}
.tier.open { border-color: var(--accent-dim); }
.tier .level {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.tier h3 {
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  line-height: 1.2;
}
.tier .desc {
  color: var(--fg-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.tier .gate-label {
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

/* ===== Callout / pull quote ===== */
.callout {
  margin: 5rem 0 0;
  padding: 3rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.callout-text {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 38ch;
  font-variation-settings: "opsz" 60, "SOFT" 40;
}
.callout-text .italic { color: var(--accent); }
.callout-attr {
  margin-top: 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ===== CTA link block ===== */
.cta-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 3rem;
}
.cta-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--accent);
  transition: color 0.2s, border-color 0.2s;
}
.cta-link:hover { color: var(--accent); }
.cta-link.secondary {
  color: var(--fg-muted);
  border-bottom-color: var(--rule);
}
.cta-link.secondary:hover { color: var(--fg); border-bottom-color: var(--fg-muted); }

/* ===== Cross-page navigation footer ===== */
.next-section {
  padding: 5rem 0;
  border-top: 1px solid var(--rule);
}
.next-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
@media (max-width: 700px) { .next-grid { grid-template-columns: 1fr; } }
.next-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  display: block;
  text-decoration: none;
  color: var(--fg);
  transition: background 0.3s;
}
.next-card:hover { background: var(--bg-2); }
.next-card .arrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.next-card h3 {
  margin-top: 1.25rem;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.next-card p {
  color: var(--fg-muted);
  margin-top: 0.7rem;
  font-size: 1rem;
  line-height: 1.55;
}

/* ===== Contact section ===== */
.contact {
  padding: 9rem 0 4rem;
  border-top: 1px solid var(--rule);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact { padding: 5.5rem 0 3rem; }
}
.contact h2 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  line-height: 1.05;
  max-width: 14ch;
  letter-spacing: -0.03em;
}
.contact h2 .italic { color: var(--accent); }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.info-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.info-row:last-child { border-bottom: 1px solid var(--rule); }
.info-row .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  text-transform: uppercase;
}
.info-row .value { font-size: 1.05rem; }
.info-row a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-dim);
  transition: border-color 0.2s;
}
.info-row a:hover { border-bottom-color: var(--accent); }

footer.bottom {
  border-top: 1px solid var(--rule);
  padding: 2rem 0;
  margin-top: 4rem;
}
.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.bottom-row .mono { font-size: 0.7rem; color: var(--fg-faint); }
.bottom-row a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--fg-faint);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.bottom-row a:hover { color: var(--fg); }
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
