:root {
  interpolate-size: allow-keywords;
  --bg: #faf8f3;
  --surface: #fffdf8;
  --surface-strong: #f5f2eb;
  --text: #0a0a0a;
  --muted: #5a564c;
  --muted-strong: #2a2723;
  --line: #e6e1d4;
  --line-strong: #cfc8b8;
  --hairline: #1a1815;
  --accent: #0a0a0a;
  --focus: #6f5cff;
  --shadow-soft: 0 1px 0 rgba(10, 10, 10, 0.04), 0 8px 24px rgba(10, 10, 10, 0.04);
  --shadow-card: 0 1px 0 rgba(10, 10, 10, 0.05), 0 18px 40px rgba(10, 10, 10, 0.06);
  --radius: 4px;
  --radius-lg: 10px;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  --container: 1240px;
  --section: clamp(96px, 12vw, 168px);
  --header-h: 64px;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  overflow-x: hidden;
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-feature-settings: "ss01" on, "cv11" on;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

body::before {
  content: "";
  position: fixed;
  inset: -40px 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(10, 10, 10, 0.035) 1px, transparent 1px);
  background-size: 100% 56px;
  background-position: 0 var(--bg-grid-y, 0);
  opacity: 0.5;
  z-index: 0;
  will-change: background-position;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(10, 10, 10, 0.025), transparent 60%),
    radial-gradient(70% 50% at 50% 100%, rgba(10, 10, 10, 0.02), transparent 70%);
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
}

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

a:not(.brand):not(.header-cta):not(.footer-cta) {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 220ms cubic-bezier(0.16, 1, 0.3, 1), color 200ms ease-out;
}

a:not(.brand):not(.header-cta):not(.footer-cta):hover {
  background-size: 100% 1px;
}

button,
input,
summary {
  font: inherit;
}

button {
  color: inherit;
}

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

::selection {
  background: var(--text);
  color: var(--bg);
}

.container {
  width: min(100%, var(--container));
  min-width: 0;
  margin-inline: auto;
  padding-inline: 24px;
}

.container > * {
  min-width: 0;
}

/* ─── HEADER ────────────────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  transition: background 320ms ease-out, border-color 320ms ease-out, backdrop-filter 320ms ease-out;
}

.site-header.is-scrolled {
  background: rgba(250, 248, 243, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.brand {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  color: var(--text);
  white-space: nowrap;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 18px;
  border: 1px solid var(--text);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  transition: background 240ms ease-out, color 240ms ease-out, border-color 240ms ease-out;
  will-change: transform;
}

.header-cta:hover {
  background: var(--text);
  color: var(--bg);
}

.header-cta-arrow {
  font-family: var(--font-mono);
  font-weight: 400;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.header-cta:hover .header-cta-arrow {
  transform: translateX(3px);
}

/* ─── SECTIONS ──────────────────────────────────────────────────────── */

.section {
  position: relative;
  padding-block: var(--section);
}

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(36px, 5vw, 56px);
  display: grid;
  gap: 14px;
}

.section-index {
  display: inline-block;
  color: var(--muted);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.section-subtitle {
  margin-top: 4px;
  margin-bottom: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  line-height: 1.55;
}

/* ─── HERO ──────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  padding-block: calc(var(--header-h) + clamp(40px, 6vw, 72px)) clamp(40px, 6vw, 72px);
  display: grid;
  align-items: stretch;
}

.hero-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(48px, 8vw, 112px);
  min-height: calc(100svh - var(--header-h) - clamp(80px, 12vw, 144px));
  position: relative;
  z-index: 1;
}

.hero-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: clamp(18px, 3vw, 28px);
  border-bottom: 1px solid var(--line);
}

.hero-index {
  align-self: center;
}

.hero-body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  column-gap: clamp(40px, 7vw, 96px);
  row-gap: clamp(32px, 5vw, 56px);
  align-items: end;
  align-self: end;
}

#hero-title {
  align-self: end;
}

.hero-copy {
  align-self: end;
  justify-self: start;
  max-width: 44ch;
  min-width: 0;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.hero-copy p + p {
  margin-top: 1.1em;
}

.hero-copy p:last-child {
  margin-bottom: 0;
}

.hero-copy strong {
  color: var(--text);
  font-weight: 600;
}

.hero-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding-top: clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-foot-rule {
  display: block;
  height: 1px;
  background: transparent;
}

.hero-foot-arrow {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1;
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────────────── */

h1,
h2,
h3,
p,
li,
td,
th {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 12ch;
  margin-bottom: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(3.6rem, 11vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
  color: var(--text);
}

h2 {
  max-width: 18ch;
  margin-bottom: 0;
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 14px;
  font-weight: 600;
  font-size: clamp(1.18rem, 1.8vw, 1.4rem);
  line-height: 1.25;
  letter-spacing: -0.012em;
}

p {
  line-height: 1.65;
}

/* ─── TWO-COLUMN ────────────────────────────────────────────────────── */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.two-column .section-heading {
  margin-bottom: 0;
  position: sticky;
  top: calc(var(--header-h) + 32px);
}

/* ─── SCOPE PANEL / ACCORDION ───────────────────────────────────────── */

.scope-panel,
.tier-selector,
.table-wrap,
.rules,
.feature-card,
.steps article {
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.scope-panel {
  display: grid;
  gap: 10px;
  padding: clamp(16px, 2.4vw, 22px);
  box-shadow: var(--shadow-soft);
  background: var(--surface-strong);
  border-color: var(--line);
}

.check-list,
.plain-list,
.rules ul,
.compact-list,
.feature-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list li,
.plain-list li,
.rules li,
.compact-list li,
.feature-card details li {
  position: relative;
  padding-left: 26px;
  color: var(--muted-strong);
  line-height: 1.6;
}

.check-list li::before,
.compact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

.rules h3 {
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.plain-list li::before,
.rules li::before,
.feature-card details li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--muted);
  font-family: var(--font-mono);
}

.scope-accordion {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  background: var(--surface);
  transition: border-color 220ms ease-out;
}

.scope-accordion:hover {
  border-color: var(--line-strong);
}

.scope-accordion[open] {
  border-color: var(--line-strong);
}

.scope-accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.008em;
  list-style: none;
}

.scope-accordion summary::-webkit-details-marker {
  display: none;
}

.scope-accordion summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--muted);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), color 220ms ease-out;
}

