/* ==========================================================================
   SeatOS marketing site
   Brand palette, typography and layout per the Claude Design handoff.
   ========================================================================== */

:root {
  --cream: #F7F1EB;
  --ink: #252020;
  --orange: #F6AA01;
  --orange-hi: #FFBB1F;
  --purple: #6031D3;
  --teal: #22C9CD;
  --pink: #E84976;
  --green: #15A932;
  --white: #FFFFFF;
  --grey: #A0A0A0;
  --grey-line: #E1E1E1;
  --body-text: #4a4444;
  --hairline: #E9E0D6;
  --dark-muted: #B9B2AA;
  --container: 1240px;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--purple); }

/* figure and blockquote ship a UA margin of 1em 40px — it would silently eat
   into any grid track they sit in. */
figure, blockquote { margin: 0; }

img { max-width: 100%; }

/* Layout classes below set `display`, which would otherwise beat the UA rule. */
[hidden] { display: none !important; }

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

.container { max-width: var(--container); margin: 0 auto; }
.section-pad { padding: 96px 24px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   Animation
   -------------------------------------------------------------------------- */

@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes knob-nudge {
  0%, 100% { transform: translateX(48px); }
  25% { transform: translateX(26px); }
  50% { transform: translateX(48px); }
  70% { transform: translateX(36px); }
  85% { transform: translateX(48px); }
}
@keyframes ring-pulse {
  0% { box-shadow: 0 0 0 0 rgba(246, 170, 1, 0.55); }
  100% { box-shadow: 0 0 0 18px rgba(246, 170, 1, 0); }
}
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes marquee-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* Scroll reveal — only applied when JS is running, so the page is readable without it. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 235, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.site-header__bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.site-header__logo { display: flex; align-items: center; }
.site-header__logo img { height: 26px; width: auto; display: block; }

.nav-desktop {
  display: flex;
  gap: 8px;
  margin-left: auto;
  align-items: center;
  flex-wrap: wrap;
}
.nav-desktop a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 999px;
}
.nav-desktop a:hover { background: #F0E7DC; }

.btn-header {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  background: var(--orange);
  padding: 11px 22px;
  border-radius: 999px;
  margin-left: 8px;
  box-shadow: 0 2px 0 rgba(37, 32, 32, 0.15);
}
.nav-desktop .btn-header:hover { background: var(--orange-hi); color: var(--ink); }

.nav-mobile { display: none; margin-left: auto; align-items: center; }
.nav-mobile__btn {
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: var(--white);
  cursor: pointer;
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  font-family: var(--font-display);
  font-weight: 600;
  box-shadow: 0 1px 0 rgba(37, 32, 32, 0.06);
}
.nav-mobile__icon { font-size: 16px; }

.nav-drawer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 20px 18px;
  border-top: 1px solid var(--hairline);
}
.nav-drawer[hidden] { display: none; }
.nav-drawer a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  padding: 13px 10px;
  border-radius: 12px;
}
.nav-drawer a:active { background: #F0E7DC; }
.nav-drawer .btn-header {
  padding: 14px 10px;
  border-radius: 14px;
  text-align: center;
  margin: 8px 0 0;
}
.nav-drawer .btn-header:active { background: var(--orange-hi); }

/* --------------------------------------------------------------------------
   Buttons and links
   -------------------------------------------------------------------------- */

.btn-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  background: var(--orange);
  color: var(--ink);
  padding: 15px 32px;
  border-radius: 999px;
  box-shadow: 0 3px 0 rgba(37, 32, 32, 0.15);
}
.btn-primary:hover { background: var(--orange-hi); color: var(--ink); transform: translateY(-2px); }

