:root {
  --night: #0f1b2e;
  --coral: #ff6b4a;
  --soft-aqua: #cde7e6;
  --mist: #e6ecee;
  --warm-cream: #faf7f2;
  --white: #ffffff;
  --muted: rgba(15, 27, 46, 0.64);
  --hairline: rgba(15, 27, 46, 0.12);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ambient-x: 0px;
  --ambient-y: 0px;
  --ambient-aqua-x: 0px;
  --ambient-aqua-y: 0px;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  background: var(--night);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--night);
  background: var(--night);
  font-family: "Geist", "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button, input, select { font: inherit; }
button { color: inherit; }
a { color: inherit; }
[hidden] { display: none !important; }

.page-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  isolation: isolate;
  background: var(--warm-cream);
}

.page-shell::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 62px;
  right: -3vw;
  width: min(430px, 28vw);
  height: 104px;
  opacity: .31;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,107,74,.58) 1.05px, transparent 1.25px);
  background-size: 13px 13px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 42%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 42%, transparent);
}

.ambient {
  position: absolute;
  z-index: -3;
  pointer-events: none;
  transform: translate3d(var(--ambient-x), var(--ambient-y), 0);
  transition: transform 900ms var(--ease-out);
}

.ambient-coral {
  width: 700px;
  height: 700px;
  left: -330px;
  top: 122px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,74,.17), rgba(255,107,74,.045) 52%, transparent 73%);
}

.ambient-aqua {
  width: 820px;
  height: 740px;
  right: -410px;
  top: 150px;
  border-radius: 50%;
  transform: translate3d(var(--ambient-aqua-x), var(--ambient-aqua-y), 0);
  background: radial-gradient(circle, rgba(205,231,230,.53), rgba(205,231,230,.15) 48%, transparent 72%);
}

.hero-rings {
  position: absolute;
  z-index: -2;
  left: 50%;
  top: 86px;
  width: min(1480px, 106vw);
  height: 900px;
  transform: translateX(-50%) scaleY(.76);
  border-radius: 50%;
  opacity: .5;
  background: repeating-radial-gradient(ellipse at center, transparent 0, transparent 43px, rgba(15,27,46,.038) 44px, transparent 45px);
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 0 24%, #000 43%, transparent 73%);
  mask-image: radial-gradient(ellipse at center, transparent 0 24%, #000 43%, transparent 73%);
}

.site-header {
  position: relative;
  z-index: 10;
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 10px 24px;
}

.brand-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.brand-home:focus-visible {
  outline: 3px solid rgba(255,107,74,.32);
  outline-offset: 6px;
}

.brand-logo {
  display: block;
  width: 154px;
  height: auto;
}

.brand-enter {
  opacity: 0;
  transform: translateY(-4px);
  animation: brand-in 420ms var(--ease-out) 20ms forwards;
}

.hero {
  position: relative;
  z-index: 2;
  padding-top: 7px;
  text-align: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(1020px, calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow {
  width: max-content;
  margin: 0 auto 17px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: .095em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255,107,74,.09);
}

h1 {
  margin: 0;
  color: var(--night);
  font-size: clamp(54px, 4.65vw, 76px);
  font-weight: 650;
  line-height: .985;
  letter-spacing: -.064em;
  text-wrap: balance;
}

/* Rolling hero word: the sizer is an invisible, normal-flow twin of whichever
   word is currently active (script.js keeps its text in sync every rotation),
   so .hero-rotator's own intrinsic width always matches what's actually
   showing — never the longest word in the list. Animating that width lets the
   whole "minus the ___" phrase recentre smoothly as shorter/longer words
   rotate in, instead of reserving an oversized box that leaves short words
   looking stranded off-centre. Track/words are absolutely pinned inside it so
   the crossfade itself never reflows. */
.hero-rotator {
  position: relative;
  display: inline-block;
  /* Deliberately not clipped: the h1's tight line-height (.985) is shorter than this
     font's natural glyph metrics, so a hidden-overflow box here would shear descenders
     (e.g. the "p" in "spreadsheets"). The brief translateY during a word swap paints a
     few pixels outside the box, into normal inter-line whitespace. */
  overflow: visible;
  vertical-align: top;
  text-align: left;
  transition: width 380ms var(--ease-out);
}

.hero-rotator-sizer {
  visibility: hidden;
  white-space: nowrap;
}

.hero-rotator-track {
  position: absolute;
  inset: 0;
}

.hero-rotator-word {
  position: absolute;
  inset: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 380ms var(--ease-out), transform 380ms var(--ease-out);
}

/* The rotating word itself stays coral; the trailing full stop reads as
   normal heading text, matching how "Money management," on the line above
   punctuates in --night rather than the accent colour. */
.hero-rotator-word-text { color: var(--coral); }
.hero-rotator-word-dot { color: var(--night); }

.hero-rotator-word.is-active { opacity: 1; transform: translateY(0); }
.hero-rotator-word.is-exit { opacity: 0; transform: translateY(-10px); }

.hero-description {
  max-width: 745px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.08vw, 18px);
  font-weight: 400;
  line-height: 1.46;
  letter-spacing: -.021em;
  text-wrap: balance;
}

.cta-stack {
  display: grid;
  justify-items: center;
}

.button {
  min-height: 50px;
  border: 0;
  border-radius: 11px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  font-weight: 650;
  letter-spacing: -.025em;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), opacity 180ms ease;
}

