/* =========================================================
   Momentum v2 — landing page
   Design system tokens
   ========================================================= */

:root {
  /* Color */
  --ink-950: #0a0a0c;
  --ink-900: #111114;
  --ink-800: #1a1a1f;
  --ink-700: #2a2a31;
  --ink-600: #3a3a44;

  --paper: #f5f1e8;
  --paper-dim: #d8d4c8;
  --paper-muted: #8a8780;
  --paper-faint: #5a5852;

  --amber: #e89a2c;
  --amber-soft: #f5c36a;
  --orange: #e07a2a;

  /* Type */
  --font-display: "Inter Tight", "Inter", system-ui, -apple-system, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  --font-serif: "Fraunces", "Iowan Old Style", "Times New Roman", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo,
    Consolas, monospace;

  /* Space */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;
  --s-11: 160px;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================
   Base
   ========================================================= */

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--ink-950);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--amber);
  color: #1a1206;
}

.mono {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  background: var(--amber);
  color: #1a1206;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 100;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 12px;
}

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
  border-radius: 4px;
}

/* =========================================================
   Top bar (meta strip)
   ========================================================= */

.topbar {
  position: relative;
  z-index: 60;
  background: var(--ink-950);
  border-bottom: 1px solid var(--ink-800);
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-muted);
}
.topbar .mono {
  color: var(--paper-muted);
}
.topbar .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.7;
}

@media (max-width: 640px) {
  .topbar-inner {
    font-size: 10px;
    gap: 10px;
    letter-spacing: 0.14em;
  }
  .topbar .dot:nth-of-type(2) {
    display: none;
  }
}

/* =========================================================
   Layout
   ========================================================= */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =========================================================
   Navigation
   ========================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px var(--gutter);
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.nav.scrolled {
  border-bottom-color: var(--ink-800);
  background: rgba(10, 10, 12, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  transition: opacity 0.2s var(--ease);
}
.brand:hover {
  opacity: 0.85;
}

.mark {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  filter: drop-shadow(0 0 12px rgba(232, 154, 44, 0.25));
}
.mark-sm {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  filter: none;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.3em;
  color: var(--paper);
}

.nav-links {
  display: none;
  gap: 24px;
  font-size: 14px;
  color: var(--paper-muted);
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
}
.nav-links a .mono {
  font-size: 10.5px;
  color: var(--paper-faint);
  transition: color 0.2s var(--ease);
}
.nav-links a:hover {
  color: var(--paper);
}
.nav-links a:hover .mono {
  color: var(--amber);
}

.nav-cta {
  padding: 9px 16px;
  font-size: 13px;
}
.nav-cta svg {
  width: 14px;
  height: 14px;
}

@media (min-width: 820px) {
  .nav-links {
    display: inline-flex;
  }
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.005em;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: transform 0.18s var(--ease), background 0.2s var(--ease),
    color 0.2s var(--ease), border-color 0.2s var(--ease),
    box-shadow 0.25s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease);
}
.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--amber);
  color: #1a1206;
  box-shadow: 0 8px 24px -10px rgba(232, 154, 44, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease);
}
.btn-primary:hover {
  background: var(--amber-soft);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px rgba(232, 154, 44, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-primary:hover::before {
  transform: translateX(100%);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--ink-700);
}
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(232, 154, 44, 0.05);
}

.btn-link {
  background: transparent;
  color: var(--paper);
  padding: 13px 4px;
  border-radius: 0;
  position: relative;
}
.btn-link::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 8px;
  height: 1px;
  background: var(--paper-muted);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.3s var(--ease), background 0.2s var(--ease);
}
.btn-link:hover {
  color: var(--amber);
}
.btn-link:hover::after {
  background: var(--amber);
  transform: scaleX(1);
}
.btn-link:hover svg {
  transform: translateX(0);
}

.btn-large {
  padding: 17px 28px;
  font-size: 15.5px;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  padding: clamp(72px, 12vw, 140px) var(--gutter) clamp(80px, 14vw, 160px);
  overflow: hidden;
  isolation: isolate;
}

