/* ============================================================
   Ventra AI — Shared Stylesheet
   ============================================================ */

/* Fonts */
@font-face {
  font-family: "Clash Display";
  src: url("../fonts/ClashDisplay-Variable.ttf") format("truetype-variations"),
       url("../fonts/ClashDisplay-Variable.ttf") format("truetype");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;1,14..32,300;1,14..32,400;1,14..32,500&family=JetBrains+Mono:wght@400;500&display=swap");

/* ============================================================
   Tokens
   ============================================================ */
:root {
  --bg-0:        #05080F;
  --bg-1:        #0E1219;
  --bg-2:        #161B23;
  --bg-3:        #1E232C;
  --fg-1:        #F5F3EE;
  --fg-2:        #C8C5BD;
  --fg-3:        #8B877E;
  --fg-4:        #5A5751;
  --line-1:      #22262B;
  --line-2:      #2E3338;
  --line-3:      #3A4046;
  --accent:      #D4A574;
  --accent-hi:   #E8BE8E;
  --accent-lo:   #B0844F;
  --accent-ink:  #1A1410;
  --tint-advise: #8FA4A8;
  --tint-build:  #D4A574;
  --tint-train:  #B8A88F;
  --font-display: "Clash Display", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    "JetBrains Mono", "SF Mono", monospace;
  --ease-out:     cubic-bezier(0.2, 0.8, 0.2, 1);
  --shadow-glow:  0 0 0 1px rgba(212,165,116,0.2), 0 8px 32px -8px rgba(212,165,116,0.25);
}

/* ============================================================
   Keyframes
   ============================================================ */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
@keyframes underlineIn {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-0);
  color: var(--fg-1);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  animation: pageFadeIn 500ms var(--ease-out) both;
}
* { scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }

section { padding: 128px 0; position: relative; }
section + section { border-top: 1px solid var(--line-1); }
@media (max-width: 768px) { section { padding: 80px 0; } }

/* ============================================================
   Typography utilities
   ============================================================ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: inline-block;
}
.eyebrow .num { color: var(--fg-2); margin-right: 8px; }
.italic-accent { font-family: var(--font-body); font-style: italic; font-weight: 400; }

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.section-sub {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 46ch;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-top: 24px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 16px 24px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 220ms var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}
.btn .arrow { font-family: var(--font-mono); transition: transform 220ms var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow-glow); border: 0; }
.btn-primary:hover { background: var(--accent-hi); }
.btn-primary:active { background: var(--accent-lo); }

.btn-secondary { background: transparent; color: var(--fg-1); border-color: var(--line-3); }
.btn-secondary:hover { border-color: var(--fg-3); background: var(--bg-2); }

.btn-ghost { background: transparent; color: var(--fg-1); padding: 16px 4px; border: 0; }
.btn-ghost:hover { color: var(--accent); }

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--bg-1);
  border: 1px solid var(--line-1);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 220ms var(--ease-out);
}
.card:hover { border-color: var(--line-2); }

/* ============================================================
   Watermark
   ============================================================ */
.watermark {
  position: absolute;
  pointer-events: none;
  opacity: 0.04;
  color: var(--fg-1);
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 360ms var(--ease-out), transform 360ms var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }

/* ============================================================
   Hero reveal — larger travel, slower, for h1 / lede
   ============================================================ */
.reveal-hero {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms var(--ease-out), transform 680ms var(--ease-out);
}
.reveal-hero.visible { opacity: 1; transform: none; }
.reveal-hero.reveal-delay-1 { transition-delay: 100ms; }
.reveal-hero.reveal-delay-2 { transition-delay: 200ms; }
.reveal-hero.reveal-delay-3 { transition-delay: 320ms; }

/* Hero accent dot — subtle pulse */
.hero-dot-animated {
  animation: dotPulse 3s var(--ease-inout) infinite;
}

/* ============================================================
   Ticker strip
   ============================================================ */
.ticker-strip {
  overflow: hidden;
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
  padding: 14px 0;
  background: var(--bg-0);
  user-select: none;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
  gap: 0;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-3);
  white-space: nowrap;
  padding: 0 32px;
}
.ticker-item .ticker-accent { color: var(--accent); }
.ticker-item .ticker-arrow { color: var(--fg-4); margin: 0 6px; }

