@font-face {
  font-family: "Inter Tight";
  src: url("./assets/fonts/inter-tight-latin-variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

/*
 * Design tokens, following .cursor/skills/refactoring-ui. Every spatial, type,
 * colour, elevation and radius value on this page comes from one of these
 * scales — nothing is picked ad hoc.
 */
:root {
  /* Spacing: base 16, no two neighbours closer than ~25%. */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --space-11: 192px;
  --space-12: 256px;

  /* Type: px only, never em, so the scale cannot compound through nesting. */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 30px;
  --text-4xl: 36px;
  --text-5xl: 48px;
  --text-6xl: 60px;

  /* Fluid steps end on scale values, and big type shrinks faster than small. */
  --text-display: clamp(36px, 5.2vw, 60px);
  --text-section: clamp(24px, 3.3vw, 36px);
  --text-chapter: clamp(24px, 2.3vw, 30px);
  --text-lead: clamp(16px, 1.3vw, 20px);

  /* Two weights, nothing under 400. De-emphasis comes from colour, not weight. */
  --weight-normal: 400;
  --weight-bold: 600;

  /* Line-height is inversely proportional to size. */
  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.5;
  --leading-loose: 1.75;
  --measure: 34em;

  /* Tracking: tighten headlines, open up all-caps, trust the face elsewhere. */
  --tracking-tight: -.02em;
  --tracking-normal: 0;
  --tracking-caps: .05em;

  /*
   * Greys, one hue with saturation rising as lightness leaves 50%. Ratios are
   * against white: 900 17.8:1, 700 8.6:1, 600 5.6:1 all clear 4.5:1 for body
   * text; 500 (3.9:1) is large-text only and 400 (2.5:1) decorative only.
   */
  --grey-100: hsl(220, 20%, 97%);
  --grey-200: hsl(220, 16%, 92%);
  --grey-300: hsl(220, 14%, 85%);
  --grey-400: hsl(220, 10%, 66%);
  --grey-500: hsl(220, 9%, 52%);
  --grey-600: hsl(220, 10%, 42%);
  --grey-700: hsl(220, 12%, 31%);
  --grey-800: hsl(220, 15%, 20%);
  --grey-900: hsl(220, 18%, 10%);

  /*
   * Brand fields, sampled from assets/images/hero-landscape.png. The
   * illustrations own these; the rail marks each chapter with its own.
   */
  --field-teal: hsl(191, 29%, 39%);
  --field-ochre: hsl(37, 67%, 51%);
  --field-olive: hsl(76, 22%, 48%);

  /*
   * Two hues carry meaning: the focus ring, and the one word of the hero
   * headline the product is named after. Both sit on the grey ramp's hue.
   */
  --focus-500: hsl(228, 90%, 60%);
  --brand-500: hsl(220, 67%, 54%);

  /* Semantic roles. Components reference these, never the ramps directly. */
  --surface: #fff;
  --surface-raised: #fff;
  --surface-sunken: var(--grey-100);
  --surface-inverted: var(--grey-900);
  --border: var(--grey-200);
  --border-strong: var(--grey-300);
  --text-primary: var(--grey-900);
  --text-secondary: var(--grey-700);
  --text-tertiary: var(--grey-600);
  /* Large text only: 3.9:1 clears 3:1 at 24px bold, not the 4.5:1 body floor. */
  --text-quiet: var(--grey-500);
  --text-decorative: var(--grey-400);
  --on-inverted-primary: var(--grey-200);
  --on-inverted-secondary: hsl(220, 12%, 72%);
  --action: var(--grey-900);
  --action-hover: var(--grey-800);
  --action-text: #fff;

  /* Layout constants: container width and the sticky header it has to clear. */
  --frame: 1200px;
  --gutter: clamp(24px, 4.4vw, 48px);
  --section-y: clamp(64px, 8.5vw, 128px);
  --header-height: 64px;

  /* One radius personality: rounded. Controls are pills, surfaces are 12px. */
  --radius: 12px;
  --radius-full: 999px;
  --border-width: 1px;
  --border-width-thick: 2px;

  /* Fixed opacity steps rather than an eyeballed slider. */
  --opacity-1: .05;
  --opacity-2: .1;
  --opacity-3: .2;
  --opacity-4: .4;
  --opacity-6: .8;

  /*
   * Five elevations, two-part: a soft cast shadow plus a tighter contact
   * shadow that fades out as the element lifts.
   */
  --shadow-1: 0 1px 3px hsla(220, 18%, 10%, .12), 0 1px 2px hsla(220, 18%, 10%, .2);
  --shadow-2: 0 3px 6px hsla(220, 18%, 10%, .12), 0 2px 4px hsla(220, 18%, 10%, .1);
  --shadow-3: 0 10px 20px hsla(220, 18%, 10%, .12), 0 3px 6px hsla(220, 18%, 10%, .08);
  --shadow-4: 0 15px 25px hsla(220, 18%, 10%, .12), 0 5px 10px hsla(220, 18%, 10%, .05);
  --shadow-5: 0 20px 40px hsla(220, 18%, 10%, .2);
  --ring: 0 0 0 2px #fff, 0 0 0 4px hsla(228, 90%, 60%, .55);

  /* Aliases kept so component rules read in plain language. */
  --black: var(--grey-900);
  --ink: var(--text-primary);
  --ink-soft: var(--text-secondary);
  --muted: var(--text-tertiary);
  --faint: var(--text-decorative);
  --line: var(--border);
  --line-strong: var(--border-strong);
  --surface-2: var(--grey-100);
  --surface-3: var(--grey-200);
  --panel: var(--grey-100);
  --fs-display: var(--text-display);
  --fs-h2: var(--text-section);
  --fs-h3: var(--text-lg);
  --fs-lead: var(--text-lead);
  --fs-body: var(--text-base);
  --fs-small: var(--text-sm);
  --r-sm: var(--radius);
  --r-md: var(--radius);
  --r-lg: var(--radius);
  --r-xl: var(--radius);
  --r-pill: var(--radius-full);
  --shadow-sm: var(--shadow-1);
  --shadow-md: var(--shadow-2);
  --shadow-lg: var(--shadow-4);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  font-size: var(--fs-body);
  font-weight: var(--weight-normal);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }
h1, h2, h3, p, blockquote, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: var(--r-sm);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 50%;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  color: #fff;
  background: var(--black);
  font-size: var(--fs-small);
  transform: translate(-50%, -200%);
  transition: transform .2s ease;
}
.skip-link:focus-visible { transform: translate(-50%, 0); }
main:focus { outline: none; }

/* ---------- Layout primitives ---------- */

.shell {
  width: 100%;
  max-width: calc(var(--frame) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
  border-top: 1px solid var(--line);
}
/* The dark showcase supplies its own edge on both sides. */
.showcase + .section { border-top: 0; }

.section-head { max-width: 640px; }
.section-head .lead { margin-top: 16px; }

h1, h2, h3 {
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}
h1 { font-size: var(--fs-display); line-height: var(--leading-tight); letter-spacing: var(--tracking-tight); }
h2 { font-size: var(--fs-h2); line-height: var(--leading-tight); letter-spacing: var(--tracking-tight); }
h3 { font-size: var(--fs-h3); line-height: var(--leading-snug); }

.lead {
  max-width: 56ch;
  color: var(--muted);
  font-size: var(--fs-lead);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
}

.eyebrow {
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-caps);
  line-height: 1;
  text-transform: uppercase;
}
.section-head .eyebrow,
.integration-copy .eyebrow { margin-bottom: 16px; }

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

/* ---------- Buttons ---------- */

.button {
  display: inline-flex;
  min-height: var(--space-7);
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-5);
  border: var(--border-width) solid transparent;
  border-radius: var(--r-pill);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  line-height: 1;
  letter-spacing: var(--tracking-normal);
  white-space: nowrap;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.button-sm { min-height: var(--space-6); padding: 0 var(--space-4); font-size: var(--text-sm); }
/* Flat fills. A drop shadow plus an inset highlight reads as a 2013 bevel. */
.button-dark {
  color: #fff;
  background: var(--black);
}
.button-dark:hover { background: var(--grey-800); }
.button-light {
  border-color: var(--grey-500);
  background: var(--surface);
}
.button-light:hover { border-color: var(--grey-700); background: var(--surface-sunken); }
.button:active { transform: translateY(1px); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: hsla(0, 0%, 100%, .8);
  border-bottom: 1px solid transparent;
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  transition: border-color .2s ease, background .2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: hsla(0, 0%, 100%, .8);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}
.brand { display: inline-flex; align-items: center; width: max-content; line-height: 1; }
.brand-logo { width: 94px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 32px; }
.desktop-nav a,
.header-login {
  color: var(--ink-soft);
  font-size: var(--text-sm);
  font-weight: var(--weight-normal);
  letter-spacing: var(--tracking-normal);
  transition: color .18s ease;
}
.desktop-nav a:hover,
.header-login:hover { color: var(--ink); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.menu-toggle, .mobile-menu { display: none; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding-block: clamp(64px, 8vw, 96px) clamp(128px, 16vw, 256px);
  overflow: hidden;
  isolation: isolate;
}
.hero-backdrop { position: absolute; z-index: 0; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute;
  top: -18%;
  left: 50%;
  width: min(1024px, 120%);
  aspect-ratio: 2 / 1;
  background: radial-gradient(ellipse at 50% 40%, hsla(220, 18%, 10%, .05) 0%, hsla(220, 18%, 10%, 0) 62%);
  transform: translateX(-50%);
}
/*
 * The Austrian landscape is brand texture, not a subject: it sits below the
 * copy, dissolves into the page from the top and never competes for contrast.
 */
.hero-horizon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: auto;
  opacity: .78;
  filter: saturate(.94);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, hsla(220, 18%, 10%, .35) 46%, var(--grey-900) 80%);
  mask-image: linear-gradient(to bottom, transparent 0%, hsla(220, 18%, 10%, .35) 46%, var(--grey-900) 80%);
  transform: translate3d(0, var(--hero-parallax, 0px), 0);
  will-change: transform;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero h1 { max-width: 21ch; }
.hero-accent { color: var(--brand-500); }
.hero-sub {
  /* Wide enough to hold the first sentence on one line, as the mock breaks it. */
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
}
.hero .cta-row { margin-top: 32px; }
.hero-note { margin-top: 16px; color: var(--muted); font-size: var(--fs-small); }

.composer {
  width: min(512px, 100%);
  margin-top: clamp(48px, 6vw, 64px);
  padding: 16px 16px 12px;
  border: 1px solid hsla(220, 18%, 10%, .07);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
  text-align: left;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translate3d(0, var(--card-parallax, 0px), 0);
}
.composer-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: var(--weight-normal);
  letter-spacing: var(--tracking-normal);
}
.composer-head img { width: 16px; height: 16px; opacity: .55; }
.composer-line {
  display: block;
  min-height: 3em;
  margin-top: 8px;
  color: var(--ink);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
}
.type-caret {
  display: inline-block;
  width: 1.5px;
  height: 16px;
  margin-left: 2px;
  vertical-align: -3px;
  background: var(--ink);
  animation: caret-blink 1.05s steps(2, jump-none) infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }
.composer-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}
.composer-source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 8px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  color: var(--muted);
  font-size: var(--text-xs);
}
.composer-source img { width: 16px; height: 16px; }
.composer-send {
  display: grid;
  width: 32px;
  height: 32px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--black);
  box-shadow: var(--shadow-sm);
  transition: background .18s ease;
}
.composer-send:hover { background: var(--grey-800); }
.composer-send svg { width: 16px; height: 16px; }

/* ---------- Model band ---------- */

.models { border-top: 1px solid var(--line); }
.models-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
  padding-block: 24px;
}
.models-label { color: var(--muted); font-size: var(--fs-small); letter-spacing: var(--tracking-normal); }
.models-list { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
/* The marks are greyscale, so the frame is what separates them, not a rule. */
.models-list li {
  display: grid;
  width: 40px;
  height: 40px;
  flex: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface-raised);
}
.models-list img { width: 22px; height: 22px; }

/* ---------- Capabilities: Verstehen / Erstellen / Automatisieren ---------- */

/*
 * The three promises are the chapter titles, so they stay on screen while their
 * own chapter scrolls underneath. Sticky is scoped to .cap-chapters: once
 * Automatisieren has passed, the head leaves with the section on its own.
 */
.cap-chapters { position: relative; }
.cap-chapters-head {
  position: sticky;
  z-index: 20;
  top: var(--header-height);
  padding-block: var(--space-4) var(--space-3);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.cap-chapters-head .eyebrow { margin-bottom: var(--space-3); }

.cap-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  font-size: var(--text-chapter);
  line-height: var(--leading-tight);
}

