/* Stock & Fable design system v2
   Editorial serif, warm neutrals, coral accent, restrained motion. */

@font-face {
  font-family: "Fraunces"; font-weight: 500; font-style: normal; font-display: swap;
  src: url("../fonts/fraunces-500.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces"; font-weight: 600; font-style: normal; font-display: swap;
  src: url("../fonts/fraunces-600.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces"; font-weight: 700; font-style: normal; font-display: swap;
  src: url("../fonts/fraunces-700.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces"; font-weight: 600; font-style: italic; font-display: swap;
  src: url("../fonts/fraunces-600italic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter"; font-weight: 400; font-style: normal; font-display: swap;
  src: url("../fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter"; font-weight: 600; font-style: normal; font-display: swap;
  src: url("../fonts/inter-600.woff2") format("woff2");
}

:root {
  --bg: #f5f1ec;
  --surface: #fdfbf8;
  --surface-2: #ede7e0;
  --ink: #131110;
  --ink-soft: #1d1a18;
  --text: #1d1a18;
  --text-dim: #57504a;
  --muted: #94897e;
  --on-ink: #f2ede6;
  --on-ink-dim: #a99f95;
  --accent: oklch(0.66 0.2 38);
  --accent-deep: oklch(0.53 0.17 38);
  --accent-soft: oklch(0.66 0.2 38 / 0.12);
  --border: #ddd3c9;
  --border-ink: #332e2a;
  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 6px;
  --r-pill: 999px;
  --shadow: 0 18px 50px rgb(48 30 14 / 0.13);
  --shadow-soft: 0 4px 18px rgb(48 30 14 / 0.08);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", "Segoe UI", system-ui, sans-serif;
  --wrap: 1200px;
}
@supports not (color: oklch(0.5 0.1 30)) {
  :root { --accent: #ec6a3f; --accent-deep: #bd4f2c; --accent-soft: rgba(236,106,63,0.12); }
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--sans); font-size: 16.5px; line-height: 1.66;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* grain texture over everything, the "carefully unpolished" layer */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 999; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.028 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.025em; line-height: 1.06; }
h1 { font-size: clamp(44px, 7vw, 88px); }
h2 { font-size: clamp(32px, 4.6vw, 56px); }
h3 { font-size: 22px; line-height: 1.25; }
h4 { font-family: var(--sans); font-weight: 600; }
.serif-i { font-family: var(--serif); font-style: italic; font-weight: 600; }
.lead { font-size: clamp(17px, 2vw, 21px); color: var(--text-dim); line-height: 1.6; font-weight: 400; }
.small { font-size: 14px; }
.muted { color: var(--muted); }
.dim { color: var(--text-dim); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
section { padding: clamp(72px, 10vw, 130px) 0; }

/* eyebrow label */
.eyebrow {
  font-family: var(--sans); font-size: 12.5px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent-deep); display: block; margin-bottom: 22px;
}
.on-ink .eyebrow { color: var(--accent); }

/* ---------- logo ---------- */
.logo { font-family: var(--serif); font-weight: 600; font-size: 21px; letter-spacing: -0.02em; white-space: nowrap; }
.logo .amp { font-style: italic; color: var(--accent-deep); padding: 0 1px; }
footer .logo, .on-ink .logo { color: var(--on-ink); }
footer .logo .amp { color: var(--accent); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 15.5px; cursor: pointer;
  border-radius: var(--r-pill); padding: 16px 32px; border: none;
  transition: transform 0.18s ease, box-shadow 0.22s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn .arr { display: inline-block; transition: transform 0.18s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--accent); color: #171009; }
.btn-primary:hover { box-shadow: 0 10px 30px oklch(0.66 0.2 38 / 0.4); }
.btn-ink { background: var(--ink); color: var(--on-ink); }
.btn-ink:hover { box-shadow: var(--shadow-soft); }
.btn-line { background: transparent; color: var(--text); box-shadow: inset 0 0 0 1.5px var(--border); }
.btn-line:hover { box-shadow: inset 0 0 0 1.5px var(--text); }
.on-ink .btn-line, .hero-video .btn-line { color: var(--on-ink); box-shadow: inset 0 0 0 1.5px rgb(242 237 230 / 0.35); }
.on-ink .btn-line:hover, .hero-video .btn-line:hover { box-shadow: inset 0 0 0 1.5px var(--on-ink); }
.btn-sm { padding: 11px 22px; font-size: 14px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}
.nav-inner { display: flex; align-items: center; gap: 30px; padding: 18px 28px; max-width: var(--wrap); margin: 0 auto; }
.nav-links { display: flex; gap: 28px; margin-left: auto; align-items: center; }
.nav-links a { font-weight: 500; font-size: 15px; color: var(--text-dim); transition: color 0.15s; position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1.5px;
  background: var(--accent-deep); transition: right 0.22s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-burger { display: none; margin-left: auto; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 6px 0; transition: 0.2s; }

@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; left: 0; right: 0; top: 74px; background: var(--bg);
    padding: 20px 28px; border-bottom: 1px solid var(--border); gap: 18px;
  }
}

/* ---------- hero with video ---------- */
.hero-video { position: relative; min-height: min(92vh, 900px); display: flex; align-items: flex-end; color: var(--on-ink); overflow: hidden; background: var(--ink); }
.hero-video video, .hero-video .hero-fallback {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-video .scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(15deg, rgb(15 11 9 / 0.92) 20%, rgb(15 11 9 / 0.55) 55%, rgb(15 11 9 / 0.35)),
    oklch(0.53 0.17 38 / 0.16);
}
.hero-video .wrap { position: relative; padding-bottom: clamp(56px, 8vw, 110px); padding-top: 160px; }
.hero-video h1 { max-width: 860px; color: #fbf8f3; }
.hero-video h1 em { font-style: italic; color: var(--accent); }
.hero-video .lead { color: rgb(242 237 230 / 0.82); max-width: 560px; margin: 30px 0 38px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 30px; flex-wrap: wrap; margin-top: 52px; font-size: 13.5px; letter-spacing: 0.06em; text-transform: uppercase; color: rgb(242 237 230 / 0.6); font-weight: 600; }

/* ---------- marquee ---------- */
.ticker { padding: 26px 0; overflow: hidden; background: var(--ink); color: var(--on-ink-dim); border-top: 1px solid var(--border-ink); }
.ticker-track { display: flex; gap: 0; width: max-content; animation: ticker 36s linear infinite; }
.ticker-track span {
  font-family: var(--serif); font-weight: 500; font-size: 17px; font-style: italic;
  white-space: nowrap; padding: 0 28px; position: relative;
}
.ticker-track span::after { content: "·"; color: var(--accent); position: absolute; right: -5px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- editorial intro ---------- */
.manifesto { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(30px, 6vw, 90px); align-items: start; }
@media (max-width: 860px) { .manifesto { grid-template-columns: 1fr; } }
.manifesto .big {
  font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.32; letter-spacing: -0.015em;
}
.manifesto .big em { font-style: italic; color: var(--accent-deep); }

/* ---------- stats with counters ---------- */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 800px) { .stat-row { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; } }
.stat .num {
  font-family: var(--serif); font-weight: 600; font-size: clamp(44px, 6vw, 80px);
  letter-spacing: -0.04em; line-height: 1; color: var(--on-ink);
}
.stat .num .accent-mark { color: var(--accent); }
.stat .lbl { color: var(--on-ink-dim); font-size: 14.5px; margin-top: 12px; max-width: 200px; }

/* ---------- service rows (editorial list) ---------- */
.svc-rows { border-top: 1px solid var(--border); }
.svc-row {
  display: grid; grid-template-columns: 70px 1.1fr 1.6fr auto; gap: 26px; align-items: center;
  padding: 30px 6px; border-bottom: 1px solid var(--border); cursor: default;
  transition: background 0.2s ease, padding-left 0.25s ease;
}
.svc-row:hover { background: var(--surface); padding-left: 18px; }
.svc-row .idx { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 17px; color: var(--muted); }
.svc-row h3 { font-size: clamp(20px, 2.4vw, 28px); }
.svc-row p { color: var(--text-dim); font-size: 15px; max-width: 480px; }
.svc-row .go { color: var(--accent-deep); font-size: 22px; transition: transform 0.22s ease; }
.svc-row:hover .go { transform: translateX(6px); }
@media (max-width: 800px) {
  .svc-row { grid-template-columns: 44px 1fr; grid-template-rows: auto auto; }
  .svc-row p { grid-column: 2; }
  .svc-row .go { display: none; }
}

/* ---------- work / case studies ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .work-grid { grid-template-columns: 1fr; } }
.work-card { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--ink); color: var(--on-ink); min-height: 440px; display: flex; align-items: flex-end; }
.work-card video, .work-card .wc-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease; }
.work-card:hover video, .work-card:hover .wc-bg { transform: scale(1.05); opacity: 0.42; }
.work-card .wc-body { position: relative; padding: 30px; width: 100%; background: linear-gradient(transparent, rgb(15 11 9 / 0.88) 45%); padding-top: 90px; }
.work-card .tag { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.work-card h3 { font-size: 24px; margin: 10px 0 6px; color: #fbf8f3; }
.work-card p { color: var(--on-ink-dim); font-size: 14.5px; }
.work-card .wc-stat { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--accent); margin-top: 12px; display: block; }

/* ---------- split feature (asymmetric rows) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split.rev > :first-child { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.rev > :first-child { order: 0; } }
.split .media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }

/* ---------- comparison table ---------- */
.compare { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.compare th { font-family: var(--serif); font-size: 19px; font-weight: 600; text-align: left; padding: 18px 20px; }
.compare td { padding: 15px 20px; border-top: 1px solid var(--border-ink); color: var(--on-ink-dim); }
.compare .hl { color: var(--on-ink); }
.compare tr td:last-child, .compare tr th:last-child { background: rgb(255 255 255 / 0.03); }
.compare .total td { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--on-ink); }
.compare .total td:last-child { color: var(--accent); }
.compare-scroll { overflow-x: auto; }

/* ---------- dark sections ---------- */
.on-ink { background: var(--ink); color: var(--on-ink); }
.on-ink .lead, .on-ink p { color: var(--on-ink-dim); }
.on-ink h2, .on-ink h3 { color: var(--on-ink); }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 38px 32px; display: flex; flex-direction: column; position: relative;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card .tier { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--text-dim); }
.price-card .amount { font-family: var(--serif); font-weight: 600; font-size: 46px; letter-spacing: -0.03em; margin: 14px 0 6px; }
.price-card .amount small { font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-card ul { list-style: none; padding: 0; margin: 24px 0 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-card li { display: flex; gap: 12px; font-size: 15px; color: var(--text-dim); align-items: baseline; }
.price-card li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; position: relative; top: -2px; }
.price-card.featured { background: var(--ink); border-color: var(--ink); color: var(--on-ink); }
.price-card.featured .tier { color: var(--accent); }
.price-card.featured li { color: var(--on-ink-dim); }
.price-card.featured p { color: var(--on-ink-dim); }
.pop-badge {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--accent);
}

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer; list-style: none; padding: 26px 4px;
  font-family: var(--serif); font-weight: 600; font-size: 20px; letter-spacing: -0.01em;
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 26px; color: var(--accent-deep); transition: transform 0.22s; flex: none; font-family: var(--sans); font-weight: 300; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 4px 26px; color: var(--text-dim); font-size: 15.5px; max-width: 660px; }

/* ---------- CTA panel ---------- */
.cta-panel {
  background: var(--ink); color: var(--on-ink); border-radius: calc(var(--r-lg) + 8px);
  padding: clamp(50px, 7vw, 96px) clamp(28px, 5vw, 80px); position: relative; overflow: hidden;
}
.cta-panel::before {
  content: ""; position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, oklch(0.66 0.2 38 / 0.2), transparent 62%);
  top: -350px; right: -180px; pointer-events: none;
}
.cta-panel > * { position: relative; }
.cta-panel h2 { max-width: 640px; }
.cta-panel .lead { max-width: 520px; margin: 22px 0 36px; }

/* ---------- footer ---------- */
footer { background: var(--ink); color: var(--on-ink-dim); padding: 70px 0 40px; }
footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--border-ink); }
@media (max-width: 800px) { footer .cols { grid-template-columns: 1fr 1fr; } }
footer h4 { color: var(--on-ink); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
footer a { display: block; padding: 5px 0; font-size: 15px; transition: color 0.15s; }
footer a:hover { color: var(--on-ink); }
footer .base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 30px; font-size: 13.5px; }

/* ---------- article / blog ---------- */
.post-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.22s ease, box-shadow 0.28s ease; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card .thumb { height: 170px; background: var(--ink); position: relative; overflow: hidden; }
.post-card .thumb::after {
  content: attr(data-num); position: absolute; right: 18px; bottom: 6px;
  font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 110px; line-height: 1;
  color: oklch(0.66 0.2 38 / 0.85);
}
.post-card .body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card .meta { font-size: 12.5px; color: var(--muted); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.post-card h3 { font-size: 21px; }
.post-card .more { margin-top: auto; padding-top: 14px; color: var(--accent-deep); font-weight: 600; font-size: 14.5px; }

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 960px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 34px; }

.sec-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head p { margin-top: 18px; }

.article { max-width: 760px; margin: 0 auto; }
.article h1 { font-size: clamp(32px, 4.5vw, 52px); }
.article .article-meta { color: var(--muted); font-size: 14px; margin: 20px 0 40px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.article h2 { font-size: clamp(25px, 3vw, 32px); margin: 46px 0 16px; }
.article h3 { font-size: 21px; margin: 32px 0 10px; }
.article p { margin: 0 0 18px; color: var(--text-dim); }
.article ul, .article ol { color: var(--text-dim); margin: 0 0 18px; padding-left: 24px; }
.article li { margin-bottom: 8px; }
.article strong { color: var(--text); }
.article table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
.article th { font-family: var(--serif); text-align: left; padding: 12px 14px; border-bottom: 2px solid var(--text); }
.article td { padding: 11px 14px; border-bottom: 1px solid var(--border); color: var(--text-dim); }
.article .callout {
  background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--accent);
  border-radius: var(--r-md); padding: 22px 26px; margin: 30px 0;
}
.article .callout p { margin: 0; }

/* ---------- case study ---------- */
.case-hero { padding-top: clamp(60px, 8vw, 110px); }
.case-hero h1 { max-width: 900px; font-size: clamp(36px, 5.5vw, 68px); }
.case-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
@media (max-width: 760px) { .case-facts { grid-template-columns: 1fr; } }
.case-fact { border-top: 2px solid var(--ink); padding-top: 16px; }
.case-fact .num { font-family: var(--serif); font-weight: 600; font-size: clamp(34px, 4vw, 52px); letter-spacing: -0.03em; }
.case-fact .lbl { color: var(--text-dim); font-size: 14.5px; margin-top: 4px; }
.case-media { border-radius: var(--r-lg); overflow: hidden; margin: 40px 0; background: var(--ink); }
.case-note {
  font-size: 13px; color: var(--muted); border: 1px dashed var(--border);
  border-radius: var(--r-md); padding: 12px 18px; margin-top: 30px;
}

/* ---------- guides ---------- */
.guide-card { display: flex; gap: 22px; align-items: flex-start; }
.guide-card .gnum { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 34px; color: var(--accent-deep); flex: none; line-height: 1; }

/* ---------- portal mock ---------- */
.mock {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 22px; box-shadow: var(--shadow);
}
.mock .mrow {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  margin-bottom: 10px; font-size: 14px; font-weight: 600;
}
.mock .mrow:last-child { margin-bottom: 0; }
.mock .pill { font-size: 11.5px; font-weight: 700; border-radius: 99px; padding: 4px 12px; letter-spacing: 0.03em; white-space: nowrap; }
.pill-amber { color: #7d5f12; background: #f3e3b2; }
.pill-blue { color: #1c5a82; background: #cae2f2; }
.pill-green { color: #1d6e44; background: #c9e9d6; }
.pill-coral { color: #171009; background: var(--accent); }

/* legacy aliases used by article pages */
.kicker {
  font-family: var(--sans); font-size: 12.5px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent-deep); display: block; margin-bottom: 22px;
}

/* ---------- motion ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  .hero-video video { display: none; }
}
