/* ============================================================
   DynoBox — marketing site · Design v2
   "Precision instrument / dyno-sheet": near-black canvas, hairline
   dividers instead of glass cards, editorial heavy headings,
   monospace ONLY for data, structural red (blocks / underlines /
   the dyno curve) — no ambient glow, reduced texture, more
   whitespace, asymmetric spec-sheet sections with ghost numerals.
   No external fonts / CDNs / assets. Single stylesheet.
   ("Powered by Ondiso" vendor credit preserved in markup.)
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --bg: #0c0d10;        /* near-black canvas */
  --panel: #131419;     /* raised surfaces */
  --panel-2: #171922;   /* nested surfaces */
  --line: #23242a;      /* hairline dividers */
  --line-2: #2c2e36;    /* slightly brighter hairline */
  --red: #e10600;       /* structural primary */
  --red-2: #ff3b24;     /* bright accent */
  --amber: #ff7a00;     /* torque / secondary — used sparingly */
  --text: #f4f5f7;      /* foreground */
  --steel: #9aa0a8;     /* muted */
  --mute: #6c7178;      /* faint */

  --font: system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Mono", "SF Mono", Menlo, Consolas, monospace;

  --chb: 8px;           /* button chamfer (the ONLY chamfered element) */
  --maxw: 1200px;
}

/* ---------- reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.113rem;
  line-height: 1.62;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}

/* faint engineering-paper grid — very low opacity, fades out downward */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.16;
  -webkit-mask-image: radial-gradient(130% 90% at 50% -10%, #000 0%, transparent 74%);
  mask-image: radial-gradient(130% 90% at 50% -10%, #000 0%, transparent 74%);
}

img,
svg,
canvas,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--text);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
p,
ul,
figure {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

code,
pre {
  font-family: var(--mono);
}

::selection {
  background: rgba(225, 6, 0, 0.32);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--red-2);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.6rem 1.1rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* ---------- layout ---------- */
.container {
  width: min(var(--maxw), calc(100% - 3rem));
  margin-inline: auto;
}

.sec {
  position: relative;
  padding: clamp(3.75rem, 8vw, 6.25rem) 0;
  border-top: 1px solid var(--line);
}

/* below-the-fold rendering hint */
.cv {
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

/* asymmetric spec-sheet grid: narrow label rail + content body */
.sec-grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

/* label rail — ghost numeral + monospace tag */
.sec-rail {
  position: relative;
}

.sec-index {
  display: block;
  font-family: var(--mono);
  font-size: clamp(3.2rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: rgba(148, 152, 160, 0.13);
  user-select: none;
}

.sec-tag {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
}

.sec-tag::before {
  content: "";
  flex: none;
  width: 0.62rem;
  height: 0.62rem;
  background: var(--red);
}

/* body headings */
.sec-body h2 {
  position: relative;
  padding-bottom: 0.95rem;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  font-weight: 800;
  max-width: 20ch;
}

.sec-body h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.4rem;
  height: 4px;
  background: var(--red);
}

.sec-lead {
  margin-top: 1.15rem;
  max-width: 58ch;
  color: var(--steel);
  font-size: 1.11rem;
}

.grad {
  color: var(--red-2);
}

/* ---------- buttons (only chamfered surface) ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font: inherit;
  font-weight: 800;
  font-size: 1.03rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9rem 1.7rem;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  color: var(--text);
  background: var(--panel-2);
  box-shadow: inset 0 0 0 1px var(--line-2);
  transition: transform 0.18s ease, box-shadow 0.22s ease, background 0.22s ease;
  clip-path: polygon(
    0 0, calc(100% - var(--chb)) 0, 100% var(--chb),
    100% 100%, var(--chb) 100%, 0 calc(100% - var(--chb))
  );
}

.btn-primary {
  color: #fff;
  background: var(--red);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--red-2);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--line-2);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px var(--red);
}

.btn-sm {
  padding: 0.56rem 1.1rem;
  font-size: 0.92rem;
}

/* clip-path removes the outline, so use an inset ring for focus */
.btn:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--red-2), inset 0 0 0 4px rgba(0, 0, 0, 0.55);
}

/* ---------- reveal-on-scroll ---------- */
.rv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--d, 0) * 80ms);
}

.rv.in {
  opacity: 1;
  transform: none;
}

/* ---------- header ---------- */
.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.hdr.scrolled {
  background: rgba(12, 13, 16, 0.86);
  box-shadow: inset 0 -1px 0 var(--line);
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
}

.hdr-in {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  min-height: 4.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
}

.brand-mark {
  display: inline-flex;
  flex: none;
}