/*
 * The ink is painted rather than faded: a two-stop gradient clipped to the
 * glyphs, slid from the quiet half to the ink half, so focus reads as a wipe
 * across the word instead of a dimmer.
 */
.cap-chapter {
  background-image: linear-gradient(90deg, var(--ink) 0 50%, var(--text-quiet) 50% 100%);
  background-repeat: no-repeat;
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transition: background-position .55s cubic-bezier(.4, 0, .2, 1);
}
.cap-chapter.is-active { background-position: 0 0; }
.cap-chapter:hover { background-position: 0 0; }
/* Clipped text has no colour of its own, so high-contrast mode needs the fill. */
@media (forced-colors: active) {
  .cap-chapter { background-image: none; color: LinkText; -webkit-text-fill-color: currentColor; }
  .cap-chapter.is-active { color: CanvasText; }
}

.cap-panel {
  padding-block: clamp(32px, 3.2vw, 48px) 0;
  /* The head is opaque, so anchor jumps have to clear it as well as the nav. */
  scroll-margin-top: calc(var(--header-height) + var(--space-9));
}
.cap-panel + .cap-panel { border-top: 1px solid var(--line); }

/*
 * One cell per argument, separated by hairlines. Chapter one pairs two
 * arguments; chapter two alternates split rows; chapter three is a single
 * wide row. Nothing repeats, and the section stays compact.
 */