/* Grid background */
.grid-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(to right, rgba(245, 241, 232, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245, 241, 232, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
}

/* Amber radial glow */
.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 80%;
  z-index: -1;
  background: radial-gradient(50% 40% at 50% 30%, rgba(232, 154, 44, 0.18), transparent 65%),
    radial-gradient(35% 25% at 80% 20%, rgba(224, 122, 42, 0.15), transparent 60%);
  pointer-events: none;
  filter: blur(3px);
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-mono {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-faint);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--paper-dim);
  padding: 8px 14px;
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(8px);
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(232, 154, 44, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(232, 154, 44, 0.18);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(232, 154, 44, 0.04);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9.5vw, 148px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin: 0;
  color: var(--paper);
}
.hero-title .line {
  display: block;
}
.hero-title .ambition {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-variation-settings: "opsz" 144;
  background: linear-gradient(96deg, var(--amber-soft) 0%, var(--amber) 45%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.025em;
  padding-right: 0.04em;
  position: relative;
  display: inline-block;
}
.ambition-underline {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 4px;
  background: linear-gradient(90deg, var(--amber-soft), var(--orange), transparent);
  transform-origin: left;
  transform: scaleX(0);
  animation: drawLine 1.4s var(--ease-out) 0.6s forwards;
  border-radius: 2px;
}
@keyframes drawLine {
  to {
    transform: scaleX(1);
  }
}

.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-sub {
  max-width: 480px;
  margin: 0;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--paper-muted);
}
.hero-sub .mono {
  color: var(--amber);
  font-size: 0.95em;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
  margin: clamp(56px, 8vw, 96px) 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--ink-800);
  max-width: 880px;
}
@media (min-width: 720px) {
  .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-num {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--paper);
  line-height: 1;
}
.stat-sym {
  color: var(--amber);
  font-size: 0.7em;
  margin-left: 2px;
}
.stat-label {
  margin: 0;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-faint);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1px solid var(--ink-700);
  border-radius: var(--radius-pill);
  display: flex;
  justify-content: center;
  padding-top: 8px;
  opacity: 0.7;
  transition: opacity 0.2s var(--ease), border-color 0.2s var(--ease);
}
.scroll-cue span {
  display: block;
  width: 2px;
  height: 8px;
  background: var(--amber);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
.scroll-cue:hover {
  opacity: 1;
  border-color: var(--amber);
}
@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  60% {
    transform: translateY(12px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

/* =========================================================
   Sections
   ========================================================= */

.section {
  position: relative;
  padding: clamp(80px, 11vw, 140px) 0;
  border-top: 1px solid var(--ink-800);
}

.section-head {
  max-width: 980px;
  margin: 0 0 clamp(40px, 6vw, 64px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.kicker .mono {
  color: var(--amber);
  opacity: 0.6;
}
.kicker.on-dark .mono {
  color: var(--amber-soft);
  opacity: 0.7;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0;
  color: var(--paper);
}
.section-title.on-dark {
  color: var(--paper);
}
.muted {
  color: var(--paper-muted);
  font-weight: 500;
}
.accent {
  background: linear-gradient(96deg, var(--amber-soft), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* WHY */
.section-why {
  background: linear-gradient(180deg, var(--ink-950) 0%, #0c0c0f 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1080px;
}
.why-lead {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
  color: var(--paper-dim);
  margin: 0;
  border-left: 2px solid var(--amber);
  padding-left: 22px;
  font-weight: 400;
}
.why-lead + .why-lead {
  border-left-color: var(--orange);
}

@media (min-width: 820px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

/* WHO */
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 820px) {
  .who-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.who-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-800);
  background: linear-gradient(180deg, var(--ink-900) 0%, #0e0e11 100%);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
  overflow: hidden;
}
.who-card.yes {
  border-color: var(--ink-800);
}
.who-card.yes::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.5;
}
.who-card.yes:hover {
  border-color: rgba(232, 154, 44, 0.4);
  transform: translateY(-3px);
}
.who-card.no {
  background: transparent;
  border-style: dashed;
  border-color: var(--ink-700);
}
.who-card.no:hover {
  border-color: var(--ink-600);
}

.who-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
}
.card-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.yes-tag {
  color: #1a1206;
  background: var(--amber);
}
.no-tag {
  color: var(--paper-muted);
  background: var(--ink-800);
  border: 1px solid var(--ink-700);
}
.card-mono {
  font-size: 11px;
  color: var(--paper-faint);
  letter-spacing: 0.12em;
}

.who-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.who-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16.5px;
  color: var(--paper);
  line-height: 1.5;
  font-weight: 400;
}
.who-card.no .who-list li {
  color: var(--paper-muted);
}
.bullet {
  flex: 0 0 18px;
  width: 18px;
  text-align: center;
  font-weight: 700;
  margin-top: 1px;
}
.yes-bullet {
  color: var(--amber);
}
.no-bullet {
  color: var(--paper-faint);
}

/* INSIDE */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 820px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

.pillar {
  position: relative;
  padding: 36px 30px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-800);
  background: linear-gradient(180deg, #121216 0%, #0e0e11 100%);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(232, 154, 44, 0.5), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.pillar:hover {
  transform: translateY(-4px);
}
.pillar:hover::before {
  opacity: 1;
}

.pillar-num {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--amber);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 30px;
  margin: 0 0 12px;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--paper);
}
.pillar p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--paper-muted);
  font-weight: 400;
}
.pillar-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--amber);
  margin-top: 24px;
  border-radius: 2px;
  transition: width 0.4s var(--ease);
}
.pillar:hover .pillar-line {
  width: 64px;
}