/* ============================================================
   Services panel animation
   ============================================================ */
.services-panel-animated {
  animation: panelIn 300ms var(--ease-out) both;
}

/* ============================================================
   Stat counter
   ============================================================ */
.stat-value {
  display: inline;
  transition: opacity 220ms var(--ease-out);
}
.case-stats.counting .case-stat-n {
  animation: countUp 500ms var(--ease-out) both;
}
.case-stats.counting .case-stat:nth-child(2) .case-stat-n { animation-delay: 80ms; }
.case-stats.counting .case-stat:nth-child(3) .case-stat-n { animation-delay: 160ms; }

/* ============================================================
   Nav animated underline
   ============================================================ */
.nav-links a {
  position: relative;
  border-bottom: 0;
  padding-bottom: 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-links a:hover { color: var(--fg-1); border-bottom: 0; }
.nav-links a.active { color: var(--fg-1); border-bottom: 0; }

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 72px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 220ms var(--ease-out), border-color 220ms var(--ease-out);
}
#nav.scrolled {
  background: rgba(10,11,13,0.72);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom-color: var(--line-1);
}
#nav .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-left { display: flex; align-items: center; gap: 40px; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--fg-1); text-decoration: none; border-bottom: 0;
}
.nav-logo:hover { color: var(--fg-1); border-bottom: 0; }
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  letter-spacing: 0.04em; color: var(--fg-1);
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-family: var(--font-body); font-size: 13px;
  color: var(--fg-2); text-decoration: none;
  border-bottom: 0;
  transition: color 220ms var(--ease-out);
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: 0; padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 1px; background: var(--fg-2); }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  #nav .btn { display: none; }
}

#mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  z-index: 49; background: rgba(10,11,13,0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-1);
  padding: 24px; flex-direction: column; gap: 0;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-size: 15px; color: var(--fg-2); text-decoration: none;
  border-bottom: 1px solid var(--line-1); padding: 14px 0;
}
#mobile-menu a:last-child { border-bottom: 0; }

/* ============================================================
   PAGE HERO (shared by inner pages)
   ============================================================ */
.page-hero { padding-top: 180px; padding-bottom: 120px; }
@media (max-width: 768px) { .page-hero { padding-top: 130px; padding-bottom: 80px; } }
.page-hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 48px; }
.page-hero-dot { width: 6px; height: 6px; border-radius: 999px; flex-shrink: 0; }
.page-hero-h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 1.02; letter-spacing: -0.025em;
  color: var(--fg-1); max-width: 16ch;
}
.page-hero-lede {
  font-size: 21px; line-height: 1.5;
  color: var(--fg-2); margin-top: 36px; max-width: 52ch;
}
@media (max-width: 768px) { .page-hero-lede { font-size: 17px; } }
.page-hero-cta { margin-top: 48px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

/* ============================================================
   METHODOLOGY SECTION
   ============================================================ */
.method-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .method-grid { grid-template-columns: 1fr; } }
.method-card {
  display: flex; flex-direction: column; gap: 20px;
  padding: 32px 28px 36px;
  border: 1px solid var(--line-1); border-radius: 14px;
  background: var(--bg-1); transition: border-color 220ms var(--ease-out);
}
.method-card:hover { border-color: var(--line-2); }
.method-card-num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--fg-3); text-transform: uppercase;
}
.method-card-name {
  font-family: var(--font-display); font-weight: 500;
  font-size: 56px; line-height: 1; letter-spacing: -0.02em;
}
.method-card-desc { font-size: 14px; line-height: 1.65; color: var(--fg-2); }

/* ============================================================
   SERVICES TABS (homepage)
   ============================================================ */