.cap-cell {
  display: grid;
  gap: clamp(16px, 2.4vw, 32px);
  padding-block: clamp(16px, 2.2vw, 32px);
  border-top: 1px solid var(--line);
  align-items: center;
}
.cap-cell:first-of-type { padding-top: 0; border-top: 0; }
.cap-cell--wide { grid-template-columns: minmax(0, 1fr); }
.cap-cell--split { grid-template-columns: minmax(0, 1.42fr) minmax(0, 1fr); }
.cap-cell--split.is-flipped { grid-template-columns: minmax(0, 1fr) minmax(0, 1.42fr); }
.cap-cell--pair { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; align-items: start; }
.cap-sub:first-child { padding-right: clamp(16px, 2.2vw, 32px); }
.cap-sub:last-child {
  padding-left: clamp(16px, 2.2vw, 32px);
  border-left: 1px solid var(--line);
}

.cap-copy h4 {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
}
.cap-copy p {
  max-width: 46ch;
  margin-top: 8px;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
}
.cap-cell--wide .cap-copy p { max-width: 64ch; }
.cap-cell--wide .cap-copy,
.cap-sub .cap-copy { margin-bottom: clamp(12px, 1.6vw, 24px); }

.cap-art { margin: 0; }
.cap-art--phone { display: none; aspect-ratio: 780 / 1240; }
.cap-art img,
.cap-clip { width: 100%; height: auto; border-radius: var(--r-lg); }

/*
 * Two of the wide illustrations were composed with a third of the ochre field
 * left empty — documents ends at y 512 of 760, skills occupies 71 to 485 —
 * which made them tower over their two lines of copy. The figure sets the
 * visible frame and the image covers it, so it is cropped to its content,
 * never stretched. Skills keeps the 600 band and pins to the top of the
 * still, so the toast stays inside the same frame height. The other five
 * use 87% or more of their height and stay as they are. Re-rendering an
 * illustration can move these bounds; measure first.
 */
.cap-art--trim { overflow: clip; border-radius: var(--r-lg); }
.cap-art--trim img,
.cap-art--trim .cap-clip { height: 100%; border-radius: 0; object-fit: cover; }
.cap-art--trim-bottom { aspect-ratio: 1880 / 520; }
.cap-art--trim-bottom img { object-position: 50% 0; }
.cap-art--trim-band { aspect-ratio: 1880 / 600; }
.cap-art--trim-band img,
.cap-art--trim-band .cap-clip { object-position: 50% 0; }

/* ---------- Product showcase (dark) ---------- */

.showcase {
  position: relative;
  overflow: hidden;
  border-top: 0;
  background: var(--black);
  color: #fff;
  isolation: isolate;
}
.showcase::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  width: min(1280px, 130%);
  aspect-ratio: 2 / 1;
  background: radial-gradient(ellipse at 50% 0%, hsla(0, 0%, 100%, .1) 0%, hsla(220, 18%, 10%, 0) 62%);
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}
.showcase > .shell { position: relative; z-index: 1; }
.showcase .eyebrow { color: var(--on-inverted-secondary); }
.showcase .lead { color: var(--on-inverted-secondary); }