/* APPLY */
.section-apply {
  border-top: none;
  padding-bottom: clamp(80px, 10vw, 120px);
}

.apply-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: clamp(32px, 5vw, 64px);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(232, 154, 44, 0.12) 0%, rgba(224, 122, 42, 0.05) 40%, transparent 70%),
    var(--ink-900);
  border: 1px solid var(--ink-800);
  position: relative;
  overflow: hidden;
}
.apply-card::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  top: -140px;
  background: radial-gradient(closest-side, rgba(232, 154, 44, 0.28), transparent);
  filter: blur(20px);
  pointer-events: none;
}
.apply-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(232, 154, 44, 0.3), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@media (min-width: 900px) {
  .apply-card {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    gap: 64px;
    padding: 72px;
  }
}

.apply-left {
  position: relative;
  z-index: 1;
}

.apply-sub {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  color: var(--paper-muted);
  max-width: 520px;
  margin: 24px 0 32px;
  font-weight: 400;
}

.apply-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--paper-muted);
}
.apply-note .mono {
  color: var(--amber);
}

.apply-points {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid var(--ink-800);
  padding-top: 32px;
}
@media (min-width: 900px) {
  .apply-points {
    border-top: none;
    border-left: 1px solid var(--ink-800);
    padding-top: 0;
    padding-left: 40px;
  }
}
.apply-points li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.point-num {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--amber);
  flex: 0 0 28px;
  margin-top: 3px;
}
.apply-points h4 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.apply-points p {
  margin: 0;
  font-size: 14.5px;
  color: var(--paper-muted);
  line-height: 1.55;
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  border-top: 1px solid var(--ink-800);
  padding: 36px 0 120px;
  background: var(--ink-950);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
@media (min-width: 760px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--paper);
}
.footer-sub {
  margin: 2px 0 0;
  font-size: 10.5px;
  color: var(--paper-faint);
  letter-spacing: 0.18em;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
  color: var(--paper-muted);
}
.footer-links a {
  transition: color 0.2s var(--ease);
}
.footer-links a:hover {
  color: var(--amber);
}
.footer-meta {
  margin: 0;
  font-size: 11px;
  color: var(--paper-faint);
  letter-spacing: 0.14em;
}

/* =========================================================
   Sticky CTA
   ========================================================= */

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: #1a1206;
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 18px 40px -12px rgba(232, 154, 44, 0.6),
    0 4px 14px -2px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
    opacity 0.25s var(--ease);
  opacity: 0.96;
}
.sticky-cta:hover {
  background: var(--amber-soft);
  transform: translateY(-2px);
}
.sticky-cta svg {
  width: 16px;
  height: 16px;
}
.sticky-cta.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

@media (min-width: 760px) {
  .sticky-cta {
    right: 28px;
    bottom: 28px;
  }
}

/* =========================================================
   Reveal
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Reduced motion
   ========================================================= */

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