.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button:disabled { cursor: wait; opacity: .64; transform: none; }

.button-arrow {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  transition: transform 180ms var(--ease-out);
}

.button:hover .button-arrow { transform: translateX(4px); }

.button:focus-visible,
.modal-close:focus-visible,
input:focus-visible,
select:focus-visible,
.feature-grid input:focus-visible + span,
.account-prompt a:focus-visible,
.footer-links a:focus-visible,
.access-notice a:focus-visible {
  outline: 3px solid rgba(255,107,74,.38);
  outline-offset: 3px;
}

.button-primary {
  min-width: 252px;
  margin-top: 19px;
  color: var(--night);
  background: var(--coral);
  box-shadow: 0 10px 28px rgba(255,107,74,.21), inset 0 1px 0 rgba(255,255,255,.32);
}

.button-primary:hover {
  background: var(--coral);
  box-shadow: 0 15px 36px rgba(255,107,74,.27), inset 0 1px 0 rgba(255,255,255,.32);
}

.account-prompt {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.account-prompt a {
  color: var(--night);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(15,27,46,.25);
  transition: color 150ms ease, border-color 150ms ease;
}

.account-prompt a:hover {
  color: var(--coral);
  border-color: var(--coral);
}

.trust-row {
  width: 100%;
  margin: 15px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 15px 6px 6px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  box-shadow: 0 1px 2px rgba(15,27,46,.03);
  color: rgba(15,27,46,.78);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.trust-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--night);
}

.trust-icon svg {
  width: 13px;
  height: 13px;
  display: block;
}

.trust-icon-aqua { background: rgba(205,231,230,.6); }
.trust-icon-mist { background: rgba(230,236,238,.85); border: 1px solid rgba(15,27,46,.06); }
.trust-icon-coral { background: rgba(255,107,74,.14); color: var(--coral); }

.product-preview {
  position: relative;
  width: 100%;
  margin-top: 20px;
  /* Deliberately near-zero: the laptop is cropped flat along its bottom edge
     (.laptop-stage has no bottom border/radius) so it reads as continuing past
     the visible frame — the cut-line + footer immediately below is the
     intended continuation, not a separate floating element. A larger gap here
     made the composition look unresolved, like the laptop was hovering above
     the footer rather than settling into it. */
  margin-bottom: 2px;
}

.product-window {
  --product-width: min(1200px, 88vw);
  position: relative;
  left: 50%;
  width: var(--product-width);
  aspect-ratio: 2048 / 628;
  transform: translateX(-50%);
  overflow: hidden;
}