.btn-dark {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  background: var(--ink);
  color: var(--cream);
  padding: 16px 36px;
  border-radius: 999px;
}
.btn-dark:hover { background: #3a3434; color: var(--white); transform: translateY(-2px); }

.btn-dark--sm {
  margin-top: 32px;
  font-size: 16px;
  padding: 14px 30px;
}
.btn-dark--sm:hover { transform: none; }

.btn-outline {
  display: inline-block;
  margin-top: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 12px 26px;
  border-radius: 999px;
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

/* Shown only on narrow screens, below the visual rather than above it. */
.btn-outline--mobile { display: none; margin-top: 20px; text-align: center; }

.link-underline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}
.link-underline:hover { color: var(--purple); border-bottom-color: var(--purple); }

.link-underline--gold {
  margin-top: 24px;
  font-size: 15px;
  color: var(--orange);
  border-bottom-color: rgba(246, 170, 1, 0.4);
}
.link-underline--gold:hover { color: var(--orange-hi); border-bottom-color: var(--orange-hi); }
.link-underline--gold:focus-visible { outline-color: var(--orange); }

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

.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 24px 72px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero__lede {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  max-width: 480px;
  margin: 22px 0 0;
  color: var(--body-text);
}
.hero__actions {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Toggle — the signature interaction, echoing the SeatOS logo mark. */
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.toggle-row__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  transition: opacity .4s;
  opacity: 0.35;
}
.toggle-row__label.is-on { opacity: 1; }

.toggle {
  width: 96px;
  height: 48px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
  transition: background .4s;
  background: var(--orange);
  box-shadow: inset 0 2px 6px rgba(37, 32, 32, 0.2);
}
.toggle:focus-visible { outline: 4px solid var(--purple); outline-offset: 3px; }
.toggle[aria-checked="false"] { background: #C9C2BA; }
.toggle__knob {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  transition: transform .4s cubic-bezier(.34, 1.4, .64, 1);
  transform: translateX(48px);
}
.toggle[aria-checked="false"] .toggle__knob { transform: translateX(0); }
.toggle.is-nudging { animation: ring-pulse 1.4s ease-out; }
.toggle.is-nudging[aria-checked="true"] .toggle__knob { animation: knob-nudge 1.4s ease-in-out; }

.hero-visual { position: relative; min-height: 430px; }
.hero-layer {
  position: absolute;
  inset: 0;
  transition: opacity .5s, transform .5s;
}
.hero-layer--new { opacity: 1; transform: scale(1); pointer-events: auto; }
.hero-layer--old { opacity: 0; transform: scale(0.97); pointer-events: none; }
.hero-visual.is-old .hero-layer--new { opacity: 0; transform: scale(0.97); pointer-events: none; }
.hero-visual.is-old .hero-layer--old { opacity: 1; transform: scale(1); pointer-events: auto; }

/* Stylised platform render — deliberately not real product UI. */
.dash {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(37, 32, 32, 0.10);
  padding: 20px;
}
.dash__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid #EFEAE3;
  flex-wrap: wrap;
}
.dash__dot { width: 10px; height: 10px; border-radius: 50%; }
.dash__title {
  margin-left: 10px;
  background: var(--cream);
  border-radius: 999px;
  padding: 5px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
}
.dash__live {
  margin-left: auto;
  background: var(--teal);
  border-radius: 999px;
  padding: 5px 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  color: var(--white);
}
.dash__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.dash__tile { background: var(--cream); border-radius: 16px; padding: 12px 14px; }
.dash__tile-k { font-size: 11px; color: var(--grey); }
.dash__tile-v { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.dash__split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 12px; margin-top: 12px; }
.dash__bars {
  background: var(--cream);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 110px;
}
.dash__bars span { flex: 1; border-radius: 7px 7px 3px 3px; }
.dash__seatmap { background: var(--cream); border-radius: 16px; padding: 14px; }
.dash__seatmap-k { font-size: 11px; color: var(--grey); margin-bottom: 8px; }

.seatgrid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 4px; }
.seatgrid span { aspect-ratio: 1; border-radius: 4px; background: var(--grey-line); }
.seatgrid .is-sold { background: var(--green); }
.seatgrid .is-held { background: var(--orange); }
.seatgrid--lg { gap: 5px; }
.seatgrid--lg span { border-radius: 5px; }

.hero-pill {
  position: absolute;
  color: var(--white);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
}
.hero-pill--growth {
  top: -14px;
  right: -6px;
  background: var(--green);
  box-shadow: 0 8px 20px rgba(21, 169, 50, 0.3);
  animation: floaty 5s ease-in-out infinite;
}
/* Sits in its own vertical band, mid-card, so it can never meet the other two
   however narrow the viewport gets. Ink on teal rather than white — white on
   teal is only 2:1. */
