/* NautiloCat — pearl shell × midnight terminal */

:root {
  --ivory: #f7f2e8;
  --pearl: #efe6d6;
  --shell: #e4d5bc;
  --amber: #c9a46a;
  --navy: #0c1424;
  --navy-deep: #070d18;
  --navy-mid: #152238;
  --ink: #1a2436;
  --muted: #6b7588;
  --cyan: #5eb8d4;
  --cyan-soft: rgba(94, 184, 212, 0.18);
  --cyan-glow: rgba(94, 184, 212, 0.45);
  --cream-text: #f3ebe0;
  --line: rgba(26, 36, 54, 0.12);
  --line-light: rgba(243, 235, 224, 0.16);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px rgba(7, 13, 24, 0.18);
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Sora", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(201, 164, 106, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 5%, rgba(94, 184, 212, 0.12), transparent 50%),
    linear-gradient(180deg, var(--ivory) 0%, var(--pearl) 42%, #e8dfd0 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

code {
  font-family: var(--font-mono);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--cream-text);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* Ambient layer */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.ambient__glow--a {
  width: 420px;
  height: 420px;
  top: 12%;
  left: -8%;
  background: rgba(201, 164, 106, 0.35);
}

.ambient__glow--b {
  width: 380px;
  height: 380px;
  top: 55%;
  right: -10%;
  background: rgba(94, 184, 212, 0.22);
}

.particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(94, 184, 212, 0.55);
  animation: drift linear infinite;
}

@keyframes drift {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  15% { opacity: 0.7; }
  85% { opacity: 0.4; }
  100% { transform: translateY(-100vh) scale(0.6); opacity: 0; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(247, 242, 232, 0.82);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(26, 36, 54, 0.08);
}

.brand__name {
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.45);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease), background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--navy);
  color: var(--cream-text);
  box-shadow: 0 8px 24px rgba(12, 20, 36, 0.22);
}