.product-bloom {
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -180px;
  width: 105%;
  height: 460px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 58%, rgba(255,107,74,.13), rgba(255,107,74,.04) 48%, transparent 72%),
    radial-gradient(ellipse at 70% 35%, rgba(205,231,230,.2), transparent 52%);
  filter: blur(10px);
}

.laptop-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 2048 / 1256;
  margin: 0 auto;
  padding: 9px 9px 0;
  border: 1px solid rgba(15,27,46,.42);
  border-bottom: 0;
  border-radius: 26px 26px 0 0;
  background: linear-gradient(180deg, #30373e 0, #151a1f 7px, #080b0e 12px, #080b0e 100%);
  box-shadow: 0 -1px 0 rgba(255,255,255,.5), 0 22px 68px rgba(15,27,46,.2), 0 0 0 2px rgba(15,27,46,.03);
}

.laptop-stage::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 2px 34px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.46), transparent);
}

.laptop-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: #080d12;
}

.laptop-screen picture,
.laptop-screen img {
  display: block;
  width: 100%;
  height: 100%;
}

.laptop-screen img {
  object-fit: contain;
  object-position: top center;
  background: #080d12;
}

.camera-notch {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 50%;
  width: 108px;
  height: 16px;
  transform: translateX(-50%);
  border-radius: 0 0 7px 7px;
  background: #020304;
}

.camera-notch span {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 6px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 36% 34%, #233b4e 0 16%, #071017 37%, #020304 70%);
  box-shadow: 0 0 0 1px rgba(255,255,255,.05);
}

.product-cut-line {
  position: relative;
  z-index: 8;
  height: 1px;
  background: var(--night);
}

.site-footer {
  position: relative;
  z-index: 7;
  background: var(--night);
  color: rgba(250,247,242,.82);
}

.footer-inner {
  width: min(1200px, calc(100% - 64px));
  min-height: 120px;
  margin: 0 auto;
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 12px;
  line-height: 1.4;
}

.footer-inner p { margin: 0; }

.footer-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.footer-links a {
  color: var(--warm-cream);
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-links a:hover { color: var(--coral); }

/* Motion: brief, software-like, never continuous. */
.hero-enter {
  opacity: 0;
  transform: translateY(9px);
  animation: hero-in 430ms var(--ease-out) forwards;
}
.enter-1 { animation-delay: 45ms; }
.enter-2 { animation-delay: 78ms; }
.enter-3 { animation-delay: 112ms; }
.enter-4 { animation-delay: 145ms; }
.enter-product {
  transform: translateY(18px);
  filter: blur(1.5px);
  animation: product-in 560ms var(--ease-out) 165ms forwards;
}

@keyframes brand-in { to { opacity: 1; transform: translateY(0); } }
@keyframes hero-in { to { opacity: 1; transform: translateY(0); } }
@keyframes product-in { to { opacity: 1; transform: translateY(0); filter: blur(0); } }

.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(4,9,14,.66);
  backdrop-filter: blur(16px);
  animation: backdrop-in 180ms ease both;
}

.access-modal {
  position: relative;
  width: min(690px, 100%);
  margin: auto;
  padding: 36px 38px 34px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 22px;
  color: var(--warm-cream);
  background:
    radial-gradient(circle at 86% 2%, rgba(255,107,74,.11), transparent 27%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
    var(--night);
  box-shadow: 0 38px 110px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.05);
  text-align: left;
  animation: modal-in 250ms var(--ease-out) both;
}

@keyframes backdrop-in { from { opacity: 0; } }
@keyframes modal-in { from { opacity: 0; transform: translateY(10px) scale(.987); } }

.modal-logo {
  display: block;
  width: 148px;
  height: auto;
  margin: 0 0 16px;
  mix-blend-mode: normal;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: var(--warm-cream);
  background: rgba(255,255,255,.045);
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}

.modal-close:hover { background: rgba(255,107,74,.12); color: var(--coral); }
.modal-close svg { width: 18px; }

