/* ========== Tokens ========== */
:root {
  --bg: #000000;
  --bg-2: #0a0a0c;
  --bg-3: #131316;
  --ink: #ffffff;
  --ink-2: #c9c9d1;
  --ink-3: #6b6b78;
  --accent: rgb(208, 254, 40);
  --accent-2: rgb(166, 232, 24);
  --accent-deep: rgb(118, 168, 12);
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);

  /* gradients */
  --grad-accent: linear-gradient(135deg, rgb(232, 255, 90) 0%, rgb(208, 254, 40) 45%, rgb(166, 232, 24) 100%);
  --grad-accent-soft: linear-gradient(135deg, rgba(208,254,40,0.18), rgba(166,232,24,0.06) 60%, transparent);
  --grad-card: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015) 50%, rgba(255,255,255,0.02));
  --grad-card-strong: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  --grad-bg-radial: radial-gradient(1200px 600px at 50% -10%, rgba(208,254,40,0.18), transparent 60%);
  --grad-text: linear-gradient(180deg, #ffffff 0%, #c4c4cc 100%);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: transparent; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ========== Nav ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 16px 0;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; letter-spacing: -0.01em; font-size: 16px;
}
.brand-logo {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: #000;
  border: 1px solid rgba(208,254,40,0.35);
  box-shadow: 0 0 18px rgba(208,254,40,0.35), inset 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
  position: relative;
}
.brand-logo img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.brand-name { font-size: 15px; }
.brand-name b { color: var(--accent); }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--ink-2); font-size: 14px; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ========== Buttons ========== */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  height: 48px; padding: 0 22px; border-radius: 999px;
  font-weight: 600; font-size: 14px; letter-spacing: -0.005em;
  transition: transform .2s ease, box-shadow .25s ease, filter .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  color: #0b0d00;
  background: var(--grad-accent);
  box-shadow:
    0 8px 24px -6px rgba(208,254,40,0.55),
    0 2px 0 rgba(255,255,255,0.2) inset,
    0 -2px 0 rgba(0,0,0,0.1) inset;
}
.btn-primary::before {
  content:""; position:absolute; inset: 1px; border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.45), transparent 45%);
  pointer-events: none;
}
.btn-primary:hover { filter: brightness(1.08); box-shadow: 0 14px 32px -6px rgba(208,254,40,0.7), 0 2px 0 rgba(255,255,255,0.25) inset; }
.btn-primary > * { position: relative; }

.btn-ghost {
  color: var(--ink);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.22); }

.btn-sm { height: 38px; padding: 0 16px; font-size: 13px; }

.btn-arrow {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(0,0,0,0.18);
  display: grid; place-items: center;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  padding: 140px 0 60px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content:""; position: absolute; inset: 0; z-index: -2;
  background: var(--grad-bg-radial);
}
.hero-grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 40%, transparent 80%);
  animation: gridDrift 22s linear infinite;
}
@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 64px 64px, 64px 64px; }
}
.hero-orb {
  position: absolute; z-index: -1; pointer-events: none;
  border-radius: 50%; filter: blur(80px);
}
.hero-orb.a {
  width: 520px; height: 520px;
  left: -120px; top: -80px;
  background: radial-gradient(circle, rgba(208,254,40,0.28), transparent 65%);
  animation: floatA 14s ease-in-out infinite;
}
.hero-orb.b {
  width: 460px; height: 460px;
  right: -120px; top: 120px;
  background: radial-gradient(circle, rgba(166,232,24,0.22), transparent 65%);
  animation: floatB 18s ease-in-out infinite;
}
.hero-orb.c {
  width: 600px; height: 600px;
  left: 30%; bottom: -240px;
  background: radial-gradient(circle, rgba(232,255,90,0.14), transparent 65%);
  animation: floatA 20s ease-in-out -6s infinite;
}
@keyframes floatA {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.08); }
}
@keyframes floatB {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.05); }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-2);
  font-size: 13px; color: var(--ink-2);
  backdrop-filter: blur(8px);
  margin: 0 auto 28px;
  width: fit-content;
}
.hero-eyebrow .dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad-accent);
  display: grid; place-items: center;
  box-shadow: 0 0 20px rgba(208,254,40,0.6);
}
.hero-eyebrow .dot::before {
  content:""; width: 8px; height: 8px; border-radius: 50%;
  background: rgb(40,50,0);
}
.hero-eyebrow b { color: var(--ink); font-weight: 600; }

