/* ===========================
   CSS VARIABLES & RESET
=========================== */
:root {
  --bg:           #07001a;
  --bg-2:         #0d0028;
  --cyan:         #00fff0;
  --magenta:      #ff00c8;
  --gold:         #ffb800;
  --white:        #e8e8ff;
  --font-display: 'Orbitron', monospace;
  --font-mono:    'Share Tech Mono', monospace;
  --font-body:    'Exo 2', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* Scanline overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,0,0,0.04) 2px, rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
  z-index: 8000;
}

/* ===========================
   CURTAIN TRANSITION
=========================== */
#curtain {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-2), #1a0030);
  z-index: 9990;
  transform: translateY(-100%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
#curtain .curtain-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}
#curtain.entering { animation: curtainIn  0.5s  cubic-bezier(.76,0,.24,1) forwards; }
#curtain.entering .curtain-text { opacity: 1; }
#curtain.leaving  { animation: curtainOut 0.55s cubic-bezier(.76,0,.24,1) forwards; }
@keyframes curtainIn  { from { transform: translateY(-100%); } to { transform: translateY(0); } }
@keyframes curtainOut { from { transform: translateY(0); }     to { transform: translateY(100%); } }

/* ===========================
   NAVIGATION
=========================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(7,0,26,0.95), transparent);
}
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.25em;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(232,232,255,0.65);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: var(--font-display) !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  color: var(--bg) !important;
  background: var(--gold);
  padding: 0.55rem 1.3rem;
  transition: background 0.2s, opacity 0.2s !important;
  text-decoration: none !important;
}
.nav-cta:hover { opacity: 0.85; }
.nav-cta::after { display: none !important; }

@media (max-width: 680px) {
  nav { padding: 1rem 1.25rem; flex-wrap: wrap; gap: 0.5rem; }
  .nav-links { gap: 1.25rem; flex-wrap: wrap; }
  .nav-cta { display: none; }
}

/* ===========================
   PAGE HEADER
=========================== */
#page-header {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#header-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.page-header-inner {
  position: relative;
  z-index: 2;
  padding: 10rem 3rem 5rem;
}
.page-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.page-title em {
  font-style: normal;
  color: var(--gold);
}
.page-sub {
  font-size: 1.05rem;
  color: rgba(232,232,255,0.65);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 2.25rem;
}
.header-cta-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 600px) {
  .page-header-inner { padding: 7rem 1.25rem 4rem; }
}

/* ===========================
   BUTTONS
=========================== */
.btn-gold {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--bg);
  background: var(--gold);
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-gold:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(232,232,255,0.6);
  text-decoration: none;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(232,232,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }

/* ===========================
   SHARED SECTION PARTS
=========================== */
section {
  padding: 6rem 0;
}
.section-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
  opacity: 0.85;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 2rem;
}
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,184,0,0.18), transparent);
  margin: 0 2.5rem;
}

/* ===========================
   THE PROBLEM
=========================== */
.problem-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.prob-col {
  padding: 2rem;
  border: 1px solid rgba(255,184,0,0.12);
  background: rgba(255,184,0,0.03);
}
.prob-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,184,0,0.18);
  margin-bottom: 1rem;
  line-height: 1;
}
.prob-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(232,232,255,0.7);
}

@media (max-width: 720px) {
  .problem-cols { grid-template-columns: 1fr; }
}