.modal-kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.access-modal h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 5vw, 46px);
  font-weight: 650;
  line-height: 1.03;
  letter-spacing: -.05em;
}

.modal-intro,
.success-view > p:not(.modal-kicker):not(.success-welcome):not(.success-email) {
  margin: 13px 0 0;
  color: rgba(230,236,238,.72);
  line-height: 1.52;
}

.access-form { margin-top: 24px; }

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

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

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(250,247,242,.9);
  font-size: 13px;
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 10px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255,255,255,.05);
  font-weight: 400;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}

.field select { color-scheme: dark; }
.field input::placeholder { color: rgba(230,236,238,.38); }

.field input:hover,
.field select:hover { border-color: rgba(255,255,255,.19); }

.feature-fieldset {
  margin: 3px 0 15px;
  padding: 0;
  border: 0;
}

.feature-fieldset legend {
  margin-bottom: 9px;
  color: rgba(250,247,242,.9);
  font-size: 13px;
  font-weight: 600;
}

.feature-fieldset legend span { color: rgba(230,236,238,.48); font-size: 11px; font-weight: 400; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.feature-grid label { position: relative; cursor: pointer; }
.feature-grid input { position: absolute; opacity: 0; pointer-events: none; }

.feature-grid span {
  min-height: 43px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  padding: 0 12px;
  color: rgba(250,247,242,.82);
  background: rgba(255,255,255,.035);
  font-size: 12px;
  font-weight: 500;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease, color 140ms ease;
}

.feature-grid label:hover span { transform: translateY(-1px); border-color: rgba(255,255,255,.19); }
.feature-grid input:checked + span { border-color: rgba(255,107,74,.76); color: var(--white); background: rgba(255,107,74,.12); }

.access-notice {
  margin: 0 0 10px;
  color: rgba(230,236,238,.55);
  font-size: 11px;
  line-height: 1.5;
}

.access-notice a { color: var(--warm-cream); text-underline-offset: 3px; }
.access-notice a:hover { color: var(--coral); }

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(230,236,238,.62);
  font-size: 11px;
  line-height: 1.45;
}

.consent-row input { margin-top: 2px; accent-color: var(--coral); }

.form-error {
  margin: 13px 0 0;
  padding: 11px 12px;
  border: 1px solid rgba(255,107,74,.38);
  border-radius: 9px;
  color: var(--warm-cream);
  background: rgba(255,107,74,.1);
  font-size: 12px;
  line-height: 1.45;
}

.modal-submit { width: 100%; margin-top: 18px; }

.privacy-note {
  margin: 10px 0 0;
  color: rgba(230,236,238,.44);
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.success-view { padding: 28px 4px 7px; text-align: center; }
.success-view .modal-kicker { margin-top: 0; }

.success-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--night);
  background: var(--coral);
  box-shadow: 0 16px 40px rgba(255,107,74,.2);
}

.success-mark svg { width: 31px; }
.success-email { margin: 12px 0 0; color: var(--soft-aqua); font-size: 13px; font-weight: 600; }
.success-welcome { margin: 18px 0 0; color: var(--white); font-size: 14px; font-weight: 600; }
.success-view .button { margin-top: 23px; }
body.modal-open { overflow: hidden; }

@media (max-width: 1100px) {
  .brand-logo { width: 148px; }
  .trust-row { gap: 20px; }
  .product-window { --product-width: 94vw; }
  .footer-inner { width: calc(100% - 48px); }
}

@media (max-width: 820px) {
  .site-header { min-height: 78px; }
  .brand-logo { width: 132px; }
  .hero { padding-top: 21px; }
  .hero-copy { width: calc(100% - 32px); }
  .eyebrow { margin-bottom: 17px; }
  h1 { font-size: clamp(43px, 11.2vw, 64px); line-height: .99; }
  .hero-description { max-width: 590px; margin-top: 18px; font-size: 16px; }
  .button-primary { min-width: 235px; margin-top: 18px; }
  .trust-row { gap: 8px; }
  .product-preview { margin-top: 20px; margin-bottom: 2px; }
  .product-window { --product-width: 118vw; }
  .laptop-stage { padding: 8px 8px 0; border-radius: 21px 21px 0 0; }
  .laptop-screen { border-radius: 14px 14px 0 0; }
  .camera-notch { width: 80px; height: 13px; }
  .camera-notch span { top: 3px; width: 5px; height: 5px; }
  .hero-rings { top: 150px; width: 132vw; height: 760px; }
  .footer-inner { min-height: 86px; padding-block: 20px; }
}