.scope-accordion[open] summary::after {
  transform: rotate(45deg);
  color: var(--text);
}

.scope-accordion::details-content {
  block-size: 0;
  overflow: hidden;
  transition: block-size 260ms cubic-bezier(0.16, 1, 0.3, 1), content-visibility 260ms ease-out allow-discrete;
}

.scope-accordion[open]::details-content {
  block-size: auto;
}

.scope-accordion .check-list,
.scope-accordion .plain-list {
  gap: 12px;
  padding: 4px 20px 20px;
  animation: accordion-in 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes accordion-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── CALCULATOR ────────────────────────────────────────────────────── */

.calculator-section {
  background: var(--surface-strong);
  border-block: 1px solid var(--line);
}

.tier-selector {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
  padding: clamp(20px, 3vw, 32px);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.result-label {
  margin-bottom: 14px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier-pills {
  position: relative;
  display: flex;
  gap: 0;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--text);
  border-radius: 999px;
  padding: 6px;
  background: var(--text);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.tier-pills::-webkit-scrollbar {
  display: none;
}

.tier-pill-indicator {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 0;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  pointer-events: none;
  z-index: 0;
  transform: translateX(0);
  opacity: 0;
  will-change: transform, width;
  transition: opacity 240ms ease-out;
}

.tier-pills.is-ready .tier-pill-indicator {
  opacity: 1;
}

.tier-pill {
  position: relative;
  z-index: 1;
  flex: 1 0 max-content;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 10px 22px;
  background: transparent;
  color: rgba(255, 253, 248, 0.62);
  cursor: pointer;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: color 280ms ease-out;
  will-change: transform;
}

.tier-pill:hover {
  color: var(--surface);
}

.tier-pill.is-active {
  color: var(--text);
}

.tier-result {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
}

.tier-result-item {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(20px, 3vw, 32px);
}

.tier-result-item + .tier-result-item {
  border-left: 1px solid var(--line);
}

.tier-result-item strong {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.tier-result-item.is-primary strong {
  font-weight: 500;
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  letter-spacing: -0.035em;
  color: var(--text);
}

.tier-result-item small {
  display: inline-block;
  margin-left: 6px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0;
}

.tier-result-item p {
  margin: 0;
  color: var(--muted-strong);
  font-size: clamp(0.98rem, 1.4vw, 1.05rem);
  line-height: 1.5;
}

/* ─── TABLE ─────────────────────────────────────────────────────────── */

.table-wrap {
  overflow-x: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
}

table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

th,
td {
  padding: 22px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  overflow-wrap: anywhere;
  vertical-align: middle;
}

th {
  color: var(--muted);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--surface-strong);
}

td:nth-child(3),
td:nth-child(4) {
  font-family: var(--font-mono);
  font-weight: 500;
}

td:first-child {
  font-weight: 600;
}

.tier-price {
  color: var(--text);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

tbody tr {
  transition: background 220ms ease-out;
}

tbody tr:hover {
  background: var(--surface-strong);
}

tbody tr:last-child td {
  border-bottom: 0;
}

.rules {
  margin-top: 22px;
  padding: clamp(20px, 3vw, 28px);
  background: var(--surface-strong);
  border-color: var(--line);
}

.rules ul {
  display: grid;
  gap: 8px;
}

.rules li {
  padding-left: 0;
  color: var(--muted-strong);
  font-size: 0.95rem;
  line-height: 1.55;
}

.rules li::before {
  content: none;
}

/* ─── DIFFERENTIALS / STEPS ─────────────────────────────────────────── */

.differentials,
.steps {
  display: grid;
  gap: 18px;
}

.differentials {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  max-width: 100%;
}

.feature-card,
.steps article {
  position: relative;
  min-width: 0;
  padding: clamp(26px, 3.5vw, 36px);
  background: var(--surface);
  transition: border-color 240ms ease-out, box-shadow 280ms ease-out;
  overflow: hidden;
  will-change: transform;
}

.feature-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 4px;
}

.feature-card:hover,
.steps article:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
}

.feature-card p,
.steps p {
  color: var(--muted-strong);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.feature-index,
.steps span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: -0.01em;
  display: block;
  will-change: transform;
}

.feature-index {
  margin-bottom: 28px;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text);
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps span {
  margin-bottom: 44px;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--text);
}

details {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}

details ul {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

/* ─── TIMELINE ──────────────────────────────────────────────────────── */

.timeline {
  display: flex;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0 0 6px;
  list-style: none;
  overflow-x: auto;
  max-width: 100%;
  scrollbar-width: none;
}

.timeline::-webkit-scrollbar {
  display: none;
}

.timeline li {
  position: relative;
  box-sizing: border-box;
  flex: 0 0 152px;
  max-width: 100%;
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--surface-strong);
  color: var(--muted-strong);
  font-size: 0.86rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.timeline li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--text);
}

