:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-2: #fbfaf8;
  --text: #101010;
  --muted: #666666;
  --soft-text: #9a9a9a;
  --line: #e9e6e2;
  --line-strong: #d8d4ce;
  --surface: #ffffff;
  --surface-soft: #f8f6f3;
  --surface-warm: #fff3ea;
  --orange: #ff6700;
  --orange-dark: #df5700;
  --green: #15884a;
  --shadow: 0 28px 90px rgba(16, 16, 16, 0.11);
  --shadow-soft: 0 18px 60px rgba(16, 16, 16, 0.08);
  --radius: 8px;
  --max: 1480px;
  --gutter: 42px;
  --page-x: max(var(--gutter), calc((100vw - var(--max)) / 2));
  --section-width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  --sticky-top: 76px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0d0f0e;
  --bg-2: #111412;
  --text: #f5f1ec;
  --muted: #aaa49d;
  --soft-text: #77716b;
  --line: #262b28;
  --line-strong: #343a36;
  --surface: #141815;
  --surface-soft: #101311;
  --surface-warm: #21160f;
  --orange: #ff6a00;
  --orange-dark: #ff8a32;
  --green: #25c772;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.js-enabled,
html.lenis.lenis-smooth {
  scroll-behavior: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}

html.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  overflow-x: clip;
  overscroll-behavior-y: none;
  transition:
    background 260ms ease,
    color 260ms ease;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 103, 0, 0.08), transparent 28rem),
    var(--bg);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 var(--page-x);
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(18px);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 14px));
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 950;
}

.brand img {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.nav-links a {
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--orange);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle {
  width: 72px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.theme-toggle:hover {
  border-color: rgba(255, 103, 0, 0.34);
  transform: translateY(-1px);
}

.theme-toggle-track {
  position: relative;
  width: 60px;
  height: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 103, 0, 0.13), rgba(255, 103, 0, 0.035)),
    var(--surface-soft);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--line) 84%, transparent),
    inset 0 8px 18px rgba(255, 103, 0, 0.08);
}

.theme-icon {
  position: relative;
  z-index: 2;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  pointer-events: none;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 220ms ease;
}

.theme-icon svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-icon-sun {
  color: var(--orange);
}

.theme-icon-sun svg circle {
  fill: currentColor;
  stroke: none;
}

.theme-icon-moon {
  color: color-mix(in srgb, var(--muted) 78%, var(--text));
  opacity: 0.68;
}

.theme-icon-moon svg path {
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.35;
}

.theme-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: 1;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 94%, #fff);
  box-shadow:
    0 7px 18px rgba(28, 18, 9, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    background 180ms ease,
    box-shadow 180ms ease;
}

:root[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(30px);
  background: #1f211d;
  box-shadow:
    0 7px 18px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .theme-toggle {
  background: rgba(18, 20, 17, 0.72);
}

:root[data-theme="dark"] .theme-toggle-track {
  background:
    linear-gradient(90deg, rgba(255, 103, 0, 0.04), rgba(255, 103, 0, 0.16)),
    #11130f;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 8px 20px rgba(0, 0, 0, 0.24);
}

:root[data-theme="dark"] .theme-icon-sun {
  color: color-mix(in srgb, var(--muted) 74%, var(--text));
  opacity: 0.62;
  transform: rotate(-18deg) scale(0.94);
}

:root[data-theme="dark"] .theme-icon-moon {
  color: #ff8a32;
  opacity: 1;
  transform: rotate(-8deg);
}

.download-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid #0f0f0f;
  border-radius: var(--radius);
  background: #0f0f0f;
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 920;
  line-height: 1;
  box-shadow: 0 18px 38px rgba(16, 16, 16, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(16, 16, 16, 0.24);
}

.download-button.primary,
.header-download {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 18px 38px rgba(255, 103, 0, 0.22);
}

.download-button.primary:hover,
.header-download:hover {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
}

.download-button.secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
  box-shadow: none;
}

.download-button.secondary:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.header-download {
  min-height: 42px;
  padding: 0 16px;
}

.button-icon {
  position: relative;
  width: 17px;
  height: 17px;
  display: inline-block;
}

.button-icon::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 1px;
  width: 3px;
  height: 9px;
  border-radius: 2px;
  background: currentColor;
}