.btn--primary:hover {
  background: #15233a;
  box-shadow: 0 10px 28px rgba(12, 20, 36, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(12, 20, 36, 0.22);
}

.btn--secondary:hover {
  border-color: var(--cyan);
  background: var(--cyan-soft);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  color: var(--navy);
}

.btn--ghost:hover {
  border-color: rgba(94, 184, 212, 0.5);
  background: #fff;
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn--lg {
  min-height: 48px;
  padding: 0.7rem 1.45rem;
  font-size: 0.95rem;
}

.btn--copy {
  min-height: 36px;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  background: var(--navy);
  color: var(--cream-text);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
}

.btn--copy.is-copied {
  background: #2d6a4f;
}

.btn--disabled,
.btn[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

/* Main layout */
main {
  position: relative;
  z-index: 1;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.5rem 1.25rem;
}

.section__head {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.section__title {
  margin: 0.4rem 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-transform: uppercase;
}

.section__lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.terminal-blink {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan-glow);
  animation: blink 1.2s steps(1) infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.2; }
}

.disclaimer {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

/* Hero */
.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero__title {
  margin: 0.75rem 0 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 5.8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.hero__ticker {
  margin: 0 0 1.4rem;
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.04em;
}

.hero__core {
  margin: 0 0 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-family: var(--font-mono);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.45;
  color: var(--navy);
}

.hero__support {
  margin: 0 0 1.75rem;
  max-width: 34ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ca-box {
  max-width: 420px;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.ca-box::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(94, 184, 212, 0.25);
  pointer-events: none;
}

.ca-box__meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.ca-box__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(201, 164, 106, 0.22);
  color: #8a6a35;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.ca-box__label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.ca-box__row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.ca-box__value {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  background: var(--navy-deep);
  color: var(--cyan);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-box__note {
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.orbit {
  position: absolute;
  inset: 8% 10%;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.orbit__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(94, 184, 212, 0.28);
}

.orbit__ring--1 {
  width: 78%;
  aspect-ratio: 1;
  animation: spin 48s linear infinite;
}

.orbit__ring--2 {
  width: 92%;
  aspect-ratio: 1;
  border-style: dashed;
  border-color: rgba(201, 164, 106, 0.35);
  animation: spin 64s linear infinite reverse;
}

.orbit__ring--3 {
  width: 64%;
  aspect-ratio: 1;
  border-color: rgba(12, 20, 36, 0.1);
}

.orbit__spiral {
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-conic-gradient(
      from 0deg,
      transparent 0deg 12deg,
      rgba(94, 184, 212, 0.08) 12deg 14deg
    );
  mask: radial-gradient(circle, transparent 35%, #000 36%);
  animation: spin 36s linear infinite;
  opacity: 0.7;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero__mascot {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  filter: drop-shadow(0 28px 50px rgba(7, 13, 24, 0.35));
  animation: float 5.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero__curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 48px;
  background:
    radial-gradient(120% 100% at 50% -20%, transparent 60%, var(--pearl) 61%);
  pointer-events: none;
}

/* About / Manual */
.about {
  position: relative;
}

.manual {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.manual__entry {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.manual__entry::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 106, 0.25);
  transition: transform 0.4s var(--ease);
}

.manual__entry:hover,
.manual__entry:focus-within {
  border-color: rgba(94, 184, 212, 0.45);
  transform: translateX(4px);
  box-shadow: 0 12px 32px rgba(12, 20, 36, 0.08);
}

.manual__entry:hover::after,
.manual__entry:focus-within::after {
  transform: scale(1.25);
}

.manual__index {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.08em;
  padding-top: 0.2rem;
}

.manual__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy);
}

.manual__text {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 48ch;
}

/* Room / Seats */
.room {
  padding-top: 3rem;
}

.seats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  perspective: 800px;
}

.seat {
  position: relative;
  padding: 1.75rem 1.4rem 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.seat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, var(--cyan-soft), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.seat:hover,
.seat:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(94, 184, 212, 0.4);
  box-shadow: 0 18px 40px rgba(12, 20, 36, 0.12);
}

.seat:hover::before,
.seat:focus-visible::before {
  opacity: 1;
}

.seat__glyph {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  border-radius: 14px;
  background: var(--navy);
  color: var(--cyan);
}

.seat__name {
  margin: 0 0 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--navy);
}

.seat__desc {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  min-height: 3.2em;
}

.seat__status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--cyan);
}

.seat__status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  animation: blink 1.4s steps(1) infinite;
}

.seat--person .seat__glyph,
.seat--genie .seat__glyph {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.seat--cat {
  transform: rotate(-1.5deg) translateY(10px);
  background:
    linear-gradient(165deg, rgba(255, 252, 246, 0.85), rgba(232, 220, 198, 0.65));
  border-color: rgba(201, 164, 106, 0.4);
}

.seat--cat:hover,
.seat--cat:focus-visible {
  transform: rotate(-0.5deg) translateY(2px);
}

.seat--cat .seat__glyph {
  background: linear-gradient(160deg, #2a1f14, #4a3824);
  color: var(--amber);
}

.seat--cat .seat__status {
  color: var(--amber);
}

.seat__paw {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-size: 1.1rem;
  opacity: 0.7;
  transform: rotate(18deg);
  user-select: none;
}

.room:hover,
.room:focus-within {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Ccircle cx='10' cy='8' r='2.2' fill='%231a2436'/%3E%3Ccircle cx='18' cy='8' r='2.2' fill='%231a2436'/%3E%3Ccircle cx='7' cy='14' r='2' fill='%231a2436'/%3E%3Ccircle cx='21' cy='14' r='2' fill='%231a2436'/%3E%3Cellipse cx='14' cy='19' rx='4.5' ry='3.5' fill='%231a2436'/%3E%3C/svg%3E") 8 8, auto;
}

/* Manifesto */
.manifesto {
  max-width: none;
  margin: 2rem 0;
  padding: 6rem 1.25rem;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(94, 184, 212, 0.12), transparent 55%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 48%, #1a2d4a 100%);
  color: var(--cream-text);
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.manifesto__shell {
  position: absolute;
  width: min(70vw, 640px);
  aspect-ratio: 1;
  right: -12%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(243, 235, 224, 0.12);
  box-shadow:
    0 0 0 40px rgba(243, 235, 224, 0.03),
    0 0 0 90px rgba(243, 235, 224, 0.025),
    0 0 0 150px rgba(243, 235, 224, 0.02);
  animation: spin 80s linear infinite;
  pointer-events: none;
}

.manifesto__shell::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px dashed rgba(94, 184, 212, 0.25);
}

.manifesto__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}

.manifesto__headline {
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.manifesto__headline span:last-child {
  color: var(--cyan);
}

.manifesto__lines {
  display: grid;
  gap: 0.65rem;
  font-family: var(--font-mono);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  letter-spacing: 0.03em;
  color: rgba(243, 235, 224, 0.78);
}

.manifesto__lines p {
  margin: 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(94, 184, 212, 0.45);
}

/* Chart */
.chart-frame {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy-deep);
  min-height: 420px;
  box-shadow: var(--shadow);
}

.chart-frame__placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.75rem;
  min-height: 420px;
  padding: 2.5rem 1.5rem;
  color: var(--cream-text);
}

.chart-frame__spiral {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(94, 184, 212, 0.35);
  box-shadow:
    0 0 0 16px rgba(94, 184, 212, 0.08),
    0 0 0 32px rgba(94, 184, 212, 0.05);
  margin-bottom: 0.5rem;
  animation: spin 20s linear infinite;
}

.chart-frame__spiral::before {
  content: "";
  display: block;
  width: 55%;
  height: 55%;
  margin: 22.5% auto 0;
  border-radius: 50%;
  border: 1px dashed rgba(201, 164, 106, 0.5);
}

.chart-frame__badge {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--amber);
}