.compact-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

/* ─── FOOTER ────────────────────────────────────────────────────────── */

.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding-block: clamp(72px, 10vw, 128px);
  background: var(--surface-strong);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: clamp(28px, 5vw, 64px);
}

.footer-cta {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text);
  transition: opacity 240ms ease-out;
  will-change: transform;
}

.footer-cta:hover {
  opacity: 0.82;
}

.footer-cta-arrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.5em;
  transform: translateY(-0.15em);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-cta:hover .footer-cta-arrow {
  transform: translate(6px, -0.15em);
}

.footer-brand {
  display: inline-block;
  align-self: end;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ─── RESPONSIVE ────────────────────────────────────────────────────── */

@media (min-width: 768px) {
  .container {
    padding-inline: 40px;
  }
}

@media (min-width: 1025px) {
  .container {
    padding-inline: 48px;
  }
}

@media (max-width: 900px) {
  .hero-body {
    grid-template-columns: 1fr;
    row-gap: clamp(28px, 5vw, 48px);
  }

  .hero-copy {
    max-width: 60ch;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .two-column .section-heading {
    position: static;
  }

  .differentials,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    min-height: 0;
    gap: clamp(40px, 7vw, 72px);
  }

  .tier-result {
    grid-template-columns: 1fr;
  }

  .tier-result-item + .tier-result-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 680px) {
  :root {
    --section: 72px;
    --header-h: 56px;
  }

  body {
    font-size: 16px;
  }

  .hero {
    padding-top: calc(var(--header-h) + 56px);
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
    line-height: 0.92;
  }

  h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.02;
  }

  .tier-result {
    grid-template-columns: 1fr;
  }

  .container {
    padding-inline: 24px;
  }

  .hero-copy,
  .section-heading,
  .section-subtitle {
    max-width: calc(100vw - 48px);
  }

  .tier-selector,
  .feature-card,
  .steps article {
    padding: 24px;
  }

  .tier-result-item {
    padding: 22px;
  }

  .feature-card {
    width: 100%;
  }

  .timeline {
    display: grid;
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .timeline li {
    flex-basis: auto;
    width: 100%;
    min-height: auto;
  }

  table {
    font-size: 0.82rem;
  }

  th,
  td {
    padding: 14px 12px;
  }

  th {
    font-size: 0.62rem;
    line-height: 1.25;
  }

  .tier-price {
    font-size: 0.95rem;
  }

  .feature-card p,
  .feature-card li,
  .compact-list li {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .header-cta {
    padding: 8px 14px;
    font-size: 0.72rem;
  }

  .footer-cta {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }
}

/* ─── MOTION HELPERS ────────────────────────────────────────────────── */

/* Pre-hide hero pieces only when motion is active, to prevent FOUC
   between page paint and motion.js applying its initial gsap.set. */
html.motion-ready .hero #hero-title,
html.motion-ready .hero .hero-copy p,
html.motion-ready .hero .hero-index,
html.motion-ready .hero .hero-foot {
  opacity: 0;
}

html.motion-reduced .hero #hero-title,
html.motion-reduced .hero .hero-copy p,
html.motion-reduced .hero .hero-index,
html.motion-reduced .hero .hero-foot {
  opacity: 1 !important;
  transform: none !important;
}

/* SplitText line masks need overflow hidden; GSAP applies via `mask: lines` */
.split-line {
  display: block;
}

/* ─── REDUCED MOTION ────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  html {
    scroll-behavior: auto;
  }

  [data-anim] {
    opacity: 1 !important;
    transform: none !important;
  }

  body::before {
    background-position: 0 0 !important;
  }
}

/* ─── POINTER ───────────────────────────────────────────────────────── */

@media (pointer: coarse) {
  /* JS already short-circuits magnetic on coarse pointers; ensure CSS doesn't leave transforms stuck */
  [data-magnetic],
  .tier-pill,
  .feature-card {
    transform: none !important;
  }
}