.button-icon::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 11px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  border-radius: 0 0 3px 3px;
}

.hero {
  min-height: 92svh;
  display: grid;
  place-items: center;
  padding: 112px var(--page-x) 64px;
  text-align: center;
}

.hero-copy {
  width: min(100%, 1120px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-brand-lockup {
  margin-bottom: 22px;
}

.logo-build {
  width: 108px;
  height: auto;
  overflow: visible;
}

.logo-outline,
.logo-fold,
.logo-vein-light,
.logo-vein {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-outline,
.logo-fold {
  stroke: var(--orange);
  stroke-width: 3.5;
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  animation: logoOutlineDraw 1350ms ease-out 120ms forwards;
}

.logo-fold {
  stroke-dasharray: 58;
  stroke-dashoffset: 58;
  animation-delay: 300ms;
}

.logo-leaf {
  transform-box: view-box;
  transform-origin: 48px 34px;
  transform: translate3d(58px, -16px, 0) rotate(28deg) scale(0.72);
  opacity: 0;
  animation: logoLeafLand 2400ms cubic-bezier(0.2, 0.82, 0.2, 1) 1420ms forwards;
}

.logo-leaf path:first-child {
  fill: var(--orange);
}

.logo-vein-light {
  stroke: #fff;
  stroke-width: 3.5;
}

.logo-vein {
  stroke: var(--orange);
  stroke-width: 2.5;
  transform: translate(-2px, 3px);
}

.brand-line {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1.15;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin-top: 0;
  letter-spacing: 0;
  text-wrap: pretty;
}

h1 {
  margin-bottom: 54px;
  font-size: 6rem;
  line-height: 0.98;
  font-weight: 950;
}

.hosted-signal {
  position: relative;
  display: inline-block;
  z-index: 0;
  isolation: isolate;
  margin: 0 -0.035em;
  padding: 0 0.055em;
}

.hosted-word {
  position: relative;
  z-index: 3;
}

.signal-system {
  position: absolute;
  inset: -0.24em -0.04em -0.12em;
  z-index: -1;
  color: var(--orange);
  pointer-events: none;
}

.signal-system span,
.falling-leaves i {
  position: absolute;
  display: block;
}

.signal-orbit {
  left: 1%;
  right: 1%;
  top: 36%;
  height: 0.52em;
  border: 0.04em solid rgba(255, 103, 0, 0.24);
  border-left-color: rgba(255, 103, 0, 0.04);
  border-bottom-color: rgba(255, 103, 0, 0.08);
  border-radius: 50%;
  transform: rotate(-5deg);
}

.signal-mast {
  left: 8%;
  bottom: 0.02em;
  width: 0.44em;
  height: 0.66em;
}

.signal-mast::before,
.signal-mast::after,
.signal-antenna::before,
.signal-antenna::after {
  content: "";
  position: absolute;
}

.signal-mast::before {
  left: 50%;
  bottom: 0;
  width: 0.045em;
  height: 0.62em;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
}

.signal-mast::after {
  left: 50%;
  top: 0.1em;
  width: 0.42em;
  height: 0.42em;
  border: 0.04em solid currentColor;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: translateX(-50%) rotate(-45deg);
  opacity: 0.72;
}

.signal-antenna {
  right: 5%;
  top: 0.28em;
  width: 0.42em;
  height: 0.42em;
  transform-origin: 48% 78%;
  animation: antennaSpin 4600ms linear infinite;
}

.signal-antenna::before {
  left: 0.12em;
  top: 0.04em;
  width: 0.24em;
  height: 0.18em;
  border: 0.04em solid currentColor;
  border-right-color: transparent;
  border-radius: 50% 0 0 50%;
  transform: rotate(-22deg);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
}

.signal-antenna::after {
  left: 0.21em;
  top: 0.19em;
  width: 0.045em;
  height: 0.22em;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-18deg);
}

.signal-satellite {
  width: 0.22em;
  height: 0.14em;
  border: 0.035em solid currentColor;
  border-radius: 0.035em;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  opacity: 0.88;
}

.signal-satellite::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0.035em;
  height: 0.12em;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%) rotate(18deg);
}

.signal-satellite-a {
  left: 28%;
  top: 0.18em;
  transform: rotate(-17deg);
  animation: satelliteDriftA 5400ms ease-in-out infinite;
}

