:root {
  --ink: #071018;
  --ink-soft: #13202a;
  --paper: #f2f1eb;
  --paper-bright: #faf9f4;
  --fog: #cbd8dd;
  --signal: #f05a38;
  --signal-dark: #c83f21;
  --blue: #93bbd1;
  --muted: #606a70;
  --line: rgba(7, 16, 24, 0.18);
  --line-light: rgba(255, 255, 255, 0.22);
  --page-pad: clamp(20px, 5vw, 76px);
  --header-height: 72px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
}

button,
input,
textarea,
select { font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

a { color: inherit; }

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: white;
  color: var(--ink);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--line-light);
  color: white;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.brand-mark {
  display: inline-block;
  width: 17px;
  height: 17px;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 6px 0 0 currentColor;
}

.site-header nav,
footer nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 40px);
  font-size: 12px;
  font-weight: 650;
}

.site-header nav a,
footer nav a { text-decoration: none; }

.site-header nav a:not(.nav-cta) {
  opacity: 0.68;
  transition: opacity 180ms ease;
}

.site-header nav a:hover { opacity: 1; }

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.hero-media {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.055);
  will-change: transform;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 13, 0.92) 0%, rgba(2, 8, 13, 0.48) 43%, rgba(2, 8, 13, 0.06) 78%),
    linear-gradient(0deg, rgba(2, 8, 13, 0.88) 0%, rgba(2, 8, 13, 0.03) 58%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1050px, calc(100% - 40px));
  padding-top: clamp(145px, 18vh, 210px);
  margin-left: clamp(20px, 7vw, 108px);
}