.app-window {
  margin-top: clamp(32px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid hsla(0, 0%, 100%, .1);
  border-radius: var(--r-lg);
  background: var(--grey-900);
  box-shadow: 0 40px 90px -30px hsla(220, 18%, 10%, .8);
}
.app-chrome {
  position: relative;
  display: flex;
  height: 32px;
  align-items: center;
  padding-inline: 16px;
  border-bottom: 1px solid hsla(0, 0%, 100%, .05);
}
.app-dots { display: flex; gap: 8px; }
.app-dots i { width: 8px; height: 8px; border-radius: 50%; background: hsla(0, 0%, 100%, .2); }
.app-url {
  position: absolute;
  left: 50%;
  color: var(--on-inverted-secondary);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-normal);
  transform: translateX(-50%);
}
.app-viewport { position: relative; aspect-ratio: 16 / 9; background: var(--grey-100); }
.showcase-video { width: 100%; height: 100%; object-fit: cover; }
.video-toggle {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid hsla(0, 0%, 100%, .2);
  border-radius: 50%;
  color: #fff;
  background: hsla(220, 18%, 10%, .55);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .18s ease;
}
.video-toggle:hover { background: hsla(220, 18%, 10%, .78); }
.video-toggle svg { width: 16px; height: 16px; }
.video-toggle .icon-pause,
.app-window.is-playing .video-toggle .icon-play { display: none; }
.app-window.is-playing .video-toggle .icon-pause { display: block; }

/* ---------- Integration ---------- */

.integration-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.integration-copy .lead { margin-top: 16px; }
.integration-contact {
  max-width: 44ch;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}
.integration-copy .button { margin-top: 24px; }

.orbit {
  --orbit-size: 512px;
  position: relative;
  width: var(--orbit-size);
  height: var(--orbit-size);
  max-width: 100%;
  margin-inline: auto;
}
.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.orbit-ring--outer { width: 85%; height: 85%; }
.orbit-ring--inner { width: 49%; height: 49%; border-color: var(--line-strong); }
.orbit-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-4);
  transform: translate(-50%, -50%);
}
.orbit-core img { width: 32px; height: 32px; object-fit: contain; }
.orbit-track { position: absolute; z-index: 1; inset: 0; }
.orbit-track--outer { --step: 60deg; --radius: calc(var(--orbit-size) * .425); --size: 62px; animation: orbit-cw 90s linear infinite; }
.orbit-track--inner { --step: 90deg; --radius: calc(var(--orbit-size) * .245); --size: 54px; animation: orbit-ccw 120s linear infinite; }
.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: var(--size);
  height: var(--size);
  margin-top: calc(var(--size) / -2);
  margin-left: calc(var(--size) / -2);
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px hsla(220, 18%, 10%, .04), 0 8px 20px -8px hsla(220, 18%, 10%, .16);
  transform: rotate(calc(var(--i) * var(--step))) translateY(calc(var(--radius) * -1)) rotate(calc(var(--i) * var(--step) * -1));
}
.orbit-item img { width: 55%; height: 55%; object-fit: contain; }
.orbit-track--outer .orbit-item img { animation: orbit-ccw 90s linear infinite; }
.orbit-track--inner .orbit-item img { animation: orbit-cw 120s linear infinite; }
@keyframes orbit-cw { to { transform: rotate(360deg); } }
@keyframes orbit-ccw { to { transform: rotate(-360deg); } }

/* ---------- Security ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(32px, 4vw, 48px);
}
.feature-grid li {
  padding: 24px;
  border-radius: var(--r-lg);
  background: var(--surface-sunken);
}
.feature-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-grid strong {
  display: block;
  margin-top: 16px;
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
}
.feature-grid li > span:last-child {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
}
.security-note { margin-top: 24px; color: var(--muted); font-size: var(--fs-small); }
.security-note a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; }
.security-note a:hover { color: var(--ink); }

/* ---------- Pricing ---------- */

.pricing-head {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.pricing-head > div:first-child { max-width: 640px; }
.billing-toggle {
  display: flex;
  flex: none;
  padding: 2px;
  border-radius: var(--r-pill);
  background: var(--surface-sunken);
}
.billing-toggle button {
  display: inline-flex;
  height: 32px;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--r-pill);
  color: var(--muted);
  background: transparent;
  font-size: var(--text-sm);
  font-weight: var(--weight-normal);
  cursor: pointer;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}