.signal-satellite-b {
  right: 26%;
  top: 0.22em;
  transform: rotate(13deg) scale(0.82);
  opacity: 0.62;
  animation: satelliteDriftB 6200ms ease-in-out infinite;
}

.signal-pulse {
  width: 0.42em;
  height: 0.42em;
  border: 0.035em solid currentColor;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: 0;
}

.signal-pulse-a {
  right: 5%;
  top: 0.12em;
  animation: radioPulse 2400ms ease-out infinite;
}

.signal-pulse-b {
  left: 4%;
  top: 0.16em;
  transform: rotate(-18deg);
  animation: radioPulse 2800ms ease-out infinite 420ms;
}

.you-accent {
  position: relative;
  display: inline-block;
}

.you-text {
  position: relative;
  z-index: 1;
  color: var(--orange);
}

.falling-leaves {
  position: absolute;
  left: 0.06em;
  top: -0.48em;
  z-index: 2;
  width: calc(100% - 0.04em);
  height: 1.36em;
  pointer-events: none;
}

.falling-leaves i {
  top: 0;
  left: 45%;
  width: 0.18em;
  height: 0.3em;
  border-radius: 0.28em 0.04em 0.28em 0.04em;
  background: var(--orange);
  opacity: 0;
  transform-origin: 50% 75%;
  animation: fallLeaf 4200ms ease-in-out infinite;
  filter: drop-shadow(0 2px 0 rgba(255, 255, 255, 0.72)) drop-shadow(0 10px 12px rgba(255, 103, 0, 0.18));
}

.falling-leaves i:nth-child(1) {
  left: 72%;
  animation-delay: -680ms;
}

.falling-leaves i:nth-child(2) {
  left: 50%;
  width: 0.15em;
  height: 0.25em;
  background: #ff9348;
  animation-delay: -1860ms;
  animation-duration: 5000ms;
}

.falling-leaves i:nth-child(3) {
  left: 86%;
  width: 0.13em;
  height: 0.22em;
  background: #ffb17a;
  animation-delay: -3180ms;
  animation-duration: 4600ms;
}

.falling-leaves i:nth-child(4) {
  left: 62%;
  width: 0.12em;
  height: 0.2em;
  background: #f05a00;
  animation-delay: -4360ms;
  animation-duration: 5400ms;
}

.falling-leaves i:nth-child(5) {
  left: 38%;
  width: 0.16em;
  height: 0.26em;
  background: #ff7f29;
  animation-delay: -920ms;
  animation-duration: 4800ms;
}

.download-cluster {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.download-cluster.centered {
  margin-top: 34px;
}

.release-note {
  margin: 18px 0 0;
  color: var(--soft-text);
  font-size: 0.86rem;
  font-weight: 760;
}

.preview-section,
.ai-section,
.statement-section,
.flow-section,
.split-proof,
.qa-section,
.final-cta,
.site-footer {
  width: var(--section-width);
  margin: 0 auto;
}

#preview,
#flow,
#ai,
#qa {
  scroll-margin-top: 108px;
}

.section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.section-label,
.section-heading p,
.preview-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.83rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section-heading h2,
.flow-copy h2,
.proof-copy h2,
.ai-copy h2 {
  margin: 0;
  font-size: 3.75rem;
  line-height: 1.03;
  font-weight: 950;
}

.preview-section {
  height: 235svh;
  min-height: 1540px;
  margin-top: -72px;
}

.preview-sticky,
.ai-sticky {
  position: sticky;
  top: var(--sticky-top);
  min-height: calc(100svh - var(--sticky-top));
  display: grid;
  align-content: center;
  padding: 36px 0 52px;
}

.preview-theater {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  align-items: stretch;
  gap: 28px;
  min-height: 660px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 103, 0, 0.075), transparent 35%),
    var(--surface-soft);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--surface) 74%, transparent);
}

.preview-copy {
  align-self: center;
}

.preview-copy h3 {
  margin-bottom: 18px;
  font-size: 3.05rem;
  line-height: 1.02;
  font-weight: 950;
}

.preview-copy p,
.ai-copy p,
.flow-copy p,
.proof-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
  font-weight: 650;
}

.app-window,
.ai-image-frame,
.proof-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.app-window {
  min-width: 0;
  display: grid;
  grid-template-rows: 42px minmax(0, 1fr);
}