.hero-pill--truth {
  top: 46%;
  left: -6px;
  background: var(--teal);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(34, 201, 205, 0.32);
  animation: floaty 5.5s ease-in-out infinite;
}
.hero-pill--api {
  bottom: -14px;
  left: -6px;
  background: var(--purple);
  box-shadow: 0 8px 20px rgba(96, 49, 211, 0.3);
  animation: floaty 6s ease-in-out infinite;
}

/* The old way: the same space, as chaos. */
.chaos {
  position: relative;
  height: 100%;
  min-height: 100%;
  background: #ECE8E2;
  border-radius: 24px;
  overflow: hidden;
}
.chaos__card {
  position: absolute;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(37, 32, 32, 0.12);
}
.chaos__sheet { top: 7%; left: 5%; width: 48%; padding: 12px; transform: rotate(-3deg); }
.chaos__sheet-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  color: var(--grey);
  margin-bottom: 6px;
}
.chaos__sheet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.chaos__sheet-grid span { height: 12px; border-radius: 2px; background: #EFEAE3; }
.chaos__sheet-grid .is-filled { background: var(--grey-line); }
.chaos__sheet-grid .is-clash { background: #F3D9DF; }
.chaos__sheet-warn { margin-top: 6px; font-size: 10px; color: #C75B77; font-weight: 600; }
.chaos__note {
  position: absolute;
  top: 10%;
  right: 6%;
  width: 30%;
  background: #EDE3B8;
  border-radius: 6px;
  padding: 12px;
  transform: rotate(4deg);
  box-shadow: 0 10px 24px rgba(37, 32, 32, 0.12);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
  color: #6b6353;
}
.chaos__stamp {
  position: absolute;
  top: 44%;
  right: 14%;
  background: #C75B77;
  color: var(--white);
  border-radius: 8px;
  padding: 9px 20px;
  transform: rotate(-6deg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 24px rgba(37, 32, 32, 0.15);
}
.chaos__slip { bottom: 24%; left: 8%; width: 34%; padding: 10px 12px; transform: rotate(2deg); }
.chaos__queue { bottom: 8%; right: 6%; width: 36%; padding: 10px 12px; transform: rotate(-2deg); }
.chaos__k { font-size: 10px; color: var(--grey); }
.chaos__v { font-size: 12px; color: #6b6560; line-height: 1.4; }
.chaos__dots { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 5px; }
.chaos__dots span { width: 12px; height: 12px; border-radius: 50%; background: #B9B2AA; }
.chaos__stale {
  position: absolute;
  top: 36%;
  left: 34%;
  background: var(--white);
  border: 1px dashed #B9B2AA;
  border-radius: 999px;
  padding: 7px 16px;
  transform: rotate(1deg);
  font-size: 11px;
  color: #8a827a;
}

/* --------------------------------------------------------------------------
   Section headings
   -------------------------------------------------------------------------- */

.eyebrow {
  display: inline-block;
  border-radius: 999px;
  padding: 8px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
}
.eyebrow--dark { background: rgba(247, 241, 235, 0.12); color: var(--dark-muted); }
.eyebrow--orange { background: var(--orange); color: var(--ink); }
.eyebrow--purple { background: var(--purple); color: var(--white); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto; }
.section-head h2,
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.section-head__sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--body-text);
  margin: 18px auto 0;
  max-width: 560px;
}

/* --------------------------------------------------------------------------
   The Old Way
   -------------------------------------------------------------------------- */

.old-way { background: var(--ink); color: var(--cream); }
.old-way .section-head h2 { margin-top: 20px; }
.old-way .section-head__sub { color: var(--dark-muted); margin-top: 20px; max-width: 520px; }

.timeline { max-width: 760px; margin: 56px auto 0; display: flex; flex-direction: column; }

.tl-row { display: flex; gap: 20px; }
.tl-time { display: flex; flex-direction: column; align-items: center; width: 72px; flex-shrink: 0; }
.tl-time__pill {
  border-radius: 999px;
  padding: 5px 0;
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  background: rgba(247, 241, 235, 0.1);
  color: var(--dark-muted);
}
.tl-time__rail { flex: 1; border-left: 2px dashed rgba(247, 241, 235, 0.18); margin-top: 6px; }

.tl-body { flex: 1; }
.tl-card {
  background: rgba(247, 241, 235, 0.05);
  border: 1px solid rgba(247, 241, 235, 0.1);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 14px;
}
.tl-card__title { font-family: var(--font-display); font-weight: 600; font-size: 16.5px; }
.tl-card__copy { font-size: 13.5px; line-height: 1.55; color: var(--dark-muted); margin: 6px 0 10px; }
.tl-card__chips { display: flex; gap: 7px; flex-wrap: wrap; align-items: center; }

.chip-quiet {
  background: rgba(247, 241, 235, 0.08);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 11.5px;
  color: var(--dark-muted);
}
.chip-alert {
  background: rgba(232, 73, 118, 0.18);
  border: 1px solid rgba(232, 73, 118, 0.4);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 11.5px;
  color: #E8A5B8;
}
.chip-dashed {
  border: 1px dashed rgba(247, 241, 235, 0.35);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 11.5px;
  color: var(--dark-muted);
}
.chip-mismatch { color: #C75B77; font-weight: 700; font-size: 12px; }

.queue-chip {
  display: flex;
  gap: 5px;
  align-items: center;
  background: rgba(247, 241, 235, 0.08);
  border-radius: 999px;
  padding: 6px 12px;
}
.queue-chip span { width: 8px; height: 8px; border-radius: 50%; }
.queue-chip__count { width: auto !important; height: auto !important; border-radius: 0 !important; font-size: 11.5px; color: var(--dark-muted); margin-left: 4px; }

.tl-close { display: flex; flex-direction: column; align-items: center; text-align: center; margin-top: 8px; }
.tl-close__dot { width: 10px; height: 10px; border-radius: 50%; }
.tl-close__line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.5;
  margin: 20px 0 0;
  max-width: 620px;
  text-wrap: balance;
}

/* --------------------------------------------------------------------------
   The SeatOS Way
   -------------------------------------------------------------------------- */

.seatos-way { max-width: var(--container); margin: 0 auto; }
.seatos-way .section-head h2 { margin-top: 20px; max-width: 640px; }
.seatos-way .section-head__sub { font-size: 18px; line-height: 1.6; margin-top: 20px; }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 16px;
  margin-top: 48px;
}
.pillar {
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--accent);
  color: var(--accent-fg, var(--ink));
}
.pillar h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin: 0; }
.pillar p { font-size: 14.5px; line-height: 1.55; margin: 0; opacity: 0.9; }

.replay { max-width: 820px; margin: 56px auto 0; display: flex; flex-direction: column; }
.replay__lead {
  text-align: center;
  font-size: 15px;
  color: var(--grey);
  margin: 0 0 28px;
  font-weight: 600;
}
.replay .tl-time__pill {
  background: var(--accent);
  color: var(--accent-fg, var(--ink));
  font-weight: 700;
}
.replay .tl-time__rail { border-left: 3px solid var(--accent); }
.replay-card {
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 4px 14px rgba(37, 32, 32, 0.04);
}
.replay-card__kicker {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a7f72;
}
.replay-card__line {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.45;
  margin-top: 5px;
}
.replay__close-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  margin: 20px 0 0;
  max-width: 560px;
  text-wrap: balance;
}