/* ===========================
   BIO SECTION
=========================== */
#bio { padding: 6rem 0; }
.bio-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}
.bio-photo-block {
  position: relative;
}
.bio-photo-frame {
  width: 240px;
  height: 300px;
  border: 1px solid rgba(255,184,0,0.2);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.bio-photo-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.bio-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: -10%;
  background-image: url('img/portrait_bkgd.png');
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  z-index: 0;
  transform-origin: 50% 50%;
  animation: bioBgRotate 9s ease-in-out infinite;
}
.bio-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  display: block;
}
.bio-photo-base {
  z-index: 1;
  filter: saturate(0.9) contrast(1.05);
}
.bio-photo-top {
  z-index: 2;
  -webkit-mask-image: linear-gradient(
    115deg,
    #000 0%, #000 38%,
    transparent 47%, transparent 56%,
    #000 65%, #000 100%
  );
  -webkit-mask-size: 220% 220%;
  -webkit-mask-position: -170% 50%;
  mask-image: linear-gradient(
    115deg,
    #000 0%, #000 38%,
    transparent 47%, transparent 56%,
    #000 65%, #000 100%
  );
  mask-size: 220% 220%;
  mask-position: -170% 50%;
  animation: bioMaskSweep 4.8s ease-in-out infinite alternate;
}
@keyframes bioMaskSweep {
  0%   { -webkit-mask-position: -170% 50%; mask-position: -170% 50%; }
  100% { -webkit-mask-position:  170% 50%; mask-position:  170% 50%; }
}
@keyframes bioBgRotate {
  0%   { transform: rotate(0deg)   scale(1.06); }
  50%  { transform: rotate(8deg)   scale(1.06); }
  100% { transform: rotate(-8deg)  scale(1.06); }
}
.bio-corner {
  position: absolute;
  width: 14px; height: 14px;
}
.bio-corner.tl {
  top: -1px; left: -1px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.bio-corner.br {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.bio-glow {
  position: absolute;
  top: -30px; left: -30px;
  width: 120%; height: 120%;
  background: radial-gradient(ellipse, rgba(255,184,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.bio-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.bio-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}
.bio-body {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(232,232,255,0.75);
  margin-bottom: 1rem;
  max-width: 600px;
}
.bio-stats {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.bio-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.bio-stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(232,232,255,0.45);
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}
.bio-press {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.press-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(232,232,255,0.35);
  letter-spacing: 0.08em;
  margin-right: 0.4rem;
}
.press-outlet {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(232,232,255,0.55);
  letter-spacing: 0.05em;
}
.press-dot {
  color: rgba(232,232,255,0.2);
  font-size: 0.7rem;
}

@media (max-width: 820px) {
  .bio-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .bio-photo-frame {
    width: 200px;
    height: 250px;
  }
}

/* ===========================
   3D PROCESS
=========================== */
/* ===========================
   SVG ICON ANIMATIONS
=========================== */

/* Design — staggered opacity pulse on text lines */
.svg-pulse-1 { animation: svgLinePulse 2s ease-in-out infinite; }
.svg-pulse-2 { animation: svgLinePulse 2s ease-in-out 0.35s infinite; }
.svg-pulse-3 { animation: svgLinePulse 2s ease-in-out 0.7s infinite; }
@keyframes svgLinePulse {
  0%, 100% { opacity: 0.1; }
  50%       { opacity: 0.95; }
}

/* Development — cursor blink on the underline */
.svg-blink {
  animation: svgBlink 1.1s step-end infinite;
}
@keyframes svgBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Debugging — tick marks slide up-right, hold, flash, return, hold, flash */
.svg-target-lines {
  animation: svgTargetLines 2.4s linear infinite;
}
@keyframes svgTargetLines {
  0%   { transform: translate(0px, 0px);  animation-timing-function: cubic-bezier(0.4,0,0.2,1); }
  16%  { transform: translate(16px, 8px);  animation-timing-function: steps(1); }
  38%  { transform: translate(16px, 8px);  animation-timing-function: cubic-bezier(0.4,0,0.2,1); }
  54%  { transform: translate(0px, 0px);  animation-timing-function: steps(1); }
  100% { transform: translate(0px, 0px); }
}

/* Centre dot flashes in sync with each hold */
.svg-target-dot {
  animation: svgTargetFlash 2.4s linear infinite;
}
@keyframes svgTargetFlash {
  /* start dim */
  0%,  15% { opacity: 0.35; }
  /* flash 1 — lines have arrived up-right */
  19%      { opacity: 1;    }
  24%      { opacity: 0.35; }
  /* hold dim through return slide */
  38%, 53% { opacity: 0.35; }
  /* flash 2 — lines have returned to origin */
  57%      { opacity: 1;    }
  62%      { opacity: 0.35; }
  /* hold dim through rest of loop */
  100%     { opacity: 0.35; }
}

/* ===========================
   3D TEXT PARALLAX
=========================== */
.text-3d {
  position: relative;
  display: inline-block;
  /* Isolate stacking context so layers don't bleed */
  isolation: isolate;
}
.t3d-layer,
.t3d-front {
  display: inline-block;
}
.t3d-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  will-change: transform;
  pointer-events: none;
}
.t3d-front {
  position: relative;
  z-index: 4;
  color: var(--white);
}
/* Layer 1 — deepest, gold */
.t3d-l1 {
  color: var(--gold);
  opacity: 0.45;
  z-index: 1;
}
/* Layer 2 — mid, cyan */
.t3d-l2 {
  color: var(--cyan);
  opacity: 0.55;
  z-index: 2;
}
/* Layer 3 — closest shadow, magenta */
.t3d-l3 {
  color: var(--magenta);
  opacity: 0.5;
  z-index: 3;
}

.process-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(232,232,255,0.65);
  max-width: 640px;
  margin-bottom: 3rem;
}
.d3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.d3-card {
  padding: 2.25rem 2rem;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.025);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.d3-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.d3-design::before  { background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.d3-development::before { background: var(--gold); box-shadow: 0 0 16px var(--gold); }
.d3-debugging::before   { background: var(--magenta); box-shadow: 0 0 16px var(--magenta); }

.d3-design:hover    { border-color: rgba(0,255,240,0.25); background: rgba(0,255,240,0.04); }
.d3-development:hover { border-color: rgba(255,184,0,0.25); background: rgba(255,184,0,0.04); }
.d3-debugging:hover   { border-color: rgba(255,0,200,0.25); background: rgba(255,0,200,0.04); }

.d3-index {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
  opacity: 0.45;
}
.d3-design .d3-index     { color: var(--cyan); }
.d3-development .d3-index { color: var(--gold); }
.d3-debugging .d3-index   { color: var(--magenta); }

.d3-icon {
  margin-bottom: 1.25rem;
}
.d3-design .d3-icon     { color: var(--cyan); }
.d3-development .d3-icon { color: var(--gold); }
.d3-debugging .d3-icon   { color: var(--magenta); }

.d3-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}
.d3-design .d3-heading     { color: var(--cyan); }
.d3-development .d3-heading { color: var(--gold); }
.d3-debugging .d3-heading   { color: var(--magenta); }

.d3-sub {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(232,232,255,0.45);
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}
.d3-body {
  font-size: 0.92rem;
  line-height: 1.72;
  color: rgba(232,232,255,0.7);
  margin-bottom: 1.5rem;
}
.d3-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.d3-list li {
  font-size: 0.85rem;
  color: rgba(232,232,255,0.6);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.55;
}
.d3-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  opacity: 0.4;
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .d3-grid { grid-template-columns: 1fr; }
}

/* ===========================
   FORMAT
=========================== */
.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: start;
}
.format-card {
  padding: 2rem 1.75rem;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  position: relative;
}
.format-card-featured {
  border-color: rgba(255,184,0,0.35);
  background: rgba(255,184,0,0.04);
}
.format-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 0.3rem 0.9rem;
  white-space: nowrap;
}
.format-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(232,232,255,0.4);
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.format-tag-gold { color: var(--gold); opacity: 0.9; }
.format-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.format-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(232,232,255,0.65);
  margin-bottom: 1.25rem;
}
.format-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.format-details li {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(232,232,255,0.55);
  padding-left: 1rem;
  position: relative;
}
.format-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.7;
}