.app-window-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.app-window-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff9f6e;
}

.app-window-top span:nth-child(2) {
  background: #ffcfb6;
}

.app-window-top span:nth-child(3) {
  background: #94dcb0;
}

.app-window-top strong {
  margin-left: 8px;
  color: var(--text);
}

.screen-stack {
  position: relative;
  min-height: 615px;
}

.app-shot {
  position: absolute;
  inset: 0;
  padding: 24px;
  opacity: 0;
  transform: translate3d(32px, 0, 0) scale(0.985);
  filter: blur(4px);
  transition:
    opacity 620ms ease,
    transform 620ms ease,
    filter 620ms ease;
}

.app-shot.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.product-screenshot {
  display: grid;
  place-items: center;
  padding: 0;
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 103, 0, 0.11), transparent 30%),
    var(--surface-soft);
}

.product-screenshot > :not(.shot-layer) {
  display: none;
}

.shot-layer,
.shot-layer img {
  width: 100%;
  height: 100%;
  display: block;
}

.shot-layer img {
  object-fit: contain;
}

.host-home,
.session-view,
.editor-view,
.compile-view {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.host-home {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
}

.host-home aside,
.session-view aside,
.chat-pane,
.file-tree {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px;
}

.host-home aside,
.file-tree,
.chat-pane {
  display: grid;
  align-content: start;
  gap: 10px;
}

.host-home aside span,
.file-tree span {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
}

.host-home aside .active,
.file-tree .active {
  background: var(--surface-warm);
  color: var(--orange);
}

.host-home main {
  display: grid;
  gap: 16px;
}

.host-card,
.host-grid div,
.session-main,
.request-row,
.code-pane,
.pdf-pane,
.compile-view section,
.compile-view aside {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.host-card {
  display: grid;
  align-content: center;
  min-height: 280px;
  padding: 34px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 103, 0, 0.18), transparent 14rem),
    var(--surface);
}

.host-card small {
  color: var(--orange);
  font-weight: 950;
  text-transform: uppercase;
}

.host-card strong {
  margin: 8px 0 12px;
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 950;
}

.host-card p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.host-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.host-grid div {
  padding: 20px;
}

.host-grid b,
.host-grid span,
.compile-view aside span {
  display: block;
}

.host-grid span,
.compile-view aside span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.session-view {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
}

.session-main {
  display: grid;
  align-content: center;
  padding: 34px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 103, 0, 0.18), transparent 15rem),
    var(--surface);
}

.session-main small {
  color: var(--orange);
  font-weight: 950;
  text-transform: uppercase;
}

.session-main h4 {
  margin: 10px 0 14px;
  font-size: 3.1rem;
  line-height: 1;
}

.session-main p {
  max-width: 580px;
  color: var(--muted);
  font-weight: 650;
}

.session-link {
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(255, 103, 0, 0.24);
  border-radius: var(--radius);
  background: var(--surface-warm);
  color: var(--orange);
  font-weight: 900;
}

.request-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  margin-top: 12px;
}

.request-row button,
.compile-view button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}

.editor-view {
  display: grid;
  grid-template-columns: 180px 1fr 260px 220px;
  gap: 12px;
}

.code-pane,
.pdf-pane,
.chat-pane {
  padding: 16px;
}

.code-line {
  height: 9px;
  width: 84%;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--text);
  opacity: 0.76;
}

.code-line.short {
  width: 52%;
}

.code-line.orange {
  background: var(--orange);
}

.code-line.green {
  width: 62%;
  background: var(--green);
}

.pdf-pane {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
}

.paper-mini,
.pdf-page {
  margin: 0 auto;
  width: 74%;
  height: 100%;
  min-height: 360px;
  padding: 42px 24px;
  background: #fff;
  color: #111;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
}

.paper-mini span,
.pdf-page span {
  display: block;
  height: 6px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #1d1d1d;
}

.paper-mini span:nth-child(2),
.pdf-page span:nth-child(3) {
  width: 68%;
}

.paper-mini span:nth-child(3),
.pdf-page span:nth-child(4) {
  width: 42%;
}

.bubble {
  max-width: 92%;
  padding: 10px 11px;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 720;
}

.bubble.left {
  background: var(--surface-soft);
}