.billing-toggle button em { color: var(--ink); font-style: normal; font-size: var(--text-xs); }
.billing-toggle button.is-active { color: var(--ink); font-weight: var(--weight-bold); background: var(--surface-raised); box-shadow: var(--shadow-1); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(32px, 4vw, 48px);
}
.price-card {
  display: flex;
  flex-direction: column;
  padding: 24px 24px 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
}
.price-card-featured {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.price-name {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-normal);
}
.popular {
  padding: var(--space-1) var(--space-3);
  border-radius: var(--r-pill);
  color: #fff;
  background: var(--black);
  font-size: var(--text-xs);
  font-weight: var(--weight-normal);
  letter-spacing: var(--tracking-normal);
}
.price-desc { margin-top: 8px; color: var(--muted); font-size: var(--fs-small); line-height: var(--leading-normal); }
.price {
  margin-top: 16px;
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  line-height: 1;
  letter-spacing: var(--tracking-tight);
  font-variant-numeric: tabular-nums;
}
.price-unit { margin-top: 8px; color: var(--muted); font-size: var(--fs-small); }
.price-card ul {
  display: grid;
  flex: 1;
  align-content: start;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
}
.price-card li::before {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--surface-3) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cpath d='M5.2 9.8l2.7 2.7 5.4-5.6' fill='none' stroke='%23111214' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 19px 19px no-repeat;
  content: "";
}
.price-card .button { width: 100%; margin-top: 24px; }

/*
 * The paid extras are a second axis, not a third tier: quieter surfaces, no
 * price, so they never read as the plan a visitor should compare against.
 */
.addons { margin-top: clamp(32px, 4vw, 48px); padding-top: clamp(32px, 4vw, 48px); border-top: 1px solid var(--line); }
.addons-title {
  margin-top: 16px;
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
}
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.addon-grid li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: var(--r-lg);
  background: var(--surface-sunken);
}
.addon-grid strong { font-size: var(--text-base); font-weight: var(--weight-bold); letter-spacing: var(--tracking-tight); }
.addon-grid span { color: var(--muted); font-size: var(--text-sm); line-height: var(--leading-normal); }
.addon-grid em {
  margin-top: auto;
  color: var(--ink-soft);
  font-size: var(--text-xs);
  font-style: normal;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
}
.addons-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}
.addons-foot p { color: var(--muted); font-size: var(--fs-small); }

/* ---------- Final CTA ---------- */

.final-cta {
  padding-block: var(--section-y);
  border-top: 1px solid var(--line);
}
.final-card {
  --card-pad-x: clamp(24px, 4vw, 56px);
  overflow: hidden;
  padding: clamp(48px, 5vw, 64px) var(--card-pad-x) 0;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, #fff 0%, var(--surface-2) 100%);
  text-align: center;
}
.final-inner { max-width: 680px; margin-inline: auto; }
.final-inner p {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: var(--fs-lead);
}
.final-inner .cta-row { margin-top: 32px; }
.final-horizon {
  width: calc(100% + var(--card-pad-x) * 2);
  max-width: none;
  height: auto;
  margin: clamp(24px, 3vw, 32px) calc(var(--card-pad-x) * -1) 0;
  opacity: .88;
  filter: saturate(.94);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, hsla(220, 18%, 10%, .4) 40%, var(--grey-900) 76%);
  mask-image: linear-gradient(to bottom, transparent 0%, hsla(220, 18%, 10%, .4) 40%, var(--grey-900) 76%);
}

/* ---------- Footer ---------- */