.services-tabs {
  display: flex; border-bottom: 1px solid var(--line-1); margin-bottom: 48px;
}
@media (max-width: 768px) {
  .services-tabs { flex-direction: column; border-bottom: 0; margin-bottom: 32px; }
}
.services-tab {
  flex: 1; padding: 20px 24px; cursor: pointer;
  background: transparent; border: 0;
  border-bottom: 1px solid transparent; margin-bottom: -1px;
  text-align: left; display: flex; align-items: baseline; gap: 16px;
  color: var(--fg-3); font-family: inherit;
  transition: color 220ms var(--ease-out), border-color 220ms var(--ease-out);
}
.services-tab.active { color: var(--fg-1); }
@media (max-width: 768px) {
  .services-tab { border-bottom: 1px solid var(--line-1); margin-bottom: 0; padding: 16px 0; }
}
.services-tab-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; }
.services-tab-name { font-family: var(--font-display); font-size: 26px; letter-spacing: -0.01em; }
.services-panel { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 900px) { .services-panel { grid-template-columns: 1fr; gap: 40px; } }
.services-outcome {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05; letter-spacing: -0.02em; color: var(--fg-1);
}
.services-blurb { font-size: 16px; line-height: 1.6; color: var(--fg-2); margin-top: 28px; max-width: 52ch; }
.services-list { list-style: none; display: flex; flex-direction: column; }
.services-list li {
  font-size: 14px; color: var(--fg-2);
  display: flex; gap: 12px; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--line-1);
}
.services-list li:first-child { border-top: 1px solid var(--line-1); }
.services-list-num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; color: var(--fg-3); min-width: 24px;
}

/* ============================================================
   SERVICE ARM CARDS (homepage overview)
   ============================================================ */
.arm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .arm-grid { grid-template-columns: 1fr; } }
.arm-card {
  display: flex; flex-direction: column; gap: 20px;
  padding: 36px 32px;
  border: 1px solid var(--line-1); border-radius: 14px;
  background: var(--bg-1); text-decoration: none;
  transition: border-color 220ms var(--ease-out);
}
.arm-card:hover { border-color: var(--line-2); }
.arm-card-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.arm-card-name { font-family: var(--font-display); font-size: 32px; font-weight: 400; letter-spacing: -0.02em; color: var(--fg-1); }
.arm-card-outcome { font-size: 15px; color: var(--fg-2); line-height: 1.55; }
.arm-card-link { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line-1); }

/* ============================================================
   CASE STUDY
   ============================================================ */
.case-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center; margin-top: 64px;
}
@media (max-width: 900px) { .case-wrap { grid-template-columns: 1fr; gap: 48px; } }
.case-left { display: flex; flex-direction: column; gap: 24px; }
.case-client {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--fg-3); text-transform: uppercase;
}
.case-h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px); font-weight: 400;
  line-height: 1.1; letter-spacing: -0.02em;
}
.case-body { font-size: 15px; color: var(--fg-2); line-height: 1.65; max-width: 52ch; }
.case-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding: 36px; background: var(--bg-1);
  border: 1px solid var(--line-1); border-radius: 14px;
}
@media (max-width: 480px) { .case-stats { grid-template-columns: 1fr; padding: 24px; } }
.case-stat {
  display: flex; flex-direction: column; gap: 6px;
  padding: 0 24px; border-left: 1px solid var(--line-1);
}
.case-stat:first-child { padding-left: 0; border-left: 0; }
.case-stat-n { font-family: var(--font-display); font-size: 44px; line-height: 1; color: var(--fg-1); letter-spacing: -0.02em; }
.case-stat-unit { font-size: 22px; color: var(--fg-3); margin-left: 2px; }
.case-stat-l { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--fg-3); text-transform: uppercase; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.test-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 768px) { .test-grid { grid-template-columns: 1fr; } }
.test-card {
  background: var(--bg-1); border: 1px solid var(--line-1);
  border-radius: 14px; padding: 36px;
  display: flex; flex-direction: column; gap: 28px;
  transition: border-color 220ms var(--ease-out);
}
.test-card:hover { border-color: var(--line-2); }
.test-quote { font-family: var(--font-display); font-size: 22px; line-height: 1.38; letter-spacing: -0.01em; color: var(--fg-1); }
.test-meta { display: flex; align-items: center; gap: 14px; }
.test-avatar { width: 40px; height: 40px; border-radius: 999px; background: linear-gradient(135deg, #3A4046, #181B1F); border: 1px solid var(--line-2); flex-shrink: 0; }
.test-name { font-size: 13px; color: var(--fg-1); font-weight: 500; }
.test-role { font-size: 12px; color: var(--fg-3); margin-top: 2px; }
.test-result { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--accent); text-transform: uppercase; padding-top: 20px; border-top: 1px solid var(--line-1); margin-top: auto; }

/* ============================================================
   PROCESS (inner pages)
   ============================================================ */
.process-list { display: flex; flex-direction: column; gap: 0; margin-top: 24px; }
.process-step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 40px; padding: 48px 0;
  border-bottom: 1px solid var(--line-1);
}
.process-step:first-child { border-top: 1px solid var(--line-1); }
@media (max-width: 768px) {
  .process-step { grid-template-columns: 1fr; gap: 16px; padding: 36px 0; }
}
.process-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--fg-3); text-transform: uppercase; padding-top: 4px; }
.process-body { display: flex; flex-direction: column; gap: 12px; }
.process-title { font-family: var(--font-display); font-size: 28px; font-weight: 400; letter-spacing: -0.02em; line-height: 1.1; }
.process-desc { font-size: 15px; color: var(--fg-2); line-height: 1.65; max-width: 56ch; }