@media (max-width: 820px) {
  .format-grid { grid-template-columns: 1fr; }
}

/* ===========================
   WHO THIS IS FOR
=========================== */
.who-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.who-col {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.07);
}
.who-yes { border-color: rgba(0,255,240,0.15); background: rgba(0,255,240,0.03); }
.who-no  { border-color: rgba(255,255,255,0.06); }

.who-heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 1.25rem;
}
.who-heading-yes { color: var(--cyan); }
.who-heading-no  { color: rgba(232,232,255,0.35); }

.who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.who-list li {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(232,232,255,0.65);
  padding-left: 1.2rem;
  position: relative;
}
.who-yes .who-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 0.75rem;
}
.who-no .who-list li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: rgba(232,232,255,0.25);
  font-size: 0.8rem;
}

@media (max-width: 680px) {
  .who-cols { grid-template-columns: 1fr; }
}

/* ===========================
   OUTCOMES
=========================== */
.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  margin-top: 2rem;
  max-width: 760px;
}
.outcome-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.5rem;
  align-items: start;
}
.outcome-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,184,0,0.3);
  line-height: 1;
  padding-top: 0.15rem;
}
.outcome-head {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.outcome-body {
  font-size: 0.93rem;
  line-height: 1.72;
  color: rgba(232,232,255,0.65);
}

/* ===========================
   FINAL CTA
=========================== */
#final-cta {
  padding: 8rem 0;
}
.final-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2.5rem;
  text-align: center;
}
.final-pre {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}
.final-h {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.final-sub {
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(232,232,255,0.6);
  margin-bottom: 2.5rem;
}
.cta-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.cta-email {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(232,232,255,0.35);
  letter-spacing: 0.06em;
}
.cta-email a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,184,0,0.3);
  transition: border-color 0.2s;
}
.cta-email a:hover { border-color: var(--gold); }

/* ===========================
   FOOTER
=========================== */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 2.5rem 2.5rem;
  max-width: 1060px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: rgba(232,232,255,0.35);
  letter-spacing: 0.2em;
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(232,232,255,0.4);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(232,232,255,0.22);
  line-height: 1.8;
}