.hero-content { text-align: center; position: relative; z-index: 2; }

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-wrap: balance;
}
.hero h1 .accent {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after{
  content:"";
  position: absolute; left: 0; right: 0; bottom: -0.06em;
  height: 0.08em;
  background: var(--grad-accent);
  filter: blur(14px);
  opacity: 0.7;
  z-index: -1;
}

.hero p.lede {
  margin: 28px auto 0;
  max-width: 620px;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
}

.hero-actions {
  display: flex; gap: 14px; justify-content: center;
  margin: 38px 0 0;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex; gap: 28px; justify-content: center;
  margin-top: 26px; font-size: 13px; color: var(--ink-3);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta span::before {
  content:""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

/* Phones row */
.phones {
  position: relative;
  margin: 80px auto 0;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  perspective: 1600px;
}
.phone {
  position: relative;
  width: 250px; aspect-ratio: 9/19.5;
  border-radius: 44px;
  background: linear-gradient(180deg, #1a1a1d, #0a0a0c);
  padding: 9px;
  box-shadow:
    0 50px 120px -30px rgba(208,254,40,0.18),
    0 30px 60px -20px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  transform-style: preserve-3d;
  animation: phoneFloat 7s ease-in-out infinite;
}
.phone::before {
  content:"";
  position:absolute; inset: 0; border-radius: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 30%);
  pointer-events: none;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 36px;
  overflow: hidden; position: relative;
  background: #000;
}
.phone-screen img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.phone-notch { display: none;
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 28px; border-radius: 999px;
  background: #000; z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.phone:nth-child(1) {
  transform: translateY(20px) rotateY(8deg) rotateZ(-2deg);
  animation-delay: -1s;
}
.phone:nth-child(2) {
  transform: translateY(0) rotateY(0deg) scale(1.04);
  z-index: 2;
  box-shadow:
    0 60px 160px -30px rgba(208,254,40,0.35),
    0 40px 80px -20px rgba(0,0,0,0.85),
    0 0 0 1px rgba(255,255,255,0.08);
  animation-delay: 0s;
}
.phone:nth-child(3) {
  transform: translateY(20px) rotateY(-8deg) rotateZ(2deg);
  animation-delay: -2.5s;
}
@keyframes phoneFloat {
  0%,100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

@media (max-width: 880px) {
  .phones { gap: 12px; transform: scale(0.78); margin-top: 60px; }
  .phone { width: 220px; }
  .phone:nth-child(1) { display: none; }
  .phone:nth-child(3) { display: none; }
}

/* ========== Section base ========== */
.section {
  position: relative;
  padding: 120px 0;
}
.section-head { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.section h2 {
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1; letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0;
  text-wrap: balance;
}
.section h2 .accent {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section .lede {
  margin: 22px auto 0;
  max-width: 620px;
  color: var(--ink-2);
  font-size: 17px; line-height: 1.55;
}

/* Glossy card */
.card {
  position: relative;
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s, background .3s;
}
.card::before {
  content:"";
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}
.card::after {
  content:"";
  position:absolute; inset: 0;
  background: radial-gradient(800px 160px at var(--mx, 50%) -20%, rgba(208,254,40,0.08), transparent 60%);
  pointer-events: none;
  opacity: 0; transition: opacity .3s;
}
.card:hover { transform: translateY(-3px); border-color: var(--line-2); }
.card:hover::after { opacity: 1; }

/* ========== Features grid ========== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature .icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(208,254,40,0.18), rgba(208,254,40,0.04));
  border: 1px solid rgba(208,254,40,0.25);
  margin-bottom: 22px;
  position: relative;
}
.feature .icon::after {
  content:""; position: absolute; inset: 1px; border-radius: 13px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), transparent 40%);
  pointer-events: none;
}
.feature h3 {
  margin: 0 0 8px; font-size: 19px; letter-spacing: -0.01em;
}
.feature p {
  margin: 0; color: var(--ink-2); line-height: 1.55; font-size: 14.5px;
}

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

/* ========== Scroll-driven phone section ========== */
.scrollscene {
  position: relative;
  background: linear-gradient(180deg, #000 0%, #050505 100%);
}
.scrollscene-track {
  position: relative;
  height: 360vh;
}
.scrollscene-stage {
  position: sticky; top: 0;
  height: 100dvh;
  display: flex; align-items: center;
  overflow: hidden;
}
.scrollscene-stage::before{
  content:""; position:absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 80% 30%, rgba(208,254,40,0.14), transparent 60%),
    radial-gradient(600px 400px at 10% 80%, rgba(166,232,24,0.08), transparent 60%);
  pointer-events: none;
}
.scrollscene-text {
  position: relative;
  width: 50%; padding-left: 80px; padding-right: 32px;
  z-index: 2;
}
.scrollscene-text .step {
  opacity: 0; transition: opacity .5s ease, transform .5s ease;
  transform: translateY(16px);
  position: absolute; top: 50%; left: 80px; right: 32px;
  transform-origin: left;
  transform: translateY(-50%) translateY(16px);
}
.scrollscene-text .step.active {
  opacity: 1;
  transform: translateY(-50%);
}
.scrollscene-text .step h3 {
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.05; letter-spacing: -0.025em;
  margin: 0 0 18px; font-weight: 700;
  text-wrap: balance;
}
.scrollscene-text .step h3 .accent { color: var(--accent); }
.scrollscene-text .step p {
  font-size: 17px; color: var(--ink-2); line-height: 1.55; max-width: 460px;
  margin: 0;
}
.scrollscene-progress {
  position: absolute; left: 80px; top: 18%;
  width: 2px; height: 64%;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
}
.scrollscene-progress span {
  display: block;
  width: 100%;
  background: var(--grad-accent);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(208,254,40,0.5);
  height: 0%;
  transition: height .15s ease-out;
}
.scrollscene-counter {
  position: absolute; top: -12px; right: 0;
  display: flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px; color: var(--ink-3);
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.scrollscene-counter b { color: var(--accent); font-weight: 600; }

/* The phone container in the scroll section */
.scrollphone {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 38%; max-width: 360px;
}
.scrollphone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9/19.5;
  border-radius: 50px;
  background: linear-gradient(180deg, #1a1a1d, #0a0a0c);
  padding: 10px;
  box-shadow:
    0 60px 140px -30px rgba(208,254,40,0.4),
    0 40px 80px -20px rgba(0,0,0,0.85),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}
.scrollphone-frame::before {
  content:"";
  position:absolute; inset: 0; border-radius: 50px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 30%);
  pointer-events: none;
}
.scrollphone-notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 30px; border-radius: 999px;
  background: #000; z-index: 3;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.scrollphone-screen {
  width: 100%; height: 100%; border-radius: 42px;
  overflow: hidden; position: relative;
  background: #000;
}
.scrollphone-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .55s ease, transform .8s ease;
}
.scrollphone-img.active {
  opacity: 1; transform: scale(1);
}

@media (max-width: 980px) {
  .scrollscene-track { height: 320vh; }
  .scrollscene-stage { flex-direction: column; justify-content: center; gap: 32px; padding: 80px 0; }
  .scrollscene-text { width: 100%; padding: 0 32px; height: 200px; }
  .scrollscene-text .step { left: 32px; right: 32px; top: 50%; }
  .scrollphone {
    position: relative; right: auto; top: auto; transform: none;
    width: 60%; max-width: 260px; margin: 0 auto;
  }
  .scrollscene-progress { display: none; }
  .scrollscene-counter { top: -40px; right: 50%; transform: translateX(50%); }
}

/* ========== Compounds section ========== */
.compounds {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.compounds-text h2 { text-align: left; }
.compounds-text .lede { margin: 22px 0 0; text-align: left; max-width: 480px; }
.compounds-list { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.compound-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color .25s, transform .25s;
}
.compound-row:hover { border-color: rgba(208,254,40,0.3); transform: translateX(4px); }
.compound-row .swatch {
  width: 10px; height: 10px; border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
  flex-shrink: 0;
}
.compound-row .name { flex: 1; font-weight: 500; font-size: 15px; }
.compound-row .dose {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px; color: var(--accent);
  font-weight: 600;
}

.compounds-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(208,254,40,0.05), transparent 40%),
    var(--bg-3);
  border: 1px solid var(--line);
  padding: 36px;
  display: flex; align-items: center; justify-content: center;
}
.compounds-visual::before{
  content:"";
  position:absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(208,254,40,0.12), transparent 50%);
  pointer-events: none;
}

/* Animated bar chart */
.bars-svg { width: 100%; height: 100%; max-width: 360px; max-height: 460px; }

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

/* ========== PR / Stats section ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content:""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(208,254,40,0.4), transparent);
}
.stat-card .label { font-size: 13px; color: var(--ink-3); margin: 0 0 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.stat-card .value {
  font-size: 42px; font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-card .unit { font-size: 14px; color: var(--ink-2); margin-top: 6px; }

@media (max-width: 880px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== CTA section ========== */
.cta {
  position: relative;
  margin: 80px auto;
  max-width: 1180px;
  padding: 88px 48px;
  border-radius: 32px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(800px 400px at 50% 100%, rgba(208,254,40,0.18), transparent 60%),
    linear-gradient(180deg, #0d0d10, #050507);
  border: 1px solid var(--line);
}
.cta::before {
  content:""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 70%);
}
.cta::after {
  content:""; position: absolute; left: 50%; top: 100%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent), transparent 50%);
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}
.cta h2 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1; letter-spacing: -0.03em; font-weight: 700;
  margin: 0;
  position: relative;
}
.cta p { color: var(--ink-2); margin: 22px auto 0; max-width: 480px; font-size: 17px; line-height: 1.55; position: relative; }
.cta .hero-actions { margin-top: 36px; position: relative; }

/* ========== Footer ========== */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
  margin-top: 40px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: var(--ink-3); font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--ink); }
.footer-copy { color: var(--ink-3); font-size: 13px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