.bubble.right {
  justify-self: end;
  background: var(--surface-warm);
  color: var(--orange);
}

.chat-pane small {
  margin-top: 16px;
  color: var(--green);
  font-weight: 900;
}

.compile-view {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
}

.compile-view section,
.compile-view aside {
  padding: 20px;
}

.compile-view section {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
}

.pdf-page {
  min-height: 470px;
  text-align: center;
}

.pdf-page h5 {
  margin: 0 0 36px;
  color: var(--orange);
  font-size: 1.2rem;
}

.compile-view aside {
  align-content: start;
}

.compile-view .success {
  margin: 18px 0;
  color: var(--green);
  font-weight: 950;
}

.compile-view button {
  margin-top: 28px;
}

.ai-section {
  height: 205svh;
  min-height: 1380px;
  margin-top: 0;
  border-top: 1px solid var(--line);
}

.ai-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: center;
}

.ai-layout.is-slide-entering .ai-copy > *,
.ai-layout.is-slide-entering .ai-image-frame {
  animation: aiSlideEnter 680ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ai-layout.is-slide-entering .ai-copy p[data-ai-copy] {
  animation-delay: 45ms;
}

.ai-layout.is-slide-entering .ai-points {
  animation-delay: 90ms;
}

.ai-layout.is-slide-entering .ai-image-frame {
  animation-delay: 70ms;
}

.ai-copy {
  max-width: 560px;
}

.ai-copy p[data-ai-copy] {
  margin-top: 20px;
}

.ai-points {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.ai-points span {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 860;
}

.ai-points span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 103, 0, 0.11);
}

.ai-image-frame {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  background: var(--surface);
}

.ai-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
    opacity 240ms ease,
    transform 500ms ease;
}

.ai-image-frame.is-swapping img {
  opacity: 0.55;
  transform: scale(0.992);
}

.ai-image-frame figcaption {
  display: none;
}

.slide-progress {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.slide-progress span {
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: var(--line-strong);
  transition: background 180ms ease, width 180ms ease;
}

.slide-progress span.active {
  width: 54px;
  background: var(--orange);
}

.statement-section,
.flow-section,
.split-proof,
.qa-section,
.final-cta {
  min-height: min(980px, 100svh);
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

.statement-section {
  display: grid;
  align-content: center;
}

.statement-shell {
  display: grid;
  gap: 74px;
}

.statement {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 40px;
  align-items: start;
}

.statement:nth-child(2) {
  margin-left: 156px;
}

.statement:nth-child(3) {
  margin-left: 76px;
}

.statement p {
  max-width: 980px;
  margin: 0;
  font-size: 4.6rem;
  line-height: 1.02;
  font-weight: 950;
}

.statement-icon {
  position: relative;
  width: 78px;
  height: 78px;
  border: 4px solid var(--text);
  border-radius: var(--radius);
  background: var(--surface);
}

.link-icon::before,
.link-icon::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 16px;
  border: 4px solid var(--orange);
  border-radius: 999px;
  transform: rotate(-28deg);
}

.link-icon::before {
  left: 12px;
  top: 24px;
}

.link-icon::after {
  right: 12px;
  bottom: 24px;
}

.lock-icon::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 32px;
  width: 30px;
  height: 24px;
  border: 4px solid var(--orange);
  border-radius: 6px;
}

.lock-icon::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 17px;
  width: 20px;
  height: 20px;
  border: 4px solid var(--orange);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.leaf-icon::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 15px;
  width: 42px;
  height: 42px;
  border-radius: 42px 8px 42px 8px;
  background: var(--orange);
  transform: rotate(-28deg);
}

.leaf-icon::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 45px;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: #fff;
  transform: rotate(-32deg);
}

.flow-section {
  display: grid;
  align-content: center;
  overflow: hidden;
}

.flow-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
  align-items: center;
}

.flow-copy {
  max-width: 600px;
}

.flow-copy p:last-child {
  margin-top: 20px;
}

.flow-track {
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 46px;
}

.flow-current {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.flow-current path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 16;
  stroke-linecap: round;
  stroke-dasharray: 17 22;
  opacity: 0.28;
  animation: currentDrift 2200ms linear infinite;
}

