/* ============================================================
   MACROCYSTIS.COM — Deep Ocean Design System
   Fonts: Sora (display) + Inter Tight (body)
   Palette: abyss navy + kelp gold accent (single accent, locked)
   ============================================================ */

:root {
  --abyss: #04121c;
  --deep: #062233;
  --surface: #0a3040;
  --surface-2: #0d3a4d;
  --line: rgba(140, 190, 200, 0.14);
  --text: #eaf4f4;
  --text-dim: #9dbcc6;
  --accent: #e0a93e;
  --accent-soft: rgba(224, 169, 62, 0.14);
  --radius: 14px;
  --font-display: "Sora", sans-serif;
  --font-body: "Inter Tight", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--abyss);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

em { font-style: italic; }

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

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

/* ============ NAV ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 clamp(20px, 4vw, 48px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(4, 18, 28, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-brand { font-family: var(--font-display); font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.nav-latin { font-style: italic; font-weight: 600; }
.nav-tld { color: var(--accent); font-weight: 400; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 18px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  transition: background 0.25s, color 0.25s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent); color: var(--abyss); }
.nav-cta:active { transform: translateY(1px); }
@media (max-width: 900px) { .nav-links { display: none; } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.15s, background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn-primary { background: var(--accent); color: var(--abyss); }
.btn-primary:hover { background: #f0bc55; }
.btn-ghost { border: 1px solid rgba(234, 244, 244, 0.35); color: var(--text); background: rgba(4,18,28,0.25); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--text); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(20px, 5vw, 72px) clamp(72px, 10vh, 110px);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--abyss) 0%, rgba(4,18,28,0.55) 26%, rgba(4,18,28,0.08) 55%, rgba(4,18,28,0.35) 100%);
}
.hero-content { max-width: 900px; }
.hero-eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 7.2vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 26px;
}
.hero-title-line { display: block; }
.hero-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: rgba(234, 244, 244, 0.88);
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-depth {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(72px, 10vh, 110px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
}
.hero-depth-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-depth-line { width: 1px; height: 90px; background: linear-gradient(to bottom, var(--accent), transparent); }
.hero-depth-value { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--accent); }
@media (max-width: 700px) { .hero-depth { display: none; } }

/* ============ TICKER ============ */
.ticker {
  border-block: 1px solid var(--line);
  background: var(--deep);
  overflow: hidden;
  padding: 16px 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 42px;
  width: max-content;
  animation: ticker-scroll 46s linear infinite;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  white-space: nowrap;
}
.ticker-track i {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ============ SECTIONS SHARED ============ */
.section { padding: clamp(90px, 12vh, 150px) clamp(20px, 5vw, 72px); position: relative; }
.section-head { max-width: 980px; margin-bottom: clamp(48px, 7vh, 84px); }
.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.accent { color: var(--accent); }
.section-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-dim);
  max-width: 68ch;
  line-height: 1.7;
}

/* ============ STAT WALL ============ */
.stat-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: clamp(64px, 9vh, 110px);
  background: var(--deep);
}
.stat-cell {
  padding: clamp(28px, 3.5vw, 48px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat-cell:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 14px; color: var(--text-dim); line-height: 1.5; }
@media (max-width: 860px) {
  .stat-wall { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ============ ANATOMY ============ */
.anatomy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.anatomy-visual {
  position: sticky;
  top: 100px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--deep);
}
.anatomy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease, transform 8s ease;
}
.anatomy-depth-tag {
  position: absolute;
  left: 20px; bottom: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(4, 18, 28, 0.72);
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(224, 169, 62, 0.3);
}
.anatomy-steps { display: flex; flex-direction: column; }
.anatomy-step {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0.35;
  transition: opacity 0.4s ease;
}
.anatomy-step.active { opacity: 1; }
.anatomy-step:last-child { border-bottom: none; }
.anatomy-index {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.anatomy-step h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.anatomy-step p { color: var(--text-dim); font-size: 16.5px; max-width: 52ch; }
@media (max-width: 860px) {
  .anatomy { grid-template-columns: 1fr; }
  .anatomy-visual { position: relative; top: 0; aspect-ratio: 16/10; }
  .anatomy-step { min-height: 0; opacity: 1; }
}

/* ============ COMPARE ============ */
.compare { background: var(--deep); }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 20px;
}
.compare-col {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 44px);
  background: var(--abyss);
}
.compare-col-dim { opacity: 0.78; }
.compare-col-hero {
  background: linear-gradient(160deg, var(--surface) 0%, var(--deep) 100%);
  border-color: rgba(224, 169, 62, 0.45);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}