.chart-frame__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
}

.chart-frame__text {
  margin: 0 0 0.5rem;
  max-width: 42ch;
  color: rgba(243, 235, 224, 0.7);
  font-size: 0.95rem;
}

.chart-frame__text code {
  color: var(--cyan);
}

.chart-frame__iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  display: block;
  background: #0b1220;
}

.chart-frame__iframe.is-hidden,
.chart-frame__placeholder.is-hidden {
  display: none;
}

.chart-frame.is-live .chart-frame__placeholder {
  display: none;
}

.chart-frame.is-live .chart-frame__iframe {
  display: block;
}

/* CTA */
.cta {
  padding-bottom: 4rem;
}

.cta__banner {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.cta__banner img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.cta__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 13, 24, 0.82) 0%, rgba(7, 13, 24, 0.55) 45%, rgba(7, 13, 24, 0.35) 100%);
}

.cta__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  color: var(--cream-text);
  max-width: 560px;
}

.cta__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.cta__ticker {
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  color: var(--amber);
  letter-spacing: 0.06em;
}

.cta__quote {
  margin: 0 0 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: rgba(243, 235, 224, 0.85);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  background: rgba(247, 242, 232, 0.7);
  padding: 2.5rem 1.25rem 3rem;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__name {
  margin: 0;
  font-weight: 600;
}

.site-footer__meta {
  margin: 0.15rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.site-footer__nav a {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.site-footer__nav a:hover {
  color: var(--navy);
}

.site-footer__disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 48ch;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile nav */
@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.1rem;
    background: rgba(247, 242, 232, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__visual {
    order: -1;
    min-height: 300px;
  }

  .hero__mascot {
    width: min(100%, 360px);
  }

  .seats {
    grid-template-columns: 1fr;
  }

  .seat--cat {
    transform: rotate(-1deg) translateY(0);
  }

  .seat--cat:hover,
  .seat--cat:focus-visible {
    transform: translateY(-4px);
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 1.75rem;
  }

  .section {
    padding: 4rem 1.1rem;
  }

  .brand__name {
    font-size: 0.95rem;
  }

  .header-actions .btn--ghost {
    display: none;
  }

  .ca-box__row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn--copy {
    width: 100%;
  }

  .cta__banner,
  .cta__banner img {
    min-height: 480px;
  }

  .manifesto {
    padding: 4.5rem 1.1rem;
  }

  .chart-frame__iframe {
    min-height: 420px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__mascot {
    animation: none;
  }
}