.brand-word {
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-word .w-dyno {
  color: var(--text);
}

.brand-word .w-box {
  color: var(--red);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  color: var(--steel);
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.hdr-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
}

.lang {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  color: var(--steel);
  box-shadow: inset 0 0 0 1px var(--line-2);
  padding: 0.42rem 0.7rem;
  transition: color 0.2s ease, box-shadow 0.2s ease;
}

.lang:hover {
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--red);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(6.5rem, 12vh, 9rem) 0 clamp(3rem, 6vh, 4.5rem);
  overflow: hidden;
  isolation: isolate;
}

/* two-column hero: clean copy (left) + contained dyno panel (right) */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(1.6rem, 4vw, 3.6rem);
  min-height: clamp(440px, 64vh, 600px);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

/* the signature: a self-contained dyno-readout screen */
.hero-panel {
  position: relative;
  aspect-ratio: 5 / 4;
  min-height: 300px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    #0e0f13;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.hero-panel-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(58% 52% at 68% 38%, rgba(225, 6, 0, 0.16), transparent 72%);
}

#hero3d {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero h1 {
  font-size: clamp(2.5rem, 6.4vw, 4.3rem);
  line-height: 0.99;
  letter-spacing: -0.025em;
  font-weight: 800;
  text-wrap: balance;
}

.hero .lead {
  margin-top: 1.4rem;
  max-width: 50ch;
  color: var(--steel);
  font-size: clamp(1.07rem, 1.6vw, 1.18rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.1rem;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.3rem;
  transform: translateX(-50%);
  color: var(--mute);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: hint 2.4s ease-in-out infinite;
}

@keyframes hint {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.55; }
  50% { transform: translate(-50%, 7px); opacity: 1; }
}

/* ---------- demo ---------- */
.demo-mount {
  margin-top: 2.4rem;
  min-height: 480px;
  max-width: 760px;
  padding: 1.15rem;
  background: var(--panel);
  box-shadow: inset 0 0 0 1px var(--line);
}

.demo-mount.mounted {
  padding: 0.85rem;
}

.demo-mount.mounted .demo-fallback {
  display: none;
}

.demo-fallback {
  display: grid;
  place-content: center;
  gap: 0.7rem;
  text-align: center;
  min-height: 440px;
  color: var(--steel);
  padding: 1rem;
}

.demo-fallback strong {
  color: var(--text);
  font-size: 1.1rem;
}

.demo-fallback code {
  color: var(--red-2);
  background: rgba(225, 6, 0, 0.08);
  box-shadow: inset 0 0 0 1px rgba(225, 6, 0, 0.22);
  padding: 0.1rem 0.4rem;
  font-size: 0.9em;
}

/* ---------- pricing ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.6rem;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.9rem;
  background: var(--panel);
  border: 1px solid var(--line);
}

.plan-featured {
  border-color: rgba(225, 6, 0, 0.45);
}

/* structural red block on the featured plan */
.plan-featured::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: var(--red);
}

.plan-flag {
  position: absolute;
  top: -0.8rem;
  left: 1.7rem;
  background: var(--red);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.32rem 0.85rem;
  white-space: nowrap;
}

.plan h3 {
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.plan-tag {
  color: var(--steel);
  font-size: 1rem;
  margin-top: 0.4rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin: 1.5rem 0 0.2rem;
  font-family: var(--mono);
  color: var(--text);
}

.price strong {
  font-size: clamp(2.6rem, 6vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price .price-cur {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--steel);
  align-self: flex-start;
  margin-top: 0.35rem;
}

.price .price-per {
  color: var(--mute);
  font-weight: 600;
  font-size: 0.94rem;
  margin-left: 0.35rem;
}

.plan-list {
  margin: 1.5rem 0 1.9rem;
  display: grid;
  gap: 0;
  flex: 1;
}

.plan-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--steel);
  font-size: 1.01rem;
  padding: 0.62rem 0;
  border-top: 1px solid var(--line);
}

.plan-list li:first-child {
  border-top: 0;
}

.plan-list li strong {
  color: var(--text);
  font-weight: 700;
}

.plan-list svg {
  flex: none;
  margin-top: 0.18rem;
  color: var(--red);
}

.plan .btn {
  width: 100%;
}

.plans-note {
  margin-top: 1.6rem;
  color: var(--steel);
  font-size: 0.93rem;
}

/* ---------- add-on vehicle groups ---------- */
.addons {
  margin-top: 1.4rem;
  padding: 1.9rem;
  background: var(--panel);
  border: 1px solid var(--line);
}