.compare-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.compare-col-hero .compare-name { color: var(--accent); }
.compare-origin { font-size: 13px; color: var(--text-dim); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.12em; }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare-col li {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.compare-col li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  opacity: 0.5;
}
.compare-col-hero li { color: rgba(234, 244, 244, 0.85); }
.compare-col-hero li::before { background: var(--accent); opacity: 1; }
.compare-col li strong { color: var(--text); font-weight: 600; }
@media (max-width: 960px) { .compare-grid { grid-template-columns: 1fr; } }

/* ============ CHEMISTRY ============ */
.chemistry { overflow: hidden; }
.chem-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}
.chemistry > * { position: relative; z-index: 1; }
.chem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.chem-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 2.6vw, 38px);
  background: rgba(6, 34, 51, 0.66);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, transform 0.3s;
}
.chem-card:hover { border-color: rgba(224, 169, 62, 0.5); transform: translateY(-4px); }
.chem-card-wide { grid-column: span 3; }
.chem-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.chem-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.chem-card p { font-size: 15px; color: var(--text-dim); line-height: 1.6; }
@media (max-width: 960px) {
  .chem-grid { grid-template-columns: 1fr; }
  .chem-card-wide { grid-column: span 1; }
}
.moa-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}
.moa-item { display: flex; gap: 18px; align-items: flex-start; }
.moa-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid rgba(224, 169, 62, 0.4);
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.moa-item p { font-size: 14.5px; color: var(--text-dim); line-height: 1.6; }
.moa-item strong { color: var(--text); }
@media (max-width: 860px) { .moa-strip { grid-template-columns: 1fr; } }

/* ============ JOURNEY (horizontal pan) ============ */
.journey { position: relative; }
.journey-pin { height: 100dvh; overflow: hidden; }
.journey-track {
  display: flex;
  height: 100dvh;
  width: max-content;
  align-items: stretch;
}
.journey-panel {
  width: 100vw;
  flex-shrink: 0;
  height: 100dvh;
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 6vw, 90px);
  position: relative;
  background-image: var(--panel-img);
  background-size: cover;
  background-position: center;
}
.journey-panel::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(4,18,28,0.88) 0%, rgba(4,18,28,0.45) 55%, rgba(4,18,28,0.2) 100%);
}
.journey-intro { background: var(--deep); }
.journey-intro::before { display: none; }
.journey-big {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
}
.journey-intro-sub { margin-top: 24px; color: var(--text-dim); font-size: 18px; }
.journey-card {
  position: relative;
  max-width: 520px;
  background: rgba(4, 18, 28, 0.68);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(30px, 3.4vw, 52px);
}
.journey-step {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.journey-card h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.journey-card p { color: rgba(234, 244, 244, 0.85); font-size: 16px; line-height: 1.7; }
@media (max-width: 860px) {
  .journey-pin { height: auto; overflow: visible; }
  .journey-track { flex-direction: column; width: 100%; height: auto; }
  .journey-panel { width: 100%; height: auto; min-height: 72vh; padding: 64px 20px; }
}

/* ============ RESULTS ============ */
.results { background: var(--deep); }
.roi-band {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: clamp(56px, 8vh, 90px);
  background: var(--abyss);
}
.roi-item {
  padding: clamp(24px, 2.4vw, 36px) clamp(16px, 1.6vw, 26px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.roi-item:last-child { border-right: none; }
.roi-num {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.roi-label { font-size: 14px; font-weight: 500; color: var(--text); }
.roi-sub { font-size: 13px; color: var(--text-dim); }
@media (max-width: 1000px) {
  .roi-band { grid-template-columns: repeat(3, 1fr); }
  .roi-item:nth-child(3) { border-right: none; }
  .roi-item:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 620px) {
  .roi-band { grid-template-columns: 1fr 1fr; }
  .roi-item { border-bottom: 1px solid var(--line); }
  .roi-item:nth-child(2n) { border-right: none; }
}

/* Explorer */
.explorer { margin-bottom: clamp(56px, 8vh, 90px); }
.explorer-crops {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.crop-tab {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.25s;
}
.crop-tab:hover { border-color: var(--text-dim); color: var(--text); }
.crop-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--abyss);
}
.explorer-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--abyss);
  min-height: 480px;
}
.explorer-image { position: relative; overflow: hidden; }
.explorer-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}
.explorer-data { padding: clamp(28px, 3.4vw, 56px); display: flex; flex-direction: column; }
.explorer-data h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.explorer-years { font-size: 13.5px; color: var(--accent); font-weight: 600; letter-spacing: 0.06em; margin-bottom: 30px; }
.explorer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}
.explorer-stat .es-num {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.05;
  display: block;
}
.explorer-stat .es-num.gold { color: var(--accent); }
.explorer-stat .es-label { font-size: 13px; color: var(--text-dim); line-height: 1.45; display: block; margin-top: 6px; }
.explorer-note { font-size: 15px; color: var(--text-dim); line-height: 1.7; border-top: 1px solid var(--line); padding-top: 22px; margin-top: auto; }
@media (max-width: 900px) {
  .explorer-panel { grid-template-columns: 1fr; }
  .explorer-image { aspect-ratio: 16/9; }
  .explorer-stats { grid-template-columns: 1fr 1fr; }
}