.site-footer {
  padding-block: clamp(48px, 6vw, 96px) 24px;
  color: #fff;
  background: var(--black);
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 2fr);
  gap: clamp(32px, 6vw, 96px);
}
.brand-inverse { color: #fff; }
.footer-brand > p {
  max-width: 26ch;
  margin-top: 24px;
  color: var(--on-inverted-secondary);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
}
.footer-mail {
  display: inline-block;
  margin-top: 16px;
  color: #fff;
  font-size: var(--fs-small);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: hsla(0, 0%, 100%, .4);
}
.footer-mail:hover { text-decoration-color: #fff; }
.footer-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-links p {
  margin-bottom: 4px;
  color: var(--on-inverted-secondary);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
}
.footer-links a { color: var(--on-inverted-primary); font-size: var(--fs-small); transition: color .18s ease; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  margin-top: clamp(48px, 5vw, 64px);
  padding-top: 24px;
}
.footer-bottom::before { background: hsla(0, 0%, 100%, .1); }
.copyright, .footer-origin { color: var(--on-inverted-secondary); font-size: var(--text-xs); }

/* ---------- Legal pages ---------- */

.legal-body { background: var(--surface); }
.legal-main { padding-block: clamp(64px, 7vw, 96px) clamp(64px, 8vw, 96px); }
.legal-article { width: min(100%, 768px); }
.legal-kicker { color: var(--muted); font-size: var(--text-xs); font-weight: var(--weight-bold); letter-spacing: var(--tracking-caps); text-transform: uppercase; }
.legal-article h1 { margin-top: 12px; font-size: clamp(30px, 4.4vw, 48px); }
.legal-updated { margin-top: 12px; color: var(--muted); font-size: var(--fs-small); }
.legal-article h2 { margin: 48px 0 12px; font-size: var(--text-xl); letter-spacing: var(--tracking-tight); }
.legal-article p, .legal-article li { color: var(--ink-soft); font-size: var(--text-base); line-height: var(--leading-normal); }
.legal-article p { margin-top: 12px; }
.legal-article ul { margin: 12px 0 0; padding-left: 16px; list-style: disc; }
.legal-article li { margin-top: 8px; }
.legal-article a { text-decoration: underline; text-underline-offset: 3px; }
.legal-article a:hover { opacity: .62; }
.legal-facts { display: grid; gap: 12px; margin: 24px 0 0; }
.legal-facts div { display: grid; grid-template-columns: minmax(120px, 180px) 1fr; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.legal-facts dt { color: var(--muted); font-size: var(--text-xs); }
.legal-facts dd { margin: 0; }
.legal-table { width: 100%; margin-top: 16px; border-collapse: collapse; font-size: var(--text-sm); line-height: var(--leading-normal); }
.legal-table th, .legal-table td { padding: 8px 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-table th { font-weight: var(--weight-bold); }

/* ---------- Contact ---------- */

.contact-body { background: var(--surface); }
.contact-main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(48px, 6vw, 80px) clamp(64px, 8vw, 128px);
}
.contact-backdrop { position: absolute; z-index: 0; inset: 0; pointer-events: none; }
.contact-horizon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: auto;
  opacity: .55;
  filter: saturate(.94);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, hsla(220, 18%, 10%, .28) 55%, var(--grey-900) 88%);
  mask-image: linear-gradient(to bottom, transparent 0%, hsla(220, 18%, 10%, .28) 55%, var(--grey-900) 88%);
}
.contact-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 28rem);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.contact-copy h1 {
  max-width: 12ch;
  margin-top: 12px;
  font-size: var(--fs-display);
}
.contact-lead {
  max-width: var(--measure);
  margin-top: 20px;
  color: var(--muted);
  font-size: var(--fs-lead);
  line-height: var(--leading-normal);
}
.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}
.contact-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}
.contact-points li::before {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--surface-3) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cpath d='M5.2 9.8l2.7 2.7 5.4-5.6' fill='none' stroke='%23111214' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 19px 19px no-repeat;
  content: "";
}
.contact-aside {
  margin-top: 28px;
  color: var(--muted);
  font-size: var(--fs-small);
  line-height: var(--leading-normal);
}
.contact-aside a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-panel {
  padding: 28px 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-2);
}
.contact-form-kicker {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
}
.contact-field { display: grid; gap: 6px; margin-top: 14px; }
.contact-field:first-of-type { margin-top: 0; }
.contact-field label {
  color: var(--ink-soft);
  font-size: var(--text-sm);
  font-weight: var(--weight-normal);
}
.contact-form { position: relative; }
.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--ink);
  background: var(--surface);
  font: inherit;
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}
.contact-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath d='M4 6.5 8 10.5 12 6.5' stroke='%234B5563' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.contact-field textarea { min-height: 140px; resize: vertical; }
.contact-field input:focus-visible,
.contact-field select:focus-visible,
.contact-field textarea:focus-visible { border-color: transparent; }
.contact-field .is-invalid { border-color: var(--grey-700); }
.contact-form .button { width: 100%; margin-top: 22px; }
.contact-form .button[disabled] { opacity: var(--opacity-6); cursor: wait; }
.contact-error {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
}
.contact-legal {
  margin-top: 14px;
  color: var(--muted);
  font-size: var(--text-xs);
  line-height: var(--leading-normal);
}
.contact-legal a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.contact-success h2 { margin: 0 0 12px; font-size: var(--text-2xl); }
.contact-success p {
  color: var(--muted);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}