/* --------------------------------------------------------------------------
   The Platform
   -------------------------------------------------------------------------- */

.platform { background: var(--white); }
.platform .section-head__sub { max-width: 520px; }

.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
}
.tab-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  background: var(--cream);
  color: var(--ink);
}
.tab-btn:hover { transform: translateY(-2px); }
.tab-btn:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }
.tab-btn[aria-selected="true"] { background: var(--accent); color: var(--white); }

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 48px;
  align-items: center;
  max-width: 1080px;
  margin: 48px auto 0;
}

.tab-copy h3 { font-family: var(--font-display); font-weight: 600; font-size: 28px; margin: 0; color: var(--accent); }
.tab-copy p { font-size: 16px; line-height: 1.65; color: var(--body-text); margin: 14px 0 0; }
.tab-copy ul { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.tab-copy li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.55; font-weight: 600; }
.tab-copy li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* 34px top padding stands in for the render header spacer in the prototype. */
.render-panel {
  background: var(--cream);
  border-radius: 24px;
  padding: 34px 20px 20px;
  box-shadow: 0 24px 60px rgba(37, 32, 32, 0.10);
}
.tab-render { display: flex; flex-direction: column; }
.tab-panel[hidden] { display: none; }

.render-card { background: var(--white); border-radius: 14px; padding: 16px; }
.render-card__head {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
}
.render-chip-dark {
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
}
.render-chip-quiet { background: var(--cream); border-radius: 999px; padding: 6px 14px; font-size: 12px; color: var(--grey); }
.render-count { margin-left: auto; font-family: var(--font-display); font-weight: 600; font-size: 12px; }