.results-quote { max-width: 820px; margin: 0 auto; text-align: center; }
.results-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.results-quote cite { font-style: normal; font-size: 14px; color: var(--accent); font-weight: 600; letter-spacing: 0.04em; }

/* ============ PLANET ============ */
.planet { overflow: hidden; }
.planet-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.14;
}
.planet > * { position: relative; }
.planet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.planet-cell { background: var(--abyss); padding: clamp(30px, 3.4vw, 52px); }
.planet-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
}
.planet-num-text { font-size: clamp(26px, 2.6vw, 40px); }
.planet-cell h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
.planet-cell p { font-size: 14.5px; color: var(--text-dim); line-height: 1.65; }
@media (max-width: 760px) { .planet-grid { grid-template-columns: 1fr; } }

/* ============ LIBRARY ============ */
.library { background: var(--deep); }
.ref-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.ref-item {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 10px 32px;
  padding: 26px 8px;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s, padding-left 0.25s;
}
.ref-item:hover { background: rgba(224, 169, 62, 0.05); padding-left: 18px; }
.ref-type {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  align-self: start;
  padding-top: 3px;
}
.ref-title {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.ref-src { grid-column: 2; font-size: 13.5px; color: var(--text-dim); }
@media (max-width: 700px) {
  .ref-item { grid-template-columns: 1fr; }
  .ref-src { grid-column: 1; }
}

/* ============ CTA ============ */
.cta {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: clamp(90px, 12vh, 150px) clamp(20px, 5vw, 72px);
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(4,18,28,0.92) 0%, rgba(4,18,28,0.55) 60%, rgba(4,18,28,0.3) 100%);
}
.cta-content { position: relative; max-width: 760px; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 26px;
}
.cta-sub { font-size: clamp(16px, 1.5vw, 19px); color: rgba(234,244,244,0.85); max-width: 56ch; margin-bottom: 38px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer {
  background: #030d15;
  padding: clamp(60px, 8vh, 90px) clamp(20px, 5vw, 72px) 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-brand { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.footer-brand span { color: var(--accent); font-weight: 400; }
.footer-note { font-size: 14px; color: var(--text-dim); max-width: 40ch; line-height: 1.65; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-head {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.footer-col a { font-size: 14.5px; color: var(--text-dim); transition: color 0.25s; }
.footer-col a:hover { color: var(--text); }
.footer-legal {
  font-size: 12.5px;
  color: rgba(157, 188, 198, 0.6);
  line-height: 1.7;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  max-width: 1100px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ============ REVEAL DEFAULTS (JS enhances) ============ */
.reveal { opacity: 0; transform: translateY(28px); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