.flow-step {
  position: relative;
  z-index: 1;
  width: min(82%, 520px);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.flow-step:nth-of-type(odd) {
  align-self: flex-start;
}

.flow-step:nth-of-type(even) {
  align-self: flex-end;
}

.flow-step > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 950;
  box-shadow:
    0 0 0 8px var(--surface),
    0 14px 32px rgba(255, 103, 0, 0.28);
}

.flow-step h3 {
  margin: 0 0 6px;
  font-size: 1.38rem;
  line-height: 1;
  font-weight: 950;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.38;
  font-weight: 650;
}

.split-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 72px;
  align-items: center;
}

.proof-photo {
  margin: 0;
  aspect-ratio: 0.95;
  transform: rotate(-1deg);
}

.proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.proof-copy h2 {
  margin-bottom: 20px;
}

.proof-control {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.proof-control div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.proof-control span {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.proof-control strong {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.25;
  font-weight: 900;
}

.qa-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 62px;
}

.qa-section .section-heading {
  margin: 0;
  text-align: left;
}

.qa-list {
  display: grid;
  gap: 12px;
}

details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

summary {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 22px 64px 22px 22px;
  font-size: 1.1rem;
  font-weight: 950;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 24px;
  width: 12px;
  height: 12px;
  border-right: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

details[open] summary::after {
  transform: translateY(6px) rotate(225deg);
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 650;
}

.final-cta {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  overflow: hidden;
}

.final-logo {
  margin-bottom: 24px;
}

.final-cta h2 {
  max-width: 860px;
  margin: 0 auto 10px;
  font-size: 4.85rem;
  line-height: 0.98;
  font-weight: 950;
}

.final-wordmark-wrap {
  position: relative;
  width: 260px;
  display: block;
  margin: 0 auto 20px;
  overflow: hidden;
  border-radius: var(--radius);
  animation: wordmarkSettle 5600ms ease-in-out infinite;
}

.final-wordmark {
  width: 100%;
}

.final-wordmark-flare {
  position: absolute;
  inset: -35% auto -35% 0;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.84), rgba(255, 103, 0, 0.3), transparent);
  transform: rotate(15deg);
  opacity: 0.58;
  animation: wordmarkFlare 4200ms ease-in-out infinite;
}

.site-footer {
  min-height: 120px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--soft-text);
  font-size: 0.9rem;
  font-weight: 850;
}

.site-footer > span {
  color: color-mix(in srgb, var(--text) 22%, transparent);
  font-size: 1.55rem;
  font-weight: 950;
}

.site-footer nav {
  display: flex;
  gap: 20px;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--orange);
}

.site-footer p {
  justify-self: end;
  margin: 0;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translate3d(0, 52px, 0) scale(0.975);
  filter: blur(10px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms ease;
  will-change: opacity, transform, filter;
}

.js-enabled .reveal.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.js-enabled :target.reveal,
.js-enabled :target .reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.js-enabled .reveal-peek:not(.revealed) {
  opacity: 0.28;
  filter: blur(5px);
}

@keyframes currentDrift {
  to {
    stroke-dashoffset: -78;
  }
}

@keyframes aiSlideEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.982);
    filter: blur(9px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes wordmarkSettle {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

@keyframes wordmarkFlare {
  0%,
  46% {
    transform: translate3d(-140%, 0, 0) rotate(15deg);
  }

  72%,
  100% {
    transform: translate3d(340%, 0, 0) rotate(15deg);
  }
}

@keyframes logoOutlineDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes logoLeafLand {
  0% {
    opacity: 0;
    transform: translate3d(58px, -16px, 0) rotate(28deg) scale(0.72);
  }

  44% {
    opacity: 1;
    transform: translate3d(16px, -8px, 0) rotate(10deg) scale(0.9);
  }

  78% {
    opacity: 1;
    transform: translate3d(-1px, 1px, 0) rotate(-2deg) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes fallLeaf {
  0% {
    opacity: 0;
    transform: translate3d(0.04em, -0.18em, 0) rotate(-28deg) scale(0.72);
  }

  14% {
    opacity: 0.95;
  }

  44% {
    transform: translate3d(-0.1em, 0.4em, 0) rotate(42deg) scale(0.92);
  }

  76% {
    opacity: 0.9;
    transform: translate3d(0.12em, 0.82em, 0) rotate(120deg) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate3d(-0.06em, 1.08em, 0) rotate(176deg) scale(0.76);
  }
}

@keyframes antennaSpin {
  0%,
  100% {
    transform: rotate(-18deg);
  }

  45%,
  50% {
    transform: rotate(18deg);
  }

  95% {
    transform: rotate(-18deg);
  }
}

@keyframes satelliteDriftA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-17deg);
  }

  50% {
    transform: translate3d(0.09em, 0.035em, 0) rotate(-9deg);
  }
}

@keyframes satelliteDriftB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(13deg) scale(0.82);
  }

  50% {
    transform: translate3d(-0.08em, 0.06em, 0) rotate(21deg) scale(0.82);
  }
}