@media (max-width: 560px) {
  .page-shell::after { opacity: .18; }
  .site-header { min-height: 70px; }
  .brand-logo { width: 118px; }
  .hero { padding-top: 23px; }
  .eyebrow { font-size: 10px; }
  h1 { font-size: clamp(39px, 12.8vw, 52px); letter-spacing: -.06em; }
  .hero-description { font-size: 15px; line-height: 1.47; }
  .account-prompt { margin-top: 8px; }
  .trust-row { gap: 7px; }
  .trust-item { padding: 6px 13px 6px 6px; font-size: 12px; }
  .product-window { --product-width: 158vw; transform: translateX(-54%); }
  .product-preview { margin-bottom: 2px; }
  .footer-inner { width: calc(100% - 32px); min-height: 92px; padding-block: 20px; }
  .footer-links { gap: 18px; }
  .access-modal { padding: 32px 20px 24px; border-radius: 18px; }
  .modal-logo { width: 131px; }
  .field-grid, .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
  .product-window { --product-width: 168vw; transform: translateX(-55%); }
  .footer-inner { align-items: flex-start; padding-block: 24px; flex-direction: column; gap: 12px; }
}

/* Short-height desktop: crop more product; never distort it. */
@media (min-width: 821px) and (max-height: 850px) {
  .site-header { min-height: 68px; }
  .brand-logo { width: 142px; }
  .hero { padding-top: 0; }
  .eyebrow { margin-bottom: 10px; }
  h1 { font-size: clamp(48px, 4.15vw, 64px); }
  .hero-description { margin-top: 10px; font-size: 15px; line-height: 1.42; }
  .button-primary { margin-top: 10px; min-height: 47px; }
  .account-prompt { margin-top: 5px; }
  .trust-row { margin-top: 6px; }
  .product-preview { margin-top: 10px; margin-bottom: 2px; }
  .product-window { --product-width: min(1000px, 78vw); }
  .footer-inner { min-height: 64px; padding-block: 14px; }
}

@media (min-width: 821px) and (max-height: 740px) {
  .site-header { min-height: 60px; }
  .brand-logo { width: 130px; }
  .eyebrow { margin-bottom: 8px; }
  h1 { font-size: clamp(44px, 3.9vw, 57px); }
  .hero-description { margin-top: 8px; max-width: 690px; font-size: 14px; line-height: 1.39; }
  .button-primary { margin-top: 8px; min-height: 43px; }
  .account-prompt { margin-top: 5px; font-size: 11px; }
  .trust-row { margin-top: 5px; gap: 7px; }
  .trust-item { font-size: 11px; padding: 4px 11px 4px 4px; }
  .trust-icon { width: 17px; height: 17px; flex: 0 0 17px; }
  .trust-icon svg { width: 10px; height: 10px; }
  .product-preview { margin-top: 7px; margin-bottom: 2px; }
  .product-window { --product-width: min(1020px, 79vw); }
  .footer-inner { min-height: 62px; padding-block: 12px; }
}

@media (min-width: 1900px) {
  .hero-copy { width: 1020px; }
  .product-window { --product-width: 1280px; }
  .footer-inner { width: 1280px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0ms !important; transition-duration: .001ms !important; }
  .hero-enter, .brand-enter { opacity: 1; transform: none; filter: none; }
  .ambient, .ambient-aqua { transform: none !important; }
  .hero-rotator-word { transform: none; }
  .hero-rotator-word.is-exit { opacity: 0; }
}