.mini-row { display: flex; gap: 8px; margin-top: 8px; }
.mini-card {
  flex: 1;
  background: var(--white);
  border-radius: 12px;
  padding: 11px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
}
.mini-card b { font-family: var(--font-display); font-weight: 600; }

/* Distribution: one pool fanning out to every channel */
.fanout {
  background: var(--white);
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fanout__pool {
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  padding: 10px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
}
.fanout__stem { width: 2px; height: 20px; border-left: 2px dashed #D9CFC2; }
.fanout__bus { width: 82%; border-top: 2px dashed #D9CFC2; height: 0; }
.fanout__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 10px; width: 100%; }
.fanout__leg { display: flex; flex-direction: column; align-items: center; }
.fanout__leg span:first-child { width: 2px; height: 16px; border-left: 2px dashed #D9CFC2; }
.fanout__chan {
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  color: var(--white);
}
.fanout__note { font-size: 12px; color: var(--grey); margin: 16px 0 0; text-align: center; }

/* Reservations: one booking list across every channel */
.res-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 8px;
}
.res-row__tag {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  flex-shrink: 0;
}
.res-row__main { flex: 1; min-width: 0; }
.res-row__label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.res-row__sub { display: block; font-size: 12px; color: var(--grey); }
.res-row__state { font-family: var(--font-display); font-weight: 600; font-size: 12px; white-space: nowrap; }

/* Operations: the day's schedule, vessel by vessel */
.gantt { background: var(--white); border-radius: 14px; padding: 16px 18px; }
.gantt__hours {
  display: flex;
  justify-content: space-between;
  margin-left: 64px;
  font-size: 10px;
  color: var(--grey);
}
.gantt__row { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.gantt__row:first-of-type { margin-top: 10px; }
.gantt__label { width: 54px; flex-shrink: 0; font-family: var(--font-display); font-weight: 600; font-size: 12px; }
.gantt__track {
  flex: 1;
  height: 26px;
  background: var(--cream);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.gantt__trip {
  position: absolute;
  top: 3px;
  bottom: 3px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 7px;
  font-size: 10px;
  font-weight: 700;
}
.gantt__crew {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  border-top: 1px solid #F4EFE8;
  padding-top: 12px;
}
.gantt__avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 700;
}
.gantt__status { margin-left: auto; font-size: 11px; color: var(--grey); font-weight: 600; }

/* Finance: the weekly report */
.report { background: var(--white); border-radius: 14px; padding: 18px 20px; }
.report__head { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.report__title { font-family: var(--font-display); font-weight: 600; font-size: 13px; }
.report__badge {
  background: #E9F7EC;
  color: var(--green);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
}
.report__figures { display: flex; gap: 14px; align-items: baseline; margin-top: 10px; }
.report__total { font-family: var(--font-display); font-weight: 700; font-size: 30px; letter-spacing: -0.02em; }
.report__delta { color: var(--green); font-size: 13px; font-weight: 700; }
.report__bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 88px;
  margin-top: 14px;
  border-bottom: 2px solid #F4EFE8;
  padding-bottom: 2px;
}
.report__bars span { flex: 1; border-radius: 6px 6px 3px 3px; }
.report__legend { display: flex; justify-content: space-between; gap: 8px; margin-top: 12px; font-size: 12.5px; }
.report__legend span { display: flex; align-items: center; gap: 6px; font-weight: 600; }
.report__legend i { width: 8px; height: 8px; border-radius: 50%; }

/* Hardware */
.devices {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  padding: 16px 4px 4px;
}
.device { display: flex; flex-direction: column; align-items: center; gap: 12px; flex: 1 1 0; min-width: 0; max-width: 136px; }
.device__stage { height: 262px; display: flex; align-items: flex-end; }
.device__caption { text-align: center; }
.device__name { font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.device__note { font-size: 12px; color: var(--grey); }

.kiosk {
  width: 98px;
  height: 254px;
  background: var(--white);
  border: 1px solid #E5DDD2;
  border-radius: 10px 10px 4px 4px;
  box-shadow: 0 14px 30px rgba(37, 32, 32, 0.10);
  display: flex;
  flex-direction: column;
}
.kiosk__screen { background: var(--ink); margin: 7px 7px 4px; border-radius: 6px; padding: 5px; height: 104px; }
.kiosk__ui {
  background: var(--white);
  border-radius: 3px;
  height: 100%;
  padding: 6px 5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kiosk__printer {
  height: 10px;
  background: #DDD6CC;
  margin: 0 7px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 3px;
}
.kiosk__printer span { width: 16px; height: 4px; background: var(--ink); border-radius: 99px; }
.kiosk__deck { display: flex; align-items: center; margin: 7px; }
.kiosk__slot { width: 34px; height: 9px; background: var(--orange); border-radius: 2px; }
.kiosk__scanner {
  width: 22px;
  height: 22px;
  background: var(--ink);
  border-radius: 4px;
  display: grid;
  place-items: center;
  margin-left: auto;
}
.kiosk__scanner span { width: 9px; height: 9px; background: var(--grey-line); border-radius: 2px; }
.kiosk__base { flex: 1; border-top: 1px solid #EFEAE2; margin: 0 7px 7px; }

.pos {
  width: 118px;
  background: var(--white);
  border: 1px solid #E5DDD2;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(37, 32, 32, 0.10);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pos__screen {
  background: var(--ink);
  border-radius: 6px;
  height: 66px;
  padding: 7px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pos__keys { display: flex; gap: 5px; align-items: center; }
.pos__slot { width: 32px; height: 9px; background: var(--orange); border-radius: 2px; }
.pos__key { width: 14px; height: 9px; background: #E1DACE; border-radius: 2px; }
.pos__key--first { margin-left: auto; }
.pos__tray { height: 16px; background: #EDE7DD; border-radius: 4px; }

.handheld {
  width: 58px;
  height: 150px;
  background: var(--ink);
  border-radius: 12px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 14px 30px rgba(37, 32, 32, 0.10);
}
.handheld__screen {
  flex: 1;
  background: var(--white);
  border-radius: 8px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.handheld__scanner { height: 9px; background: var(--orange); border-radius: 99px; }

/* Shared micro-UI inside the device renders */
.ui-title { display: flex; gap: 3px; align-items: center; }
.ui-title i { width: 14px; height: 4px; background: var(--ink); border-radius: 99px; }
.ui-title u { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.ui-line { height: 4px; background: var(--grey-line); border-radius: 99px; }
.ui-line--dark { background: rgba(255, 255, 255, 0.25); }
.ui-tiles { display: flex; gap: 3px; margin-top: 2px; }
.ui-tiles span { flex: 1; height: 14px; background: var(--cream); border-radius: 3px; }

.chips { display: flex; gap: 8px; margin-top: 8px; }
.chips__primary {
  flex: 1;
  background: var(--accent);
  border-radius: 12px;
  padding: 11px;
  text-align: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
}
.chips__ghost {
  flex: 1;
  background: var(--white);
  border-radius: 12px;
  padding: 11px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--grey);
}

/* --------------------------------------------------------------------------
   On the ground
   -------------------------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.stat {
  background: var(--white);
  border-radius: 22px;
  padding: 22px 26px;
  border-bottom: 5px solid var(--accent);
}
.stat__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 2.6vw, 40px);
  letter-spacing: -0.02em;
}
.stat__label { font-size: 14px; font-weight: 600; color: var(--body-text); }

.logos { margin-top: 48px; }
.logos__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--grey);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logos__mask {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee { display: flex; gap: 16px; width: max-content; }
.marquee--a { animation: marquee 60s linear infinite; }
.marquee--a:hover { animation-play-state: paused; }
.marquee--b { display: none; animation: marquee-rev 44s linear infinite; margin-top: 16px; }
.logo-cell {
  width: 172px;
  height: 88px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid #EFE7DC;
  border-radius: 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.logo-cell img {
  max-width: 126px;
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter .3s, opacity .3s;
}
.marquee--a .logo-cell img:hover { filter: grayscale(0); opacity: 1; }
.marquee--b .logo-cell { width: 150px; height: 76px; border-radius: 16px; }
.marquee--b .logo-cell img { max-width: 110px; max-height: 46px; transition: none; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.testimonials { background: var(--white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 20px;
  margin-top: 52px;
}
.testimonial {
  background: var(--cream);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial__stars { color: var(--orange); font-size: 17px; letter-spacing: 3px; }
.testimonial__metric {
  align-self: flex-start;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}
.testimonial blockquote { font-size: 15px; line-height: 1.65; color: var(--body-text); margin: 0; flex: 1; }
.testimonial__who {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  flex-shrink: 0;
}
.testimonial__name { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.testimonial__role { font-size: 13px; color: var(--grey); }

/* --------------------------------------------------------------------------
   Partners and API
   -------------------------------------------------------------------------- */

.developers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 56px;
  align-items: center;
}
.developers h2 { margin-top: 20px; }
.developers__lede { font-size: 17px; line-height: 1.65; color: var(--body-text); margin: 20px 0 0; max-width: 480px; }
.code-card {
  background: var(--ink);
  border-radius: 24px;
  padding: 26px;
  text-align: left;
  box-shadow: 0 24px 60px rgba(37, 32, 32, 0.2);
}
.code-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.code-card__head img { height: 18px; width: auto; }
.code-card__endpoint {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.1);
  color: var(--dark-muted);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
  font-family: monospace;
}
.code-card pre {
  margin: 0;
  font-family: 'SF Mono', Consolas, monospace;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--grey-line);
  overflow-x: auto;
}
.tok-key { color: var(--teal); }
.tok-str { color: var(--orange); }
.tok-num { color: var(--pink); }
.tok-com { color: var(--grey); }

/* --------------------------------------------------------------------------
   Final CTA and footer
   -------------------------------------------------------------------------- */

.final-cta { background: var(--orange); }
.final-cta__inner { max-width: 900px; margin: 0 auto; padding: 96px 24px; text-align: center; }
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.final-cta p { font-size: 18px; line-height: 1.6; margin: 20px auto 0; max-width: 520px; color: #4a3a10; }
.final-cta__actions { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }

.site-footer { background: var(--ink); color: var(--dark-muted); }
.site-footer__inner { max-width: var(--container); margin: 0 auto; padding: 72px 24px 40px; }
.site-footer img { display: block; }
.site-footer__brand img { height: 24px; width: auto; }
.site-footer__tagline { font-size: 14px; line-height: 1.6; margin: 18px 0 0; max-width: 260px; }

/* Kept for when the footer link columns come back — no markup uses these yet.
   Wrap the brand block and the column groups in .site-footer__cols to restore. */
.site-footer__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.site-footer__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--cream);
  margin-bottom: 14px;
}
.site-footer__links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.site-footer__links a { color: var(--dark-muted); }
.site-footer__links a:hover { color: var(--orange); }
.site-footer__base {
  border-top: 1px solid rgba(247, 241, 235, 0.12);
  margin-top: 56px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
.site-footer__travelier { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.site-footer__travelier img { height: 18px; width: auto; }

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

input, select, textarea { font-family: var(--font-body); }
input:focus, select:focus, textarea:focus { outline: 3px solid var(--purple); outline-offset: 1px; }

.contact {
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px 24px 96px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 64px;
  align-items: start;
}
.contact h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.contact__lede { font-size: 17px; line-height: 1.65; color: var(--body-text); margin: 22px 0 0; max-width: 440px; }
.contact__cards { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; max-width: 440px; }
.contact-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 18px;
  padding: 18px 22px;
}
.contact-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 17px;
  flex-shrink: 0;
  background: var(--accent);
  color: var(--accent-fg, var(--ink));
}
.contact-card__title { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.contact-card p { font-size: 15px; line-height: 1.55; color: var(--body-text); margin: 2px 0 0; }
.contact-card a { font-size: 15px; color: var(--purple); }

.contact-form {
  background: var(--white);
  border-radius: 28px;
  padding: 38px;
  box-shadow: 0 24px 60px rgba(37, 32, 32, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form__fields { display: flex; flex-direction: column; gap: 20px; }
.contact-form__fields[hidden] { display: none; }
.contact-form__title { font-family: var(--font-display); font-weight: 600; font-size: 20px; }
.contact-form__pair { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1.5px solid #E1D8CC;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  background: #FDFBF8;
  color: var(--ink);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form select { appearance: auto; }
.contact-form button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  background: var(--orange);
  color: var(--ink);
  padding: 15px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 0 rgba(37, 32, 32, 0.15);
  align-self: flex-start;
}
.contact-form button:hover { background: var(--orange-hi); transform: translateY(-2px); }
.contact-form__small { font-size: 12.5px; color: var(--grey); margin: 0; }
.contact-form button[disabled] { opacity: 0.6; cursor: default; }
.contact-form button[disabled]:hover { background: var(--orange); transform: none; }
.contact-form__error {
  background: #FDECEF;
  border: 1.5px solid rgba(232, 73, 118, 0.35);
  border-radius: 12px;
  padding: 12px 14px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #8F2340;
}
.contact-form__error a { color: #8F2340; text-decoration: underline; }

.contact-sent[hidden] { display: none; }
.contact-sent {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 48px 12px;
}
.contact-sent__mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 30px;
}
.contact-sent__title { font-family: var(--font-display); font-weight: 700; font-size: 24px; }
.contact-sent p { font-size: 15px; line-height: 1.6; color: var(--body-text); margin: 0; max-width: 340px; }

.site-footer--slim .site-footer__inner { padding: 56px 24px 40px; }
.site-footer--slim .site-footer__base { border-top: none; margin-top: 0; padding-top: 0; }
.site-footer--slim .site-footer__base img { height: 22px; width: auto; }
.site-footer--slim .site-footer__travelier img { height: 18px; width: auto; }

/* --------------------------------------------------------------------------
   Responsive — mirrors the breakpoints agreed in the design review
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  /* The homepage nav collapses to a hamburger; the contact page keeps its
     single CTA and simply drops the text links. */
  .nav-desktop:not(.nav-desktop--persist) { display: none; }
  .nav-mobile { display: flex; }
  .nav-desktop--persist .nav-link-text { display: none; }

  /* Stacked hero: the graphic leads and the old/new toggle moves below it,
     giving the CTAs clear air. The layers stack in one grid cell instead of
     floating absolute, so the visual is as tall as its content — a fixed
     min-height would either clip the dash or strand the toggle. */
  .hero { grid-template-columns: 1fr; gap: 56px; }
  .hero__stage { display: flex; flex-direction: column; }
  .hero__stage .hero-visual { order: 1; display: grid; min-height: 0; }
  .hero__stage .toggle-row { order: 2; margin: 36px 0 0; }
  .hero__stage .hero-layer { position: static; grid-area: 1 / 1; }
}

@media (max-width: 700px) {
  .section-pad { padding-top: 60px; padding-bottom: 60px; }

  /* Tabs run full-bleed and scroll, rather than wrapping into a tall stack. */
  .tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 24px 10px;
    margin-left: -24px;
    margin-right: -24px;
    -webkit-overflow-scrolling: touch;
  }
  .tabs > button { flex-shrink: 0; }

  .tl-time { width: 48px; }
  .tl-time__pill { font-size: 11px; }
  .tl-card, .replay-card { padding: 13px 15px; margin-bottom: 10px; }
  .tl-card [aria-hidden="true"] { display: none; }

  .hero { padding-top: 32px; padding-bottom: 48px; }
  .hero h1 { font-size: 32px; }

  .btn-outline--desktop { display: none; }
  .btn-outline--mobile { display: inline-block; }

  .marquee--b { display: flex; }
  .marquee--a { animation-duration: 38s; }

  .contact { padding-top: 48px; padding-bottom: 64px; }
  .contact-form { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