@keyframes radioPulse {
  0% {
    opacity: 0;
    transform: rotate(-20deg) scale(0.55);
  }

  18% {
    opacity: 0.42;
  }

  100% {
    opacity: 0;
    transform: rotate(-20deg) scale(1.45);
  }
}

@media (min-width: 1600px) {
  :root {
    --max: 1600px;
    --gutter: 56px;
  }

  h1 {
    font-size: 7rem;
  }

  .section-heading h2,
  .flow-copy h2,
  .proof-copy h2,
  .ai-copy h2 {
    font-size: 4.25rem;
  }

  .statement p {
    font-size: 5.1rem;
  }

  .final-cta h2 {
    font-size: 6.3rem;
  }
}

@media (max-width: 1180px) {
  :root {
    --gutter: 28px;
  }

  h1 {
    font-size: 4.55rem;
  }

  .section-heading h2,
  .flow-copy h2,
  .proof-copy h2,
  .ai-copy h2 {
    font-size: 3.15rem;
  }

  .preview-theater,
  .ai-layout,
  .flow-shell,
  .split-proof,
  .qa-section {
    grid-template-columns: 1fr;
  }

  .preview-theater {
    min-height: auto;
  }

  .preview-copy,
  .ai-copy,
  .flow-copy {
    max-width: 760px;
  }

  .screen-stack {
    min-height: 570px;
  }

  .statement p {
    font-size: 3.4rem;
  }

  .statement:nth-child(2),
  .statement:nth-child(3) {
    margin-left: 0;
  }
}