/* ============================================================
   DELIVERABLES / BULLETS (inner pages)
   ============================================================ */
.deliverables { list-style: none; display: flex; flex-direction: column; }
.deliverables li {
  font-size: 15px; color: var(--fg-2);
  display: flex; gap: 14px; align-items: baseline;
  padding: 16px 0; border-bottom: 1px solid var(--line-1);
}
.deliverables li:first-child { border-top: 1px solid var(--line-1); }
.deliverables-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--fg-3); min-width: 28px; }

/* ============================================================
   BOOKING CTA
   ============================================================ */
.booking-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  padding: 64px 56px; background: var(--bg-1); border: 1px solid var(--line-1);
  border-radius: 20px; position: relative; overflow: hidden;
}
@media (max-width: 768px) { .booking-wrap { grid-template-columns: 1fr; gap: 48px; padding: 36px 28px; } }
.booking-h2 { font-family: var(--font-display); font-size: clamp(34px, 4.5vw, 64px); font-weight: 400; line-height: 1.02; letter-spacing: -0.02em; max-width: 14ch; margin-top: 24px; }
.booking-sub { color: var(--fg-2); font-size: 16px; line-height: 1.55; margin-top: 20px; max-width: 46ch; }
.booking-form { display: flex; flex-direction: column; gap: 16px; }
.field-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 6px; display: block; }
.field-input {
  width: 100%; background: var(--bg-0); border: 1px solid var(--line-2);
  border-radius: 6px; padding: 14px 16px; color: var(--fg-1);
  font-family: var(--font-body); font-size: 14px; outline: none;
  transition: border-color 220ms var(--ease-out); appearance: none;
}
.field-input:focus { border-color: var(--line-3); }
.field-input::placeholder { color: var(--fg-4); }
textarea.field-input { resize: vertical; min-height: 88px; }
.booking-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-3); margin-top: 4px; }
.booking-success { display: flex; flex-direction: column; gap: 16px; }
.booking-success-title { font-family: var(--font-display); font-size: 32px; line-height: 1.1; letter-spacing: -0.02em; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { padding: 96px 0 48px; border-top: 1px solid var(--line-1); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 80px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand { display: flex; flex-direction: column; gap: 24px; }
.footer-logo { display: flex; align-items: center; gap: 10px; color: var(--fg-1); }
.footer-wordmark { font-family: var(--font-display); font-size: 28px; font-weight: 500; letter-spacing: 0.04em; color: var(--fg-1); }
.footer-tagline { font-family: var(--font-display); font-size: 18px; color: var(--fg-2); max-width: 32ch; line-height: 1.4; }
.footer-col-title { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--fg-2); font-size: 13px; text-decoration: none; border-bottom: 0; transition: color 220ms var(--ease-out); }
.footer-col a:hover { color: var(--fg-1); }
.footer-col span { color: var(--fg-3); font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: baseline; padding-top: 32px; border-top: 1px solid var(--line-1); flex-wrap: wrap; gap: 12px; }
.footer-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--fg-3); text-transform: uppercase; }