.eyebrow,
.section-index {
  margin: 0 0 22px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-index { color: var(--muted); }

.hero h1 {
  margin: 0;
  font-size: clamp(70px, 10.5vw, 158px);
  font-weight: 750;
  letter-spacing: -0.078em;
  line-height: 0.78;
}

.hero-statement {
  max-width: 650px;
  margin: 32px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3.1vw, 46px);
  font-style: italic;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.hero-lead {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.secondary-link:hover { color: white; }

.hero-directory-link {
  display: table;
  margin-top: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.hero-directory-link:hover { color: white; }

.hero-output-meta {
  position: absolute;
  z-index: 3;
  right: var(--page-pad);
  bottom: 32px;
  left: var(--page-pad);
  display: grid;
  grid-template-columns: 0.38fr 1fr auto auto;
  gap: 24px;
  align-items: center;
  min-height: 74px;
  border-top: 1px solid rgba(255, 255, 255, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(90deg, rgba(5, 14, 21, 0.28), rgba(5, 14, 21, 0.7));
  backdrop-filter: blur(8px);
}

.hero-output-meta > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.hero-output-meta > strong {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.hero-output-meta > a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.hero-output-meta > a:hover { color: white; }

.hero-media-controls {
  display: flex;
  gap: 14px;
}

.hero-media-controls > button {
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
}

.hero-media-controls > button:hover { color: white; }

.hero-speed {
  position: absolute;
  z-index: 3;
  right: var(--page-pad);
  bottom: 32px;
  left: var(--page-pad);
  display: grid;
  grid-template-columns: auto 54px auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 16px 0 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  background: linear-gradient(90deg, rgba(5, 14, 21, 0.28), rgba(5, 14, 21, 0.7));
  backdrop-filter: blur(8px);
}

.hero-speed > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  align-items: start;
}

.hero-speed strong {
  font-size: clamp(48px, 5.3vw, 76px);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.hero-speed span {
  max-width: none;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-speed > i {
  color: var(--signal);
  font-size: 28px;
  font-style: normal;
  text-align: center;
}

.hero-speed > p {
  max-width: 330px;
  margin: 0 0 0 auto;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  line-height: 1.45;
}

.quick-composer {
  position: absolute;
  z-index: 3;
  right: var(--page-pad);
  bottom: 34px;
  left: var(--page-pad);
  display: grid;
  grid-template-columns: minmax(320px, 1.55fr) minmax(330px, 0.9fr) minmax(180px, 0.34fr);
  gap: 20px 32px;
  align-items: end;
  padding: 18px 0 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(90deg, rgba(5, 14, 21, 0.38), rgba(5, 14, 21, 0.78));
  backdrop-filter: blur(8px);
}

.quick-idea-field,
.quick-settings label {
  display: grid;
  gap: 8px;
}

.quick-idea-field > span,
.quick-settings label > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-idea-field textarea {
  width: 100%;
  min-height: 58px;
  padding: 8px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.35;
  resize: none;
}

.quick-idea-field textarea::placeholder { color: rgba(255, 255, 255, 0.42); }

.quick-settings {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 14px;
}

.quick-settings select {
  min-height: 42px;
  padding: 0 22px 0 0;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.quick-settings option { background: var(--ink); }

.quick-submit,
.primary-action {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 18px;
  border: 1px solid white;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.quick-submit:hover,
.primary-action:hover {
  transform: translateY(-2px);
  background: var(--signal);
  color: white;
}

.quick-trust {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  letter-spacing: 0.035em;
}

.hero-caption {
  position: absolute;
  z-index: 4;
  right: var(--page-pad);
  bottom: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 8px;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: enter 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy .hero-reveal:nth-child(2) { animation-delay: 90ms; }
.hero-copy .hero-reveal:nth-child(3) { animation-delay: 180ms; }
.hero-copy .hero-reveal:nth-child(4) { animation-delay: 270ms; }
.hero-copy .hero-reveal:nth-child(5) { animation-delay: 360ms; }
.hero-copy .hero-reveal:nth-child(6) { animation-delay: 450ms; }
.hero-output-meta.hero-reveal { animation-delay: 540ms; }

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

.speed-section {
  padding: clamp(110px, 13vw, 190px) var(--page-pad);
  background: var(--signal);
  color: var(--ink);
}

.speed-heading,
.speed-demo,
.speed-proof,
.proof-boundary {
  max-width: 1380px;
  margin-right: auto;
  margin-left: auto;
}

.speed-heading {
  display: grid;
  grid-template-columns: 0.38fr 1.15fr minmax(280px, 0.45fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
}

.speed-heading .section-index { color: rgba(7, 16, 24, 0.58); }

.speed-heading h2 {
  margin: 0;
  font-size: clamp(52px, 7.3vw, 104px);
  font-weight: 720;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.speed-heading > p:last-child {
  margin: 0 0 4px;
  color: rgba(7, 16, 24, 0.72);
  font-size: 16px;
  line-height: 1.62;
}

.speed-demo {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) 1.25fr;
  gap: clamp(40px, 8vw, 120px);
  margin-top: 88px;
  padding: clamp(32px, 5vw, 68px);
  background: var(--ink);
  color: white;
}

.speed-clock {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
}

.speed-clock > span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.speed-clock > strong {
  font-variant-numeric: tabular-nums;
  font-size: clamp(62px, 7vw, 102px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.85;
}

.speed-clock > button {
  align-self: flex-start;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.speed-tracks {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 54px;
}

.speed-track > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 13px;
}

.speed-track span { color: rgba(255, 255, 255, 0.74); font-size: 12px; }
.speed-track b { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }

.track {
  position: relative;
  height: 10px;
  background: rgba(255, 255, 255, 0.13);
}

.track > i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--signal);
}

.speed-demo.is-running .render-fill { animation: fill-render 3s linear forwards; }
.speed-demo.is-running .play-fill { animation: fill-play 5s linear forwards; background: var(--blue); }

.ready-marker {
  position: absolute;
  top: 18px;
  left: 60%;
  color: var(--signal);
  font-size: 8px;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.1em;
  opacity: 0;
}

.speed-demo.is-running .ready-marker { animation: show-ready 180ms linear 3s forwards; }

@keyframes fill-render { to { width: 60%; } }
@keyframes fill-play { to { width: 100%; } }
@keyframes show-ready { to { opacity: 1; } }

.demo-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.speed-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 78px;
  border-top: 1px solid rgba(7, 16, 24, 0.34);
}

.speed-proof > div {
  min-height: 260px;
  padding: 30px 34px 28px 0;
  border-right: 1px solid rgba(7, 16, 24, 0.34);
}

.speed-proof > div + div { padding-left: 34px; }
.speed-proof > div:last-child { border-right: 0; }

.speed-proof span {
  display: block;
  font-size: clamp(70px, 8vw, 118px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.speed-proof p {
  max-width: 280px;
  margin: 80px 0 0;
  color: rgba(7, 16, 24, 0.7);
  line-height: 1.55;
}

.proof-boundary {
  margin-top: 24px;
  color: rgba(7, 16, 24, 0.58);
  font-size: 9px;
}

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

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1), transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .reveal.is-visible { opacity: 1; transform: none; }

.builder {
  padding: clamp(100px, 11vw, 170px) var(--page-pad);
  background: var(--paper);
}

.builder-shell,
.prompt-gallery > *,
.capabilities > *,
.workflow > *,
.comparison > *,
.pricing > *,
.source-section > *,
.faq > * {
  max-width: 1380px;
  margin-right: auto;
  margin-left: auto;
}

.builder-heading {
  display: grid;
  grid-template-columns: 1.2fr minmax(280px, 0.48fr);
  gap: clamp(42px, 8vw, 130px);
  align-items: end;
}

.builder-heading h2,
.gallery-heading h2,
.capability-intro h2,
.workflow h2,
.comparison h2,
.pricing h2,
.source-section h2,
.faq h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(48px, 6.8vw, 98px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.builder-heading h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.builder-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.preset-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 76px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}

.preset-row::-webkit-scrollbar { display: none; }

.preset-row > span {
  flex: 0 0 auto;
  margin-right: 16px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.preset,
.text-button,
.use-prompt {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 650;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.preset:hover,
.preset:focus-visible,
.use-prompt:hover,
.use-prompt:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.text-button {
  margin-left: auto;
  border-color: transparent;
  color: var(--muted);
}

.builder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.68fr);
  gap: clamp(44px, 7vw, 110px);
  margin-top: 46px;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mode-switch {
  display: flex;
  gap: 26px;
  padding-bottom: 30px;
}

.mode-switch legend { width: 100%; }

.mode-switch label,
.segmented label {
  position: relative;
  cursor: pointer;
}

.mode-switch input,
.segmented input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.mode-switch span {
  padding-bottom: 7px;
  border-bottom: 1px solid transparent;
  color: var(--muted);
  font-size: 13px;
}

.mode-switch input:checked + span {
  border-color: var(--signal);
  color: var(--ink);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}

.field-wide { grid-column: 1 / -1; }

.field,
.select-field {
  display: grid;
  gap: 9px;
}

.field > span,
.select-field > span {
  font-size: 12px;
  font-weight: 650;
}

.field b {
  margin-left: 4px;
  color: #858d90;
  font-size: 11px;
  font-weight: 400;
}

.field input,
.field textarea,
.select-field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  resize: vertical;
  transition: border-color 160ms ease;
}

.field input,
.select-field select { min-height: 46px; }
.field textarea { min-height: 62px; padding: 10px 0; }
.field input:focus,
.field textarea:focus,
.select-field select:focus { border-color: var(--signal); }
.field input::placeholder,
.field textarea::placeholder { color: #9a9d9b; }
.select-field select { appearance: none; cursor: pointer; }
.select-field.is-disabled { opacity: 0.45; }
.select-field select:disabled { cursor: not-allowed; }

.settings {
  display: grid;
  grid-template-columns: 1fr 1fr 0.85fr 1fr;
  gap: 18px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.segmented {
  display: flex;
  min-height: 42px;
  border: 1px solid var(--line);
}

.segmented label { flex: 1; }

.segmented span {
  display: grid;
  height: 100%;
  min-width: 48px;
  place-items: center;
  color: var(--muted);
  font-size: 10px;
}

.segmented input:checked + span {
  background: var(--ink);
  color: white;
}

.output-panel {
  position: sticky;
  top: 28px;
  align-self: start;
  padding: 34px;
  background: var(--ink);
  color: white;
}

.output-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.output-topline p { margin: 0; }
.saved-state { opacity: 0; transition: opacity 180ms ease; }
.saved-state.is-visible { opacity: 1; }

.readiness {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-light);
}

.readiness strong {
  font-size: clamp(60px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -0.085em;
  line-height: 0.8;
}

.readiness span { color: rgba(255, 255, 255, 0.38); font-size: 18px; }
.readiness p { max-width: 150px; margin: 0; color: rgba(255, 255, 255, 0.62); font-size: 11px; line-height: 1.4; text-align: right; }

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0 32px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.check-item::before {
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.check-item.is-ready { color: var(--blue); }
.check-item.is-ready::before { background: var(--blue); }

.prompt-output > p,
.estimate > span {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

#compiled-prompt {
  min-height: 148px;
  padding: 17px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.84);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.55;
  transition: border-color 180ms ease, background 180ms ease;
}

#compiled-prompt.is-updating {
  border-color: var(--signal);
  background: rgba(240, 90, 56, 0.065);
}

.estimate {
  display: grid;
  margin-top: 26px;
  grid-template-columns: 1fr auto;
  align-items: end;
}

.estimate > span { grid-column: 1 / -1; }
.estimate strong { font-size: 32px; font-weight: 500; letter-spacing: -0.04em; }
.estimate small { color: rgba(255, 255, 255, 0.46); font-size: 9px; }

.output-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 7px;
  margin-top: 26px;
}

.copy-action,
.secondary-action {
  min-height: 43px;
  padding: 0 8px;
  border: 1px solid white;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
}

.secondary-action {
  border-color: var(--line-light);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
}

.copy-action:hover { background: var(--signal); color: white; }
.secondary-action:hover { border-color: white; color: white; }

.fal-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 9px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 11px;
  font-weight: 650;
  text-decoration: none;
}

.fal-link:hover { color: var(--signal); }

.price-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  line-height: 1.55;
}

.native-ad {
  max-width: 1380px;
  margin: clamp(64px, 7vw, 100px) auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.native-ad-label {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.prompt-gallery {
  padding: clamp(100px, 11vw, 170px) var(--page-pad);
  background: var(--ink);
  color: white;
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1.25fr minmax(280px, 0.45fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
}

.gallery-heading .section-index { color: rgba(255, 255, 255, 0.48); }

.gallery-heading > p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  line-height: 1.65;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 72px 22px;
  margin-top: 78px;
}

.gallery-wide { grid-column: 1 / -1; }
.gallery-portrait { align-self: end; }

.gallery-media {
  position: relative;
  overflow: hidden;
  background: #0b141b;
}

.gallery-wide .gallery-media { aspect-ratio: 16 / 7; }
.gallery-item:not(.gallery-wide) .gallery-media { aspect-ratio: 4 / 5; }

.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 400ms ease;
}

.gallery-product img { object-position: 48% center; }
.gallery-portrait img { object-position: center 42%; }
.gallery-item:hover .gallery-media img { transform: scale(1.025); filter: brightness(1.06); }

.gallery-media > span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 7px 8px;
  background: rgba(4, 12, 18, 0.78);
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.gallery-copy {
  display: grid;
  grid-template-columns: 0.42fr 1fr minmax(190px, 0.48fr);
  gap: 24px;
  align-items: start;
  padding: 22px 0 0;
  border-top: 1px solid var(--line-light);
}

.gallery-copy > p:first-child {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.09em;
}

.gallery-copy h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 43px);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.gallery-copy > p:not(:first-child) {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.55;
}

.use-prompt {
  grid-column: 3;
  justify-self: start;
  border-color: var(--line-light);
  color: white;
}

.gallery-item:not(.gallery-wide) .gallery-copy {
  grid-template-columns: 1fr;
}

.gallery-item:not(.gallery-wide) .gallery-copy > * { grid-column: 1; }

.capabilities {
  padding: clamp(110px, 13vw, 190px) var(--page-pad);
  background: var(--paper-bright);
}

.capability-intro {
  display: grid;
  grid-template-columns: 0.4fr 1.05fr minmax(260px, 0.48fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: end;
}

.capability-intro h2 { font-size: clamp(46px, 6vw, 86px); }
.capability-intro > p:last-child { margin: 0 0 5px; color: var(--muted); line-height: 1.65; }

.capability-list { margin-top: 86px; border-top: 1px solid var(--line); }

.capability-row {
  display: grid;
  min-height: 150px;
  grid-template-columns: 0.48fr 1fr 0.6fr;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.capability-row > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capability-row strong {
  font-size: clamp(62px, 8vw, 118px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.capability-row em {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.2;
}

.capability-note {
  max-width: 760px !important;
  margin-top: 34px !important;
  margin-right: 0 !important;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.streams-directory {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(46px, 8vw, 130px);
  align-items: center;
  padding: clamp(100px, 12vw, 180px) var(--page-pad);
  background: #0b0d0e;
  color: white;
}

.streams-media,
.streams-copy {
  width: 100%;
  max-width: 720px;
}

.streams-media {
  position: relative;
  justify-self: end;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--ink);
}

.streams-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.streams-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 7, 10, 0.68), transparent 48%);
  content: "";
}

.streams-media > span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  color: white;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.streams-media:hover img { transform: scale(1.025); filter: brightness(1.06); }

.streams-copy { justify-self: start; }
.streams-copy .section-index { color: rgba(255, 255, 255, 0.48); }

.streams-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.streams-lead {
  max-width: 580px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.45;
}

.stream-types {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid var(--line-light);
}

.stream-types > div {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
}

.stream-types span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.stream-types strong { font-size: 13px; font-weight: 650; }

.streams-detail {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  line-height: 1.6;
}

.streams-action {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.streams-copy > small {
  display: block;
  max-width: 560px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 8px;
  line-height: 1.5;
}

.workflow {
  padding: clamp(100px, 12vw, 180px) var(--page-pad);
  background: var(--signal);
  color: var(--ink);
}

.workflow-title {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: clamp(30px, 6vw, 92px);
  align-items: end;
}

.workflow-title .section-index { color: rgba(7, 16, 24, 0.6); }

.workflow-steps {
  display: grid;
  margin-top: 86px;
  padding: 0;
  border-top: 1px solid rgba(7, 16, 24, 0.34);
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.workflow-steps li {
  min-height: 350px;
  padding: 26px 34px 0 0;
  border-right: 1px solid rgba(7, 16, 24, 0.34);
}

.workflow-steps li + li { padding-left: 34px; }
.workflow-steps li:last-child { border-right: 0; }
.workflow-steps span { font-size: 10px; font-weight: 750; }
.workflow-steps h3 { max-width: 300px; margin: 104px 0 20px; font-size: clamp(26px, 3vw, 41px); letter-spacing: -0.05em; line-height: 1; }
.workflow-steps p { max-width: 340px; margin: 0; color: rgba(7, 16, 24, 0.7); line-height: 1.6; }

.workflow-callout {
  display: grid;
  grid-template-columns: 0.4fr 0.8fr 1fr;
  gap: clamp(28px, 5vw, 76px);
  margin-top: 54px !important;
  padding-top: 28px;
  border-top: 1px solid rgba(7, 16, 24, 0.34);
}

.workflow-callout > p:first-child { margin: 5px 0 0; font-size: 9px; font-weight: 750; letter-spacing: 0.1em; }
.workflow-callout h3 { margin: 0; font-size: clamp(28px, 3.4vw, 48px); letter-spacing: -0.05em; line-height: 1; }
.workflow-callout > p:last-child { margin: 0; color: rgba(7, 16, 24, 0.72); line-height: 1.65; }

.comparison {
  padding: clamp(100px, 12vw, 180px) var(--page-pad);
  background: var(--fog);
}

.comparison-heading {
  display: grid;
  grid-template-columns: 0.4fr 1.2fr minmax(250px, 0.4fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: end;
}

.comparison-heading > p:last-child { margin: 0 0 5px; color: #53636b; line-height: 1.55; }

.compare-table { margin-top: 80px; border-top: 1px solid rgba(7, 16, 24, 0.38); }

.compare-row {
  display: grid;
  grid-template-columns: 0.46fr 1fr 1fr;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(7, 16, 24, 0.2);
}

.compare-row span,
.compare-row strong { font-size: 14px; line-height: 1.55; }
.compare-row strong { font-weight: 700; }
.compare-head span { color: #56666e; font-size: 9px; font-weight: 750; letter-spacing: 0.1em; text-transform: uppercase; }
.source-line { margin-top: 20px !important; color: #586870; font-size: 10px; line-height: 1.6; }

.pricing {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(50px, 10vw, 170px);
  padding: clamp(100px, 12vw, 180px) var(--page-pad);
  background: var(--ink);
  color: white;
}

.pricing .section-index { color: rgba(255, 255, 255, 0.46); }
.pricing-copy > p:not(.section-index) { max-width: 560px; margin: 34px 0 0; color: rgba(255, 255, 255, 0.56); font-size: 16px; line-height: 1.65; }
.pricing-copy > a { display: inline-flex; gap: 34px; margin-top: 34px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 700; text-decoration: none; }

.rate-list { border-top: 1px solid var(--line-light); }
.rate-list > div { display: grid; min-height: 150px; grid-template-columns: 0.45fr 1fr; align-items: center; border-bottom: 1px solid var(--line-light); }
.rate-list span { color: rgba(255, 255, 255, 0.52); font-size: 10px; font-weight: 750; letter-spacing: 0.1em; }
.rate-list strong { font-size: clamp(58px, 7vw, 94px); font-weight: 600; letter-spacing: -0.075em; }
.rate-list em { grid-column: 2; margin-top: -42px; color: rgba(255, 255, 255, 0.52); font-family: Georgia, "Times New Roman", serif; font-size: 14px; }
.rate-list > p { margin: 20px 0 0; color: rgba(255, 255, 255, 0.4); font-size: 9px; line-height: 1.5; }

.source-section {
  display: grid;
  grid-template-columns: 1.18fr 0.62fr;
  gap: clamp(50px, 10vw, 170px);
  padding: clamp(110px, 13vw, 200px) var(--page-pad);
  background: var(--paper-bright);
}

.source-section h2 { font-size: clamp(46px, 6vw, 86px); }
.source-body > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.72; }

.source-links {
  display: grid;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.source-links a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

.source-links a:hover { color: var(--signal-dark); }

.faq {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: clamp(50px, 9vw, 150px);
  padding: clamp(100px, 11vw, 170px) var(--page-pad);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.faq h2 { font-size: clamp(46px, 5.5vw, 76px); }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }

.faq summary {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: clamp(17px, 1.8vw, 23px);
  font-weight: 650;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { color: var(--signal-dark); content: "+"; font-size: 25px; font-weight: 300; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 760px; margin: -6px 0 30px; color: var(--muted); line-height: 1.7; }

.final-cta {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: white;
}

.final-cta-media {
  position: absolute;
  inset: -4%;
  background-image: url("/assets/h3-max-hero.jpg");
  background-position: center bottom;
  background-size: cover;
  filter: saturate(0.72) brightness(0.5);
}

.final-cta::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 9, 14, 0.9), rgba(3, 9, 14, 0.08));
  content: "";
}

.final-cta-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding: clamp(130px, 15vw, 220px) clamp(20px, 7vw, 108px);
}

.final-cta-copy .primary-action { margin-top: 36px; }

.final-secondary {
  display: inline-block;
  margin-left: 24px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

footer {
  display: grid;
  min-height: 230px;
  padding: 54px var(--page-pad) 42px;
  background: var(--ink);
  color: white;
  grid-template-columns: 0.7fr 1fr 1.4fr auto;
  align-items: start;
  gap: 32px;
}

footer p,
footer > span { margin: 0; color: rgba(255, 255, 255, 0.46); font-size: 10px; line-height: 1.5; }
footer nav { flex-wrap: wrap; align-items: flex-start; gap: 14px 26px; }

.toast {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  padding: 13px 16px;
  transform: translateY(20px);
  background: white;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.25);
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

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

@media (max-width: 1080px) {
  .site-header nav a:not(.nav-cta) { display: none; }
  .quick-composer { grid-template-columns: 1.3fr 1fr; }
  .quick-submit { grid-column: 2; }
  .quick-trust { grid-column: 1 / -1; }
  .builder-heading,
  .gallery-heading,
  .speed-heading,
  .comparison-heading { grid-template-columns: 1fr minmax(270px, 0.42fr); }
  .builder-heading .section-index,
  .gallery-heading .section-index,
  .speed-heading .section-index,
  .comparison-heading .section-index { grid-column: 1 / -1; }
  .builder-grid { grid-template-columns: 1fr; }
  .output-panel { position: static; max-width: 720px; }
  .capability-intro { grid-template-columns: 1fr 1fr; }
  .capability-intro .section-index { grid-column: 1 / -1; }
  .source-section { grid-template-columns: 1fr 0.72fr; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --header-height: 62px; --page-pad: 18px; }
  .site-header { padding: 0 18px; }
  .nav-cta { padding: 9px 11px; }
  .hero { min-height: 100svh; }
  .hero-media { inset: 0; width: 100%; height: 100%; object-position: 64% center; transform: scale(1.02); }
  .hero-vignette { background: linear-gradient(90deg, rgba(2, 8, 13, 0.92), rgba(2, 8, 13, 0.22)), linear-gradient(0deg, rgba(2, 8, 13, 0.88), transparent 70%); }
  .hero-copy { width: calc(100% - 36px); margin-left: 18px; padding-top: 116px; }
  .hero h1 { font-size: clamp(56px, 16vw, 72px); line-height: 0.82; }
  .hero-statement { max-width: 340px; margin-top: 20px; font-size: 24px; }
  .hero-lead { max-width: 330px; margin-top: 13px; font-size: 12px; line-height: 1.42; }
  .hero-actions { align-items: center; flex-direction: row; gap: 12px; margin-top: 20px; }
  .hero-actions .primary-action { min-height: 46px; }
  .hero-actions .secondary-link { font-size: 9px; gap: 12px; }
  .hero-directory-link { margin-top: 14px; font-size: 9px; }
  .hero-output-meta { right: 18px; bottom: 18px; left: 18px; grid-template-columns: 1fr auto; gap: 8px 14px; min-height: 78px; padding: 10px 0; }
  .hero-output-meta > span { grid-column: 1 / -1; }
  .hero-output-meta > strong { grid-column: 1 / -1; font-size: 8px; }
  .hero-media-controls { gap: 10px; }
  .hero-media-controls > button { font-size: 8px; }
  .hero-output-meta > a { font-size: 8px; text-align: right; }
  .hero-speed { right: 18px; bottom: 22px; left: 18px; grid-template-columns: 1fr 24px 1fr; gap: 10px; padding: 14px 0 12px; }
  .hero-speed > div { grid-template-columns: 1fr; gap: 6px; }
  .hero-speed strong { font-size: 48px; }
  .hero-speed span { max-width: none; font-size: 7px; }
  .hero-speed > i { font-size: 18px; }
  .hero-speed > p { grid-column: 1 / -1; max-width: 320px; margin: 4px 0 0; font-size: 7px; }
  .quick-composer { right: 18px; bottom: 26px; left: 18px; grid-template-columns: 1fr; gap: 12px; padding-top: 13px; }
  .quick-idea-field textarea { min-height: 48px; font-size: 15px; }
  .quick-settings { grid-template-columns: repeat(3, 1fr); }
  .quick-settings select { min-height: 36px; padding-right: 0; font-size: 11px; }
  .quick-submit { grid-column: 1; min-height: 46px; }
  .quick-trust { grid-column: 1; max-width: 330px; font-size: 8px; line-height: 1.4; }
  .hero-caption { display: none; }
  .builder-heading,
  .gallery-heading,
  .speed-heading,
  .capability-intro,
  .workflow-title,
  .comparison-heading,
  .pricing,
  .source-section,
  .faq { grid-template-columns: 1fr; }
  .builder-heading .section-index,
  .gallery-heading .section-index,
  .speed-heading .section-index,
  .comparison-heading .section-index,
  .capability-intro .section-index { grid-column: 1; }
  .builder-heading h2,
  .gallery-heading h2,
  .speed-heading h2,
  .capability-intro h2,
  .workflow h2,
  .comparison h2,
  .pricing h2,
  .source-section h2,
  .faq h2,
  .final-cta h2 { font-size: clamp(45px, 14vw, 66px); }
  .preset-row { margin-top: 46px; }
  .text-button { margin-left: 6px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .field input { font-size: 16px; }
  .settings { grid-template-columns: 1fr 1fr; }
  .select-field { margin-top: 8px; }
  .output-panel { padding: 28px 22px; }
  .output-actions { grid-template-columns: 1fr 1fr; }
  .copy-action { grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: 1fr; gap: 56px; }
  .gallery-wide { grid-column: 1; }
  .gallery-wide .gallery-media { aspect-ratio: 4 / 5; }
  .gallery-wide .gallery-media img { object-position: 63% center; }
  .gallery-item:not(.gallery-wide) .gallery-media { aspect-ratio: 4 / 5; }
  .gallery-copy,
  .gallery-item:not(.gallery-wide) .gallery-copy { grid-template-columns: 1fr; gap: 14px; }
  .gallery-copy > * { grid-column: 1 !important; }
  .use-prompt { margin-top: 8px; }
  .capability-row { min-height: 118px; grid-template-columns: 0.52fr 1fr; gap: 16px; }
  .capability-row strong { font-size: clamp(54px, 17vw, 76px); }
  .capability-row em { grid-column: 2; margin-top: -28px; font-size: 16px; }
  .streams-directory { grid-template-columns: 1fr; gap: 52px; }
  .streams-media,
  .streams-copy { max-width: none; }
  .streams-copy h2 { font-size: clamp(46px, 14vw, 64px); }
  .workflow-steps { grid-template-columns: 1fr; }
  .workflow-steps li,
  .workflow-steps li + li { min-height: 270px; padding: 24px 0; border-right: 0; border-bottom: 1px solid rgba(7, 16, 24, 0.34); }
  .workflow-steps li:last-child { border-bottom: 0; }
  .workflow-steps h3 { margin-top: 70px; }
  .workflow-callout { grid-template-columns: 1fr; gap: 18px; margin-top: 32px !important; }
  .speed-demo { grid-template-columns: 1fr; gap: 44px; margin-top: 56px; padding: 28px 22px; }
  .speed-clock { min-height: 190px; }
  .speed-clock > strong { font-size: 68px; }
  .speed-tracks { gap: 48px; }
  .speed-proof { grid-template-columns: 1fr; margin-top: 56px; }
  .speed-proof > div,
  .speed-proof > div + div { min-height: 220px; padding: 26px 0; border-right: 0; border-bottom: 1px solid rgba(7, 16, 24, 0.34); }
  .speed-proof > div:last-child { border-bottom: 0; }
  .speed-proof p { margin-top: 58px; }
  .compare-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .compare-head { display: none; }
  .compare-row span::before { display: block; margin-bottom: 4px; color: #63727a; font-size: 8px; font-weight: 750; letter-spacing: 0.1em; content: "FAL H3 MAX"; }
  .compare-row span:last-child::before { content: "MINIMAX H3"; }
  .rate-list { margin-top: 20px; }
  .rate-list > div { min-height: 126px; }
  .source-body { margin-top: 12px; }
  .faq { gap: 40px; }
  .final-cta { min-height: 620px; }
  .final-cta-media { background-position: 67% center; }
  .final-secondary { display: table; margin: 22px 0 0; }
  footer { grid-template-columns: 1fr; }
  footer nav { flex-direction: column; }
}

@media (max-height: 720px) and (min-width: 721px) {
  .hero-copy { padding-top: 115px; }
  .hero h1 { font-size: clamp(70px, 9vw, 112px); }
  .hero-statement { margin-top: 22px; font-size: 32px; }
  .quick-composer { bottom: 24px; }
}

@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; }
  .hero-reveal,
  .reveal { opacity: 1; transform: none; }
}