@media (max-width: 820px) {
  :root {
    --gutter: 15px;
    --sticky-top: 18px;
  }

  .site-header {
    min-height: 68px;
    grid-template-columns: 1fr auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand span {
    display: none;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 0.75rem;
  }

  .header-download span:last-child {
    display: none;
  }

  .theme-toggle {
    width: 66px;
    height: 36px;
    box-shadow: none;
  }

  .theme-toggle-track {
    width: 56px;
    height: 28px;
  }

  .theme-icon {
    width: 28px;
    height: 28px;
  }

  .theme-icon svg {
    width: 16px;
    height: 16px;
  }

  .theme-toggle-thumb {
    width: 22px;
    height: 22px;
  }

  :root[data-theme="dark"] .theme-toggle-thumb {
    transform: translateX(28px);
  }

  .hero {
    min-height: 88svh;
    padding-top: 92px;
    padding-bottom: 56px;
  }

  .logo-build {
    width: 82px;
  }

  .brand-line {
    font-size: 1.22rem;
  }

  h1 {
    margin-bottom: 38px;
    font-size: 3rem;
    line-height: 1;
  }

  .download-cluster,
  .download-button {
    width: 100%;
  }

  .signal-system {
    inset: 0 0 -0.08em;
    opacity: 0.8;
  }

  .signal-orbit {
    top: 34%;
    height: 0.36em;
    border-width: 0.035em;
  }

  .signal-mast,
  .signal-antenna {
    transform: scale(0.74);
  }

  .signal-satellite-a {
    left: 58%;
  }

  .signal-satellite-b,
  .signal-pulse-b {
    display: none;
  }

  .falling-leaves {
    top: 0;
    height: 0.9em;
  }

  .falling-leaves i {
    width: 0.1em;
    height: 0.17em;
  }

  .preview-section {
    height: 225svh;
    min-height: 1380px;
    margin-top: -42px;
  }

  .preview-sticky,
  .ai-sticky {
    padding: 28px 0 42px;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2,
  .preview-copy h3,
  .flow-copy h2,
  .proof-copy h2,
  .ai-copy h2 {
    font-size: 2.25rem;
  }

  .preview-theater {
    gap: 18px;
    padding: 14px;
  }

  .app-window-top {
    height: 38px;
  }

  .screen-stack {
    min-height: 440px;
  }

  .app-shot {
    padding: 12px;
  }

  .host-home,
  .session-view,
  .editor-view,
  .compile-view {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .host-home aside,
  .session-view aside,
  .file-tree,
  .chat-pane {
    display: none;
  }

  .host-card {
    min-height: 280px;
    padding: 22px;
  }

  .host-card strong,
  .session-main h4 {
    font-size: 2.1rem;
  }

  .host-grid {
    grid-template-columns: 1fr;
  }

  .editor-view {
    grid-template-columns: 1fr 0.92fr;
  }

  .pdf-pane {
    min-width: 0;
  }

  .paper-mini {
    width: 92%;
    min-height: 280px;
  }

  .compile-view {
    grid-template-columns: 1fr;
  }

  .compile-view aside {
    display: none;
  }

  .pdf-page {
    width: 88%;
    min-height: 340px;
  }

  .ai-section {
    height: 225svh;
    min-height: 1380px;
    padding: 0;
  }

  .ai-sticky {
    position: sticky;
    min-height: calc(100svh - var(--sticky-top));
    padding: 28px 0 58px;
  }

  .ai-layout {
    gap: 18px;
    align-content: center;
  }

  .ai-image-frame {
    aspect-ratio: 16 / 10;
  }

  .ai-copy p[data-ai-copy] {
    margin-top: 14px;
  }

  .ai-points {
    gap: 8px;
    margin-top: 18px;
  }

  .ai-points span {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 0.83rem;
    line-height: 1.2;
  }

  .ai-image-frame figcaption {
    display: none;
  }

  .slide-progress {
    bottom: 24px;
    display: flex;
  }

  .statement-section,
  .flow-section,
  .split-proof,
  .qa-section,
  .final-cta {
    min-height: auto;
    padding: 70px 0;
  }

  .statement-shell {
    gap: 42px;
  }

  .statement {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .statement-icon {
    width: 62px;
    height: 62px;
    border-width: 3px;
  }

  .statement p {
    font-size: 2.3rem;
  }

  .flow-track {
    min-height: auto;
    display: grid;
    gap: 10px;
    padding: 12px 0 12px 16px;
  }

  .flow-current {
    display: none;
  }

  .flow-track::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 24px;
    bottom: 24px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 103, 0, 0.18), var(--orange), rgba(21, 136, 74, 0.42));
  }

  .flow-step,
  .flow-step:nth-of-type(odd),
  .flow-step:nth-of-type(even) {
    width: 100%;
    align-self: stretch;
    grid-template-columns: 42px 1fr;
    padding: 12px;
  }

  .flow-step > span {
    width: 34px;
    height: 34px;
    font-size: 0.72rem;
    box-shadow:
      0 0 0 5px var(--surface),
      0 10px 20px rgba(255, 103, 0, 0.2);
  }

  .flow-step h3 {
    font-size: 1.15rem;
  }

  .flow-step p {
    font-size: 0.8rem;
  }

  .proof-photo {
    aspect-ratio: 1.15;
    transform: none;
  }

  .proof-control div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .qa-section .section-heading {
    text-align: left;
  }

  summary {
    font-size: 1rem;
  }

  .final-cta h2 {
    font-size: 3rem;
  }

  .final-wordmark-wrap {
    width: min(240px, 74vw);
  }

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

  .site-footer nav {
    flex-wrap: wrap;
  }

  .site-footer p {
    justify-self: start;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.5rem;
  }

  .screen-stack {
    min-height: 390px;
  }

  .editor-view {
    grid-template-columns: 1fr;
  }

  .pdf-pane {
    display: none;
  }

  .statement p {
    font-size: 2rem;
  }

  .flow-copy h2,
  .proof-copy h2,
  .ai-copy h2,
  .section-heading h2 {
    font-size: 2rem;
  }

  .ai-section {
    height: 215svh;
    min-height: 1180px;
  }

  .ai-sticky {
    padding-bottom: 54px;
  }

  .ai-copy p[data-ai-copy] {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .ai-points span {
    font-size: 0.78rem;
  }

  .ai-image-frame {
    aspect-ratio: 1 / 0.88;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