.contact-success p a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-success .button { margin-top: 24px; }

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s cubic-bezier(.2, .8, .2, 1), transform .7s cubic-bezier(.2, .8, .2, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */

@media (max-width: 1180px) {
  .orbit { --orbit-size: 384px; }
}

/*
 * Logo + five nav links + three actions need the full frame. Collapse
 * before the action cluster can sit against Preise again.
 */
@media (max-width: 1180px) {
  :root { --header-height: 56px; }

  .header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
  .desktop-nav,
  .header-inner .header-actions { display: none; }
  .menu-toggle {
    display: grid;
    width: 32px;
    height: 32px;
    place-content: center;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span { display: block; width: 16px; height: 2px; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6.5px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 8px;
    left: 8px;
    display: flex;
    max-height: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 0 0 var(--r-md) var(--r-md);
    background: #fff;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: max-height .35s ease, opacity .25s ease, padding .35s ease, border-color .25s ease;
  }
  .mobile-menu.is-open { max-height: 512px; padding: 8px 16px 16px; border-color: var(--line); opacity: 1; }
  .mobile-menu a:not(.button) { padding: 12px 4px; border-bottom: 1px solid var(--line); font-size: var(--text-base); font-weight: var(--weight-normal); }
  .mobile-menu .button { margin-top: 16px; }
  .mobile-menu .button + .button { margin-top: 8px; }
}

@media (max-width: 980px) {
  .integration-layout { grid-template-columns: minmax(0, 1fr); }
  .orbit { --orbit-size: min(420px, 100%); }
  .feature-grid { grid-template-columns: minmax(0, 1fr); }
  .pricing-head { flex-direction: column; align-items: flex-start; }
  .addon-grid { grid-template-columns: minmax(0, 1fr); }
  /* Below this width the copy column of a split cell gets too narrow to read. */
  .cap-cell--split,
  .cap-cell--split.is-flipped { grid-template-columns: minmax(0, 1fr); }
  .cap-cell--split .cap-copy { order: -1; }
  .cap-cell--pair { grid-template-columns: minmax(0, 1fr); gap: clamp(16px, 3vw, 32px); }
  .cap-sub:first-child { padding-right: 0; }
  .cap-sub:last-child { padding-left: 0; padding-top: clamp(16px, 3vw, 32px); border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 809px) {
  .hero { padding-top: 48px; }
  .hero h1 { max-width: none; }
  .hero-sub {
    /* First sentence is 352px at 16px. Size to the viewport minus gutters
       and 6px Safari slack — 16px still does not fit a 390. */
    margin-top: 16px;
    font-size: clamp(14px, calc((100vw - 54px) * 16 / 352), 16px);
  }
  .hero .cta-row { display: grid; width: 100%; gap: 8px; margin-top: 24px; }
  .hero .cta-row .button { width: 100%; }
  .composer { margin-top: 32px; }
  .composer-line { font-size: var(--text-base); }
  .composer-source { font-size: var(--text-xs); }

  .models-inner { flex-direction: column; align-items: flex-start; gap: 12px; padding-block: 24px; }

  /* The eyebrow is the first thing to go: the floating head has to stay short. */
  .cap-chapters-head { padding-block: var(--space-3); }
  .cap-chapters-head .eyebrow { display: none; }
  .cap-nav { font-size: var(--text-2xl); gap: var(--space-1) var(--space-3); }
  .cap-panel { scroll-margin-top: calc(var(--header-height) + var(--space-8)); }

  .cap-cell,
  .cap-cell--split,
  .cap-cell--split.is-flipped { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  /* Copy always leads on narrow screens, whichever side it sits on above. */
  .cap-cell .cap-copy { order: -1; }
  /* Wide skills clip is unreadably small here; the stacked twin takes over. */
  .cap-art--desk { display: none; }
  .cap-art--phone { display: block; }

  .hero-horizon { width: 190%; margin-left: -45%; }
  /* The ring is wider than its box, so the section clips instead of scrolling. */
  .integration { overflow-x: clip; }
  .orbit { --orbit-size: min(300px, 74vw); }
  .orbit-core { width: 64px; height: 64px; }
  .orbit-core img { width: 24px; height: 24px; }
  .orbit-track--outer { --size: 50px; }
  .orbit-track--inner { --size: 44px; }

  .pricing-grid { grid-template-columns: minmax(0, 1fr); }
  .billing-toggle { align-self: stretch; }
  .billing-toggle button { flex: 1; justify-content: center; }

  .contact-shell { grid-template-columns: minmax(0, 1fr); }
  .contact-copy h1 { max-width: none; }
  .contact-panel { padding: 24px; }

  .final-inner .cta-row { display: grid; gap: 8px; }
  .final-inner .cta-row .button { width: 100%; }

  .footer-inner { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-links > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-horizon, .composer { transform: none; }
}