.addons-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.addons-head h3 {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-size: 1.29rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.addons-price {
  font-family: var(--mono);
  color: var(--red-2);
  font-size: 1.1rem;
  font-weight: 700;
}

.addons-price span {
  color: var(--mute);
  font-weight: 600;
  font-size: 0.9rem;
}

.addons-lead {
  color: var(--steel);
  font-size: 1.02rem;
  max-width: 46ch;
}

.addon-grid {
  margin: 1.6rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.addon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.4rem 1rem;
  background: var(--panel);
  transition: background 0.2s ease;
}

.addon:hover {
  background: var(--panel-2);
}

.addon-ico {
  display: inline-flex;
  color: var(--amber);
}

.addon-name {
  font-weight: 700;
  font-size: 1.04rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.addon-tag {
  font-family: var(--mono);
  color: var(--mute);
  font-size: 0.88rem;
  font-weight: 600;
}

.addons-note {
  margin-top: 1.4rem;
  color: var(--steel);
  font-size: 0.94rem;
}

/* ---------- features (ledger of hairline rows) ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 3rem;
  margin-top: 2.4rem;
}

.feature {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--red);
  box-shadow: inset 0 0 0 1px var(--line-2);
}

.feature h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.005em;
  margin-bottom: 0.35rem;
}

.feature p {
  color: var(--steel);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ---------- faq ---------- */
.faq-wrap {
  margin-top: 2.2rem;
  max-width: 820px;
  border-bottom: 1px solid var(--line);
}

.faq {
  border-top: 1px solid var(--line);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0.2rem;
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: -0.005em;
  color: var(--text);
  transition: color 0.2s ease;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  flex: none;
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  box-shadow: inset 0 0 0 1px var(--line-2);
  color: var(--red-2);
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease;
}

.faq summary:hover {
  color: var(--red-2);
}

.faq summary:focus-visible {
  outline: none;
  color: var(--red-2);
  box-shadow: inset 0 0 0 2px var(--red-2);
}

.faq[open] summary::after {
  content: "\2212";
  background: var(--red);
  color: #fff;
  box-shadow: inset 0 0 0 1px var(--red);
}

.faq-a {
  padding: 0 0.2rem 1.3rem;
  color: var(--steel);
  font-size: 1.03rem;
  max-width: 72ch;
}

/* ---------- contact CTA band ---------- */
.cta-band {
  position: relative;
  padding: clamp(2.4rem, 5vw, 3.6rem) clamp(1.6rem, 5vw, 3.4rem);
  padding-left: clamp(2rem, 5vw, 3.8rem);
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}

/* structural red bar on the leading edge */
.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--red);
}

.cta-band h2 {
  font-size: clamp(1.85rem, 4.2vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.06;
  max-width: 22ch;
}

.cta-band p {
  margin: 1rem 0 0;
  max-width: 54ch;
  color: var(--steel);
}

.cta-band .cta-row {
  margin-top: 1.8rem;
}

/* ---------- footer ---------- */
.ftr {
  position: relative;
  padding: 3.2rem 0 2.4rem;
  border-top: 1px solid var(--line);
}

/* thin structural red edge on top of footer */
.ftr::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 4rem;
  height: 3px;
  background: var(--red);
}

.ftr-in {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.4rem;
}

.ftr .brand {
  margin-bottom: 0.9rem;
}

.ftr-about p {
  color: var(--steel);
  font-size: 1rem;
  max-width: 36ch;
}

.ftr-about a {
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid var(--line-2);
}

.ftr-about a:hover {
  border-color: var(--red);
}

.ftr h3 {
  font-family: var(--mono);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 1rem;
}

.ftr-nav ul {
  display: grid;
  gap: 0.55rem;
}

.ftr-nav a {
  color: var(--steel);
  font-size: 1.02rem;
  transition: color 0.2s ease;
}

.ftr-nav a:hover {
  color: var(--text);
}

.ftr-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 0.93rem;
}

.badge-ondiso {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--steel);
  font-size: 0.93rem;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px var(--line-2);
  padding: 0.42rem 1rem;
  transition: box-shadow 0.2s ease, color 0.2s ease;
}

.badge-ondiso strong {
  color: var(--red-2);
  font-weight: 800;
}

.badge-ondiso:hover {
  box-shadow: inset 0 0 0 1px var(--red);
  color: var(--text);
}

.ftr-meta-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.ftr-admin {
  color: var(--steel);
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.ftr-admin:hover {
  color: var(--text);
}

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 2rem; min-height: 0; }
  .hero-copy { max-width: 40rem; }
  .hero-panel { aspect-ratio: 16 / 10; min-height: 260px; }
}

@media (max-width: 900px) {
  .sec-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .sec-rail {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .sec-index {
    font-size: 2.6rem;
  }

  .sec-tag {
    margin-top: 0;
  }

  .features {
    gap: 0 2rem;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 1.05rem;
  }

  .nav {
    display: none;
  }

  .plans {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-featured {
    order: -1;
  }

  .ftr-in {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .hero {
    padding-top: 6.4rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 2rem);
  }

  .cta-row .btn {
    width: 100%;
  }

  .brand-word {
    font-size: 1.27rem;
  }

  .plan,
  .addons {
    padding: 1.6rem 1.3rem;
  }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .rv {
    opacity: 1;
    transform: none;
  }

  .scroll-hint {
    animation: none;
  }
}
