/* inter-cyrillic-ext-wght-normal */
@font-face {
  font-family: 'Inter Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/_astro/inter-cyrillic-ext-wght-normal.BOeWTOD4.woff2) format('woff2-variations');
  unicode-range: U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;
}

/* inter-cyrillic-wght-normal */
@font-face {
  font-family: 'Inter Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/_astro/inter-cyrillic-wght-normal.DqGufNeO.woff2) format('woff2-variations');
  unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;
}

/* inter-greek-ext-wght-normal */
@font-face {
  font-family: 'Inter Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/_astro/inter-greek-ext-wght-normal.DlzME5K_.woff2) format('woff2-variations');
  unicode-range: U+1F00-1FFF;
}

/* inter-greek-wght-normal */
@font-face {
  font-family: 'Inter Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/_astro/inter-greek-wght-normal.CkhJZR-_.woff2) format('woff2-variations');
  unicode-range: U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF;
}

/* inter-vietnamese-wght-normal */
@font-face {
  font-family: 'Inter Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/_astro/inter-vietnamese-wght-normal.CBcvBZtf.woff2) format('woff2-variations');
  unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB;
}

/* inter-latin-ext-wght-normal */
@font-face {
  font-family: 'Inter Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/_astro/inter-latin-ext-wght-normal.DO1Apj_S.woff2) format('woff2-variations');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* inter-latin-wght-normal */
@font-face {
  font-family: 'Inter Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/_astro/inter-latin-wght-normal.Dx4kXJAl.woff2) format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}:root {
  color-scheme: dark;
  --color-bg: #090b0e;
  --color-bg-alt: #0d1116;
  --color-surface: #11161c;
  --color-surface-raised: #171d24;
  --color-surface-warm: #18150f;
  --color-text: #f5f7f8;
  --color-text-soft: #c9d0d6;
  --color-muted: #a9b2bc;
  --color-muted-dark: #737d87;
  --color-line: rgba(255, 255, 255, 0.08);
  --color-line-strong: rgba(255, 255, 255, 0.15);
  --color-accent: #fb7d36;
  --color-accent-deep: #d9571a;
  --color-accent-soft: rgba(251, 125, 54, 0.12);
  --color-safety: #ffc247;
  --color-paper: #f2eee5;
  --color-focus: #66afff;
  --color-focus-soft: rgba(102, 175, 255, 0.13);
  --font-display: 'Inter Variable', Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter Variable', Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shell: 76rem;
  --shell-copy: 49rem;
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 1.75rem;
  --shadow-soft: 0 1.5rem 5rem rgba(0, 0, 0, 0.28);
  --duration-instant: 90ms;
  --duration-fast: 150ms;
  --duration-normal: 220ms;
  --duration-slow: 360ms;
  --duration-flow: 460ms;
  --duration-hero: 880ms;
  --duration-cinematic: 760ms;
  --duration-detail: 620ms;
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --ease-emphasized: cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 5rem;
}

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

html {
  min-width: 17.5rem;
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-height) + 0.25rem);
  background: var(--color-bg);
}

html.motion-ready {
  scroll-behavior: smooth;
}

html.motion-pending body {
  opacity: 0;
}

html.motion-pending *,
html.motion-pending *::before,
html.motion-pending *::after {
  animation-play-state: paused !important;
}

@media (prefers-reduced-motion: no-preference) {
  html.motion-ready body {
    transition: opacity 140ms var(--ease-standard);
  }
}

body {
  min-width: 17.5rem;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 80% -10%, rgba(242, 177, 63, 0.055), transparent 28rem),
    var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

address {
  font-style: normal;
}

::selection {
  background: var(--color-accent);
  color: #171006;
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  inset-block-start: 0.75rem;
  inset-inline-start: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--color-focus);
  color: #08111a;
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform var(--duration-fast) var(--ease-standard);
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: min(calc(100% - 3rem), var(--shell));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.35rem;
  color: var(--color-muted);
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 2.25rem;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), rgba(242, 177, 63, 0.08));
}

.eyebrow span {
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
}

.section-header {
  max-width: 47rem;
  margin-bottom: clamp(2.75rem, 5vw, 4.75rem);
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
}

.section-header--center .eyebrow {
  justify-content: center;
}

.section-header h2,
.contact-band h2,
.footer-intro h2,
.autosafe h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5.2vw, 4.75rem);
  font-weight: 790;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-header > p:last-child,
.contact-band-inner > div > p:last-child,
.autosafe-inner > div:last-child > p,
.footer-intro > p {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  transition:
    color var(--duration-fast) var(--ease-standard),
    border-color var(--duration-fast) var(--ease-standard),
    background-color var(--duration-fast) var(--ease-standard),
    transform var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

.button svg {
  width: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button--primary,
.button--compact {
  background: var(--color-accent);
  color: #171006;
  box-shadow: 0 0.75rem 2.5rem rgba(242, 177, 63, 0.14);
}

.button--primary:hover,
.button--compact:hover {
  background: #d99a2d;
  box-shadow: 0 1rem 3rem rgba(242, 177, 63, 0.2);
  transform: translateY(-2px);
}

.button--secondary {
  border-color: var(--color-line-strong);
  background: rgba(255, 255, 255, 0.035);
  color: var(--color-text);
}

.button--secondary:hover {
  border-color: rgba(242, 177, 63, 0.45);
  background: var(--color-accent-soft);
  transform: translateY(-2px);
}

.button--compact {
  min-height: 2.65rem;
  padding-inline: 1rem;
  font-size: 0.83rem;
}

.button--text {
  min-height: 2.75rem;
  padding-inline: 0;
  color: var(--color-accent);
}

.action-row,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-text);
  font-weight: 700;
  text-decoration-color: transparent;
  text-underline-offset: 0.25rem;
  transition: color var(--duration-fast) var(--ease-standard);
}

.text-link svg {
  width: 1.15rem;
  fill: none;
  stroke: var(--color-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform var(--duration-fast) var(--ease-standard);
}

.text-link:hover {
  color: var(--color-accent);
}

.text-link:hover svg {
  transform: translateX(0.2rem);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  inset-block-start: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(9, 11, 14, 0.84);
  backdrop-filter: blur(18px) saturate(130%);
}

.header-shell {
  display: grid;
  height: 100%;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid rgba(242, 177, 63, 0.35);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(242, 177, 63, 0.13), rgba(255, 255, 255, 0.02));
  color: var(--color-accent);
}

.brand-mark svg {
  width: 1.7rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 0.92rem;
  font-weight: 760;
}

.brand-copy small {
  margin-top: 0.25rem;
  color: var(--color-muted);
  font-size: 0.63rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  justify-self: center;
}

.desktop-nav > a {
  padding: 0.55rem 0.78rem;
  border-radius: 999px;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 620;
  transition:
    color var(--duration-fast) var(--ease-standard),
    background var(--duration-fast) var(--ease-standard);
}

.desktop-nav > a:hover,
.desktop-nav > a[aria-current='page'] {
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-text);
}

.header-action {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  justify-content: flex-end;
}

.mobile-menu {
  display: none;
}

/* Home hero */
.home-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: clip;
  view-timeline-name: --hero-stage;
  view-timeline-axis: block;
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 1fr) minmax(28rem, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
  padding-block: clamp(4rem, 8vh, 7rem) 6rem;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.33;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  pointer-events: none;
}

.hero-aurora {
  position: absolute;
  width: 45rem;
  height: 45rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.13;
  pointer-events: none;
}

.hero-aurora--amber {
  inset-block-start: -25rem;
  inset-inline-end: -8rem;
  background: var(--color-accent);
}

.hero-aurora--blue {
  inset-block-end: -35rem;
  inset-inline-start: 15%;
  background: var(--color-focus);
  opacity: 0.07;
}

.hero-copy-scroll {
  position: relative;
  z-index: 4;
  max-width: 45rem;
}

.hero-title {
  margin: 0;
  font-size: clamp(3.6rem, 6.7vw, 6.6rem);
  font-weight: 820;
  letter-spacing: -0.067em;
  line-height: 0.91;
}

.hero-title span {
  display: block;
}

.hero-title em {
  color: var(--color-accent);
  font-style: normal;
}

.hero-lede,
.page-lede {
  max-width: 42rem;
  margin: 2rem 0 0;
  color: var(--color-text-soft);
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
  line-height: 1.62;
  text-wrap: pretty;
}

.hero-actions {
  margin-top: 2.25rem;
}

.hero-microcopy {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
  color: var(--color-muted-dark);
  font-size: 0.77rem;
  font-weight: 620;
  letter-spacing: 0.035em;
}

.hero-microcopy > span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 0.4rem var(--color-accent-soft);
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  inset-block-end: 1.5rem;
  inset-inline-start: 50%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-muted-dark);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 0.9rem;
  fill: none;
  stroke: var(--color-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

/* Hero route visual */
.route-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  aspect-ratio: 1 / 0.78;
  isolation: isolate;
}

.route-visual::before {
  content: 'TRASEU';
  position: absolute;
  z-index: -1;
  inset-block-start: 8%;
  inset-inline-end: -5%;
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 850;
  letter-spacing: -0.07em;
}

.route-aura {
  position: absolute;
  z-index: -1;
  inset: 12% 5% 2% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 177, 63, 0.09), transparent 68%);
  filter: blur(24px);
}

.route-visual svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.route-base,
.route-glow-line,
.route-live,
.route-orb {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.route-base {
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 1.2;
  stroke-dasharray: 0.008 0.019;
}

.route-glow-line,
.route-live {
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

.route-glow-line {
  stroke-width: 14;
  opacity: 0.14;
}

.route-live {
  stroke-width: 2.5;
}

.route-orb {
  stroke: #fff5d7;
  stroke-width: 7;
  stroke-dasharray: 0.001 0.999;
  filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 13px var(--color-accent));
  opacity: 0;
}

.station circle:first-child {
  fill: var(--color-bg);
  stroke: rgba(242, 177, 63, 0.18);
  stroke-width: 1;
}

.station circle:last-child {
  fill: var(--color-accent);
  stroke: rgba(255, 255, 255, 0.75);
  stroke-width: 1;
}

.station--start {
  transform: translate(52px, 420px);
}

.station--mid {
  transform: translate(384px, 224px);
}

.station--end {
  transform: translate(690px, 80px);
}

.route-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(23, 29, 36, 0.92), rgba(12, 16, 21, 0.78));
  box-shadow: var(--shadow-soft), inset 0 1px rgba(255, 255, 255, 0.05);
}

.route-card--price {
  inset-block-start: 37%;
  inset-inline-start: 44%;
  width: 13.5rem;
  padding: 1.1rem 1.2rem;
}

.route-card--price small,
.route-card--sessions small {
  color: var(--color-muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-card--price strong {
  margin-top: 0.2rem;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.route-card--price strong span {
  color: var(--color-accent);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.route-card--price p {
  margin: 0.4rem 0 0;
  color: var(--color-muted);
  font-size: 0.7rem;
}

.route-card--sessions {
  inset-block-end: 0;
  inset-inline-start: 5%;
  width: 10.5rem;
  padding: 1.2rem;
}

.route-card--sessions strong {
  color: var(--color-accent);
  font-size: 2.5rem;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.route-card--sessions > span {
  margin-bottom: 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.route-status {
  position: absolute;
  inset-block-start: 10%;
  inset-inline-start: 50%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.48rem 0.7rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(9, 11, 14, 0.72);
  color: var(--color-muted);
  font-size: 0.64rem;
  font-weight: 680;
  letter-spacing: 0.04em;
}

.route-status > span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--color-focus);
  box-shadow: 0 0 0 0.28rem var(--color-focus-soft);
}

/* Proof strip */
.proof-strip {
  position: relative;
  z-index: 4;
  border-block: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.018);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid > p {
  position: relative;
  display: grid;
  min-height: 7.5rem;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 0.15rem 0.9rem;
  margin: 0;
  padding: 1.5rem clamp(1rem, 3vw, 2.5rem);
}

.proof-grid > p + p {
  border-left: 1px solid var(--color-line);
}

.proof-grid span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--color-accent);
  font-size: 0.65rem;
  font-weight: 720;
  font-variant-numeric: tabular-nums;
}

.proof-grid strong {
  font-size: 0.92rem;
  font-weight: 720;
}

.proof-grid small {
  color: var(--color-muted-dark);
  font-size: 0.74rem;
}

/* Journey cards */
.journeys {
  background:
    radial-gradient(circle at 92% 30%, rgba(102, 175, 255, 0.045), transparent 25rem),
    var(--color-bg);
}

.journey-list {
  display: grid;
  gap: 0;
  border-block: 1px solid var(--color-line-strong);
}

.journey-card {
  position: relative;
  display: grid;
  min-height: 10.5rem;
  grid-template-columns: 3rem minmax(0, 1fr) auto 2rem;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: 1.7rem 1rem;
  transition: background-color var(--duration-normal) var(--ease-standard);
}

.journey-card + .journey-card {
  border-top: 1px solid var(--color-line);
}

.journey-card::before {
  content: '';
  position: absolute;
  inset-block: 18%;
  inset-inline-start: 0;
  width: 2px;
  background: var(--color-accent);
  opacity: 0;
  transform: scaleY(0.3);
  transition:
    opacity var(--duration-normal) var(--ease-standard),
    transform var(--duration-normal) var(--ease-standard);
}

.journey-card:hover {
  background: linear-gradient(90deg, var(--color-accent-soft), rgba(255, 255, 255, 0.015));
}

.journey-card:hover::before {
  opacity: 1;
  transform: none;
}

.journey-index {
  color: var(--color-muted-dark);
  font-size: 0.72rem;
  font-weight: 720;
  font-variant-numeric: tabular-nums;
}

.journey-card > div > p {
  margin: 0 0 0.45rem;
  color: var(--color-accent);
  font-size: 0.64rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.journey-card > div > div {
  max-width: 40rem;
  margin-top: 0.7rem;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.journey-price {
  display: flex;
  flex-direction: column;
  color: var(--color-muted-dark);
  font-size: 0.62rem;
  text-align: right;
  text-transform: uppercase;
}

.journey-price strong {
  color: var(--color-text);
  font-size: 0.92rem;
  text-transform: none;
}

.journey-card > svg {
  width: 1.4rem;
  fill: none;
  stroke: var(--color-muted);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
  transition:
    stroke var(--duration-fast) var(--ease-standard),
    transform var(--duration-fast) var(--ease-standard);
}

.journey-card:hover > svg {
  stroke: var(--color-accent);
  transform: translateX(0.25rem);
}

/* Method story */
.method-story {
  min-height: auto;
  background:
    radial-gradient(circle at 12% 50%, rgba(242, 177, 63, 0.055), transparent 28rem),
    linear-gradient(180deg, var(--color-bg), var(--color-bg-alt) 15%, var(--color-bg-alt) 85%, var(--color-bg));
  view-timeline-name: --method-stage;
  view-timeline-axis: block;
}

.method-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.method-copy .section-header {
  margin-bottom: 2rem;
}

.method-note {
  color: var(--color-muted-dark);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.method-route {
  position: relative;
  display: grid;
  min-height: 35rem;
  align-content: center;
  gap: 1.15rem;
  isolation: isolate;
}

.method-route-line {
  position: absolute;
  z-index: 0;
  inset-block: 4rem;
  inset-inline-start: 1.4rem;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(242, 177, 63, 0.45) 0 0.35rem,
    transparent 0.35rem 0.8rem
  );
}

.method-route-line::after {
  content: '';
  position: absolute;
  inset: 0 -0.35rem;
  background: linear-gradient(to bottom, transparent, rgba(242, 177, 63, 0.14), transparent);
  filter: blur(6px);
}

.method-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 1.1rem;
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(17, 22, 28, 0.82);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.method-node {
  position: absolute;
  z-index: 2;
  inset-block-start: 50%;
  inset-inline-start: 1.4rem;
  width: 0.58rem;
  height: 0.58rem;
  border: 2px solid var(--color-bg-alt);
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 0.5rem var(--color-bg-alt), 0 0 1.5rem rgba(242, 177, 63, 0.25);
  transform: translate(-50%, -50%);
}

.method-step > p {
  grid-column: 2;
  margin: 0 0 0.25rem;
  color: var(--color-accent);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.method-step h3 {
  grid-column: 2;
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.method-step > div {
  grid-column: 2;
  margin-top: 0.45rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Transmission */
.transmission {
  overflow: clip;
}

.transmission-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(28rem, 1.15fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.gear-scene {
  position: relative;
  display: grid;
  min-height: 35rem;
  grid-template-columns: 1fr 6rem 1fr;
  align-items: center;
  isolation: isolate;
}

.ghost-word {
  position: absolute;
  z-index: -1;
  inset-block-start: 8%;
  inset-inline-start: -10%;
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(4.5rem, 10vw, 9rem);
  font-weight: 850;
  letter-spacing: -0.07em;
}

.gear {
  position: relative;
  display: flex;
  min-height: 16rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  border: 1px solid var(--color-line-strong);
  border-radius: 50% 50% var(--radius-lg) var(--radius-lg);
  background:
    radial-gradient(circle at 50% 20%, rgba(242, 177, 63, 0.1), transparent 40%),
    var(--color-surface);
  box-shadow: var(--shadow-soft), inset 0 1px rgba(255, 255, 255, 0.04);
}

.gear > span {
  position: absolute;
  inset-block-start: 18%;
  inset-inline-start: 50%;
  color: var(--color-accent);
  font-size: 3.7rem;
  font-weight: 820;
  line-height: 1;
  transform: translateX(-50%);
}

.gear strong {
  font-size: 1.25rem;
}

.gear small {
  color: var(--color-muted);
  font-size: 0.68rem;
}

.gear--auto {
  transform: translateY(-3rem);
}

.gear-route {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-focus));
}

.gear-route::before,
.gear-route::after,
.gear-route span {
  content: '';
  position: absolute;
  inset-block-start: 50%;
  width: 0.65rem;
  height: 0.65rem;
  border: 2px solid var(--color-bg);
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 0.3rem var(--color-accent-soft);
  transform: translateY(-50%);
}

.gear-route::before { inset-inline-start: -0.2rem; }
.gear-route::after { inset-inline-end: -0.2rem; background: var(--color-focus); }
.gear-route span { inset-inline-start: 50%; width: 0.35rem; height: 0.35rem; }

/* Pricing */
.pricing {
  background:
    radial-gradient(circle at 18% 28%, rgba(242, 177, 63, 0.07), transparent 29rem),
    var(--color-bg-alt);
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(20rem, 0.75fr);
  gap: 1rem;
}

.price-main,
.price-extra {
  position: relative;
  overflow: clip;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.price-main {
  padding: clamp(1.75rem, 5vw, 4rem);
  background:
    linear-gradient(135deg, rgba(242, 177, 63, 0.12), transparent 42%),
    var(--color-surface);
}

.price-main::after {
  content: 'B';
  position: absolute;
  inset-block-end: -3.5rem;
  inset-inline-end: 1rem;
  color: rgba(255, 255, 255, 0.025);
  font-size: 17rem;
  font-weight: 860;
  line-height: 0.8;
}

.price-heading {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.price-heading p,
.price-kicker {
  margin: 0;
  font-weight: 730;
}

.price-heading > span {
  padding: 0.42rem 0.65rem;
  border: 1px solid rgba(242, 177, 63, 0.22);
  border-radius: 999px;
  color: var(--color-accent);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.price-value {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 0.7rem;
  margin: 2rem 0;
  line-height: 0.85;
}

.price-value strong {
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 820;
  letter-spacing: -0.075em;
}

.price-value span {
  margin-bottom: 0.85rem;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.price-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 2rem;
  border-block: 1px solid var(--color-line);
}

.price-facts p {
  display: flex;
  min-height: 5.5rem;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 1rem;
}

.price-facts p + p {
  border-left: 1px solid var(--color-line);
}

.price-facts strong {
  font-size: 0.95rem;
}

.price-facts span {
  color: var(--color-muted);
  font-size: 0.7rem;
}

.price-main > .button {
  position: relative;
  z-index: 2;
}

.price-extra {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.75rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 70% 18%, rgba(102, 175, 255, 0.1), transparent 13rem),
    var(--color-surface);
}

.price-extra .price-value {
  margin-block: 1.5rem;
}

.price-extra .price-value strong {
  font-size: clamp(4rem, 6vw, 6rem);
}

.price-extra > p:not(.price-value, .price-kicker) {
  margin: 0 0 2rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.price-updated {
  margin: 1rem 0 0;
  color: var(--color-muted-dark);
  font-size: 0.72rem;
  text-align: right;
}

/* Process and repeated editorial lists */
.process-list,
.value-list,
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list > li,
.value-list > article,
.use-case-grid > article {
  position: relative;
  min-height: 15rem;
  padding: 1.7rem;
  border-top: 1px solid var(--color-line-strong);
}

.process-list > li + li,
.value-list > article + article,
.use-case-grid > article + article {
  border-left: 1px solid var(--color-line);
}

.process-list > li::before {
  content: '';
  position: absolute;
  inset-block-start: -0.28rem;
  inset-inline-start: 1.7rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 0.45rem var(--color-bg), 0 0 1rem rgba(242, 177, 63, 0.25);
}

.process-list span,
.value-list span,
.use-case-grid span {
  color: var(--color-accent);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.process-list h3,
.value-list h3,
.use-case-grid h3 {
  margin: 3.5rem 0 0.75rem;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.process-list p,
.value-list p,
.use-case-grid p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

/* Guides */
.guides {
  background: linear-gradient(180deg, var(--color-bg), var(--color-bg-alt), var(--color-bg));
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.guide-card {
  position: relative;
  min-height: 21rem;
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.028), transparent 55%),
    var(--color-surface);
  transition:
    border-color var(--duration-normal) var(--ease-standard),
    transform var(--duration-normal) var(--ease-standard);
}

.guide-card:hover {
  border-color: rgba(242, 177, 63, 0.25);
  transform: translateY(-0.2rem);
}

.guide-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 4rem;
  color: var(--color-muted-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-meta span {
  color: var(--color-accent);
}

.guide-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.guide-card h3 a::after {
  content: '';
  position: absolute;
  inset: 0;
}

.guide-card > p:not(.guide-meta) {
  max-width: 33rem;
  margin: 1rem 0 2rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.guide-card .text-link {
  position: relative;
  z-index: 2;
}

/* Social */
.social-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 7vw, 7rem);
}

.social-links {
  display: grid;
  gap: 0.75rem;
}

.social-links > a {
  display: grid;
  min-height: 6.5rem;
  grid-template-columns: 3.25rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  transition:
    border-color var(--duration-fast) var(--ease-standard),
    background var(--duration-fast) var(--ease-standard);
}

.social-links > a:hover {
  border-color: rgba(242, 177, 63, 0.28);
  background: var(--color-surface-raised);
}

.social-links > a > span {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 800;
}

.social-links > a > svg,
.article-aside a svg {
  width: 1.15rem;
  fill: none;
  stroke: var(--color-muted);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

/* FAQ */
.faq {
  background: var(--color-bg-alt);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-list {
  border-top: 1px solid var(--color-line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--color-line);
}

.faq-list summary {
  display: grid;
  min-height: 5.3rem;
  grid-template-columns: 1fr 2rem;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-weight: 680;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  width: 1.2rem;
  fill: none;
  stroke: var(--color-accent);
  stroke-linecap: round;
  stroke-width: 1.5;
  transition: transform var(--duration-normal) var(--ease-standard);
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list .faq-answer p {
  max-width: 43rem;
  margin: -0.35rem 3rem 1.6rem 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.faq-list .faq-answer {
  overflow: hidden;
}

.faq-list details.is-collapsing .faq-answer {
  opacity: 0;
  transform: translateY(-0.25rem);
  transition:
    opacity 180ms var(--ease-standard),
    transform 220ms var(--ease-standard);
}

.faq-list details.is-collapsing summary svg {
  transform: rotate(0deg);
}

/* AutoSafe */
.autosafe {
  overflow: clip;
}

.autosafe-inner {
  display: grid;
  grid-template-columns: minmax(17rem, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.autosafe-mark {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--color-line-strong);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(242, 177, 63, 0.12), transparent 56%),
    var(--color-surface);
}

.autosafe-mark::before,
.autosafe-mark::after {
  content: '';
  position: absolute;
  border: 1px dashed rgba(242, 177, 63, 0.18);
  border-radius: inherit;
}

.autosafe-mark::before { inset: 12%; }
.autosafe-mark::after { inset: -6%; }

.autosafe-mark span {
  color: var(--color-accent);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 820;
  letter-spacing: -0.07em;
}

.autosafe address,
.autosafe-hours {
  margin-top: 1.2rem;
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

.autosafe .text-link {
  margin-top: 1.5rem;
}

/* Contact band */
.contact-band {
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.contact-band-inner {
  position: relative;
  display: grid;
  overflow: clip;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 3rem;
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid rgba(242, 177, 63, 0.2);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(242, 177, 63, 0.16), transparent 22rem),
    linear-gradient(135deg, var(--color-surface-warm), var(--color-surface));
  box-shadow: var(--shadow-soft), inset 0 1px rgba(255, 255, 255, 0.05);
}

.contact-band-inner::after {
  content: 'START';
  position: absolute;
  inset-block-end: -1.9rem;
  inset-inline-end: 2rem;
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(5rem, 11vw, 10rem);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.contact-band-inner > * {
  position: relative;
  z-index: 2;
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: 38rem;
  overflow: clip;
  padding-block: 2rem clamp(5rem, 9vw, 8rem);
  border-bottom: 1px solid var(--color-line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    var(--color-bg);
  background-size: 4.5rem 4.5rem;
}

.page-hero-glow {
  position: absolute;
  inset-block-start: -22rem;
  inset-inline-end: -12rem;
  width: 50rem;
  height: 50rem;
  border-radius: 50%;
  background: var(--color-accent);
  filter: blur(100px);
  opacity: 0.09;
}

.page-hero-grid {
  display: grid;
  min-height: 30rem;
  grid-template-columns: minmax(0, 1fr) 19rem;
  align-items: center;
  gap: 4rem;
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 56rem;
}

.page-hero-copy h1,
.article-header h1,
.legal-page h1,
.not-found h1 {
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 6.5rem);
  font-weight: 810;
  letter-spacing: -0.066em;
  line-height: 0.94;
  text-wrap: balance;
}

.page-hero-copy .button {
  margin-top: 2.2rem;
}

.page-hero-signal {
  position: relative;
  display: grid;
  width: 18rem;
  height: 18rem;
  place-items: center;
  border: 1px solid var(--color-line-strong);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 177, 63, 0.1), transparent 64%);
}

.page-hero-signal::after {
  content: '';
  position: absolute;
  inset: 2.5rem;
  border: 1px dashed rgba(242, 177, 63, 0.25);
  border-radius: 50%;
}

.signal-index {
  color: rgba(255, 255, 255, 0.08);
  font-size: 6rem;
  font-weight: 820;
  line-height: 1;
}

.signal-line {
  position: absolute;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  transform: rotate(-38deg);
}

.signal-dot {
  position: absolute;
  inset-block-start: 3.5rem;
  inset-inline-end: 4rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 0.55rem var(--color-accent-soft), 0 0 2rem rgba(242, 177, 63, 0.4);
}

.signal-city {
  position: absolute;
  inset-block-end: 2.3rem;
  color: var(--color-muted-dark);
  font-size: 0.62rem;
  font-weight: 720;
  letter-spacing: 0.18em;
}

.breadcrumbs {
  position: relative;
  z-index: 3;
  margin-block: 1rem 3rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  color: var(--color-muted-dark);
  font-size: 0.7rem;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 0.4rem;
  color: rgba(255, 255, 255, 0.2);
}

.breadcrumbs a:hover {
  color: var(--color-text);
}

/* Inner page sections */
.editorial-section {
  background: var(--color-bg);
}

.editorial-grid,
.service-overview-grid,
.confidence-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.prose-lead {
  max-width: 45rem;
  color: var(--color-text-soft);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.68;
}

.prose-lead p {
  margin: 0 0 1.6rem;
}

.facts-list {
  margin: 0;
  border-top: 1px solid var(--color-line-strong);
}

.facts-list > div {
  display: grid;
  min-height: 5rem;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--color-line);
}

.facts-list dt {
  color: var(--color-muted);
  font-size: 0.76rem;
}

.facts-list dd {
  margin: 0;
  font-weight: 720;
  text-align: right;
}

.learning-road {
  background: var(--color-bg-alt);
}

.learning-list {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.learning-list::before {
  content: '';
  position: absolute;
  inset-block: 3rem;
  inset-inline-start: 2rem;
  width: 1px;
  background: repeating-linear-gradient(to bottom, var(--color-accent) 0 0.3rem, transparent 0.3rem 0.75rem);
  opacity: 0.35;
}

.learning-list li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 4rem 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--color-line);
}

.learning-list li > span {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border: 1px solid rgba(242, 177, 63, 0.18);
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-accent);
  font-size: 0.65rem;
  font-weight: 750;
}

.learning-list h3,
.confidence-route h3 {
  margin: 0;
  font-size: 1.25rem;
}

.learning-list p,
.confidence-route li p {
  margin: 0.35rem 0 0;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.service-price-hero {
  padding-block: clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 20% 30%, rgba(242, 177, 63, 0.08), transparent 25rem),
    var(--color-bg-alt);
}

.service-price-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}

.service-price {
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
  margin: 0;
  line-height: 0.85;
}

.service-price strong {
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 820;
  letter-spacing: -0.08em;
}

.service-price span {
  margin-bottom: 0.8rem;
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.service-price-inner > div > p:last-child {
  max-width: 38rem;
  margin: 1.4rem 0 0;
  color: var(--color-muted);
}

.use-case-grid {
  grid-template-columns: repeat(3, 1fr);
}

.confidence-route {
  background: var(--color-bg-alt);
}

.confidence-route ol {
  position: relative;
  display: grid;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.confidence-route ol::before {
  content: '';
  position: absolute;
  inset-block: 1.5rem;
  inset-inline-start: 0.45rem;
  width: 1px;
  background: linear-gradient(var(--color-accent), var(--color-focus));
  opacity: 0.5;
}

.confidence-route li {
  position: relative;
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 1.25rem;
}

.confidence-route li > span {
  position: relative;
  z-index: 1;
  width: 0.9rem;
  height: 0.9rem;
  margin-top: 0.3rem;
  border: 3px solid var(--color-bg-alt);
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(242, 177, 63, 0.3);
}

/* Articles */
.article-header {
  position: relative;
  overflow: clip;
  padding-block: 2rem clamp(4.5rem, 9vw, 8rem);
  border-bottom: 1px solid var(--color-line);
  background:
    radial-gradient(circle at 85% 12%, rgba(242, 177, 63, 0.09), transparent 29rem),
    var(--color-bg);
}

.article-header-inner {
  max-width: 60rem;
}

.article-header .breadcrumbs {
  margin-bottom: 4.5rem;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  margin-top: 2rem;
  color: var(--color-muted-dark);
  font-size: 0.72rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18rem;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.article-prose,
.legal-prose {
  max-width: 48rem;
  color: var(--color-text-soft);
  font-size: 1.02rem;
  line-height: 1.78;
}

.article-prose h2,
.legal-prose h2 {
  margin: 3.2rem 0 1rem;
  color: var(--color-text);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.article-prose h2:first-child,
.legal-prose h2:first-child {
  margin-top: 0;
}

.article-prose p,
.legal-prose p {
  margin: 0 0 1.4rem;
}

.legal-prose ul {
  margin: 1.5rem 0;
  padding-left: 1.3rem;
}

.legal-prose li {
  margin-bottom: 0.65rem;
  padding-left: 0.45rem;
}

.legal-prose li::marker {
  color: var(--color-accent);
}

.article-prose ul,
.article-prose ol {
  margin: 1.5rem 0;
  padding-left: 1.3rem;
}

.article-prose li {
  margin-bottom: 0.5rem;
  padding-left: 0.45rem;
}

.article-prose li::marker {
  color: var(--color-accent);
  font-weight: 700;
}

.article-prose blockquote {
  margin: 2.5rem 0;
  padding: 1.4rem 1.6rem;
  border-left: 2px solid var(--color-accent);
  background: var(--color-accent-soft);
  color: var(--color-text);
}

.article-prose blockquote p {
  margin: 0;
}

.article-aside {
  position: sticky;
  inset-block-start: calc(var(--header-height) + 2rem);
  display: grid;
  gap: 1rem;
}

.article-aside > div {
  padding: 1.3rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.article-aside a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  padding-block: 0.65rem;
  border-top: 1px solid var(--color-line);
  color: var(--color-text-soft);
  font-size: 0.75rem;
  line-height: 1.45;
}

.article-aside p:not(.footer-label) {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.77rem;
}

.article-aside .article-aside__contact {
  border-color: rgba(251, 125, 54, 0.2);
  background:
    radial-gradient(circle at 92% 10%, rgba(251, 125, 54, 0.11), transparent 8rem),
    var(--color-surface);
}

.article-aside .article-aside__call {
  display: flex;
  min-height: 3.6rem;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 0.48rem;
  border: 1px solid rgba(251, 125, 54, 0.25);
  border-radius: 999px;
  background: rgba(251, 125, 54, 0.055);
  color: var(--color-text);
  text-decoration: none;
  transition:
    border-color var(--duration-normal) var(--ease-standard),
    background-color var(--duration-normal) var(--ease-standard),
    transform var(--duration-normal) var(--ease-emphasized);
}

.article-aside .article-aside__call:hover {
  border-color: rgba(251, 125, 54, 0.58);
  background: rgba(251, 125, 54, 0.1);
  transform: translateY(-1px);
}

.article-aside__call > span:first-child {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(251, 125, 54, 0.42);
  border-radius: 50%;
  color: #ff8847;
}

.article-aside__call > span:first-child svg {
  width: 1.08rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.article-aside__call > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.18rem;
}

.article-aside__call small {
  color: var(--color-muted);
  font-size: 0.58rem;
}

.article-aside__call strong {
  color: var(--color-text);
  font-size: 0.8rem;
}

/* Guide pages — calm editorial motion with bidirectional scroll replay. */
@keyframes guide-header-enter {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(0, 1rem, 0);
  }
  to {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@keyframes guide-title-enter {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    filter: blur(7px);
    transform: translate3d(0, 1.4rem, 0);
  }
  to {
    opacity: 1;
    clip-path: inset(-0.22em -0.12em -0.26em -0.12em);
    filter: none;
    transform: none;
  }
}

@keyframes guide-header-signal {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

.article-header::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: 0;
  width: min(32rem, 46vw);
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  transform-origin: left;
}

@media (prefers-reduced-motion: no-preference) {
  .article-header .breadcrumbs {
    animation: guide-header-enter 560ms 40ms var(--ease-emphasized) both;
  }

  .article-header .eyebrow {
    animation: guide-header-enter 600ms 120ms var(--ease-emphasized) both;
  }

  .article-header h1 {
    animation: guide-title-enter 880ms 180ms var(--ease-emphasized) both;
  }

  .article-header .page-lede {
    animation: guide-header-enter 680ms 340ms var(--ease-emphasized) both;
  }

  .article-header .article-byline {
    animation: guide-header-enter 680ms 430ms var(--ease-emphasized) both;
  }

  .article-header::after {
    animation: guide-header-signal 950ms 260ms var(--ease-emphasized) both;
  }
}

html.guide-motion-enhanced [data-guide-reveal] {
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(0, 1.2rem, 0);
  transition:
    opacity 620ms var(--ease-standard) var(--guide-reveal-delay, 0ms),
    filter 620ms var(--ease-standard) var(--guide-reveal-delay, 0ms),
    transform 760ms var(--ease-emphasized) var(--guide-reveal-delay, 0ms),
    clip-path 760ms var(--ease-emphasized) var(--guide-reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

html.guide-motion-enhanced [data-guide-reveal='heading'] {
  clip-path: inset(0 0 76% 0);
  transform: translate3d(-1.1rem, 0.75rem, 0);
}

html.guide-motion-enhanced [data-guide-reveal='quote'] {
  filter: blur(5px);
  transform: translate3d(0, 1rem, 0) scale(0.975);
}

html.guide-motion-enhanced [data-guide-reveal='list'] {
  transform: translate3d(0.8rem, 1rem, 0);
}

html.guide-motion-enhanced [data-guide-reveal='aside'] {
  transform: translate3d(1.8rem, 0.7rem, 0);
}

html.guide-motion-enhanced [data-guide-entry='up'][data-guide-reveal='rise'] {
  transform: translate3d(0, -1rem, 0);
}

html.guide-motion-enhanced [data-guide-entry='up'][data-guide-reveal='heading'] {
  clip-path: inset(76% 0 0 0);
  transform: translate3d(-1rem, -0.65rem, 0);
}

html.guide-motion-enhanced [data-guide-entry='up'][data-guide-reveal='quote'] {
  transform: translate3d(0, -0.8rem, 0) scale(0.98);
}

html.guide-motion-enhanced [data-guide-entry='up'][data-guide-reveal='list'] {
  transform: translate3d(0.7rem, -0.8rem, 0);
}

html.guide-motion-enhanced [data-guide-entry='up'][data-guide-reveal='aside'] {
  transform: translate3d(1.6rem, -0.6rem, 0);
}

html.guide-motion-enhanced [data-guide-reveal].is-guide-revealed {
  opacity: 1;
  clip-path: inset(0);
  filter: none;
  transform: none;
  will-change: auto;
}

html.guide-motion-enhanced .article-prose blockquote[data-guide-reveal] {
  transition:
    opacity 620ms var(--ease-standard) var(--guide-reveal-delay, 0ms),
    filter 620ms var(--ease-standard) var(--guide-reveal-delay, 0ms),
    transform 780ms var(--ease-emphasized) var(--guide-reveal-delay, 0ms),
    border-color 520ms var(--ease-standard) var(--guide-reveal-delay, 0ms),
    background-color 520ms var(--ease-standard) var(--guide-reveal-delay, 0ms);
}

html.guide-motion-enhanced .article-prose blockquote[data-guide-reveal]:not(.is-guide-revealed) {
  border-color: rgba(251, 125, 54, 0.12);
  background: rgba(251, 125, 54, 0.025);
}

@media (max-width: 39.9375rem) {
  html.guide-motion-enhanced [data-guide-reveal='aside'] {
    transform: translate3d(0, 1rem, 0);
  }

  html.guide-motion-enhanced [data-guide-entry='up'][data-guide-reveal='aside'] {
    transform: translate3d(0, -0.8rem, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-header .breadcrumbs,
  .article-header .eyebrow,
  .article-header h1,
  .article-header .page-lede,
  .article-header .article-byline,
  .article-header::after,
  html.guide-motion-enhanced [data-guide-reveal] {
    animation: none !important;
    clip-path: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Legal and 404 */
.legal-page {
  min-height: 70svh;
  padding-block: 2rem clamp(5rem, 9vw, 8rem);
}

.legal-shell {
  max-width: 57rem;
}

.legal-page .breadcrumbs {
  margin-bottom: 4rem;
}

.legal-page h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.legal-prose {
  margin-top: 4rem;
}

.legal-prose code {
  padding: 0.15rem 0.35rem;
  border: 1px solid var(--color-line);
  border-radius: 0.35rem;
  background: var(--color-surface);
  color: var(--color-accent);
  font-size: 0.86em;
  overflow-wrap: anywhere;
}

.legal-prose a {
  color: var(--color-text);
  text-decoration-color: rgba(255, 119, 55, 0.62);
  text-decoration-line: underline;
  text-underline-offset: 0.22rem;
}

.legal-table-wrap {
  max-width: 100%;
  margin: 1.5rem 0;
  overflow-x: auto;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
}

.legal-table-wrap table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
  font-size: 0.86rem;
  line-height: 1.5;
}

.legal-table-wrap th,
.legal-table-wrap td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--color-line);
  text-align: left;
  vertical-align: top;
}

.legal-table-wrap th {
  color: var(--color-muted-dark);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.legal-contact {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  padding: 1.2rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  font-style: normal;
}

.legal-pending {
  padding: 1.2rem;
  border-inline-start: 2px solid var(--color-accent);
  background: rgba(255, 119, 55, 0.06);
}

.legal-prose .button {
  margin-top: 1rem;
}

.not-found {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  overflow: clip;
}

.not-found-inner {
  position: relative;
  z-index: 2;
  max-width: 58rem;
  padding-block: 5rem;
}

.not-found-inner > p:not(.eyebrow) {
  max-width: 38rem;
  margin: 1.5rem 0 2.2rem;
  color: var(--color-muted);
  font-size: 1.1rem;
}

.not-found-route {
  position: absolute;
  width: 55rem;
  height: 55rem;
  inset-inline-end: -25rem;
  border: 1px dashed rgba(242, 177, 63, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 8rem rgba(242, 177, 63, 0.06);
}

/* Footer */
.site-footer {
  position: relative;
  overflow: clip;
  padding-block: clamp(5rem, 9vw, 8rem) 1.6rem;
  border-top: 1px solid var(--color-line);
  background: #07090b;
}

.footer-glow {
  position: absolute;
  inset-block-start: -25rem;
  inset-inline-start: -15rem;
  width: 55rem;
  height: 55rem;
  border-radius: 50%;
  background: var(--color-accent);
  filter: blur(120px);
  opacity: 0.055;
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(28rem, 0.8fr);
  gap: clamp(4rem, 8vw, 9rem);
}

.footer-intro h2 {
  max-width: 48rem;
}

.footer-intro .action-row {
  margin-top: 2rem;
}

.contact-pending {
  padding-left: 0.9rem;
  border-left: 2px solid var(--color-accent);
  font-size: 0.8rem !important;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.footer-label {
  margin: 0 0 0.55rem;
  color: var(--color-muted-dark);
  font-size: 0.63rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a,
.footer-button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-muted);
  cursor: pointer;
  font-size: 0.82rem;
  text-align: left;
  transition: color var(--duration-fast) var(--ease-standard);
}

.footer-links a:hover,
.footer-button:hover {
  color: var(--color-text);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--color-line);
  color: var(--color-muted-dark);
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

/* Consent */
.consent-banner {
  position: fixed;
  z-index: 500;
  inset-inline: 1rem;
  inset-block-end: 1rem;
  display: grid;
  width: min(calc(100% - 2rem), 55rem);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1.5rem;
  margin-inline: auto;
  padding: 1.4rem;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-md);
  background: rgba(17, 22, 28, 0.98);
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.55);
  animation: consent-banner-enter 420ms var(--ease-standard) both;
  backdrop-filter: blur(18px);
}

.consent-banner[hidden] {
  display: none;
}

.consent-label {
  margin: 0 0 0.2rem;
  color: var(--color-accent);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.consent-banner h2 {
  margin: 0;
  font-size: 1.2rem;
}

.consent-copy > p:not(.consent-label, .consent-status) {
  max-width: 39rem;
  margin: 0.45rem 0 0;
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.consent-banner p a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.consent-status {
  min-height: 1rem;
  margin: 0.55rem 0 0;
  color: var(--color-muted-dark);
  font-size: 0.68rem;
}

.consent-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(7.5rem, 1fr));
  gap: 0.6rem;
}

.consent-actions .button {
  min-height: 2.75rem;
  border-color: var(--color-line-strong);
  font-size: 0.8rem;
}

.consent-actions .consent-action:hover,
.consent-actions .consent-action:focus-visible {
  border-color: var(--color-accent);
  background: rgba(255, 119, 55, 0.08);
}

@keyframes consent-banner-enter {
  from {
    opacity: 0;
    transform: translateY(1rem) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Motion: initial hero, one hero handoff, one list reveal, one sticky chapter. */
@keyframes hero-line-enter {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    filter: blur(6px);
    transform: translateY(38%) skewY(1.5deg);
  }
  to {
    opacity: 1;
    clip-path: inset(-0.22em -0.12em -0.26em -0.12em);
    filter: none;
    transform: none;
  }
}

@keyframes hero-detail-enter {
  from { opacity: 0; transform: translateY(1.1rem); }
  to { opacity: 1; transform: none; }
}

@keyframes route-enter {
  from { stroke-dashoffset: 1; }
  to { stroke-dashoffset: 0; }
}

@keyframes route-signal-travel {
  0% { stroke-dashoffset: 0; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { stroke-dashoffset: -1; opacity: 0; }
}

@keyframes hero-copy-exit {
  to {
    opacity: 0.12;
    filter: blur(4px);
    transform: translate3d(-1.75rem, 2.5rem, 0) scale(0.97);
  }
}

@keyframes journey-reveal {
  from { opacity: 0.32; transform: translate3d(0, 1.5rem, 0); }
  to { opacity: 1; transform: none; }
}

@keyframes method-focus {
  0%, 100% { opacity: 0.34; transform: translate3d(1.2rem, 0, 0) scale(0.98); }
  25%, 70% { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-eyebrow {
    animation: hero-detail-enter var(--duration-flow) 60ms var(--ease-emphasized) both;
  }

  .hero-title span {
    animation: hero-line-enter var(--duration-hero) var(--ease-emphasized) both;
  }

  .hero-title span:nth-child(1) { animation-delay: 120ms; }
  .hero-title span:nth-child(2) { animation-delay: 230ms; }
  .hero-title span:nth-child(3) { animation-delay: 340ms; }
  .hero-lede { animation: hero-detail-enter 620ms 510ms var(--ease-emphasized) both; }
  .hero-actions { animation: hero-detail-enter 600ms 610ms var(--ease-emphasized) both; }
  .hero-microcopy { animation: hero-detail-enter 560ms 700ms var(--ease-emphasized) both; }
  .route-live,
  .route-glow-line { animation: route-enter 1.15s 50ms var(--ease-emphasized) both; }
  .route-orb { animation: route-signal-travel 7s 1.15s linear infinite; }
}

@supports (animation-timeline: view()) {
  @media (min-width: 64rem) and (prefers-reduced-motion: no-preference) {
    .hero-copy-scroll {
      transform-origin: left center;
      animation: hero-copy-exit linear both;
      animation-timeline: --hero-stage;
      animation-range: exit 10% exit 88%;
    }

    .journey-list {
      animation: journey-reveal linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 65%;
    }

    .method-story {
      min-height: 225svh;
      padding-block: 0;
    }

    .method-stage {
      position: sticky;
      inset-block-start: var(--header-height);
      min-height: calc(100svh - var(--header-height));
    }

    .method-step {
      animation: method-focus linear both;
      animation-timeline: --method-stage;
    }

    .method-step--1 { animation-range: cover 0% cover 48%; }
    .method-step--2 { animation-range: cover 23% cover 73%; }
    .method-step--3 { animation-range: cover 48% cover 100%; }
  }
}

/* Tablet */
@media (max-width: 63.9375rem) {
  .hero-shell,
  .transmission-grid,
  .method-stage {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
    padding-block: 6rem 7rem;
  }

  .home-hero {
    min-height: auto;
  }

  .hero-copy-scroll {
    max-width: 50rem;
  }

  .route-visual {
    width: min(100%, 41rem);
    margin-inline: auto;
  }

  .method-route {
    min-height: auto;
  }

  .transmission-grid {
    gap: 2rem;
  }

  .gear-scene {
    width: min(100%, 42rem);
    margin-inline: auto;
  }

  .price-layout {
    grid-template-columns: 1fr;
  }

  .price-extra {
    min-height: 22rem;
  }

  .process-list,
  .value-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list > li:nth-child(3),
  .value-list > article:nth-child(3) {
    border-left: 0;
  }

  .process-list > li:nth-child(n + 3),
  .value-list > article:nth-child(n + 3) {
    border-top-color: var(--color-line);
  }

  .social-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 70rem) {
  :root {
    --header-height: 4.5rem;
  }

  .site-header {
    background: var(--color-bg);
    backdrop-filter: none;
  }

  .header-shell {
    grid-template-columns: 1fr auto;
  }

  .brand-instructor,
  .desktop-nav {
    display: none;
  }

  .header-action {
    display: flex;
  }

  .mobile-menu {
    position: relative;
    z-index: 2;
    display: block;
  }

  .mobile-menu[open]::before {
    content: '';
    position: fixed;
    z-index: 0;
    inset: var(--header-height) 0 0;
    background: transparent;
  }

  .mobile-menu summary {
    position: relative;
    z-index: 2;
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-content: center;
    gap: 0.28rem;
    border: 1px solid var(--color-line-strong);
    border-radius: 50%;
    cursor: pointer;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
  }

  .mobile-menu summary:focus {
    outline: none;
  }

  .mobile-menu summary:focus-visible {
    outline: 2px solid rgba(255, 139, 75, 0.72);
    outline-offset: 0.18rem;
  }

  .mobile-menu summary::-webkit-details-marker { display: none; }

  .mobile-menu summary span {
    width: 1rem;
    height: 1px;
    background: var(--color-text);
  }

  .mobile-menu nav {
    position: absolute;
    z-index: 2;
    inset-block-start: calc(100% + 0.65rem);
    inset-inline-end: 0;
    display: grid;
    width: min(20rem, calc(100vw - 2rem));
    gap: 0.2rem;
    padding: 0.7rem;
    border: 1px solid var(--color-line-strong);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
  }

  .mobile-menu nav > a:not(.button) {
    min-height: 3rem;
    padding: 0.75rem 0.8rem;
    border-radius: var(--radius-sm);
    color: var(--color-text-soft);
    font-weight: 650;
  }

  .mobile-menu nav > a:not(.button):hover {
    background: rgba(255, 255, 255, 0.045);
  }

  .mobile-menu nav .button {
    margin-top: 0.35rem;
  }
}

@media (max-width: 54rem) {
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid > p {
    min-height: 5.8rem;
  }

  .proof-grid > p + p {
    border-top: 1px solid var(--color-line);
    border-left: 0;
  }

  .journey-card {
    grid-template-columns: 2rem minmax(0, 1fr) 1.5rem;
  }

  .journey-price {
    display: none;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-signal {
    display: none;
  }

  .page-hero {
    min-height: auto;
  }

  .editorial-grid,
  .service-overview-grid,
  .confidence-grid,
  .faq-layout,
  .autosafe-inner {
    grid-template-columns: 1fr;
  }

  .autosafe-mark {
    width: min(17rem, 80vw);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .contact-band-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/* Mobile */
@media (max-width: 39.9375rem) {
  .shell {
    width: min(calc(100% - 2rem), var(--shell));
  }

  .section {
    padding-block: 4.5rem;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  .hero-shell {
    gap: 3rem;
    padding-block: 4.5rem 5.5rem;
  }

  .hero-title {
    font-size: clamp(3rem, 15vw, 4.4rem);
    line-height: 0.93;
  }

  .hero-title span:first-child {
    font-size: 0.9em;
  }

  .hero-actions,
  .action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .action-row .button {
    width: 100%;
  }

  .hero-microcopy {
    align-items: flex-start;
    line-height: 1.45;
  }

  .hero-microcopy > span {
    flex: 0 0 auto;
    margin-top: 0.3rem;
  }

  .route-visual {
    aspect-ratio: 1 / 0.92;
  }

  .route-card--price {
    inset-block-start: 38%;
    inset-inline-start: 35%;
    width: 11.6rem;
  }

  .route-card--sessions {
    inset-inline-start: 0;
    width: 9rem;
  }

  .route-card--sessions strong {
    font-size: 2rem;
  }

  .route-status {
    inset-inline-start: 40%;
  }

  .scroll-cue {
    display: none;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h2,
  .contact-band h2,
  .footer-intro h2,
  .autosafe h2 {
    font-size: clamp(2.2rem, 11vw, 3.35rem);
    line-height: 1;
  }

  .journey-card {
    min-height: 12rem;
    grid-template-columns: 1.5rem minmax(0, 1fr) 1.25rem;
    gap: 0.8rem;
    padding-inline: 0.5rem;
  }

  .journey-card > div > div {
    font-size: 0.82rem;
  }

  .method-stage {
    gap: 1rem;
  }

  .method-step {
    grid-template-columns: 2.2rem 1fr;
    padding: 1.15rem 1rem;
  }

  .method-route-line,
  .method-node {
    inset-inline-start: 1rem;
  }

  .method-step > p,
  .method-step h3,
  .method-step > div {
    grid-column: 2;
  }

  .gear-scene {
    min-height: 28rem;
    grid-template-columns: 1fr 3rem 1fr;
  }

  .gear {
    min-height: 13rem;
    padding: 1rem;
  }

  .gear > span {
    font-size: 2.8rem;
  }

  .gear strong {
    font-size: 1rem;
  }

  .gear small {
    font-size: 0.55rem;
  }

  .price-main,
  .price-extra {
    padding: 1.5rem;
  }

  .price-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-value strong {
    font-size: clamp(4rem, 20vw, 6.2rem);
  }

  .price-facts {
    grid-template-columns: 1fr;
  }

  .price-facts p {
    min-height: 4.5rem;
    padding-inline: 0;
  }

  .price-facts p + p {
    border-top: 1px solid var(--color-line);
    border-left: 0;
  }

  .price-main .button,
  .price-extra .button {
    width: 100%;
  }

  .process-list,
  .value-list,
  .use-case-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .process-list > li,
  .value-list > article,
  .use-case-grid > article {
    min-height: 12rem;
    padding-inline: 0.75rem;
    border-left: 0 !important;
  }

  .process-list h3,
  .value-list h3,
  .use-case-grid h3 {
    margin-top: 2.2rem;
  }

  .guide-card {
    min-height: 19rem;
    padding: 1.5rem;
  }

  .guide-meta {
    margin-bottom: 3rem;
  }

  .faq-list summary {
    min-height: 4.8rem;
  }

  .autosafe-inner {
    gap: 3rem;
  }

  .contact-band {
    padding-block: 1rem 4rem;
  }

  .contact-band-inner {
    gap: 2rem;
    padding: 1.5rem;
  }

  .page-hero {
    padding-block: 1rem 4.5rem;
    background-size: 3rem 3rem;
  }

  .page-hero-grid {
    min-height: 27rem;
  }

  .page-hero-copy h1,
  .article-header h1,
  .legal-page h1,
  .not-found h1 {
    font-size: clamp(2.8rem, 14vw, 4.25rem);
    line-height: 0.97;
  }

  .breadcrumbs {
    margin-bottom: 2.5rem;
  }

  .facts-list > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding-block: 1rem;
  }

  .facts-list dd {
    text-align: left;
  }

  .service-price-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .service-price-inner .button {
    width: 100%;
  }

  .article-header {
    padding-block: 1rem 4.5rem;
  }

  .article-header .breadcrumbs {
    margin-bottom: 3rem;
  }

  .article-byline {
    flex-direction: column;
  }

  .article-layout {
    padding-block: 3.5rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .consent-banner {
    grid-template-columns: 1fr;
  }

  .consent-actions {
    width: 100%;
  }
}

@media (max-width: 23rem) {
  .hero-title {
    font-size: 2.8rem;
  }

  .route-card--price {
    inset-inline-start: 29%;
  }

  .consent-actions {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .hero-copy-scroll,
  .hero-copy-enter,
  .hero-eyebrow,
  .hero-title span,
  .hero-lede,
  .hero-actions,
  .hero-microcopy,
  .journey-list,
  .method-step,
  .route-live,
  .route-glow-line {
    animation: none !important;
    clip-path: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .route-live,
  .route-glow-line {
    stroke-dashoffset: 0;
  }

  .route-orb {
    display: none;
  }

  .consent-banner {
    animation: none;
  }

  .button,
  .text-link svg,
  .journey-card,
  .journey-card::before,
  .journey-card > svg,
  .guide-card,
  .faq-list summary svg {
    transition: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .consent-banner,
  .contact-band,
  .page-hero-signal,
  .article-aside {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .article-prose,
  .legal-prose,
  .page-lede,
  .prose-lead {
    color: #222;
  }

  .article-layout {
    display: block;
  }
}

/* Conversion-first homepage ------------------------------------------------ */
.home-v2 {
  --home-ink: #0a0b0d;
  --home-graphite: #12151a;
  --home-panel: #181c22;
  --home-paper: #f2eee5;
  --home-paper-muted: #d1c9bd;
  --home-orange: #ff8a1f;
  --home-amber: #ffc247;
}

.home-v2-section {
  padding-block: clamp(4.5rem, 7vw, 6.75rem);
}

.compact-section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.72fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.compact-section-header > div > p,
.offer-kicker,
.method-v2-lead > p:first-child,
.guide-panel-heading > p {
  margin: 0 0 0.7rem;
  color: var(--home-orange);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.compact-section-header h2,
.offer-heading h2,
.method-v2-lead h2,
.social-proof-card h2,
.final-conversion h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.057em;
  line-height: 0.98;
  text-wrap: balance;
}

.compact-section-header > p {
  max-width: 31rem;
  margin: 0;
  color: #5f5c57;
  font-size: 0.96rem;
  line-height: 1.65;
  text-wrap: pretty;
}

/* Sticky conversion navigation */
.site-header {
  height: 4.65rem;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 13, 0.93);
  box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px) saturate(120%);
}

.brand-mark {
  border-color: rgba(255, 138, 31, 0.42);
  background: rgba(255, 138, 31, 0.08);
}

.desktop-nav > a {
  font-size: 0.8rem;
}

.header-action .button {
  min-height: 2.75rem;
  border: 1px solid var(--color-accent);
  border-radius: 0.75rem;
  background: var(--color-accent);
  color: #171006;
  box-shadow: 0 0.7rem 2rem rgba(255, 138, 31, 0.16);
}

.header-action .button svg {
  width: 1.05rem;
}

/* Hero */
.conversion-hero {
  position: relative;
  overflow: clip;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 77% 15%, rgba(255, 138, 31, 0.13), transparent 28rem),
    linear-gradient(135deg, #090b0e 0%, #101319 62%, #0b0d10 100%);
}

.conversion-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
  pointer-events: none;
}

.hero-lane {
  position: absolute;
  z-index: 0;
  width: 38rem;
  height: 82rem;
  border: 1px solid rgba(255, 138, 31, 0.14);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(47deg);
}

.hero-lane--one {
  inset-block-start: -36rem;
  inset-inline-end: -5rem;
}

.hero-lane--two {
  inset-block-start: -33rem;
  inset-inline-end: 0;
  border-style: dashed;
  opacity: 0.6;
}

.conversion-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 41.5rem;
  grid-template-columns: minmax(0, 0.91fr) minmax(29rem, 1.09fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  padding-block: clamp(3.8rem, 7vh, 5.8rem);
}

.conversion-copy {
  max-width: 40rem;
}

.conversion-kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.15rem;
  color: #d3d7dc;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--home-orange);
  box-shadow: 0 0 0 0.38rem rgba(255, 138, 31, 0.12);
}

.conversion-copy h1 {
  max-width: 13ch;
  margin: 0;
  color: #f7f4ee;
  font-size: clamp(2.8rem, 4.65vw, 4.45rem);
  font-weight: 820;
  letter-spacing: -0.064em;
  line-height: 0.96;
  text-wrap: balance;
}

.conversion-copy h1 span {
  display: block;
  margin-top: 0.08em;
  color: var(--home-orange);
}

.conversion-lede {
  max-width: 37rem;
  margin: 1.45rem 0 0;
  color: #bdc4cb;
  font-size: clamp(1rem, 1.45vw, 1.13rem);
  line-height: 1.63;
  text-wrap: pretty;
}

.conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.conversion-actions .button {
  min-height: 3.25rem;
  border-radius: 0.8rem;
}

.conversion-actions .button--primary {
  background: linear-gradient(135deg, var(--home-orange), #f5a33d);
  box-shadow: 0 0.85rem 2.75rem rgba(255, 138, 31, 0.18);
}

.response-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1rem 0 0;
  color: #828b94;
  font-size: 0.72rem;
}

.response-note svg {
  width: 1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--home-amber);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.vehicle-console {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.6rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 43%),
    rgba(17, 20, 25, 0.9);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.08);
}

.vehicle-console::before {
  content: '';
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--home-orange), var(--home-amber), transparent);
}

.console-header {
  display: flex;
  min-height: 4.3rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.console-header p {
  margin: 0;
  color: #8f98a2;
  font-size: 0.66rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.console-header p span {
  color: var(--home-orange);
}

.console-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #d7dce0;
  font-size: 0.68rem;
  font-weight: 700;
}

.console-status i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--home-orange);
  box-shadow: 0 0 0 0.28rem rgba(255, 138, 31, 0.13);
}

.console-visual {
  position: relative;
  min-height: 19rem;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 55% 70%, rgba(255, 138, 31, 0.16), transparent 17rem);
  background-size: 2.25rem 2.25rem, 2.25rem 2.25rem, auto;
}

.console-visual::after {
  content: '';
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: 5rem;
  background: linear-gradient(to bottom, transparent, rgba(8, 10, 13, 0.88));
  pointer-events: none;
}

.console-letter {
  position: absolute;
  inset-block-start: -2.4rem;
  inset-inline-end: 0.5rem;
  color: rgba(255, 255, 255, 0.035);
  font-size: 17rem;
  font-weight: 850;
  letter-spacing: -0.1em;
  line-height: 1;
}

.hero-car-photo {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 57%;
}

.console-model {
  position: absolute;
  z-index: 3;
  inset-block-end: 0.65rem;
  inset-inline: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 0;
  color: #edf0f2;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.console-model span {
  color: var(--home-orange);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-model i {
  width: 1px;
  height: 0.9rem;
  background: rgba(255, 255, 255, 0.17);
}

.console-offer {
  display: grid;
  grid-template-columns: minmax(10rem, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 8, 11, 0.48);
}

.console-offer > div {
  padding: 1.05rem 1.25rem;
}

.console-offer small {
  color: #8e969e;
  font-size: 0.6rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-offer > div > p {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin: 0.25rem 0 0;
  line-height: 1;
}

.console-offer > div strong {
  color: #faf6ef;
  font-size: 2.35rem;
  letter-spacing: -0.06em;
}

.console-offer > div span {
  color: var(--home-orange);
  font-size: 0.65rem;
  font-weight: 800;
}

.console-offer ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  list-style: none;
}

.console-offer li {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 0.8rem;
  color: #858e97;
  font-size: 0.58rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.console-offer li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.console-offer li strong {
  color: #f1f3f5;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.hero-fact-rail {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 9, 0.55);
}

.hero-fact-rail > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-fact-rail p {
  display: flex;
  min-height: 4.25rem;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  padding: 0.8rem 1.2rem;
  color: #bdc3c9;
  font-size: 0.75rem;
  font-weight: 680;
}

.hero-fact-rail p + p {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-fact-rail p span {
  color: var(--home-orange);
  font-size: 0.6rem;
  font-variant-numeric: tabular-nums;
}

/* User intent cards */
.decision-section {
  background: var(--home-paper);
  color: var(--home-ink);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.decision-card {
  display: flex;
  min-width: 0;
  min-height: 23rem;
  flex-direction: column;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  border: 1px solid rgba(10, 11, 13, 0.14);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 0.75rem 2.5rem rgba(30, 23, 17, 0.035);
  transition:
    border-color var(--duration-normal) var(--ease-standard),
    box-shadow var(--duration-normal) var(--ease-standard),
    transform var(--duration-normal) var(--ease-standard);
}

.decision-card:hover {
  border-color: rgba(255, 138, 31, 0.52);
  box-shadow: 0 1.5rem 4rem rgba(52, 31, 13, 0.09);
  transform: translateY(-0.25rem);
}

.decision-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.decision-number {
  color: #817b73;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.decision-icon {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border-radius: 0.8rem;
  background: #15181c;
  color: var(--home-orange);
}

.decision-icon svg {
  width: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.decision-label {
  margin: 1.65rem 0 0.45rem;
  color: #9f4e14;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.decision-card h3 {
  margin: 0;
  color: #101216;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.decision-copy {
  margin: 0.85rem 0 1.35rem;
  color: #66615a;
  font-size: 0.86rem;
  line-height: 1.58;
}

.decision-price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 11, 13, 0.12);
}

.decision-price span {
  color: #837d75;
  font-size: 0.64rem;
}

.decision-price strong {
  color: #121418;
  font-size: 0.95rem;
}

.decision-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.decision-actions .button {
  min-height: 2.8rem;
  border-radius: 0.7rem;
  font-size: 0.76rem;
}

.decision-actions > a:not(.button) {
  color: #4d4944;
  font-size: 0.72rem;
  font-weight: 740;
}

/* Vehicle selector */
.vehicle-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 5%, rgba(255, 138, 31, 0.09), transparent 25rem),
    #0b0d10;
}

.compact-section-header--inverse h2 {
  color: #f6f3ed;
}

.compact-section-header--inverse > p {
  color: #9ca5ae;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.vehicle-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 31rem;
  overflow: hidden;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 0.5rem 1rem;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1.35rem;
  background: linear-gradient(145deg, #171a1f, #101318);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.vehicle-card::before {
  content: '';
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--home-orange), transparent);
}

.vehicle-card--automatic {
  background:
    radial-gradient(circle at 75% 38%, rgba(255, 194, 71, 0.12), transparent 18rem),
    linear-gradient(145deg, #191b1e, #111419);
}

.vehicle-card-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.vehicle-card-meta > span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(255, 138, 31, 0.35);
  border-radius: 50%;
  color: var(--home-orange);
  font-size: 0.78rem;
  font-weight: 820;
}

.vehicle-card-meta p {
  margin: 0;
  color: #c7cdd2;
  font-size: 0.67rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.vehicle-art {
  position: absolute;
  inset: 4.2rem -4% auto;
  height: 19rem;
  pointer-events: none;
}

.vehicle-art::after {
  content: '';
  position: absolute;
  inset: auto 12% 1.25rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 138, 31, 0.08);
  filter: blur(25px);
}

.vehicle-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 1.4rem 1.4rem rgba(0, 0, 0, 0.38));
}

.vehicle-card-copy {
  position: relative;
  z-index: 3;
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  padding-top: 19rem;
}

.vehicle-card-copy > p {
  margin: 0 0 0.35rem;
  color: var(--home-orange);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.vehicle-card-copy h3 {
  margin: 0;
  color: #f6f4ef;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.vehicle-card-copy > div {
  margin-top: 0.65rem;
  color: #9fa7af;
  font-size: 0.84rem;
  line-height: 1.55;
}

.vehicle-card > .button {
  position: relative;
  z-index: 4;
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  justify-self: end;
  min-height: 2.8rem;
  border-radius: 0.72rem;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.72rem;
}

/* Offer */
.offer-section {
  background: #111419;
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.78fr) minmax(24rem, 1.28fr) minmax(15rem, 0.74fr);
  align-items: stretch;
  gap: 0.9rem;
}

.offer-heading {
  padding: 1.25rem 1.4rem 1.25rem 0;
}

.offer-heading h2 {
  color: #f6f3ed;
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
}

.offer-heading > p:last-child {
  margin: 1.2rem 0 0;
  color: #919aa3;
  font-size: 0.84rem;
  line-height: 1.62;
}

.offer-card,
.extra-session {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1.25rem;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.055);
}

.offer-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 138, 31, 0.16), transparent 18rem),
    #191d23;
}

.offer-card-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.offer-card-main > div > p {
  margin: 0;
  color: #f5f3ee;
  font-weight: 730;
}

.offer-card-main > div > span {
  color: #929ba4;
  font-size: 0.68rem;
}

.offer-price {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  margin: 0;
  line-height: 0.85;
}

.offer-price strong {
  color: #f8f4ed;
  font-size: clamp(3rem, 5vw, 4.6rem);
  letter-spacing: -0.075em;
}

.offer-price span {
  margin-bottom: 0.45rem;
  color: var(--home-orange);
  font-size: 0.63rem;
  font-weight: 800;
}

.offer-facts {
  display: grid;
  gap: 0.65rem;
  margin: 2rem 0;
  padding: 1.25rem 0;
  border-block: 1px solid rgba(255, 255, 255, 0.09);
  list-style: none;
}

.offer-facts li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #abb2b9;
  font-size: 0.8rem;
}

.offer-facts svg {
  width: 1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--home-orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.offer-facts strong {
  color: #eef0f1;
}

.offer-card > .button,
.extra-session > .button {
  width: 100%;
  margin-top: auto;
  border-radius: 0.75rem;
}

.extra-session {
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 2.6vw, 2rem);
  background: #0d1014;
}

.extra-session > div > span {
  color: #9ba3ab;
  font-size: 0.67rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.extra-session > div > p {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin: 0.6rem 0 0;
  color: var(--home-orange);
  font-size: 0.68rem;
  font-weight: 800;
}

.extra-session > div strong {
  color: #f6f3ed;
  font-size: clamp(3rem, 4.2vw, 4rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.extra-session > p {
  margin: 1.4rem 0 2rem;
  color: #8f98a1;
  font-size: 0.8rem;
  line-height: 1.55;
}

/* One bold brand chapter */
.method-v2 {
  padding-block: clamp(4.5rem, 7vw, 6.5rem);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 38%),
    var(--home-orange);
  color: #171006;
}

.method-v2-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(25rem, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.method-v2-lead > p:first-child {
  color: rgba(23, 16, 6, 0.67);
}

.method-v2-lead h2 {
  max-width: 12ch;
  color: #171006;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
}

.method-v2-lead > p:nth-of-type(2) {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  color: rgba(23, 16, 6, 0.72);
  font-size: 0.93rem;
  line-height: 1.65;
}

.method-v2-lead > a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.6rem;
  border-bottom: 1px solid rgba(23, 16, 6, 0.55);
  color: #171006;
  font-size: 0.8rem;
  font-weight: 780;
}

.method-v2-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(23, 16, 6, 0.28);
  list-style: none;
}

.method-v2-steps li {
  display: grid;
  min-height: 8rem;
  grid-template-columns: 3rem 1fr;
  align-items: center;
  gap: 1.2rem;
  border-bottom: 1px solid rgba(23, 16, 6, 0.24);
}

.method-v2-steps > li > span {
  color: rgba(23, 16, 6, 0.52);
  font-size: 0.65rem;
  font-weight: 800;
}

.method-v2-steps h3 {
  margin: 0;
  color: #171006;
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.method-v2-steps p {
  margin: 0.35rem 0 0;
  color: rgba(23, 16, 6, 0.67);
  font-size: 0.82rem;
}

/* Social proof + useful content */
.content-proof {
  background: #0b0d10;
}

.content-proof-grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.8fr) minmax(0, 1.2fr);
  gap: 0.9rem;
}

.social-proof-card,
.guide-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  background: #15191e;
}

.social-proof-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 3.6vw, 3rem);
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 138, 31, 0.2), transparent 19rem),
    #15191e;
  transition:
    border-color var(--duration-normal) var(--ease-standard),
    transform var(--duration-normal) var(--ease-standard);
}

.social-proof-card:hover {
  border-color: rgba(255, 138, 31, 0.42);
  transform: translateY(-0.2rem);
}

.social-proof-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  color: #9ea6ae;
  font-size: 0.68rem;
  font-weight: 700;
}

.tiktok-mark {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border-radius: 0.8rem;
  background: #080a0d;
  color: var(--home-orange);
  font-size: 0.7rem;
  font-weight: 850;
}

.social-proof-top svg {
  width: 1.1rem;
  fill: none;
  stroke: var(--home-orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.social-proof-card h2 {
  max-width: 12ch;
  margin-top: clamp(3.5rem, 8vw, 6rem);
  color: #f3f1ec;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.social-proof-card > p {
  max-width: 31rem;
  margin: 1rem 0 1.5rem;
  color: #9ea6ae;
  font-size: 0.86rem;
  line-height: 1.62;
}

.social-proof-card > strong {
  color: var(--home-orange);
  font-size: 0.76rem;
}

.guide-panel {
  padding: clamp(1.2rem, 2.4vw, 2rem);
}

.guide-panel-heading {
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.guide-panel-heading > p {
  margin: 0;
}

.guide-panel-heading > a {
  color: #a7afb7;
  font-size: 0.7rem;
  font-weight: 720;
}

.compact-guide {
  display: grid;
  min-height: 9.6rem;
  grid-template-columns: 2rem minmax(0, 1fr) 1.5rem;
  align-items: center;
  gap: 1rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.compact-guide > span {
  color: var(--home-orange);
  font-size: 0.62rem;
  font-weight: 800;
}

.compact-guide h3 {
  margin: 0;
  color: #f1f2f2;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.compact-guide p {
  margin: 0.55rem 0 0;
  color: #8f98a1;
  font-size: 0.77rem;
  line-height: 1.5;
}

.compact-guide > svg {
  width: 1.15rem;
  fill: none;
  stroke: #818a93;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  transition: transform var(--duration-fast) var(--ease-standard);
}

.compact-guide:hover > svg {
  stroke: var(--home-orange);
  transform: translateX(0.2rem);
}

/* Compact FAQ and final action */
.home-v2 .faq {
  padding-block: clamp(4.5rem, 7vw, 6.5rem);
  background: #111419;
}

.home-v2 .faq-layout {
  gap: clamp(3rem, 7vw, 7rem);
}

.home-v2 .faq .section-header {
  margin-bottom: 0;
}

.home-v2 .faq .section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.home-v2 .faq-list summary {
  min-height: 4.7rem;
  font-size: 0.9rem;
}

.final-conversion {
  padding-block: clamp(1rem, 2vw, 1.5rem) clamp(4.5rem, 7vw, 6.5rem);
  background: #111419;
}

.final-conversion-inner {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 1.35rem;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.11), transparent 40%),
    var(--home-orange);
  color: #171006;
}

.final-conversion-inner::after {
  content: 'START';
  position: absolute;
  inset-block-end: -1.1rem;
  inset-inline-end: 1rem;
  color: rgba(23, 16, 6, 0.07);
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.final-conversion-inner > * {
  position: relative;
  z-index: 2;
}

.final-conversion-inner > div > p {
  margin: 0 0 0.7rem;
  color: rgba(23, 16, 6, 0.66);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.final-conversion h2 {
  max-width: 16ch;
  color: #171006;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.final-conversion small {
  display: block;
  margin-top: 0.8rem;
  color: rgba(23, 16, 6, 0.67);
}

.final-conversion .button {
  min-width: 13rem;
  border: 1px solid #15110a;
  border-radius: 0.8rem;
  background: #15110a;
  color: #fff8ee;
  box-shadow: 0 1rem 3rem rgba(58, 27, 4, 0.2);
}

.final-conversion .button:hover {
  background: #272018;
}

@keyframes conversion-rise {
  from { opacity: 0; transform: translateY(1.1rem); }
  to { opacity: 1; transform: none; }
}

@keyframes console-arrive {
  from { opacity: 0; transform: translate3d(1.5rem, 0, 0) scale(0.985); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: no-preference) {
  .conversion-kicker,
  .conversion-copy h1,
  .conversion-lede,
  .conversion-actions,
  .response-note {
    animation: conversion-rise 620ms var(--ease-emphasized) both;
  }

  .conversion-copy h1 { animation-delay: 80ms; }
  .conversion-lede { animation-delay: 170ms; }
  .conversion-actions { animation-delay: 250ms; }
  .response-note { animation-delay: 330ms; }
  .vehicle-console { animation: console-arrive 780ms 160ms var(--ease-emphasized) both; }
}

@media (max-width: 70rem) {
  .conversion-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(25rem, 1.1fr);
    gap: 2.5rem;
  }

  .offer-layout {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .extra-session {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.75fr 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }

  .extra-session > p {
    margin: 0;
  }

  .extra-session > .button {
    width: auto;
    margin: 0;
  }
}

@media (max-width: 56rem) {
  .conversion-hero-grid,
  .method-v2-grid,
  .content-proof-grid {
    grid-template-columns: 1fr;
  }

  .conversion-hero-grid {
    padding-block: 4rem;
  }

  .conversion-copy {
    max-width: 43rem;
  }

  .conversion-copy h1 {
    max-width: 15ch;
  }

  .vehicle-console {
    width: min(100%, 43rem);
  }

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

  .decision-card {
    min-height: auto;
  }

  .decision-copy {
    max-width: 42rem;
  }

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

  .method-v2-lead h2 {
    max-width: 16ch;
  }
}

@media (max-width: 54rem) {
  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.65rem;
  }

  .header-action {
    display: flex;
  }

  .header-action .button {
    min-height: 2.75rem;
    padding-inline: 0.8rem;
    font-size: 0.72rem;
  }

  .mobile-menu nav {
    inset-block-start: calc(100% + 0.85rem);
  }
}

@media (max-width: 45rem) {
  .compact-section-header {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .hero-fact-rail > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-fact-rail p:nth-child(3) {
    border-left: 0;
  }

  .hero-fact-rail p:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .offer-layout {
    grid-template-columns: 1fr;
  }

  .offer-heading {
    padding-inline: 0;
  }

  .extra-session {
    grid-column: auto;
    display: flex;
  }

  .extra-session > p {
    margin: 1.4rem 0 2rem;
  }

  .extra-session > .button {
    width: 100%;
    margin-top: auto;
  }

  .final-conversion-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .final-conversion .button {
    width: fit-content;
  }
}

@media (max-width: 39.9375rem) {
  :root {
    --header-height: 4.35rem;
  }

  .home-v2-section,
  .home-v2 .faq,
  .method-v2 {
    padding-block: 3.8rem;
  }

  .site-header {
    height: 4.35rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-copy strong {
    font-size: 0.82rem;
  }

  .conversion-hero-grid {
    gap: 2.5rem;
    padding-block: 3.4rem;
  }

  .conversion-copy h1 {
    max-width: 14ch;
    font-size: clamp(2.55rem, 12.5vw, 3.65rem);
  }

  .conversion-lede {
    font-size: 0.96rem;
  }

  .conversion-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .conversion-actions .button {
    width: 100%;
  }

  .vehicle-console {
    border-radius: 1.15rem;
  }

  .console-header {
    min-height: 3.8rem;
    padding-inline: 1rem;
  }

  .console-header p {
    font-size: 0.58rem;
  }

  .console-status {
    font-size: 0.6rem;
  }

  .console-visual {
    min-height: 14.8rem;
    padding-inline: 0.4rem;
  }

  .console-letter {
    font-size: 12rem;
  }

  .hero-car-photo {
    object-position: center 55%;
  }

  .console-model {
    inset-inline: 0.6rem;
    gap: 0.35rem;
    font-size: 0.57rem;
  }

  .console-model span {
    font-size: 0.5rem;
  }

  .console-offer {
    grid-template-columns: 1fr;
  }

  .console-offer ul {
    min-height: 4.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
  }

  .hero-fact-rail p {
    min-height: 3.8rem;
    padding-inline: 0.65rem;
    font-size: 0.66rem;
  }

  .compact-section-header h2,
  .offer-heading h2,
  .method-v2-lead h2,
  .social-proof-card h2,
  .final-conversion h2 {
    font-size: clamp(2.05rem, 10vw, 2.85rem);
  }

  .decision-card {
    padding: 1.3rem;
  }

  .decision-actions {
    grid-template-columns: 1fr;
  }

  .decision-actions > a:not(.button) {
    min-height: 2.5rem;
    display: inline-flex;
    align-items: center;
  }

  .vehicle-card {
    min-height: 33rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto auto;
    padding: 1.25rem;
  }

  .vehicle-art {
    inset-block-start: 4rem;
    height: 14rem;
  }

  .vehicle-card-copy {
    grid-column: 1;
    grid-row: 3;
    padding-top: 15rem;
  }

  .vehicle-card > .button {
    grid-column: 1;
    grid-row: 4;
    justify-self: stretch;
    width: 100%;
  }

  .offer-card-main {
    flex-direction: column;
  }

  .offer-price strong {
    font-size: 3.75rem;
  }

  .method-v2-grid {
    gap: 2.5rem;
  }

  .method-v2-steps li {
    min-height: 7.5rem;
    grid-template-columns: 2rem 1fr;
  }

  .social-proof-card,
  .guide-panel {
    border-radius: 1rem;
  }

  .compact-guide {
    grid-template-columns: 1.4rem minmax(0, 1fr) 1.1rem;
    gap: 0.7rem;
  }

  .compact-guide p {
    display: none;
  }

  .home-v2 .faq-layout {
    gap: 2.5rem;
  }

  .final-conversion {
    padding-bottom: 4rem;
  }

  .final-conversion-inner {
    padding: 1.6rem;
  }

  .final-conversion .button {
    width: 100%;
  }
}

@media (max-width: 23rem) {
  .header-shell {
    gap: 0.4rem;
  }

  .brand-mark {
    width: 2.15rem;
    height: 2.15rem;
  }

  .brand-copy strong {
    font-size: 0.75rem;
  }

  .header-action .button {
    min-height: 2.75rem;
    padding-inline: 0.65rem;
  }

  .mobile-menu summary {
    width: 2.75rem;
    height: 2.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .conversion-kicker,
  .conversion-copy h1,
  .conversion-lede,
  .conversion-actions,
  .response-note,
  .vehicle-console {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media print {
  .conversion-actions,
  .hero-fact-rail,
  .decision-actions,
  .vehicle-card > .button,
  .final-conversion {
    display: none !important;
  }
}

/* Homepage v3 — open, editorial driving story ---------------------------- */
.home-v3 {
  --story-bg: #090b0e;
  --story-bg-alt: #0d1014;
  --story-fg: #f4f1eb;
  --story-copy: #aeb5bd;
  --story-muted: #727b84;
  --story-line: rgba(255, 255, 255, 0.09);
  --story-line-strong: rgba(255, 255, 255, 0.16);
  --story-accent: #fb7d36;
  --story-accent-text: #fb7d36;
  position: relative;
  overflow: clip;
  background: var(--story-bg);
  color: var(--story-fg);
}

.home-v3 .button--primary {
  border-color: var(--story-accent);
  background: var(--story-accent);
  color: #181008;
  box-shadow: 0 0.8rem 2.6rem rgba(255, 138, 31, 0.14);
}

.home-v3 .button--primary:hover {
  border-color: #e56f0c;
  background: #e56f0c;
}

.home-v3 .button--text {
  min-height: auto;
  justify-content: flex-start;
  gap: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--story-fg);
  box-shadow: none;
  font-size: 0.78rem;
}

.home-v3 .button--text span {
  border-bottom: 1px solid rgba(255, 173, 86, 0.42);
  padding-bottom: 0.22rem;
}

.home-v3 .button--text svg {
  color: var(--story-accent-text);
}

.story-section {
  position: relative;
  padding-block: clamp(5.3rem, 8vw, 7.5rem);
}

.story-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  color: #8c949c;
  font-size: 0.64rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.story-eyebrow span {
  color: var(--story-accent-text);
  font-variant-numeric: tabular-nums;
}

.story-eyebrow i {
  width: 2.6rem;
  height: 1px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, var(--story-accent-text), transparent);
}

.story-heading {
  display: grid;
  grid-template-columns: minmax(11rem, 0.42fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(3rem, 10vw, 9rem);
  margin-bottom: clamp(3rem, 5vw, 4.8rem);
}

.story-heading > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.58fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
}

.story-heading h2,
.method-flow h2,
.price-story h2,
.content-flow h2,
.story-final h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--story-fg);
  font-size: clamp(2.35rem, 4vw, 3.65rem);
  font-weight: 790;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.story-heading > div > p,
.method-flow header > p:not(.story-eyebrow),
.price-story header > p:not(.story-eyebrow),
.content-flow__social > p:not(.story-eyebrow) {
  max-width: 32rem;
  margin: 0;
  color: var(--story-copy);
  font-size: 0.96rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.story-link {
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  gap: 0.55rem;
  color: var(--story-fg);
  font-size: 0.79rem;
  font-weight: 720;
  text-decoration: none;
}

.story-link span {
  color: var(--story-accent-text);
}

/* Hero */
.story-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: clip;
  background:
    radial-gradient(circle at 64% 42%, rgba(255, 125, 54, 0.1), transparent 27rem),
    linear-gradient(108deg, #090b0e 0%, #0c0e11 48%, #08090b 100%);
}

.story-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(118deg, transparent 0 52%, rgba(255, 255, 255, 0.05) 52.1%, transparent 52.3%),
    radial-gradient(circle at 84% 26%, rgba(255, 255, 255, 0.07), transparent 22rem);
  mask-image: linear-gradient(to bottom, #000, transparent 96%);
}

.story-hero__ghost,
.vehicle-story__ghost,
.price-story__ghost,
.story-final__ghost {
  position: absolute;
  color: rgba(255, 255, 255, 0.023);
  font-size: clamp(10rem, 23vw, 23rem);
  font-weight: 850;
  letter-spacing: -0.09em;
  line-height: 0.75;
  pointer-events: none;
  user-select: none;
}

.story-hero__ghost {
  inset-block-start: 15%;
  inset-inline-end: -3%;
  font-size: clamp(13rem, 26vw, 25rem);
}

.story-hero__route {
  position: absolute;
  z-index: 1;
  inset-block: 0;
  inset-inline-end: -2%;
  width: min(64rem, 67vw);
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.story-hero__route path,
.vehicle-flow__route path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.story-hero__route-base {
  stroke: rgba(255, 173, 86, 0.15);
  stroke-width: 1;
  stroke-dasharray: 3 12;
}

.story-hero__route-live {
  stroke: url('#hero-route-v3');
  stroke-width: 1.6;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

.story-hero__route-signal {
  stroke: #fff6e9;
  stroke-width: 4;
  stroke-dasharray: 0.002 0.998;
  stroke-dashoffset: -0.58;
  filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 11px rgba(255, 138, 31, 0.8));
}

.story-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: clamp(43rem, calc(100svh - var(--header-height)), 50rem);
  grid-template-columns: minmax(25rem, 0.88fr) minmax(34rem, 1.12fr);
  align-items: center;
  gap: clamp(0.5rem, 2vw, 2.5rem);
  padding-block: clamp(2.8rem, 6vh, 4.5rem) 4.25rem;
}

.story-hero__copy {
  position: relative;
  z-index: 5;
  max-width: 38rem;
}

.story-hero__copy h1 {
  max-width: 100%;
  margin: 1.35rem 0 0;
  color: var(--story-fg);
  font-size: clamp(3rem, 3.85vw, 3.9rem);
  font-weight: 815;
  letter-spacing: -0.063em;
  line-height: 0.94;
}

.story-hero__copy h1 .story-hero__title-line {
  display: block;
  width: max-content;
  max-width: none;
  margin: 0;
  color: var(--story-fg);
  white-space: nowrap;
}

.story-hero__copy h1 .story-hero__title-line--accent {
  margin-top: 0.14em;
}

.story-hero__copy h1 em {
  color: var(--story-accent-text);
  font-style: normal;
}

.story-hero__lede {
  max-width: 31rem;
  margin: 1.45rem 0 0;
  color: var(--story-copy);
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  line-height: 1.66;
}

.story-hero__actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 1.65rem;
}

.story-hero__actions .button {
  min-height: 3.2rem;
  border-color: #f4f1eb;
  border-radius: 0.55rem;
  background: #f4f1eb;
  color: #111317;
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.28);
}

.story-hero__actions .button:hover {
  border-color: #fff;
  background: #fff;
}

.story-hero__response {
  display: block;
  margin-top: 0.65rem;
  color: #858d95;
  font-size: 0.67rem;
}

.story-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 34rem;
  margin: 1.65rem 0 0;
  border-top: 1px solid var(--story-line);
}

.story-hero__facts div {
  min-width: 0;
  padding: 1rem 0.8rem 0 0;
}

.story-hero__facts div + div {
  padding-inline-start: 0.8rem;
  border-left: 1px solid var(--story-line);
}

.story-hero__facts dt {
  color: var(--story-muted);
  font-size: 0.56rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-hero__facts dd {
  margin: 0.32rem 0 0;
  color: #e5e1da;
  font-size: 0.78rem;
  font-weight: 680;
  line-height: 1.35;
}

.story-hero__media {
  position: relative;
  z-index: 3;
  display: grid;
  min-width: 0;
  min-height: clamp(40rem, calc(100svh - var(--header-height) - 1rem), 47rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  align-content: center;
  justify-items: center;
  justify-content: center;
  align-self: center;
  padding-block: 2rem;
}

.story-hero__portrait-stage {
  position: relative;
  z-index: 1;
  width: clamp(20rem, 23vw, 25rem);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 159, 91, 0.26);
  border-radius: 50%;
  isolation: isolate;
  box-shadow:
    0 2.5rem 5rem rgba(0, 0, 0, 0.38),
    0 0 0 0.55rem rgba(255, 125, 54, 0.025);
}

.story-hero__portrait {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter:
    saturate(0.82)
    contrast(0.96)
    brightness(0.94);
}

.story-hero__quote {
  box-sizing: border-box;
  width: clamp(18rem, 23vw, 23rem);
  margin: 1rem 0 0;
  padding-inline-start: 1.15rem;
  border-inline-start: 2px solid rgba(255, 125, 54, 0.72);
  color: var(--story-fg);
  transform: translateX(clamp(0.75rem, 2vw, 2rem));
}

.story-hero__quote p {
  margin: 0;
  font-size: clamp(1rem, 1.18vw, 1.1rem);
  font-weight: 590;
  letter-spacing: -0.022em;
  line-height: 1.42;
}

.story-hero__quote p > span {
  display: block;
  white-space: nowrap;
}

.story-hero__quote em {
  color: var(--story-accent-text);
  font-style: normal;
  font-weight: 760;
}

.story-hero__quote footer {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.story-hero__quote strong {
  color: var(--story-accent-text);
  font-size: 0.64rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-hero__quote footer span {
  color: var(--story-muted);
  font-size: 0.65rem;
}

.drive-scene__media figcaption span {
  color: var(--story-accent-text);
  font-size: 0.55rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drive-scene__media figcaption strong {
  color: #d9dde1;
  font-size: 0.76rem;
  font-weight: 650;
}

.story-hero__scroll {
  position: absolute;
  z-index: 5;
  inset-inline: 0;
  inset-block-end: 1.35rem;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0.8rem;
  margin-inline: auto;
  color: #777f87;
  font-size: 0.55rem;
  font-weight: 730;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.story-hero__scroll i {
  position: relative;
  width: 3.2rem;
  height: 1px;
  overflow: hidden;
  background: var(--story-line-strong);
}

.story-hero__scroll i::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--story-accent-text);
  transform: translateX(-70%);
}

/* Intent list */
.intent-flow {
  view-timeline-name: --intent-v3-stage;
  view-timeline-axis: block;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 138, 31, 0.055), transparent 26rem),
    var(--story-bg-alt);
}

.intent-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--story-line-strong);
  list-style: none;
}

.intent-list > li {
  display: grid;
  min-height: 10rem;
  grid-template-columns: 4rem minmax(16rem, 1fr) minmax(9rem, 0.3fr) minmax(8rem, auto);
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  padding-block: 1.8rem;
  border-bottom: 1px solid var(--story-line);
  background: linear-gradient(90deg, transparent, rgba(255, 138, 31, 0));
  transition: background var(--duration-normal) var(--ease-standard), padding var(--duration-normal) var(--ease-standard);
}

.intent-list > li:hover {
  padding-inline: 0.75rem;
  background: linear-gradient(90deg, rgba(255, 138, 31, 0.045), transparent 72%);
}

.intent-list__index {
  color: var(--story-accent-text);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.intent-list__copy small {
  color: var(--story-muted);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.intent-list__copy h3 {
  margin: 0.2rem 0 0;
  color: var(--story-fg);
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.intent-list__copy p {
  max-width: 38rem;
  margin: 0.45rem 0 0;
  color: #8f979f;
  font-size: 0.82rem;
  line-height: 1.5;
}

.intent-list__price {
  display: grid;
  gap: 0.2rem;
  margin: 0;
}

.intent-list__price span {
  color: var(--story-muted);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intent-list__price strong {
  color: #e8e4dd;
  font-size: 0.95rem;
}

/* Vehicles — two open scenes */
.vehicle-story {
  isolation: isolate;
  view-timeline-name: --vehicle-v3-stage;
  view-timeline-axis: block;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 138, 31, 0.065), transparent 30rem),
    #111216;
}

.vehicle-story__ghost {
  inset-block-start: 8rem;
  inset-inline-start: -4vw;
}

.story-heading--compact {
  margin-bottom: 1rem;
}

.vehicle-story .story-heading--compact > div {
  grid-template-columns: minmax(22rem, 1.2fr) minmax(14rem, 0.52fr);
  gap: clamp(2rem, 4vw, 4rem);
}

.vehicle-story .story-heading--compact h2 {
  max-width: none;
  font-size: clamp(2.6rem, 3.2vw, 3.35rem);
}

.vehicle-story .story-heading--compact h2 > span {
  display: block;
  white-space: nowrap;
}

.vehicle-flow {
  position: relative;
  view-timeline-name: --vehicle-v3-flow;
  view-timeline-axis: block;
}

.vehicle-flow__route {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.vehicle-flow__route-base {
  stroke: rgba(255, 173, 86, 0.15);
  stroke-width: 1;
  stroke-dasharray: 3 13;
}

.vehicle-flow__route-live,
.vehicle-flow__route-signal {
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

.vehicle-flow__route-live {
  stroke: rgba(255, 154, 50, 0.64);
  stroke-width: 1.6;
}

.vehicle-flow__route-signal {
  display: none;
  stroke: #fff7ec;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 0.002 0.998;
  filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 10px rgba(255, 138, 31, 0.85));
}

.drive-scene {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: clamp(27rem, 48svh, 32rem);
  grid-template-columns: minmax(17rem, 0.74fr) minmax(28rem, 1.26fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  view-timeline-name: --drive-v3-beat;
  view-timeline-axis: block;
}

.drive-scene + .drive-scene {
  margin-top: clamp(0rem, 1.2vw, 1rem);
}

.drive-scene--reverse .drive-scene__copy {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}

.drive-scene--reverse .drive-scene__media {
  grid-column: 1;
  grid-row: 1;
}

.drive-scene__copy {
  position: relative;
  z-index: 4;
  max-width: 29rem;
}

.drive-scene__eyebrow {
  margin: 0;
  color: #7f8891;
  font-size: 0.6rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drive-scene__eyebrow span {
  margin-right: 0.7rem;
  color: var(--story-accent-text);
}

.drive-scene__copy h3 {
  margin: 0.8rem 0 0;
  color: var(--story-fg);
  font-size: clamp(2.5rem, 4.4vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.drive-scene__copy > p:not(.drive-scene__eyebrow) {
  margin: 1.15rem 0 0;
  color: var(--story-copy);
  font-size: 0.95rem;
  line-height: 1.65;
}

.drive-scene__copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 1.3rem 0 1.55rem;
  padding: 0;
  list-style: none;
}

.drive-scene__copy li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #8f979f;
  font-size: 0.7rem;
  font-weight: 650;
}

.drive-scene__copy li i {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--story-accent-text);
  box-shadow: 0 0 0 0.25rem rgba(255, 138, 31, 0.09);
}

.drive-scene__media {
  position: relative;
  min-width: 0;
  min-height: 25rem;
  margin: 0 -8vw 0 -4vw;
}

.drive-scene__media::after {
  content: '';
  position: absolute;
  z-index: 3;
  inset: -1px;
  background:
    linear-gradient(90deg, #111216 0%, transparent 22%, transparent 80%, #111216 100%),
    linear-gradient(180deg, #111216 0%, transparent 26%, transparent 74%, #111216 100%);
  pointer-events: none;
}

.drive-scene--reverse .drive-scene__media {
  margin: 0 -3vw 0 -10vw;
}

.drive-scene__letter {
  position: absolute;
  z-index: 0;
  inset-block-start: 4%;
  inset-inline-end: 12%;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(11rem, 20vw, 20rem);
  font-weight: 850;
  line-height: 1;
}

.drive-scene__glow {
  position: absolute;
  z-index: 0;
  inset: 20% 13% 17%;
  border-radius: 50%;
  background: rgba(255, 138, 31, 0.13);
  filter: blur(65px);
}

.drive-scene__car {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2.2rem 2.6rem rgba(0, 0, 0, 0.48));
  -webkit-mask-image: radial-gradient(ellipse 76% 68% at 50% 52%, #000 58%, transparent 100%);
  mask-image: radial-gradient(ellipse 76% 68% at 50% 52%, #000 58%, transparent 100%);
}

.drive-scene__media--cutout::after {
  display: none;
}

.drive-scene__media--cutout {
  margin-inline: -4vw 0;
}

.drive-scene__media--cutout::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset-inline: 10% 7%;
  inset-block-end: 14%;
  height: 8%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.3) 42%, transparent 74%);
  filter: blur(0.75rem);
  pointer-events: none;
  transform: scaleY(0.58);
}

.drive-scene__media--cutout .drive-scene__glow {
  inset: 22% 7% 18%;
  background: radial-gradient(
    ellipse at 62% 50%,
    rgba(255, 167, 101, 0.1) 0%,
    rgba(171, 76, 38, 0.045) 43%,
    transparent 73%
  );
  filter: blur(4.5rem);
}

.drive-scene__media--seat .drive-scene__glow {
  inset: 4% 0 auto auto;
  width: min(31rem, 54%);
  aspect-ratio: 1;
  border: 1px solid rgba(190, 196, 205, 0.11);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 34%, rgba(154, 162, 174, 0.28), rgba(79, 86, 97, 0.34) 54%, rgba(52, 57, 65, 0.12) 72%, transparent 73%);
  box-shadow:
    0 0 0 2.5rem rgba(151, 158, 169, 0.018),
    0 0 5rem rgba(120, 128, 141, 0.07);
  filter: none;
}

.drive-scene__car--dark {
  -webkit-mask-image: none;
  mask-image: none;
  filter:
    brightness(1.06)
    contrast(0.89)
    saturate(0.82)
    sepia(0.02)
    drop-shadow(0 1.1rem 1rem rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 2rem rgba(224, 105, 50, 0.04));
}

.drive-scene__car--light {
  -webkit-mask-image: none;
  mask-image: none;
  filter:
    brightness(1.01)
    contrast(0.95)
    saturate(0.94)
    drop-shadow(0 2rem 2.2rem rgba(0, 0, 0, 0.42));
}

.drive-scene__car--seat {
  -webkit-mask-image: none;
  mask-image: none;
  filter:
    brightness(0.92)
    contrast(1.08)
    saturate(0.82)
    sepia(0.025)
    hue-rotate(-4deg)
    drop-shadow(0 2rem 2.2rem rgba(0, 0, 0, 0.48));
}

.drive-scene__car-grade {
  z-index: 3;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.drive-scene__car-grade--dark {
  opacity: 0.34;
  filter: brightness(0.48) contrast(0.82) saturate(0.66);
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    rgba(0, 0, 0, 0.94) 24%,
    rgba(0, 0, 0, 0.52) 52%,
    rgba(0, 0, 0, 0.08) 76%,
    transparent 91%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    rgba(0, 0, 0, 0.94) 24%,
    rgba(0, 0, 0, 0.52) 52%,
    rgba(0, 0, 0, 0.08) 76%,
    transparent 91%
  );
}

.drive-scene__car-grade--light {
  opacity: 0.14;
  filter: brightness(0.62) contrast(0.9) saturate(0.82);
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    rgba(0, 0, 0, 0.94) 30%,
    rgba(0, 0, 0, 0.62) 58%,
    rgba(0, 0, 0, 0.12) 82%,
    transparent 96%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    rgba(0, 0, 0, 0.94) 30%,
    rgba(0, 0, 0, 0.62) 58%,
    rgba(0, 0, 0, 0.12) 82%,
    transparent 96%
  );
}

.drive-scene__car-grade--seat {
  opacity: 0.2;
  mix-blend-mode: color;
  filter: grayscale(1) brightness(0.78) contrast(1.08);
  -webkit-mask-image: linear-gradient(
    105deg,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 30%,
    rgba(0, 0, 0, 0.88) 54%,
    #000 100%
  );
  mask-image: linear-gradient(
    105deg,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 30%,
    rgba(0, 0, 0, 0.88) 54%,
    #000 100%
  );
}

.drive-scene__car--light,
.drive-scene__car-grade--light,
.drive-scene__car--seat,
.drive-scene__car-grade--seat {
  transform: translateX(clamp(1.25rem, 2.2vw, 2.5rem));
}

@media (min-width: 56.0625rem) {
  .drive-scene--reverse .drive-scene__car--light,
  .drive-scene--reverse .drive-scene__car-grade--light,
  .drive-scene--reverse .drive-scene__car--seat,
  .drive-scene--reverse .drive-scene__car-grade--seat {
    transform: translateX(clamp(6rem, 9.5vw, 12rem));
  }

  .drive-scene--reverse .drive-scene__media--cutout::before {
    transform: translateX(clamp(4rem, 7.5vw, 9rem)) scaleY(0.58);
  }

  .drive-scene--reverse .drive-scene__media figcaption {
    inset-inline-start: 22%;
  }
}

.drive-scene__media figcaption {
  position: absolute;
  z-index: 4;
  inset-inline-end: 12%;
  inset-block-end: 9%;
  display: grid;
  gap: 0.2rem;
  padding-inline-start: 0.9rem;
  border-left: 1px solid rgba(255, 173, 86, 0.4);
}

.drive-scene--reverse .drive-scene__media figcaption {
  inset-inline: 12% auto;
}

/* Method */
.method-flow {
  view-timeline-name: --method-v3-stage;
  view-timeline-axis: block;
  background:
    radial-gradient(circle at 12% 30%, rgba(255, 138, 31, 0.065), transparent 24rem),
    var(--story-bg-alt);
}

.method-flow__grid {
  display: grid;
  grid-template-columns: minmax(19rem, 0.72fr) minmax(29rem, 1.28fr);
  gap: clamp(4rem, 11vw, 11rem);
}

.method-flow header {
  align-self: start;
}

.method-flow h2 {
  margin-top: 1.2rem;
}

.method-flow header > p:not(.story-eyebrow) {
  margin-top: 1.25rem;
}

.method-flow .story-link {
  margin-top: 1.4rem;
}

.method-route {
  position: relative;
  isolation: isolate;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-route::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset-block: 1.8rem;
  inset-inline-start: 1.1rem;
  width: 1px;
  background: linear-gradient(to bottom, var(--story-accent-text), rgba(255, 173, 86, 0.08));
}

.method-route li {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 9.5rem;
  grid-template-columns: 2.3rem minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--story-line);
}

.method-route li > span {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border-radius: 50%;
  background: var(--story-bg-alt);
  box-shadow: 0 0 0 1px rgba(255, 173, 86, 0.32), 0 0 0 0.55rem var(--story-bg-alt);
  color: var(--story-accent-text);
  font-size: 0.58rem;
  font-weight: 780;
}

.method-route h3 {
  margin: 0;
  color: var(--story-fg);
  font-size: 1.22rem;
  letter-spacing: -0.025em;
}

.method-route p {
  max-width: 34rem;
  margin: 0.45rem 0 0;
  color: #8e969e;
  font-size: 0.84rem;
  line-height: 1.55;
}

/* Price */
.price-story {
  overflow: clip;
  view-timeline-name: --price-v3-stage;
  view-timeline-axis: block;
  background:
    radial-gradient(circle at 65% 40%, rgba(255, 138, 31, 0.1), transparent 28rem),
    #080a0d;
}

.price-story__ghost {
  inset-block-start: 2rem;
  inset-inline-end: 2%;
  font-size: clamp(25rem, 54vw, 50rem);
  line-height: 1;
}

.price-story__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(17rem, 0.76fr) minmax(17rem, 0.7fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.price-story header h2 {
  margin-top: 1.2rem;
}

.price-story header > p:not(.story-eyebrow) {
  margin-top: 1.2rem;
}

.price-story__amount {
  display: grid;
  gap: 0.4rem;
}

.price-story__amount > span,
.price-story__extra > span,
.content-flow__label {
  color: var(--story-accent-text);
  font-size: 0.59rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-story__amount p {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin: 0;
  line-height: 0.86;
}

.price-story__amount strong {
  color: var(--story-fg);
  font-size: clamp(4rem, 7vw, 6.2rem);
  letter-spacing: -0.075em;
}

.price-story__amount small {
  color: var(--story-accent-text);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 820;
}

.price-story__amount em {
  color: #858e97;
  font-size: 0.73rem;
  font-style: normal;
}

.price-story__details ul {
  margin: 0 0 1.6rem;
  padding: 0;
  border-top: 1px solid var(--story-line-strong);
  list-style: none;
}

.price-story__details li {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--story-line);
}

.price-story__details li strong {
  min-width: 2rem;
  color: var(--story-fg);
  font-size: 1.3rem;
}

.price-story__details li span {
  color: #89929a;
  font-size: 0.76rem;
}

.price-story__details .button {
  width: 100%;
  border-radius: 999px;
}

.price-story__extra {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(12rem, 0.55fr) minmax(12rem, 0.4fr) minmax(17rem, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-top: 2rem;
  padding-top: 1.7rem;
  border-top: 1px solid var(--story-line-strong);
}

.price-story__extra p {
  margin: 0;
  color: var(--story-fg);
}

.price-story__extra p strong {
  font-size: 2.3rem;
  letter-spacing: -0.06em;
}

.price-story__extra small {
  color: #89929a;
  font-size: 0.78rem;
}

/* Content and guides */
.content-flow {
  view-timeline-name: --content-v3-stage;
  view-timeline-axis: block;
  background: var(--story-bg-alt);
}

.content-flow__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.content-flow__social {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.content-flow__social h2 {
  margin-top: 1.3rem;
}

.content-flow__social > p:not(.story-eyebrow) {
  margin-top: 1.2rem;
}

.content-flow__social > strong {
  margin-top: 1.4rem;
  color: var(--story-accent-text);
  font-size: 0.78rem;
}

.content-flow__guides {
  border-top: 1px solid var(--story-line-strong);
}

.content-flow__label {
  margin: 0;
  padding-block: 1rem;
  border-bottom: 1px solid var(--story-line);
}

.content-flow__guides > a {
  display: grid;
  min-height: 8rem;
  grid-template-columns: 2rem minmax(0, 1fr) 1.2rem;
  align-items: center;
  gap: 1.2rem;
  border-bottom: 1px solid var(--story-line);
  color: inherit;
  text-decoration: none;
}

.content-flow__guides > a > span {
  color: var(--story-accent-text);
  font-size: 0.62rem;
  font-weight: 780;
}

.content-flow__guides h3 {
  margin: 0;
  color: var(--story-fg);
  font-size: 1.05rem;
  line-height: 1.25;
}

.content-flow__guides a p {
  margin: 0.35rem 0 0;
  color: #7f8891;
  font-size: 0.75rem;
  line-height: 1.45;
}

.content-flow__guides svg {
  width: 1.1rem;
  fill: none;
  stroke: var(--story-accent-text);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

/* FAQ without cards */
.home-v3 .faq {
  padding-block: clamp(6rem, 10vw, 9rem);
  view-timeline-name: --faq-v3-stage;
  view-timeline-axis: block;
  background: #090b0e;
}

.home-v3 .faq-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(25rem, 1.3fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.home-v3 .faq .section-header {
  align-self: start;
}

.home-v3 .faq .section-header h2 {
  max-width: 11ch;
  color: var(--story-fg);
  font-size: clamp(2.35rem, 4vw, 3.65rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.home-v3 .faq .section-header > p:last-child {
  color: var(--story-copy);
}

.home-v3 .faq-list {
  border-top: 1px solid var(--story-line-strong);
}

.home-v3 .faq-list details {
  border-bottom: 1px solid var(--story-line);
  background: transparent;
}

.home-v3 .faq-list summary {
  min-height: 5rem;
  padding-inline: 0;
  color: #e4e1db;
  font-size: 0.92rem;
}

.home-v3 .faq-list .faq-answer p {
  padding: 0 2.6rem 1.5rem 0;
  color: #8d959d;
}

/* Final */
.story-final {
  position: relative;
  min-height: 34rem;
  overflow: clip;
  view-timeline-name: --final-v3-stage;
  view-timeline-axis: block;
  background:
    radial-gradient(circle at 80% 40%, rgba(255, 138, 31, 0.18), transparent 27rem),
    linear-gradient(135deg, #0b0d10, #15100b 70%, #0a0b0d);
}

.story-final__ghost {
  inset-inline-end: -2%;
  inset-block-end: 0;
  font-size: clamp(12rem, 29vw, 27rem);
}

.story-final__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 34rem;
  grid-template-columns: minmax(19rem, 0.72fr) minmax(31rem, 1.28fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
}

.story-final__copy {
  position: relative;
  z-index: 2;
}

.story-final__copy > p {
  margin: 0 0 0.9rem;
  color: var(--story-accent-text);
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-final h2 {
  max-width: 15ch;
}

.story-final__copy .button {
  min-width: 14rem;
  margin-top: 2rem;
  border-radius: 999px;
}

.story-final__vehicle {
  position: relative;
  z-index: 1;
  width: min(calc(100% + 2vw), 52rem);
  height: 28rem;
  margin: 0 -3vw 0 0;
  justify-self: center;
}

.story-final__vehicle img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.story-final__vehicle-image {
  filter:
    brightness(1.01)
    contrast(0.95)
    saturate(0.94)
    drop-shadow(0 2rem 2.2rem rgba(0, 0, 0, 0.42));
}

.story-final__vehicle-grade {
  z-index: 2;
  opacity: 0.14;
  mix-blend-mode: multiply;
  pointer-events: none;
  filter: brightness(0.62) contrast(0.9) saturate(0.82);
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    rgba(0, 0, 0, 0.94) 30%,
    rgba(0, 0, 0, 0.62) 58%,
    rgba(0, 0, 0, 0.12) 82%,
    transparent 96%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    rgba(0, 0, 0, 0.94) 30%,
    rgba(0, 0, 0, 0.62) 58%,
    rgba(0, 0, 0, 0.12) 82%,
    transparent 96%
  );
}

/* Meaningful, progressive motion */
@keyframes v3-hero-eyebrow-enter {
  from { opacity: 0; transform: translate3d(-1.5rem, 0, 0); }
  to { opacity: 1; transform: none; }
}

@keyframes v3-hero-line-enter {
  from {
    opacity: 0;
    clip-path: inset(42% 0 42% 0);
    filter: blur(14px);
    letter-spacing: -0.09em;
    transform: translate3d(0, 72%, 0) scale(0.76) skewY(5deg);
  }
  to {
    opacity: 1;
    clip-path: inset(-0.22em -0.12em -0.26em -0.12em);
    filter: none;
    letter-spacing: inherit;
    transform: none;
  }
}

@keyframes v3-hero-line-enter-mobile {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    filter: blur(5px);
    transform: translate3d(0, 0.8rem, 0);
  }
  to {
    opacity: 1;
    clip-path: inset(-0.22em -0.12em -0.26em -0.12em);
    filter: none;
    transform: none;
  }
}

@keyframes v3-hero-detail-enter {
  from { opacity: 0; transform: translate3d(0, 1.35rem, 0); }
  to { opacity: 1; transform: none; }
}

@keyframes v3-hero-car {
  from { opacity: 0; transform: translate3d(2rem, 0, 0) scale(0.985); }
  to { opacity: 1; transform: none; }
}

@keyframes v3-copy-left {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform: translate3d(-2.5rem, 1.5rem, 0) skewX(-1deg);
  }
  20% {
    opacity: 1;
    filter: none;
    transform: translate3d(0.25rem, -0.05rem, 0);
  }
  30%, 72% { opacity: 1; filter: none; transform: none; }
  100% { opacity: 0.88; filter: none; transform: translate3d(0.6rem, -0.9rem, 0); }
}

@keyframes v3-copy-right {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform: translate3d(2.5rem, 1.5rem, 0) skewX(1deg);
  }
  20% {
    opacity: 1;
    filter: none;
    transform: translate3d(-0.25rem, -0.05rem, 0);
  }
  30%, 72% { opacity: 1; filter: none; transform: none; }
  100% { opacity: 0.88; filter: none; transform: translate3d(-0.6rem, -0.9rem, 0); }
}

@keyframes v3-car-right {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform: translate3d(4.5vw, 2rem, 0) rotate(1.2deg) scale(0.96);
  }
  20% {
    opacity: 1;
    filter: none;
    transform: translate3d(-0.4rem, -0.1rem, 0) rotate(-0.15deg) scale(1.006);
  }
  31%, 70% { opacity: 1; filter: none; transform: none; }
  100% { opacity: 0.88; filter: none; transform: translate3d(-1rem, -1rem, 0) rotate(-0.18deg) scale(0.994); }
}

@keyframes v3-car-left {
  0% {
    opacity: 0;
    filter: blur(4px);
    transform: translate3d(-4.5vw, 2rem, 0) rotate(-1.2deg) scale(0.96);
  }
  20% {
    opacity: 1;
    filter: none;
    transform: translate3d(0.4rem, -0.1rem, 0) rotate(0.15deg) scale(1.006);
  }
  31%, 70% { opacity: 1; filter: none; transform: none; }
  100% { opacity: 0.88; filter: none; transform: translate3d(1rem, -1rem, 0) rotate(0.18deg) scale(0.994); }
}

@keyframes v3-drive-title-left {
  0% { opacity: 0; clip-path: inset(0 100% 0 0); transform: translate3d(-1.5rem, 0, 0) skewX(-2deg); }
  21% { opacity: 1; clip-path: inset(-0.22em -0.12em -0.26em -0.12em); transform: translate3d(0.15rem, 0, 0); }
  30%, 76% { opacity: 1; clip-path: inset(-0.22em -0.12em -0.26em -0.12em); transform: none; }
  100% { opacity: 0.92; clip-path: inset(-0.22em -0.12em -0.26em -0.12em); transform: translateY(-0.3rem); }
}

@keyframes v3-drive-title-right {
  0% { opacity: 0; clip-path: inset(0 0 0 100%); transform: translate3d(1.5rem, 0, 0) skewX(2deg); }
  21% { opacity: 1; clip-path: inset(-0.22em -0.12em -0.26em -0.12em); transform: translate3d(-0.15rem, 0, 0); }
  30%, 76% { opacity: 1; clip-path: inset(-0.22em -0.12em -0.26em -0.12em); transform: none; }
  100% { opacity: 0.92; clip-path: inset(-0.22em -0.12em -0.26em -0.12em); transform: translateY(-0.3rem); }
}

@keyframes v3-drive-glow {
  0% { opacity: 0; transform: translate3d(10%, 4%, 0) scale(0.72); }
  24% { opacity: 0.82; transform: translate3d(-2%, 0, 0) scale(1.04); }
  34%, 70% { opacity: 0.72; transform: none; }
  100% { opacity: 0.35; transform: translate3d(-5%, -2%, 0) scale(1.08); }
}

@keyframes v3-route-draw { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
@keyframes v3-route-signal { from { stroke-dashoffset: 0; opacity: 0; } 4%, 96% { opacity: 1; } to { stroke-dashoffset: -1; opacity: 0; } }

@keyframes v3-editorial-enter {
  from {
    opacity: 0.18;
    filter: blur(4px);
    transform: translate3d(0, 1.8rem, 0);
  }
  to {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@keyframes v3-row-enter {
  from {
    opacity: 0.16;
    transform: translate3d(0, 1.45rem, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes v3-panel-left-enter {
  from {
    opacity: 0.14;
    filter: blur(3px);
    transform: translate3d(-2rem, 1.2rem, 0);
  }
  to {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@keyframes v3-panel-right-enter {
  from {
    opacity: 0.14;
    filter: blur(3px);
    transform: translate3d(2rem, 1.2rem, 0);
  }
  to {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@keyframes v3-price-enter {
  from {
    opacity: 0.12;
    filter: blur(4px);
    transform: translate3d(0, 1.75rem, 0) scale(0.965);
  }
  to {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@keyframes v3-final-vehicle-enter {
  from {
    opacity: 0.12;
    transform: translate3d(2.5rem, 1rem, 0) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .story-hero__eyebrow {
    animation: v3-hero-eyebrow-enter var(--duration-detail) var(--duration-instant) var(--ease-emphasized) both;
  }

  .story-hero__title-line {
    animation: v3-hero-line-enter var(--duration-cinematic) var(--ease-emphasized) both;
  }

  .story-hero__title-line:nth-child(1) { animation-delay: var(--duration-fast); }
  .story-hero__title-line:nth-child(2) { animation-delay: calc(var(--duration-fast) + var(--duration-fast)); }
  .story-hero__title-line:nth-child(3) { animation-delay: var(--duration-flow); }

  .story-hero__lede {
    animation: v3-hero-detail-enter var(--duration-detail) calc(var(--duration-flow) + var(--duration-instant)) var(--ease-emphasized) both;
  }

  .story-hero__actions {
    animation: v3-hero-detail-enter var(--duration-detail) calc(var(--duration-flow) + var(--duration-fast)) var(--ease-emphasized) both;
  }

  .story-hero__response {
    animation: v3-hero-detail-enter var(--duration-detail) calc(var(--duration-flow) + var(--duration-normal)) var(--ease-emphasized) both;
  }

  .story-hero__facts {
    animation: v3-hero-detail-enter var(--duration-detail) calc(var(--duration-flow) + var(--duration-slow)) var(--ease-emphasized) both;
  }

  .story-hero__media {
    animation: v3-hero-car var(--duration-hero) var(--duration-instant) var(--ease-emphasized) both;
  }
}

@media (max-width: 39.9375rem) and (prefers-reduced-motion: no-preference) {
  .story-hero__eyebrow,
  .story-hero__title-line,
  .story-hero__lede,
  .story-hero__actions,
  .story-hero__response,
  .story-hero__facts {
    animation-duration: var(--duration-flow);
    animation-delay: 0s;
  }

  .story-hero__title-line {
    animation-name: v3-hero-line-enter-mobile;
  }

  .story-hero__title-line:nth-child(n) {
    animation-delay: 0s;
  }
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .drive-scene__copy {
      animation: v3-copy-left linear both;
      animation-timeline: --drive-v3-beat;
      animation-range: cover 2% cover 96%;
      will-change: transform, opacity, filter;
    }

    .drive-scene--reverse .drive-scene__copy {
      animation-name: v3-copy-right;
    }

    .drive-scene__copy h3 {
      animation: v3-drive-title-left linear both;
      animation-timeline: --drive-v3-beat;
      animation-range: cover 1% cover 92%;
      will-change: transform, opacity, clip-path;
    }

    .drive-scene--reverse .drive-scene__copy h3 {
      animation-name: v3-drive-title-right;
    }

    .drive-scene__media {
      animation: v3-car-right linear both;
      animation-timeline: --drive-v3-beat;
      animation-range: cover 0% cover 96%;
      will-change: transform, opacity, filter;
    }

    .drive-scene--reverse .drive-scene__media {
      animation-name: v3-car-left;
    }

    .drive-scene__glow {
      animation: v3-drive-glow linear both;
      animation-timeline: --drive-v3-beat;
      animation-range: cover 0% cover 92%;
      will-change: transform, opacity;
    }

    .vehicle-flow__route-live,
    .vehicle-flow__route-signal {
      animation-timeline: --vehicle-v3-flow;
      animation-range: cover 7% cover 94%;
    }

    .vehicle-flow__route-live {
      animation: v3-route-draw linear both;
      animation-timeline: --vehicle-v3-flow;
      animation-range: cover 7% cover 94%;
    }

    .vehicle-flow__route-signal {
      display: block;
      animation: v3-route-signal linear both;
      animation-timeline: --vehicle-v3-flow;
      animation-range: cover 7% cover 94%;
    }
  }

  @media (min-width: 56.01rem) and (prefers-reduced-motion: no-preference) {
    .intent-flow .story-heading {
      animation: v3-editorial-enter linear both;
      animation-timeline: --intent-v3-stage;
      animation-range: cover 2% cover 22%;
    }

    .intent-list > li {
      animation: v3-row-enter linear both;
      animation-timeline: --intent-v3-stage;
    }

    .intent-list > li:nth-child(1) { animation-range: cover 14% cover 34%; }
    .intent-list > li:nth-child(2) { animation-range: cover 23% cover 43%; }
    .intent-list > li:nth-child(3) { animation-range: cover 32% cover 52%; }

    .vehicle-story .story-heading {
      animation: v3-editorial-enter linear both;
      animation-timeline: --vehicle-v3-stage;
      animation-range: cover 0% cover 13%;
    }

    .method-flow header {
      animation: v3-panel-left-enter linear both;
      animation-timeline: --method-v3-stage;
      animation-range: cover 3% cover 27%;
    }

    .method-route li {
      animation: v3-row-enter linear both;
      animation-timeline: --method-v3-stage;
    }

    .method-route li:nth-child(1) { animation-range: cover 12% cover 32%; }
    .method-route li:nth-child(2) { animation-range: cover 21% cover 41%; }
    .method-route li:nth-child(3) { animation-range: cover 30% cover 50%; }
    .method-route li:nth-child(4) { animation-range: cover 39% cover 59%; }

    .price-story header {
      animation: v3-panel-left-enter linear both;
      animation-timeline: --price-v3-stage;
      animation-range: cover 2% cover 27%;
    }

    .price-story__amount {
      animation: v3-price-enter linear both;
      animation-timeline: --price-v3-stage;
      animation-range: cover 13% cover 40%;
    }

    .price-story__details {
      animation: v3-panel-right-enter linear both;
      animation-timeline: --price-v3-stage;
      animation-range: cover 22% cover 48%;
    }

    .price-story__extra {
      animation: v3-row-enter linear both;
      animation-timeline: --price-v3-stage;
      animation-range: cover 36% cover 59%;
    }

    .content-flow__social {
      animation: v3-panel-left-enter linear both;
      animation-timeline: --content-v3-stage;
      animation-range: cover 3% cover 31%;
    }

    .guide-flow__intro {
      animation: v3-panel-left-enter linear both;
      animation-timeline: --guides-v4-stage;
      animation-range: cover 3% cover 29%;
    }

    .guide-flow__list {
      animation: v3-panel-right-enter linear both;
      animation-timeline: --guides-v4-stage;
      animation-range: cover 12% cover 38%;
    }

    .guide-flow__list > a {
      animation: v3-row-enter linear both;
      animation-timeline: --guides-v4-stage;
    }

    .guide-flow__list > a:nth-of-type(1) { animation-range: cover 22% cover 43%; }
    .guide-flow__list > a:nth-of-type(2) { animation-range: cover 31% cover 52%; }

    .home-v3 .faq .section-header {
      animation: v3-panel-left-enter linear both;
      animation-timeline: --faq-v3-stage;
      animation-range: cover 2% cover 25%;
    }

    .home-v3 .faq-list details {
      animation: v3-row-enter linear both;
      animation-timeline: --faq-v3-stage;
    }

    .home-v3 .faq-list details:nth-child(1) { animation-range: cover 10% cover 28%; }
    .home-v3 .faq-list details:nth-child(2) { animation-range: cover 16% cover 34%; }
    .home-v3 .faq-list details:nth-child(3) { animation-range: cover 22% cover 40%; }
    .home-v3 .faq-list details:nth-child(4) { animation-range: cover 28% cover 46%; }
    .home-v3 .faq-list details:nth-child(5) { animation-range: cover 34% cover 52%; }
    .home-v3 .faq-list details:nth-child(6) { animation-range: cover 40% cover 58%; }

    .story-final__copy {
      animation: v3-panel-left-enter linear both;
      animation-timeline: --final-v3-stage;
      animation-range: cover 2% cover 31%;
    }

    .story-final__vehicle {
      animation: v3-final-vehicle-enter linear both;
      animation-timeline: --final-v3-stage;
      animation-range: cover 12% cover 46%;
    }
  }
}

@media (max-width: 70rem) {
  .story-hero__grid {
    grid-template-columns: minmax(23rem, 0.9fr) minmax(29rem, 1.1fr);
  }

  .story-hero__media {
    padding-inline-start: 1rem;
  }

  .story-hero__portrait-stage {
    width: min(28vw, 22rem);
  }

  .story-hero__quote {
    width: min(31vw, 22rem);
    transform: translateX(1rem);
  }

  .intent-list > li {
    grid-template-columns: 3rem minmax(15rem, 1fr) minmax(8rem, 0.32fr) auto;
  }

  .drive-scene {
    grid-template-columns: minmax(16rem, 0.75fr) minmax(25rem, 1.25fr);
    gap: 3rem;
  }

  .price-story__grid {
    grid-template-columns: minmax(18rem, 0.8fr) minmax(18rem, 1fr);
  }

  .price-story__details {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .price-story__extra {
    grid-column: 1 / -1;
  }
}

@media (max-width: 56rem) {
  .story-heading,
  .story-heading > div,
  .method-flow__grid,
  .content-flow__grid,
  .home-v3 .faq-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .story-heading {
    gap: 1.6rem;
  }

  .story-heading > div {
    gap: 1.2rem;
  }

  .vehicle-story .story-heading--compact > div {
    grid-template-columns: minmax(0, 1fr);
  }

  .vehicle-story .story-heading--compact h2 > span {
    white-space: normal;
  }

  .story-hero__grid {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    padding-block: 3.75rem 0;
  }

  .story-hero__copy {
    max-width: 42rem;
  }

  .story-hero__media {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    margin: 0;
    padding: 1.25rem 0 4rem;
  }

  .story-hero__portrait-stage {
    width: min(68vw, 24rem);
  }

  .story-hero__quote {
    width: min(68vw, 24rem);
    margin-top: 1.15rem;
    transform: none;
  }

  .intent-list > li {
    grid-template-columns: 3rem minmax(0, 1fr) minmax(8rem, auto);
  }

  .intent-list__price {
    grid-column: 2;
  }

  .intent-list > li > .button {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .vehicle-flow {
    padding-inline-start: 1.3rem;
  }

  .vehicle-flow::before {
    content: '';
    position: absolute;
    inset-block: 2rem;
    inset-inline-start: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(255, 173, 86, 0.42), rgba(255, 173, 86, 0.05));
  }

  .vehicle-flow__route {
    display: none;
  }

  .drive-scene,
  .drive-scene--reverse {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    padding-block: 4rem;
  }

  .drive-scene--reverse .drive-scene__copy,
  .drive-scene--reverse .drive-scene__media {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
  }

  .drive-scene__copy {
    max-width: 38rem;
  }

  .drive-scene__media,
  .drive-scene--reverse .drive-scene__media {
    min-height: 27rem;
    margin: -1rem -10vw;
  }

  .drive-scene__media--cutout,
  .drive-scene--reverse .drive-scene__media--cutout {
    margin-inline: 0;
  }

  .method-flow__grid,
  .home-v3 .faq-layout {
    gap: 3.5rem;
  }

  .price-story__grid {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.7fr);
  }

  .price-story__details {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .price-story__extra {
    grid-template-columns: minmax(10rem, 0.5fr) minmax(8rem, 0.35fr) minmax(14rem, 1fr);
  }

  .price-story__extra .button {
    grid-column: 3;
  }
}

@media (max-width: 39.9375rem) {
  .story-section,
  .home-v3 .faq {
    padding-block: 4.8rem;
  }

  .story-heading {
    margin-bottom: 3rem;
  }

  .story-heading h2,
  .method-flow h2,
  .price-story h2,
  .content-flow h2,
  .home-v3 .faq .section-header h2,
  .story-final h2 {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
  }

  .story-eyebrow {
    gap: 0.55rem;
    font-size: 0.56rem;
  }

  .story-eyebrow i {
    width: 1.8rem;
  }

  .story-hero__grid {
    gap: 0.5rem;
    padding-block: 3rem 0;
  }

  .story-hero__copy h1 {
    max-width: 12ch;
    font-size: clamp(2.65rem, 11.5vw, 3.3rem);
  }

  .story-hero__copy h1 .story-hero__title-line {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }

  .story-hero__lede {
    font-size: 0.94rem;
  }

  .story-hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.7rem;
  }

  .story-hero__actions .button,
  .story-hero__actions .story-link {
    width: 100%;
    justify-content: center;
  }

  .story-hero__facts {
    margin-top: 1.65rem;
  }

  .story-hero__facts div {
    padding-inline: 0.45rem;
  }

  .story-hero__facts div:first-child {
    padding-inline-start: 0;
  }

  .story-hero__facts dd {
    font-size: 0.66rem;
  }

  .story-hero__media {
    min-height: auto;
    margin: 0;
    padding: 1.5rem 0 3.2rem;
  }

  .story-hero__portrait-stage {
    width: min(76vw, 19rem);
  }

  .story-hero__quote {
    width: min(88vw, 21.5rem);
    margin-top: 1.15rem;
  }

  .story-hero__quote p {
    font-size: clamp(0.86rem, 4vw, 0.98rem);
  }

  .story-hero__scroll {
    display: none;
  }

  .intent-list > li,
  .intent-list > li:hover {
    min-height: auto;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.8rem 0.9rem;
    padding: 1.55rem 0;
  }

  .intent-list__copy h3 {
    font-size: 1.45rem;
  }

  .intent-list__copy p {
    font-size: 0.78rem;
  }

  .intent-list__price,
  .intent-list > li > .button {
    grid-column: 2;
    grid-row: auto;
  }

  .drive-scene,
  .drive-scene--reverse {
    padding-block: 3rem;
  }

  .drive-scene__copy h3 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  .drive-scene__media,
  .drive-scene--reverse .drive-scene__media {
    min-height: 20rem;
    margin: -1rem -20vw;
  }

  .drive-scene__media--cutout,
  .drive-scene--reverse .drive-scene__media--cutout {
    min-height: 18rem;
    margin: 0 -0.5rem 0 -1rem;
  }

  .drive-scene__media figcaption {
    inset-inline-end: 18%;
  }

  .drive-scene--reverse .drive-scene__media figcaption {
    inset-inline-start: 18%;
  }

  .method-route li {
    min-height: 8rem;
    gap: 1.1rem;
  }

  .price-story__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.8rem;
  }

  .price-story__details {
    grid-column: 1;
    grid-row: auto;
  }

  .price-story__amount strong {
    font-size: 4.5rem;
  }

  .price-story__extra {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.8rem 1rem;
    margin-top: 0;
  }

  .price-story__extra > small,
  .price-story__extra .button {
    grid-column: 1 / -1;
  }

  .content-flow__grid {
    gap: 4rem;
  }

  .content-flow__guides > a {
    min-height: 7.5rem;
    grid-template-columns: 1.5rem minmax(0, 1fr) 1rem;
    gap: 0.8rem;
  }

  .content-flow__guides a p {
    display: none;
  }

  .home-v3 .faq-layout {
    gap: 2.8rem;
  }

  .story-final,
  .story-final__inner {
    min-height: 30rem;
  }

  .story-final__inner {
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    gap: 1.25rem;
    padding-block: 4.5rem 0;
  }

  .story-final .button {
    width: 100%;
  }

  .story-final__vehicle {
    width: calc(100% + 5vw);
    height: 18.5rem;
    margin: -0.5rem -3vw -2rem -2vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-v3 .story-hero__copy,
  .home-v3 .story-hero__media,
  .home-v3 .drive-scene__copy,
  .home-v3 .drive-scene__media,
  .home-v3 .story-heading,
  .home-v3 .intent-list > li,
  .home-v3 .method-flow header,
  .home-v3 .method-route li,
  .home-v3 .price-story header,
  .home-v3 .price-story__amount,
  .home-v3 .price-story__details,
  .home-v3 .price-story__extra,
  .home-v3 .content-flow__social,
  .home-v3 .guide-flow__intro,
  .home-v3 .guide-flow__list,
  .home-v3 .guide-flow__list > a,
  .home-v3 .faq .section-header,
  .home-v3 .faq-list details,
  .home-v3 .story-final__copy,
  .home-v3 .story-final__vehicle {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .home-v3 .vehicle-flow__route-live {
    stroke-dashoffset: 0;
  }

  .home-v3 .vehicle-flow__route-signal,
  .home-v3 .story-hero__route-signal {
    display: none;
  }
}

@media print {
  .home-v3 .story-hero__route,
  .home-v3 .vehicle-flow__route,
  .home-v3 .story-hero__scroll,
  .home-v3 .button {
    display: none !important;
  }
}

/* AutoSafe brand navigation ---------------------------------------------- */
.site-header {
  height: 5rem;
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 11, 0.98), rgba(7, 9, 11, 0.93));
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px) saturate(115%);
}

.site-header::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 4%, rgba(255, 255, 255, 0.08) 28%, rgba(251, 125, 54, 0.34) 50%, rgba(255, 255, 255, 0.08) 72%, transparent 96%);
}

.header-shell {
  grid-template-columns: minmax(17rem, 1fr) auto minmax(12rem, 1fr);
  gap: clamp(1.25rem, 2.4vw, 2.75rem);
}

.brand {
  gap: 1rem;
}

.autosafe-wordmark {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: auto 2.15rem auto;
  align-items: center;
  gap: 0.36rem;
  color: #f6f4f0;
  line-height: 1;
}

.autosafe-wordmark__auto {
  position: relative;
  padding-block-end: 0.34rem;
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 850;
  letter-spacing: 0.055em;
}

.autosafe-wordmark__auto i,
.autosafe-wordmark__auto::before,
.autosafe-wordmark__auto::after {
  content: '';
  position: absolute;
  inset-inline-start: 0.15rem;
  height: 1px;
  background: var(--color-accent);
  transform: skewX(-30deg);
  transform-origin: left;
}

.autosafe-wordmark__auto i {
  inset-inline-end: 0;
  inset-block-end: 0.2rem;
}

.autosafe-wordmark__auto::before {
  inset-inline-end: 0.36rem;
  inset-block-end: 0;
}

.autosafe-wordmark__auto::after {
  inset-inline-end: 0.75rem;
  inset-block-end: -0.2rem;
}

.autosafe-wordmark__mark {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  color: var(--color-accent);
}

.autosafe-wordmark__mark svg {
  width: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
}

.autosafe-wordmark__mark circle:nth-child(2) {
  stroke: rgba(246, 244, 240, 0.82);
  stroke-width: 1.25;
}

.autosafe-wordmark__mark path {
  stroke-width: 1.45;
}

.autosafe-wordmark__safe {
  display: flex;
  min-width: 3.65rem;
  flex-direction: column;
}

.autosafe-wordmark__safe strong {
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.autosafe-wordmark__safe small {
  margin-top: 0.2rem;
  color: rgba(246, 244, 240, 0.72);
  font-size: 0.46rem;
  font-weight: 720;
  letter-spacing: 0.29em;
}

.brand-instructor {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.15rem;
  padding-inline-start: 1rem;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.13);
  line-height: 1.1;
}

.brand-instructor strong {
  color: #f6f4f0;
  font-size: 0.76rem;
  font-weight: 720;
  white-space: nowrap;
}

.brand-instructor small {
  color: #828991;
  font-size: 0.5rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  gap: 1.45rem;
}

.desktop-nav > a {
  position: relative;
  padding: 0.7rem 0;
  border-radius: 0;
  background: transparent;
  color: #979da4;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.desktop-nav > a::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0.3rem;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-normal) var(--ease-emphasized);
}

.desktop-nav > a:hover,
.desktop-nav > a[aria-current='page'] {
  background: transparent;
  color: #f6f4f0;
}

.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current='page']::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.62rem;
  padding: 0.42rem 0.92rem 0.42rem 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #f6f4f0;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  transition:
    border-color var(--duration-normal) var(--ease-standard),
    background var(--duration-normal) var(--ease-standard),
    color var(--duration-normal) var(--ease-standard),
    transform var(--duration-normal) var(--ease-emphasized);
}

.header-social {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: #f6f4f0;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  transition:
    border-color var(--duration-normal) var(--ease-standard),
    background var(--duration-normal) var(--ease-standard),
    transform var(--duration-normal) var(--ease-emphasized);
}

.header-social svg {
  width: 1.15rem;
  fill: currentColor;
  filter:
    drop-shadow(0.9px 0 rgba(37, 244, 238, 0.68))
    drop-shadow(-0.9px 0 rgba(254, 44, 85, 0.62));
}

.header-social--instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
  filter:
    drop-shadow(0.9px 0 rgba(255, 157, 0, 0.58))
    drop-shadow(-0.9px 0 rgba(209, 48, 117, 0.58));
}

.header-social--instagram .header-social__dot {
  fill: currentColor;
  stroke: none;
}

.header-social--facebook svg {
  width: 1.2rem;
  height: 1.2rem;
  filter: none;
}

.header-social:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.header-social:focus-visible {
  outline: 2px solid #f4f1eb;
  outline-offset: 3px;
}

.header-contact:hover {
  border-color: rgba(43, 228, 119, 0.48);
  background: rgba(43, 228, 119, 0.055);
  transform: translateY(-1px);
}

.header-contact:focus-visible {
  outline: 2px solid #f4f1eb;
  outline-offset: 3px;
}

.header-contact__icon {
  display: inline-grid;
  width: 1.72rem;
  height: 1.72rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(145, 255, 186, 0.5);
  border-radius: 50%;
  background: linear-gradient(145deg, #31df74, #1fbd59);
  box-shadow:
    0 0 0 1px rgba(43, 228, 119, 0.07),
    0 0.25rem 0.85rem rgba(37, 211, 102, 0.28),
    inset 0 1px rgba(255, 255, 255, 0.3);
  transition:
    box-shadow var(--duration-normal) var(--ease-standard),
    transform var(--duration-normal) var(--ease-emphasized);
}

.header-contact__icon svg {
  display: block;
  width: 1.02rem;
  height: 1.02rem;
  fill: #fff;
  stroke: none;
  filter: none;
}

.header-contact__icon .whatsapp-icon path {
  fill: #fff;
}

.header-contact:hover .header-contact__icon {
  box-shadow:
    0 0 0 1px rgba(43, 228, 119, 0.14),
    0 0 1.15rem rgba(37, 211, 102, 0.5),
    inset 0 1px rgba(255, 255, 255, 0.36);
  transform: scale(1.035);
}

.header-contact__copy {
  display: inline-flex;
  align-items: baseline;
  gap: 0.24rem;
  color: #aeb3b8;
  font-size: 0.69rem;
  font-weight: 650;
  letter-spacing: 0.015em;
  line-height: 1;
  white-space: nowrap;
}

.header-contact__copy strong {
  color: #f6f4f0;
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0;
}

/* Conversion buttons use warm white; orange remains a precise brand cue. */
.home-v3 .button--primary {
  border-color: rgba(255, 255, 255, 0.86);
  border-radius: 0.9rem;
  background: #f4f1eb;
  color: #111317;
  box-shadow: 0 0.85rem 2.6rem rgba(0, 0, 0, 0.22);
}

.home-v3 .button--primary svg {
  color: var(--story-accent);
}

.home-v3 .button--primary:hover {
  border-color: var(--story-accent);
  background: #fff;
  box-shadow: 0 1rem 3rem rgba(251, 125, 54, 0.14);
}

/* All WhatsApp actions share the same recognizable green signal. */
.contact-action {
  gap: 0.72rem;
  border-radius: 999px;
}

.contact-action__label {
  min-width: 0;
}

.contact-action__icon {
  display: inline-grid;
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(145, 255, 186, 0.5);
  border-radius: 50%;
  background: linear-gradient(145deg, #31df74, #1fbd59);
  box-shadow:
    0 0 0 1px rgba(43, 228, 119, 0.07),
    0 0.25rem 0.85rem rgba(37, 211, 102, 0.28),
    inset 0 1px rgba(255, 255, 255, 0.3);
  transition:
    box-shadow var(--duration-normal) var(--ease-standard),
    transform var(--duration-normal) var(--ease-emphasized);
}

.contact-action .contact-action__icon svg {
  display: block;
  width: 1.02rem;
  height: 1.02rem;
  fill: #fff;
  stroke: none;
  filter: none;
}

.contact-action .contact-action__icon .whatsapp-icon path {
  fill: #fff;
}

.contact-action:hover .contact-action__icon {
  box-shadow:
    0 0 0 1px rgba(43, 228, 119, 0.14),
    0 0 1.2rem rgba(37, 211, 102, 0.5),
    inset 0 1px rgba(255, 255, 255, 0.36);
  transform: scale(1.04);
}

.contact-action.button--primary {
  border-color: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: #f4f1eb;
  color: #34383b;
  box-shadow: 0 0.85rem 2.6rem rgba(0, 0, 0, 0.22);
}

.contact-action.button--primary .contact-action__label {
  color: #34383b;
  font-weight: 610;
  letter-spacing: 0.002em;
}

.contact-action.button--primary:hover {
  border-color: rgba(43, 228, 119, 0.6);
  background: #fff;
  box-shadow: 0 1rem 3rem rgba(37, 211, 102, 0.15);
}

.contact-action.button--text {
  gap: 0.62rem;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.contact-action.button--text .contact-action__icon {
  width: 1.55rem;
  height: 1.55rem;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.contact-action.button--text .contact-action__icon svg {
  width: 0.9rem;
  height: 0.9rem;
}

.contact-action.button--text .contact-action__icon .whatsapp-icon {
  transform: translate(0.075rem, -0.035rem);
  transform-origin: center;
}

.contact-action.button--text .contact-action__icon .whatsapp-icon path {
  fill: #25d366;
}

.contact-action.button--text:hover,
.contact-action.button--text:focus-visible,
.contact-action.button--text:hover .contact-action__icon,
.contact-action.button--text:focus-visible .contact-action__icon {
  background: transparent;
  box-shadow: none;
}

/* Direct phone contact stays secondary to WhatsApp, but remains one tap away. */
.phone-action {
  position: relative;
  display: inline-flex;
  max-width: 100%;
  min-height: 3.15rem;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
  color: var(--color-text);
  transition:
    border-color var(--duration-normal) var(--ease-standard),
    background-color var(--duration-normal) var(--ease-standard),
    transform var(--duration-normal) var(--ease-emphasized);
}

.phone-action:hover {
  border-color: rgba(251, 125, 54, 0.42);
  background: rgba(251, 125, 54, 0.055);
  transform: translateY(-1px);
}

.phone-action__call {
  display: inline-flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  gap: 0.62rem;
  padding: 0.38rem 0.72rem 0.38rem 0.42rem;
  color: inherit;
  text-decoration: none;
}

.phone-action__call-icon {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 162, 100, 0.42);
  border-radius: 50%;
  background: rgba(251, 125, 54, 0.1);
  color: #ff8847;
}

.phone-action__call-icon svg {
  width: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.phone-action__call-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.05;
  white-space: nowrap;
}

.phone-action__call-copy small {
  color: #898f96;
  font-size: 0.56rem;
  font-weight: 650;
  letter-spacing: 0.045em;
}

.phone-action__call-copy strong {
  margin-top: 0.24rem;
  color: #f2f0eb;
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.025em;
}

.phone-action__copy {
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 3.3rem;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 0.72rem;
  border: 0;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 999px 999px 0;
  background: transparent;
  color: #a1a7ad;
  cursor: pointer;
  font: inherit;
  transition:
    color var(--duration-fast) var(--ease-standard),
    background-color var(--duration-fast) var(--ease-standard);
}

.phone-action__copy:hover,
.phone-action__copy.is-copied {
  background: rgba(255, 255, 255, 0.045);
  color: #ff965b;
}

.phone-action__copy svg {
  width: 0.9rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.phone-action__copy span {
  font-size: 0.58rem;
  font-weight: 690;
}

.phone-action__feedback {
  position: absolute;
  inset-block-start: calc(100% + 0.4rem);
  inset-inline-start: 0.75rem;
  color: #9ca3a9;
  font-size: 0.58rem;
  white-space: nowrap;
}

.story-hero__phone {
  margin-top: 0.8rem;
}

.page-hero-actions,
.contact-band__actions,
.story-final__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.page-hero-actions {
  margin-top: 2.2rem;
}

.page-hero-actions .button {
  margin-top: 0;
}

.contact-band__actions {
  align-items: stretch;
  flex-direction: column;
}

.story-final__actions {
  margin-top: 2rem;
}

.story-final__actions .button {
  margin-top: 0;
}

.mobile-menu .phone-action {
  width: 100%;
  margin-top: 0.35rem;
}

.mobile-menu .phone-action__call {
  flex: 1 1 auto;
}

@media (max-width: 68rem) {
  .header-shell {
    grid-template-columns: minmax(10rem, 1fr) auto minmax(10rem, 1fr);
  }

  .brand-instructor {
    display: none;
  }

  .desktop-nav {
    gap: 1rem;
  }
}

@media (max-width: 70rem) {
  :root {
    --header-height: 4.5rem;
  }

  .site-header {
    height: var(--header-height);
    background: rgba(7, 9, 11, 0.97);
    backdrop-filter: blur(14px);
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.6rem;
  }

  .autosafe-wordmark {
    grid-template-columns: auto 1.85rem auto;
    gap: 0.28rem;
  }

  .autosafe-wordmark__mark {
    width: 1.85rem;
    height: 1.85rem;
  }

  .autosafe-wordmark__auto,
  .autosafe-wordmark__safe strong {
    font-size: 0.88rem;
  }

  .autosafe-wordmark__safe small {
    font-size: 0.4rem;
  }

  .header-contact {
    min-height: 2.75rem;
    gap: 0.5rem;
    padding: 0.4rem 0.72rem 0.4rem 0.42rem;
  }

  .header-contact__icon {
    width: 1.62rem;
    height: 1.62rem;
  }

  .header-contact__copy > span {
    display: none;
  }

  .header-contact__copy strong {
    font-size: 0.66rem;
  }

  .header-social {
    display: none;
  }

  .mobile-menu summary {
    width: 2.75rem;
    height: 2.75rem;
    border-color: rgba(255, 255, 255, 0.14);
    border-radius: 0.72rem;
    background: rgba(255, 255, 255, 0.025);
  }

  .mobile-menu summary span {
    background: #f6f4f0;
    transform-origin: center;
    transition:
      opacity 180ms var(--ease-standard),
      transform 280ms var(--ease-emphasized);
  }

  .mobile-menu[open] summary span:nth-child(1) {
    transform: translateY(0.29rem) rotate(45deg);
  }

  .mobile-menu[open] summary span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.45);
  }

  .mobile-menu[open] summary span:nth-child(3) {
    transform: translateY(-0.29rem) rotate(-45deg);
  }

  .mobile-menu nav {
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 0.9rem;
    background: #0c0f13;
  }

  .mobile-menu nav .mobile-menu__social {
    color: #f6f4f0;
  }
}

@media (max-width: 24rem) {
  .site-header .shell {
    width: calc(100% - 1.25rem);
  }

  .autosafe-wordmark {
    grid-template-columns: auto 1.55rem auto;
    gap: 0.2rem;
  }

  .autosafe-wordmark__mark {
    width: 1.55rem;
    height: 1.55rem;
  }

  .autosafe-wordmark__auto,
  .autosafe-wordmark__safe strong {
    font-size: 0.72rem;
  }

  .autosafe-wordmark__safe small {
    font-size: 0.34rem;
    letter-spacing: 0.22em;
  }

  .header-contact {
    padding-inline-end: 0.55rem;
  }
}

@keyframes mobile-menu-premium-enter {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(0, -0.65rem, 0) scale(0.975);
  }
  to {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@keyframes mobile-menu-premium-exit {
  from {
    opacity: 1;
    filter: none;
    transform: none;
  }
  to {
    opacity: 0;
    filter: blur(4px);
    transform: translate3d(0, -0.5rem, 0) scale(0.982);
  }
}

@keyframes mobile-menu-backdrop-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes mobile-menu-backdrop-exit {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes mobile-menu-item-enter {
  from {
    opacity: 0;
    transform: translate3d(0.65rem, -0.2rem, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes mobile-menu-tap-feedback {
  0% {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.025);
    box-shadow: 0 0 0 0 rgba(255, 125, 54, 0);
    transform: scale(1);
  }
  38% {
    border-color: rgba(255, 139, 75, 0.5);
    background: rgba(255, 125, 54, 0.1);
    box-shadow: 0 0 0 0.22rem rgba(255, 125, 54, 0.075);
    transform: scale(0.925);
  }
  100% {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.025);
    box-shadow: 0 0 0 0.4rem rgba(255, 125, 54, 0);
    transform: scale(1);
  }
}

@media (max-width: 70rem) {
  .mobile-menu nav {
    width: min(22rem, calc(100vw - 1rem));
    gap: 0.55rem;
    padding: 0.72rem;
    border-color: rgba(255, 255, 255, 0.13);
    border-radius: 1rem;
    background: rgba(10, 13, 16, 0.985);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.48);
    transform-origin: top right;
  }

  .mobile-menu[open] nav {
    animation: mobile-menu-premium-enter 360ms var(--ease-emphasized) both;
  }

  .mobile-menu[open]::before {
    animation: mobile-menu-backdrop-enter 260ms var(--ease-standard) both;
  }

  .mobile-menu.is-closing nav {
    animation: mobile-menu-premium-exit 240ms var(--ease-standard) both;
    pointer-events: none;
  }

  .mobile-menu.is-closing::before {
    animation: mobile-menu-backdrop-exit 240ms var(--ease-standard) both;
  }

  .mobile-menu[open]:not(.is-closing) .mobile-menu__primary > a,
  .mobile-menu[open]:not(.is-closing) .mobile-menu__socials,
  .mobile-menu[open]:not(.is-closing) .phone-action {
    animation: mobile-menu-item-enter 380ms var(--ease-emphasized) both;
  }

  .mobile-menu[open]:not(.is-closing) .mobile-menu__primary > a:nth-child(1) { animation-delay: 45ms; }
  .mobile-menu[open]:not(.is-closing) .mobile-menu__primary > a:nth-child(2) { animation-delay: 75ms; }
  .mobile-menu[open]:not(.is-closing) .mobile-menu__primary > a:nth-child(3) { animation-delay: 105ms; }
  .mobile-menu[open]:not(.is-closing) .mobile-menu__primary > a:nth-child(4) { animation-delay: 135ms; }
  .mobile-menu[open]:not(.is-closing) .mobile-menu__primary > a:nth-child(5) { animation-delay: 165ms; }
  .mobile-menu[open]:not(.is-closing) .mobile-menu__socials { animation-delay: 195ms; }
  .mobile-menu[open]:not(.is-closing) .phone-action { animation-delay: 225ms; }

  .mobile-menu.has-tap-feedback summary {
    animation: mobile-menu-tap-feedback 320ms var(--ease-emphasized) both;
  }

  .mobile-menu__primary {
    display: grid;
  }

  .mobile-menu__primary > a {
    display: flex;
    min-height: 3.15rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.72rem;
    border-radius: 0.68rem;
    color: #eef0f1;
    font-size: 0.96rem;
    font-weight: 650;
    text-decoration: none;
  }

  .mobile-menu__primary > a:hover {
    background: rgba(255, 255, 255, 0.045);
  }

  .mobile-menu__primary > a i {
    color: rgba(255, 139, 73, 0.72);
    font-size: 0.85rem;
    font-style: normal;
    opacity: 0;
    transform: translateX(-0.25rem);
    transition: opacity var(--duration-fast) var(--ease-standard), transform var(--duration-fast) var(--ease-standard);
  }

  .mobile-menu__primary > a:hover i {
    opacity: 1;
    transform: none;
  }

  .mobile-menu__socials {
    display: grid;
    gap: 0.35rem;
    padding-top: 0.72rem;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .mobile-menu__socials > p {
    margin: 0 0 0.12rem;
    padding-inline: 0.55rem;
    color: #7f878f;
    font-size: 0.55rem;
    font-weight: 760;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-menu nav .mobile-menu__social {
    display: grid;
    min-height: 3.45rem;
    grid-template-columns: 2.15rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.72rem;
    padding: 0.48rem 0.55rem;
    border: 1px solid transparent;
    border-radius: 0.72rem;
    color: #f6f4f0;
    text-decoration: none;
  }

  .mobile-menu nav .mobile-menu__social:hover {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
  }

  .mobile-menu__social-icon {
    display: grid;
    width: 2.15rem;
    height: 2.15rem;
    place-items: center;
    overflow: hidden;
    border-radius: 0.62rem;
  }

  .mobile-menu__social-icon--instagram svg {
    width: 100%;
    height: 100%;
  }

  .mobile-menu__social-icon--tiktok {
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: #050608;
  }

  .mobile-menu__social-icon--tiktok svg {
    width: 1.18rem;
    height: 1.38rem;
  }

  .mobile-menu__social-icon--facebook {
    border-radius: 50%;
  }

  .mobile-menu__social-icon--facebook svg {
    width: 2.15rem;
    height: 2.15rem;
  }

  .mobile-menu__social-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.16rem;
  }

  .mobile-menu__social-copy small {
    color: #858d95;
    font-size: 0.56rem;
    font-weight: 660;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .mobile-menu__social-copy strong {
    overflow: hidden;
    color: #f1f0ed;
    font-size: 0.73rem;
    font-weight: 660;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-menu__social > i {
    color: #8b939a;
    font-size: 0.72rem;
    font-style: normal;
  }

  .mobile-menu .phone-action {
    margin-top: 0.08rem;
  }
}

@media (max-width: 21.25rem) {
  .header-contact {
    width: 2.55rem;
    padding: 0;
    justify-content: center;
  }

  .header-contact__copy {
    display: none;
  }
}

/* Homepage v4 — stronger focal hierarchy ---------------------------------- */

/* 02 · Three open driving lanes, not a card grid. */
.home-v3 .intent-flow {
  overflow: clip;
  background:
    linear-gradient(90deg, transparent 49.96%, rgba(255, 255, 255, 0.018) 50%, transparent 50.04%),
    radial-gradient(circle at 78% 20%, rgba(251, 125, 54, 0.12), transparent 28rem),
    #0b0e11;
}

.home-v3 .intent-flow .story-heading {
  margin-bottom: clamp(2.4rem, 4vw, 3.5rem);
}

.home-v3 .intent-flow .story-heading h2 {
  line-height: 1.08;
}

.home-v3 .intent-flow .story-heading__line {
  display: block;
}

.home-v3 .intent-flow .story-heading__accent {
  text-decoration-line: underline;
  text-decoration-color: rgba(255, 125, 54, 0.62);
  text-decoration-thickness: 0.07em;
  text-underline-offset: 0.12em;
  text-decoration-skip-ink: auto;
}

@media (min-width: 70.01rem) {
  .home-v3 .intent-flow .story-heading {
    grid-template-columns: minmax(10rem, 0.3fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 5rem);
  }

  .home-v3 .intent-flow .story-heading > div {
    grid-template-columns: minmax(35rem, 1fr) minmax(15rem, 0.5fr);
    gap: clamp(2rem, 4vw, 4rem);
  }

  .home-v3 .intent-flow .story-heading h2 {
    max-width: none;
    font-size: clamp(2.8rem, 3.4vw, 3.4rem);
  }

  .home-v3 .intent-flow .story-heading__line {
    white-space: nowrap;
  }
}

.home-v3 .intent-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.home-v3 .intent-list > li,
.home-v3 .intent-list > li:hover {
  position: relative;
  display: flex;
  min-height: clamp(23rem, 36vw, 27rem);
  align-items: stretch;
  flex-direction: column;
  gap: 0;
  overflow: clip;
  padding: clamp(1.7rem, 3vw, 2.8rem);
  border-bottom: 0;
  background: transparent;
  isolation: isolate;
}

.home-v3 .intent-list > li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.085);
}

.home-v3 .intent-list > li::before {
  content: '';
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 50% 16%, rgba(251, 125, 54, 0.16), transparent 9rem),
    linear-gradient(180deg, rgba(251, 125, 54, 0.04), transparent 58%);
  opacity: 0;
  transition: opacity 420ms var(--ease-standard);
}

.home-v3 .intent-list > li::after {
  content: attr(data-intent);
  position: absolute;
  z-index: -1;
  inset-inline-end: -0.04em;
  inset-block-end: -0.18em;
  color: rgba(255, 255, 255, 0.021);
  font-size: clamp(4rem, 7.6vw, 7rem);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 0.8;
  text-transform: uppercase;
  transition: color 420ms var(--ease-standard), transform 620ms var(--ease-emphasized);
}

.home-v3 .intent-list > li:hover::before {
  opacity: 1;
}

.home-v3 .intent-list > li:hover::after {
  color: rgba(251, 125, 54, 0.055);
  transform: translate3d(-0.08em, -0.03em, 0);
}

.home-v3 .intent-list__road {
  position: absolute;
  z-index: 0;
  inset-inline: 2.8rem;
  inset-block-end: 0;
  height: 1px;
  overflow: visible;
  background: repeating-linear-gradient(90deg, rgba(255, 173, 86, 0.44) 0 0.7rem, transparent 0.7rem 1.5rem);
  opacity: 0.5;
  transform-origin: left;
}

.home-v3 .intent-list__index {
  position: absolute;
  z-index: 0;
  inset-inline-end: 1.8rem;
  inset-block-start: 1.2rem;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(4.5rem, 7vw, 6.8rem);
  font-weight: 820;
  letter-spacing: -0.08em;
  line-height: 1;
}

.home-v3 .intent-list__copy {
  position: relative;
  z-index: 1;
  margin-top: clamp(2rem, 4vw, 3.8rem);
}

.home-v3 .intent-list__copy h3 {
  max-width: 9ch;
  font-size: clamp(1.8rem, 2.6vw, 2.45rem);
  line-height: 0.98;
}

.home-v3 .intent-list__copy p {
  max-width: 26rem;
  margin-top: 0.8rem;
  font-size: 0.82rem;
  line-height: 1.6;
}

.home-v3 .intent-list__price {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 2rem;
}

.home-v3 .intent-list__price strong {
  font-size: 1.05rem;
}

.home-v3 .intent-list > li > .button {
  position: relative;
  z-index: 1;
  width: max-content;
  margin-top: 1.25rem;
}

.home-v3 .intent-list .contact-action {
  gap: 0.48rem;
}

.home-v3 .intent-list .contact-action__icon {
  width: 1.08rem;
  height: 1.08rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-v3 .intent-list .contact-action__icon svg {
  width: 1.02rem;
  height: 1.02rem;
  transform: translateY(0.055rem);
}

.home-v3 .intent-list .contact-action__icon .whatsapp-icon path {
  fill: #25d366;
}

.home-v3 .intent-list .contact-action:hover .contact-action__icon {
  box-shadow: none;
  transform: scale(1.06);
}

.home-v3 .drive-scene .contact-action {
  gap: 0.48rem;
}

.home-v3 .drive-scene .contact-action__icon {
  width: 1.08rem;
  height: 1.08rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-v3 .drive-scene .contact-action__icon svg {
  width: 1.02rem;
  height: 1.02rem;
  transform: translate(0.04rem, 0.055rem);
}

.home-v3 .drive-scene .contact-action__icon .whatsapp-icon path {
  fill: #25d366;
}

.home-v3 .drive-scene .contact-action:hover .contact-action__icon {
  box-shadow: none;
  transform: scale(1.06);
}

/* 04 · One real story chapter. Scroll changes the active learning step. */
.home-v3 .method-flow {
  position: relative;
  overflow: clip;
  scroll-margin-block-start: -5rem;
  background:
    radial-gradient(circle at 76% 48%, rgba(251, 125, 54, 0.115), transparent 25rem),
    linear-gradient(180deg, #090b0e, #0c0d10 48%, #090b0e);
  view-timeline-name: --method-v4-chapter;
  view-timeline-axis: block;
}

.home-v3 .method-flow__stage {
  position: relative;
  min-height: 46rem;
  padding-block: clamp(6rem, 10vw, 9rem);
  overflow: clip;
  isolation: isolate;
}

.home-v3 .method-flow__stage::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0 0 0 42%;
  background:
    repeating-radial-gradient(circle at 58% 50%, transparent 0 4.7rem, rgba(255, 173, 86, 0.032) 4.75rem 4.8rem),
    linear-gradient(90deg, transparent 49.94%, rgba(255, 173, 86, 0.04) 50%, transparent 50.06%);
  mask-image: radial-gradient(circle at 58% 50%, #000 0 24%, transparent 72%);
  pointer-events: none;
}

.home-v3 .method-flow__grid {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(19rem, 0.64fr) minmax(34rem, 1.36fr);
  align-items: center;
  gap: clamp(4rem, 10vw, 10rem);
}

.home-v3 .method-flow header {
  max-width: 27rem;
}

.home-v3 .method-flow__hint {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 2.2rem 0 0;
  color: #69717a;
  font-size: 0.58rem;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-v3 .method-flow__hint span {
  position: relative;
  width: 2.8rem;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.home-v3 .method-flow__hint span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--story-accent-text);
  transform: translateX(-62%);
}

.home-v3 .method-flow__ghost {
  position: absolute;
  z-index: 0;
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(9rem, 19vw, 18rem);
  font-weight: 850;
  letter-spacing: -0.09em;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}

.home-v3 .method-flow__ghost--start {
  inset-inline-end: -0.02em;
  inset-block-start: 5%;
}

.home-v3 .method-flow__ghost--end {
  inset-inline-end: -0.02em;
  inset-block-end: 6%;
  color: rgba(251, 125, 54, 0.045);
  opacity: 0;
}

.home-v3 .method-scene {
  position: relative;
  min-width: 0;
  min-height: 31rem;
}

.home-v3 .method-scene::before,
.home-v3 .method-scene::after {
  content: '';
  position: absolute;
  z-index: 0;
  inset-inline-end: 8%;
  inset-block-start: 48%;
  border-radius: 50%;
  pointer-events: none;
  transform: translateY(-50%);
}

.home-v3 .method-scene::before {
  width: min(28rem, 78%);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 173, 86, 0.09);
  box-shadow: 0 0 0 4.5rem rgba(251, 125, 54, 0.018), 0 0 0 9rem rgba(251, 125, 54, 0.012);
}

.home-v3 .method-scene::after {
  width: 0.48rem;
  aspect-ratio: 1;
  background: #fff6e9;
  box-shadow: 0 0 0 0.65rem rgba(251, 125, 54, 0.11), 0 0 2rem rgba(251, 125, 54, 0.75);
}

.home-v3 .method-scene__rail {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 0 auto;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.home-v3 .method-scene__rail span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #59616a;
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.home-v3 .method-scene__rail span::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  inset-block-start: -1.45rem;
  height: 2px;
  background: var(--story-accent-text);
  transform: scaleX(0);
  transform-origin: left;
}

.home-v3 .method-scene__rail i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0.32rem rgba(255, 255, 255, 0.025);
}

.home-v3 .method-scene__rail b {
  font-weight: inherit;
}

.home-v3 .method-route {
  position: relative;
  z-index: 3;
  display: grid;
  margin-top: 3.8rem;
}

.home-v3 .method-route::before {
  display: none;
}

.home-v3 .method-route li {
  position: relative;
  display: grid;
  min-height: 10rem;
  grid-template-columns: minmax(4.8rem, 0.24fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.2rem);
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-v3 .method-route__number {
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(4.2rem, 7vw, 6.4rem);
  font-weight: 830;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.home-v3 .method-route small {
  color: var(--story-accent-text);
  font-size: 0.57rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-v3 .method-route h3 {
  max-width: 13ch;
  margin-top: 0.55rem;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.home-v3 .method-route p {
  max-width: 31rem;
  margin-top: 0.9rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.home-v3 .method-route strong {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.2rem;
  color: #d5d2cc;
  font-size: 0.67rem;
  font-weight: 650;
}

.home-v3 .method-route strong i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--story-accent-text);
  box-shadow: 0 0 0 0.28rem rgba(251, 125, 54, 0.08), 0 0 1rem rgba(251, 125, 54, 0.4);
}

.home-v3 .method-scene__readout {
  position: absolute;
  z-index: 4;
  inset-inline-end: 0;
  inset-block-end: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #646c75;
  font-size: 0.54rem;
  letter-spacing: 0.14em;
}

.home-v3 .method-scene__readout strong {
  color: var(--story-accent-text);
  font-size: 0.62rem;
}

.home-v3 .method-flow__progress {
  position: absolute;
  z-index: 4;
  inset-inline: 0;
  inset-block-end: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(2rem, 4rem)) 1fr;
  align-items: center;
  gap: 0.45rem;
}

.home-v3 .method-flow__progress > span {
  height: 2px;
  background: rgba(255, 255, 255, 0.11);
}

.home-v3 .method-flow__progress small {
  justify-self: end;
  color: #59616a;
  font-size: 0.52rem;
  font-weight: 720;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* 05 · Offer billboard. The price is the actor; details support it. */
.home-v3 .price-story {
  min-height: 49rem;
  padding-block: clamp(8.5rem, 13vw, 11rem) clamp(6rem, 9vw, 8rem);
  background:
    linear-gradient(112deg, transparent 0 54%, rgba(251, 125, 54, 0.045) 54.1% 76%, transparent 76.1%),
    radial-gradient(circle at 69% 40%, rgba(251, 125, 54, 0.18), transparent 26rem),
    #080a0d;
}

.home-v3 .price-story__marquee {
  position: absolute;
  z-index: 0;
  inset-inline: -4%;
  inset-block-start: 1.35rem;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.032);
  font-size: clamp(2.8rem, 6.4vw, 6rem);
  font-weight: 830;
  letter-spacing: -0.055em;
  line-height: 0.9;
  white-space: nowrap;
}

.home-v3 .price-story__marquee span {
  display: block;
  width: max-content;
}

.home-v3 .price-story__grid {
  grid-template-columns: minmax(20rem, 0.68fr) minmax(31rem, 1.32fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

.home-v3 .price-story header {
  align-self: center;
}

.home-v3 .price-story__amount {
  position: relative;
  min-width: 0;
  padding-inline-end: clamp(4rem, 9vw, 8rem);
}

.home-v3 .price-story__amount p {
  gap: 0.9rem;
  margin-top: 0.75rem;
}

.home-v3 .price-story__amount p strong {
  font-size: clamp(6.5rem, 12vw, 11rem);
  line-height: 0.72;
}

.home-v3 .price-story__amount p small {
  font-size: 0.82rem;
}

.home-v3 .price-story__amount em {
  margin-top: 0.75rem;
}

.home-v3 .price-story__seal {
  position: absolute;
  inset-inline-end: 0;
  inset-block-start: 50%;
  display: grid;
  width: clamp(5.8rem, 8vw, 7.6rem);
  aspect-ratio: 1;
  place-content: center;
  border: 1px solid rgba(255, 173, 86, 0.38);
  border-radius: 50%;
  background: rgba(251, 125, 54, 0.055);
  box-shadow: 0 0 0 0.65rem rgba(251, 125, 54, 0.022), 0 0 2.8rem rgba(251, 125, 54, 0.1);
  color: var(--story-accent-text);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(8deg);
}

.home-v3 .price-story__seal strong {
  display: block;
  color: var(--story-fg);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.home-v3 .price-story__details {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.3fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.home-v3 .price-story__details ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 0;
}

.home-v3 .price-story__details li {
  min-height: 5.2rem;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0 1.5rem 0 0;
  border-bottom: 0;
}

.home-v3 .price-story__details li + li {
  padding-inline-start: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.home-v3 .price-story__details li strong {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.home-v3 .price-story__details li span {
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-v3 .price-story__details .button {
  min-height: 3.6rem;
}

.home-v3 .price-story__extra {
  margin-top: 0.5rem;
}

/* 06 · Editorial break: warm paper, direct typography, one clear play action. */
.home-v3 .content-flow {
  min-height: 40rem;
  overflow: clip;
  background: #f0ece5;
  color: #171512;
}

.home-v3 .content-flow__grid {
  min-height: 27rem;
  grid-template-columns: minmax(25rem, 1.05fr) minmax(25rem, 0.95fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 8.5rem);
}

.home-v3 .content-flow__grid--social-only {
  display: block;
}

.home-v3 .content-flow__social {
  position: relative;
  min-height: 26rem;
  justify-content: center;
  overflow: visible;
  padding: 0 clamp(4.5rem, 7vw, 7rem) 0 0;
  background: transparent;
  clip-path: none;
}

.home-v3 .content-flow__social--standalone {
  width: 100%;
  min-height: 29rem;
  padding-inline-end: clamp(14rem, 34vw, 32rem);
}

.home-v3 .content-flow__phone {
  position: absolute;
  z-index: 3;
  inset-inline-end: clamp(1.5rem, 7vw, 7rem);
  inset-block-start: 50%;
  display: block;
  width: clamp(17.5rem, 24vw, 23rem);
  transform: translateY(-50%);
  pointer-events: none;
}

.home-v3 .content-flow__phone::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 15% -18% 5% -20%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(207, 102, 44, 0.16), transparent 68%);
  filter: blur(1.2rem);
}

.home-v3 .content-flow__phone-image {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2.4rem 1.8rem rgba(28, 20, 15, 0.2));
}

.home-v3 .content-flow__ghost {
  position: absolute;
  z-index: 0;
  inset-inline-end: -0.04em;
  inset-block-end: -0.14em;
  color: rgba(23, 21, 18, 0.035);
  font-size: clamp(8rem, 22vw, 21rem);
  font-weight: 850;
  letter-spacing: -0.09em;
  line-height: 0.8;
  pointer-events: none;
}

.home-v3 .content-flow__social::before {
  content: '';
  position: absolute;
  inset-block: 0;
  inset-inline-start: -1.5rem;
  width: 3px;
  border: 0;
  background: var(--story-accent-text);
  clip-path: none;
  pointer-events: none;
}

.home-v3 .content-flow__social h2 {
  position: relative;
  z-index: 2;
  max-width: 10ch;
  color: #171512;
  font-size: clamp(2.8rem, 4.4vw, 4.25rem);
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.home-v3 .content-flow__social > p,
.home-v3 .content-flow__social > strong {
  position: relative;
  z-index: 2;
}

.home-v3 .content-flow__social .story-eyebrow {
  color: #716b64;
}

.home-v3 .content-flow__social > p:not(.story-eyebrow) {
  color: #655f59;
}

.home-v3 .content-flow__social > strong {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(184, 72, 24, 0.35);
  color: #b84818;
}

.home-v3 .content-flow__signal {
  position: absolute;
  z-index: 1;
  inset-inline-end: 0;
  inset-block-start: 0.5rem;
  display: grid;
  width: clamp(3.7rem, 5vw, 4.5rem);
  aspect-ratio: 1;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--story-accent-text);
  color: #171512;
  box-shadow: 0 1rem 2.5rem rgba(104, 47, 17, 0.17);
}

.home-v3 .content-flow__social--standalone .content-flow__signal {
  inset-inline-end: clamp(0rem, 2vw, 2rem);
  inset-block-start: 3rem;
  width: clamp(4.5rem, 6vw, 5.8rem);
}

.home-v3 .content-flow__signal::before,
.home-v3 .content-flow__signal::after {
  content: none;
}

.home-v3 .content-flow__signal i {
  display: none;
}

.home-v3 .content-flow__signal svg {
  position: relative;
  z-index: 2;
  width: 1.4rem;
  fill: currentColor;
}

/* 07 · Essential guides are a separate decision chapter. */
.home-v3 .guide-flow {
  min-height: 43rem;
  overflow: clip;
  view-timeline-name: --guides-v4-stage;
  view-timeline-axis: block;
  background:
    radial-gradient(circle at 18% 42%, rgba(251, 125, 54, 0.1), transparent 26rem),
    #0a0c0f;
  color: var(--story-fg);
}

.home-v3 .guide-flow__grid {
  display: grid;
  min-height: 31rem;
  grid-template-columns: minmax(20rem, 0.78fr) minmax(31rem, 1.22fr);
  align-items: center;
  gap: clamp(4rem, 10vw, 10rem);
}

.home-v3 .guide-flow__intro h2 {
  max-width: 12ch;
  margin: 1.25rem 0 0;
  color: var(--story-fg);
  font-size: clamp(2.7rem, 4.5vw, 4.4rem);
  font-weight: 790;
  letter-spacing: -0.06em;
  line-height: 1.08;
  text-wrap: balance;
}

.home-v3 .guide-flow__intro > p:last-child {
  max-width: 31rem;
  margin: 1.4rem 0 0;
  color: #959da5;
  font-size: 0.96rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.home-v3 .guide-flow__list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.home-v3 .guide-flow__list > a {
  display: grid;
  min-height: 13rem;
  grid-template-columns: 2.8rem minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.7rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: inherit;
  text-decoration: none;
  transition: border-color 240ms var(--ease-standard), background-color 240ms var(--ease-standard);
}

.home-v3 .guide-flow__list > a:hover {
  border-bottom-color: rgba(251, 125, 54, 0.5);
  background: rgba(251, 125, 54, 0.035);
}

.home-v3 .guide-flow__index {
  color: var(--story-accent-text);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.home-v3 .guide-flow__list small {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--story-accent-text);
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-v3 .guide-flow__list h3 {
  max-width: 29ch;
  margin: 0;
  color: #f5f1eb;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-wrap: balance;
}

.home-v3 .guide-flow__list p {
  max-width: 43rem;
  margin: 0.7rem 0 0;
  color: #8e969e;
  font-size: 0.78rem;
  line-height: 1.55;
}

.home-v3 .guide-flow__list b {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #d5d0ca;
  font-size: 0.66rem;
  font-weight: 680;
  white-space: nowrap;
}

.home-v3 .guide-flow__list svg {
  width: 1.05rem;
  fill: none;
  stroke: var(--story-accent-text);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  transition: transform 280ms var(--ease-emphasized);
}

.home-v3 .guide-flow__list > a:hover svg {
  transform: translateX(0.3rem);
}

/* 08 · Instagram stays editorial, with a warmer platform cue. */
.home-v3 .instagram-flow {
  min-height: 39rem;
  overflow: clip;
  background: #e7ded3;
  color: #171512;
}

.home-v3 .instagram-flow__grid {
  display: grid;
  min-height: 27rem;
  grid-template-columns: minmax(25rem, 1.05fr) minmax(25rem, 0.95fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 8.5rem);
}

.home-v3 .instagram-flow__social {
  position: relative;
  display: flex;
  min-height: 26rem;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 0 clamp(4.5rem, 7vw, 7rem) 0 0;
  color: inherit;
  text-decoration: none;
}

.home-v3 .instagram-flow__social::before {
  content: '';
  position: absolute;
  inset-block: 0;
  inset-inline-start: -1.5rem;
  width: 3px;
  background: linear-gradient(180deg, #ff7a33, #c52f75);
}

.home-v3 .instagram-flow__social .story-eyebrow {
  color: #71675f;
}

.home-v3 .instagram-flow__social h2 {
  max-width: 11ch;
  margin: 1.3rem 0 0;
  color: #171512;
  font-size: clamp(2.75rem, 4.25vw, 4.15rem);
  font-weight: 790;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.home-v3 .instagram-flow__social > p:not(.story-eyebrow) {
  max-width: 32rem;
  margin: 1.25rem 0 0;
  color: #655d56;
  font-size: 0.96rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.home-v3 .instagram-flow__social > strong {
  margin-top: 1.4rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(185, 50, 103, 0.32);
  color: #a62b63;
  font-size: 0.78rem;
}

.home-v3 .instagram-flow__signal {
  position: absolute;
  inset-inline-end: 0;
  inset-block-start: 0.5rem;
  display: grid;
  width: clamp(3.7rem, 5vw, 4.5rem);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff8a38, #c93678);
  color: #fff;
  box-shadow: 0 1rem 2.5rem rgba(120, 43, 67, 0.17);
}

.home-v3 .instagram-flow__signal svg {
  width: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.home-v3 .instagram-flow__signal .instagram-flow__dot {
  fill: currentColor;
  stroke: none;
}

.home-v3 .instagram-flow__notes {
  border-top: 1px solid rgba(23, 21, 18, 0.28);
}

.home-v3 .instagram-flow__label {
  margin: 0;
  padding-block: 1rem;
  border-bottom: 1px solid rgba(23, 21, 18, 0.15);
  color: #71675f;
  font-size: 0.63rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-v3 .instagram-flow__notes ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-v3 .instagram-flow__notes li {
  display: grid;
  min-height: 7.8rem;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  align-items: center;
  gap: 1.2rem;
  border-bottom: 1px solid rgba(23, 21, 18, 0.15);
}

.home-v3 .instagram-flow__notes li > span {
  color: #b84818;
  font-size: 0.62rem;
  font-weight: 780;
}

.home-v3 .instagram-flow__notes h3 {
  margin: 0;
  color: #171512;
  font-size: 1.08rem;
  line-height: 1.25;
}

.home-v3 .instagram-flow__notes li p {
  margin: 0.35rem 0 0;
  color: #71675f;
  font-size: 0.75rem;
  line-height: 1.45;
}

/* 10 · Facebook: a compact bridge toward the wider AutoSafe community. */
.home-v3 .facebook-flow {
  overflow: clip;
  padding-block: clamp(5.5rem, 9vw, 8.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 82% 20%, rgba(8, 102, 255, 0.16), transparent 30rem),
    #090c11;
}

.home-v3 .facebook-flow__card {
  position: relative;
  display: grid;
  min-height: 27rem;
  grid-template-columns: auto minmax(0, 1fr) minmax(13rem, auto);
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 5rem);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.45rem;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.035), transparent 48%),
    rgba(11, 15, 22, 0.88);
  color: #f6f3ed;
  text-decoration: none;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.24);
  transition:
    border-color 280ms var(--ease-standard),
    box-shadow 280ms var(--ease-standard),
    transform 320ms var(--ease-emphasized);
}

.home-v3 .facebook-flow__card:hover {
  border-color: rgba(8, 102, 255, 0.5);
  box-shadow: 0 2.5rem 7rem rgba(0, 32, 88, 0.28);
  transform: translateY(-0.25rem);
}

.home-v3 .facebook-flow__signal {
  position: relative;
  z-index: 1;
  width: clamp(4.75rem, 7vw, 7rem);
  filter: drop-shadow(0 1rem 2rem rgba(8, 102, 255, 0.25));
}

.home-v3 .facebook-flow__signal svg {
  display: block;
  width: 100%;
}

.home-v3 .facebook-flow__copy {
  position: relative;
  z-index: 1;
}

.home-v3 .facebook-flow__copy .story-eyebrow {
  color: #8e9aad;
}

.home-v3 .facebook-flow__copy .story-eyebrow span {
  color: #77a9ff;
}

.home-v3 .facebook-flow__copy h2 {
  max-width: 17ch;
  margin: 1.3rem 0 0;
  font-size: clamp(2.7rem, 4.6vw, 4.8rem);
  font-weight: 790;
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-wrap: balance;
}

.home-v3 .facebook-flow__copy h2 em {
  color: #77a9ff;
  font-style: normal;
}

.home-v3 .facebook-flow__copy > p:not(.story-eyebrow) {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  color: #9ca6b5;
  font-size: 0.96rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.home-v3 .facebook-flow__card > strong {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  padding: 0 0 0.35rem;
  border-bottom: 1px solid rgba(119, 169, 255, 0.5);
  color: #dbe8ff;
  font-size: 0.78rem;
  white-space: nowrap;
}

.home-v3 .facebook-flow__card > strong span {
  display: inline-block;
  margin-inline-start: 0.35rem;
  transition: transform 240ms var(--ease-standard);
}

.home-v3 .facebook-flow__card:hover > strong span {
  transform: translate(0.2rem, -0.2rem);
}

.home-v3 .facebook-flow__ghost {
  position: absolute;
  inset-inline-end: -0.04em;
  inset-block-start: -0.42em;
  color: rgba(255, 255, 255, 0.025);
  font-family: Arial, sans-serif;
  font-size: clamp(24rem, 40vw, 38rem);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

@media (max-width: 64rem) {
  .home-v3 .facebook-flow__card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .home-v3 .facebook-flow__card > strong {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 40rem) {
  .home-v3 .facebook-flow {
    padding-block: 4.5rem;
  }

  .home-v3 .facebook-flow__card {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
    padding: 2rem 1.4rem 2.25rem;
  }

  .home-v3 .facebook-flow__signal {
    width: 4.25rem;
  }

  .home-v3 .facebook-flow__copy h2 {
    font-size: clamp(2.5rem, 12.5vw, 3.45rem);
  }

  .home-v3 .facebook-flow__card > strong {
    grid-column: 1;
    justify-self: start;
    white-space: normal;
  }
}

/* 11 · The quiet chapter: larger editorial questions and active state. */
.home-v3 .faq-list {
  counter-reset: autosafe-faq;
}

.home-v3 .faq-list details {
  counter-increment: autosafe-faq;
  transition: background 280ms var(--ease-standard), border-color 280ms var(--ease-standard);
}

.home-v3 .faq-list details[open] {
  border-bottom-color: rgba(255, 173, 86, 0.32);
  background: transparent;
}

.home-v3 .faq-list summary {
  display: grid;
  min-height: 6.2rem;
  grid-template-columns: 2.2rem minmax(0, 1fr) 1.5rem;
  gap: 1.2rem;
  font-size: 1.02rem;
  -webkit-tap-highlight-color: transparent;
}

.home-v3 .faq-list summary::before {
  content: '0' counter(autosafe-faq);
  color: var(--story-accent-text);
  font-size: 0.58rem;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.home-v3 .faq-list .faq-answer p {
  padding-inline: 3.4rem 2.6rem;
}

@keyframes v4-lane-enter {
  from {
    opacity: 0.08;
    clip-path: inset(0 0 76% 0);
    transform: translate3d(0, 3.8rem, 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
    transform: none;
  }
}

@keyframes v4-method-panel-focus {
  0% {
    opacity: 0.06;
    filter: blur(7px);
    transform: translate3d(2.2rem, 2rem, 0) scale(0.95);
  }
  18%, 74% {
    opacity: 1;
    filter: none;
    transform: none;
  }
  100% {
    opacity: 0.08;
    filter: blur(4px);
    transform: translate3d(-1rem, -1.2rem, 0) scale(0.985);
  }
}

@keyframes v4-method-progress-on {
  from {
    background: rgba(255, 255, 255, 0.11);
    box-shadow: none;
    transform: scaleX(0.12);
  }
  to {
    background: var(--story-accent-text);
    box-shadow: 0 0 1rem rgba(251, 125, 54, 0.58);
    transform: scaleX(1);
  }
}

@keyframes v4-method-intro-shift {
  0%, 62% { opacity: 1; transform: none; }
  100% { opacity: 0.72; transform: translate3d(0, -1rem, 0); }
}

@keyframes v4-method-word-start {
  0%, 40% { opacity: 1; transform: none; }
  72%, 100% { opacity: 0; transform: translateX(-7%); }
}

@keyframes v4-method-word-end {
  0%, 48% { opacity: 0; transform: translateX(7%); }
  78%, 100% { opacity: 1; transform: none; }
}

@keyframes v4-price-billboard {
  0% {
    opacity: 0.08;
    clip-path: inset(26% 0 28% 0);
    filter: blur(6px);
    transform: translate3d(3rem, 2rem, 0) scale(0.9);
  }
  48%, 100% {
    opacity: 1;
    clip-path: inset(0);
    filter: none;
    transform: none;
  }
}

@keyframes v4-price-marquee {
  from { transform: translateX(7%); }
  to { transform: translateX(-18%); }
}

@keyframes v4-content-field {
  0% {
    opacity: 0;
    clip-path: none;
    transform: translate3d(0, 1.75rem, 0);
  }
  38%, 100% {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}

@keyframes v4-content-signal {
  from { opacity: 0; transform: translateY(0.8rem) scale(0.92); }
  to { opacity: 1; transform: none; }
}

@keyframes v4-content-phone {
  from {
    opacity: 0;
    transform: translate3d(1.8rem, 1.6rem, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@supports (animation-timeline: view()) {
  @media (min-width: 64rem) and (prefers-reduced-motion: no-preference) {
    .home-v3 .intent-list > li {
      animation: v4-lane-enter linear both;
      animation-timeline: --intent-v3-stage;
    }

    .home-v3 .intent-list > li:nth-child(1) { animation-range: cover 8% cover 29%; }
    .home-v3 .intent-list > li:nth-child(2) { animation-range: cover 16% cover 37%; }
    .home-v3 .intent-list > li:nth-child(3) { animation-range: cover 24% cover 45%; }

    .home-v3 .method-flow {
      min-height: 285svh;
      padding: 0;
    }

    .home-v3 .method-flow__stage {
      position: sticky;
      inset-block-start: var(--header-height);
      display: grid;
      min-height: 40rem;
      height: calc(100svh - var(--header-height));
      align-items: center;
      padding: 0;
    }

    .home-v3 .method-route {
      height: 23rem;
      margin-top: 3.8rem;
    }

    .home-v3 .method-route li {
      position: absolute;
      inset: 0;
      min-height: 23rem;
      border-bottom: 0;
      animation: v4-method-panel-focus linear both;
      animation-timeline: --method-v4-chapter;
    }

    .home-v3 .method-route li:nth-child(1) { animation-range: cover 4% cover 39%; }
    .home-v3 .method-route li:nth-child(2) { animation-range: cover 32% cover 68%; }
    .home-v3 .method-route li:nth-child(3) { animation-range: cover 61% cover 96%; }

    .home-v3 .method-scene__rail span::before,
    .home-v3 .method-flow__progress > span {
      animation: v4-method-progress-on linear both;
      animation-timeline: --method-v4-chapter;
      transform-origin: left;
    }

    .home-v3 .method-scene__rail span:nth-child(1)::before,
    .home-v3 .method-flow__progress > span:nth-child(1) { animation-range: cover 5% cover 18%; }
    .home-v3 .method-scene__rail span:nth-child(2)::before,
    .home-v3 .method-flow__progress > span:nth-child(2) { animation-range: cover 33% cover 46%; }
    .home-v3 .method-scene__rail span:nth-child(3)::before,
    .home-v3 .method-flow__progress > span:nth-child(3) { animation-range: cover 62% cover 75%; }

    .home-v3 .method-flow header {
      animation: v4-method-intro-shift linear both;
      animation-timeline: --method-v4-chapter;
      animation-range: cover 0% cover 100%;
    }

    .home-v3 .method-flow__ghost--start {
      animation: v4-method-word-start linear both;
      animation-timeline: --method-v4-chapter;
      animation-range: cover 0% cover 100%;
    }

    .home-v3 .method-flow__ghost--end {
      animation: v4-method-word-end linear both;
      animation-timeline: --method-v4-chapter;
      animation-range: cover 0% cover 100%;
    }

    .home-v3 .price-story__amount {
      animation: v4-price-billboard linear both;
      animation-timeline: --price-v3-stage;
      animation-range: cover 4% cover 45%;
    }

    .home-v3 .price-story__marquee span {
      animation: v4-price-marquee linear both;
      animation-timeline: --price-v3-stage;
      animation-range: cover 0% cover 100%;
    }

    .home-v3 .content-flow__social {
      animation: v4-content-field linear both;
      animation-timeline: --content-v3-stage;
      animation-range: cover 0% cover 50%;
    }

    .home-v3 .content-flow__signal {
      animation: v4-content-signal linear both;
      animation-timeline: --content-v3-stage;
      animation-range: cover 12% cover 52%;
    }

    .home-v3 .content-flow__phone-image {
      animation: v4-content-phone linear both;
      animation-timeline: --content-v3-stage;
      animation-range: cover 8% cover 44%;
    }
  }
}

@media (min-width: 64rem) and (max-height: 44rem) {
  .home-v3 .method-flow {
    min-height: auto;
    padding-block: 6rem;
  }

  .home-v3 .method-flow__stage {
    position: relative;
    inset-block-start: auto;
    display: block;
    min-height: auto;
    height: auto;
    padding: 0;
    overflow: visible;
  }

  .home-v3 .method-route {
    height: auto;
  }

  .home-v3 .method-route li {
    position: relative;
    inset: auto;
    min-height: 10rem;
    animation: none !important;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .home-v3 .method-flow header,
  .home-v3 .method-flow__ghost {
    animation: none !important;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .home-v3 .method-flow__ghost--end {
    display: none;
  }

  .home-v3 .method-flow__progress,
  .home-v3 .method-flow__hint {
    display: none;
  }
}

@media (max-width: 63.9375rem) {
  .home-v3 .content-flow__social--standalone {
    min-height: 31rem;
    padding-inline-end: clamp(15rem, 38vw, 22rem);
  }

  .home-v3 .content-flow__phone {
    inset-inline-end: 1.5rem;
    width: clamp(15rem, 31vw, 19rem);
  }

  .home-v3 .intent-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-v3 .intent-list > li,
  .home-v3 .intent-list > li:hover {
    display: grid;
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem 1.25rem;
    padding: 2rem 0;
  }

  .home-v3 .intent-list > li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.085);
    border-left: 0;
  }

  .home-v3 .intent-list__index {
    inset-inline-end: 0;
    inset-block-start: 0.25rem;
    font-size: 5rem;
  }

  .home-v3 .intent-list__copy {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .home-v3 .intent-list__copy h3 {
    max-width: none;
  }

  .home-v3 .intent-list__price,
  .home-v3 .intent-list > li > .button {
    grid-column: 1;
    grid-row: auto;
    margin-top: 0.6rem;
    padding-top: 0;
  }

  .home-v3 .intent-list__road {
    display: none;
  }

  .home-v3 .method-flow__stage {
    min-height: auto;
    padding-block: 6rem;
    overflow: visible;
  }

  .home-v3 .method-flow__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 4rem;
  }

  .home-v3 .method-flow header {
    max-width: 38rem;
  }

  .home-v3 .method-scene {
    min-height: auto;
  }

  .home-v3 .method-scene__rail,
  .home-v3 .method-scene__readout,
  .home-v3 .method-flow__progress,
  .home-v3 .method-flow__hint {
    display: none;
  }

  .home-v3 .method-route {
    gap: 0;
    margin-top: 0;
    padding-inline-start: 1rem;
    isolation: isolate;
  }

  .home-v3 .method-route::before {
    display: block;
    z-index: 0;
    inset-block: 2rem;
    inset-inline-start: 1rem;
    width: 1px;
    background: linear-gradient(to bottom, var(--story-accent-text), rgba(255, 173, 86, 0.08));
  }

  .home-v3 .method-route li {
    z-index: 1;
    min-height: 12rem;
    grid-template-columns: 4.2rem minmax(0, 1fr);
    gap: 1.2rem;
    padding: 2rem 0;
  }

  .home-v3 .method-route__number {
    position: relative;
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    border: 1px solid rgba(255, 173, 86, 0.3);
    border-radius: 50%;
    background: #0a0c0f;
    box-shadow: 0 0 0 0.55rem #0a0c0f;
    color: var(--story-accent-text);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    line-height: 1;
  }

  .home-v3 .method-route h3 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .home-v3 .method-flow__ghost {
    font-size: clamp(6rem, 18vw, 11rem);
  }

  .home-v3 .price-story {
    min-height: auto;
  }

  .home-v3 .price-story__grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 3.5rem;
  }

  .home-v3 .price-story__amount {
    padding-inline-end: clamp(4.5rem, 16vw, 7rem);
  }

  .home-v3 .price-story__amount p strong {
    font-size: clamp(5.7rem, 18vw, 9rem);
  }

  .home-v3 .price-story__details {
    grid-column: 1;
    grid-row: auto;
  }

  .home-v3 .content-flow__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-v3 .content-flow__social--standalone {
    padding-inline-end: clamp(10rem, 28vw, 18rem);
  }

  .home-v3 .guide-flow {
    min-height: auto;
  }

  .home-v3 .guide-flow__grid {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 3.5rem;
  }

  .home-v3 .guide-flow__intro {
    max-width: 42rem;
  }

  .home-v3 .instagram-flow__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 39.9375rem) {
  .home-v3 .intent-list > li,
  .home-v3 .intent-list > li:hover {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.7rem;
  }

  .home-v3 .intent-list__copy {
    grid-column: 1;
  }

  .home-v3 .intent-list__index {
    font-size: 4rem;
  }

  .home-v3 .method-flow__stage {
    padding-block: 4.8rem;
  }

  .home-v3 .method-route li {
    min-height: 11rem;
    grid-template-columns: 3.2rem minmax(0, 1fr);
    gap: 0.8rem;
  }

  .home-v3 .method-route p {
    font-size: 0.82rem;
  }

  .home-v3 .price-story {
    padding-block: 7rem 5rem;
  }

  .home-v3 .price-story__marquee {
    display: none;
  }

  .home-v3 .price-story__amount {
    padding-inline-end: 4.6rem;
  }

  .home-v3 .price-story__amount p strong {
    font-size: clamp(4.7rem, 23vw, 6.3rem);
  }

  .home-v3 .price-story__seal {
    width: 4.4rem;
  }

  .home-v3 .price-story__seal strong {
    font-size: 2rem;
  }

  .home-v3 .price-story__details {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .home-v3 .price-story__details ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-v3 .price-story__details li,
  .home-v3 .price-story__details li + li {
    padding-inline: 0.65rem;
  }

  .home-v3 .price-story__details li:first-child {
    padding-inline-start: 0;
  }

  .home-v3 .price-story__details li strong {
    font-size: 2.4rem;
  }

  .home-v3 .price-story__details li span {
    font-size: 0.54rem;
  }

  .home-v3 .content-flow {
    min-height: auto;
  }

  .home-v3 .content-flow__social {
    min-height: auto;
    justify-content: flex-start;
    padding: 2.5rem 4.5rem 2.5rem 1.2rem;
  }

  .home-v3 .content-flow__social--standalone {
    min-height: auto;
    padding-inline-end: 4.5rem;
  }

  .home-v3 .content-flow__phone {
    position: relative;
    inset: auto;
    align-self: center;
    width: min(72vw, 17.5rem);
    margin: 2.25rem -3rem 0 0;
    transform: none;
  }

  .home-v3 .content-flow__phone::before {
    inset: 12% -22% 2% -22%;
  }

  .home-v3 .content-flow__social h2 {
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  .home-v3 .content-flow__ghost {
    inset-inline-end: -0.08em;
    font-size: clamp(6rem, 30vw, 9rem);
  }

  .home-v3 .content-flow__signal {
    width: 3.6rem;
    inset-inline-end: 0;
    inset-block-start: 0.25rem;
  }

  .home-v3 .content-flow__social--standalone .content-flow__signal {
    width: 3.6rem;
    inset-inline-end: 0;
    inset-block-start: 0.25rem;
  }

  .home-v3 .guide-flow__intro h2 {
    margin-block-start: calc(1.25rem - 0.22em);
    padding-block-start: 0.22em;
    font-size: clamp(2.55rem, 12vw, 3.6rem);
  }

  .home-v3 .guide-flow__list > a {
    min-height: 11.5rem;
    grid-template-columns: 1.8rem minmax(0, 1fr) 1.2rem;
    gap: 0.8rem;
  }

  .home-v3 .guide-flow__list h3 {
    font-size: 1.2rem;
  }

  .home-v3 .guide-flow__list p {
    font-size: 0.72rem;
  }

  .home-v3 .guide-flow__list b {
    font-size: 0;
  }

  .home-v3 .guide-flow__list b svg {
    width: 1.2rem;
  }

  .home-v3 .instagram-flow {
    min-height: auto;
  }

  .home-v3 .instagram-flow__social {
    min-height: 24rem;
    padding: 0 4.5rem 0 1.2rem;
  }

  .home-v3 .instagram-flow__social h2 {
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  .home-v3 .instagram-flow__signal {
    width: 3.6rem;
    inset-inline-end: 0;
    inset-block-start: 0.25rem;
  }

  .home-v3 .faq-list summary {
    min-height: 5.6rem;
    grid-template-columns: 1.6rem minmax(0, 1fr) 1.2rem;
    gap: 0.7rem;
    font-size: 0.9rem;
  }

  .home-v3 .faq-list .faq-answer p {
    padding-inline: 2.3rem 1.5rem;
  }
}

/* About Stefan v2 ------------------------------------------------------- */
.about-v2 {
  --about-bg: #090b0e;
  --about-panel: #0d1014;
  --about-fg: #f6f3ed;
  --about-muted: #989fa8;
  --about-line: rgba(255, 255, 255, 0.1);
  --about-accent: #ff7d36;
  overflow: clip;
  background: var(--about-bg);
  color: var(--about-fg);
}

.about-v2 section {
  position: relative;
  overflow: clip;
}

.about-v2 h1,
.about-v2 h2,
.about-v2 h3,
.about-v2 p,
.about-v2 blockquote,
.about-v2 figure,
.about-v2 dl,
.about-v2 ol,
.about-v2 ul {
  margin: 0;
}

.about-v2 ol,
.about-v2 ul {
  padding: 0;
  list-style: none;
}

.about-v2 em {
  color: var(--about-accent);
  font-style: normal;
}

.about-kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #858d97;
  font-size: 0.63rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-kicker > span {
  color: var(--about-accent);
}

.about-kicker > i {
  width: 2.8rem;
  height: 1px;
  background: linear-gradient(90deg, var(--about-accent), transparent);
}

.about-hero {
  min-height: calc(100svh - var(--header-height));
  isolation: isolate;
  background:
    linear-gradient(90deg, transparent 49.94%, rgba(255, 255, 255, 0.024) 50%, transparent 50.06%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 80% 35%, rgba(255, 125, 54, 0.14), transparent 28rem),
    #090b0e;
  background-size: auto, 9rem 9rem, 9rem 9rem, auto, auto;
}

.about-hero::after {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(180deg, transparent 72%, #090b0e 100%);
  pointer-events: none;
}

.about-hero__ghost,
.about-approach__ghost,
.about-method__ghost,
.about-final__ghost {
  position: absolute;
  z-index: 0;
  color: rgba(255, 255, 255, 0.022);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 850;
  letter-spacing: -0.09em;
  line-height: 0.78;
  pointer-events: none;
  user-select: none;
}

.about-hero__ghost {
  inset-inline-end: -0.05em;
  inset-block-end: 4%;
}

.about-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(31rem, 1.08fr) minmax(28rem, 0.92fr);
  grid-template-rows: 1fr auto auto;
  align-items: center;
  gap: 1.6rem clamp(3rem, 7vw, 7rem);
  padding-block: clamp(4rem, 7vw, 7rem) 3.2rem;
}

.about-hero__copy {
  align-self: end;
}

.about-hero__copy h1 {
  max-width: 10.7ch;
  margin-top: 1.35rem;
  color: var(--about-fg);
  font-size: clamp(3.55rem, 5.2vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.about-hero__line {
  display: block;
  width: max-content;
  max-width: 100%;
}

.about-hero__line--accent {
  margin-top: 0.12em;
  color: var(--about-fg);
}

.about-hero__line--accent em {
  display: block;
}

.about-hero__lede {
  max-width: 41rem;
  margin-top: 1.75rem;
  color: #aeb4bc;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.about-hero__media {
  position: relative;
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 3;
  place-items: center;
  align-self: center;
  min-width: 0;
  padding-block: 2rem;
}

.about-hero__portrait-frame {
  position: relative;
  z-index: 2;
  width: clamp(22rem, 29vw, 27rem);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 153, 88, 0.3);
  border-radius: 50%;
  background: #b96733;
  box-shadow:
    0 2.8rem 6rem rgba(0, 0, 0, 0.48),
    0 0 0 0.7rem rgba(255, 125, 54, 0.026);
}

.about-hero__portrait-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(0.98) brightness(0.95);
}

.about-hero__orbit {
  position: absolute;
  z-index: 1;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: clamp(25rem, 33vw, 31rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 125, 54, 0.17);
  border-radius: 50%;
  transform: translate(-50%, -58%);
}

.about-hero__orbit::before {
  content: '';
  position: absolute;
  inset: 1.25rem;
  border: 1px dashed rgba(255, 184, 126, 0.13);
  border-radius: inherit;
}

.about-hero__orbit i {
  position: absolute;
  inset-inline-end: 12%;
  inset-block-start: 9%;
  width: 0.55rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ff9a5e;
  box-shadow: 0 0 0 0.55rem rgba(255, 125, 54, 0.08), 0 0 1.7rem rgba(255, 125, 54, 0.8);
}

.about-hero__media blockquote {
  position: relative;
  z-index: 3;
  width: min(23rem, 82%);
  margin: -2.2rem 0 0 clamp(3rem, 8vw, 7rem);
  padding: 1rem 0 0.1rem 1.15rem;
  border-inline-start: 2px solid rgba(255, 125, 54, 0.72);
  background: linear-gradient(90deg, rgba(9, 11, 14, 0.88), transparent);
}

.about-hero__media blockquote > p {
  color: #e7e3dc;
  font-size: 0.94rem;
  font-weight: 560;
  line-height: 1.48;
}

.about-hero__media blockquote footer {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-top: 0.65rem;
}

.about-hero__media blockquote strong {
  color: var(--about-accent);
  font-size: 0.57rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-hero__media blockquote footer span {
  color: #707882;
  font-size: 0.62rem;
}

.about-hero__actions {
  display: flex;
  align-items: center;
  align-self: start;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-hero__actions > small {
  flex-basis: 100%;
  color: #737b84;
  font-size: 0.68rem;
}

.about-hero__facts {
  display: grid;
  grid-template-columns: 0.55fr 1.15fr 0.5fr;
  border-top: 1px solid var(--about-line);
}

.about-hero__facts > div {
  padding: 1rem 1.25rem 0.1rem 0;
}

.about-hero__facts > div + div {
  padding-inline-start: 1.25rem;
  border-inline-start: 1px solid var(--about-line);
}

.about-hero__facts dt {
  color: #6e7680;
  font-size: 0.56rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-hero__facts dd {
  margin: 0.38rem 0 0;
  color: #e4e1db;
  font-size: 0.85rem;
  font-weight: 670;
}

.about-approach {
  min-height: 48rem;
  padding-block: clamp(6.5rem, 10vw, 9rem);
  background:
    radial-gradient(circle at 82% 35%, rgba(255, 125, 54, 0.11), transparent 25rem),
    #0c0f12;
}

.about-approach__ghost {
  inset-inline-start: -0.04em;
  inset-block-end: -0.08em;
}

.about-approach__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(22rem, 0.78fr) minmax(31rem, 1.22fr);
  align-items: start;
  gap: clamp(4rem, 10vw, 10rem);
}

.about-approach__intro {
  position: sticky;
  inset-block-start: calc(var(--header-height) + 3rem);
}

.about-approach__intro h2,
.about-method__intro h2,
.about-trust__quote h2,
.about-association__copy h2,
.about-final__copy h2 {
  margin-top: 1.25rem;
  color: var(--about-fg);
  font-size: clamp(2.8rem, 4.4vw, 4.5rem);
  font-weight: 790;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.about-approach__intro > p:last-child,
.about-method__intro > div > p,
.about-association__copy > p:not(.about-kicker),
.about-final__copy > p:not(.about-kicker) {
  max-width: 36rem;
  margin-top: 1.4rem;
  color: var(--about-muted);
  font-size: 1rem;
  line-height: 1.68;
}

.about-principles {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.about-principle {
  position: relative;
  display: grid;
  min-height: 12.5rem;
  grid-template-columns: 4.2rem minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: 1.8rem;
  border-bottom: 1px solid var(--about-line);
}

.about-principle::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 125, 54, 0.035));
  opacity: 0;
  transition: opacity 420ms var(--ease-standard);
}

.about-principle:hover::after {
  opacity: 1;
}

.about-principle > span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.11);
  font-size: 2.6rem;
  font-weight: 820;
  letter-spacing: -0.07em;
}

.about-principle > div {
  position: relative;
  z-index: 1;
}

.about-principle h3 {
  color: #eeebe5;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.about-principle p {
  max-width: 38rem;
  margin-top: 0.75rem;
  color: #8f969f;
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-method {
  min-height: 49rem;
  padding-block: clamp(7rem, 11vw, 10rem);
  background: #f0ece5;
  color: #171512;
}

.about-method__ghost {
  inset-inline-end: -0.04em;
  inset-block-end: -0.08em;
  color: rgba(23, 21, 18, 0.035);
}

.about-method .about-kicker {
  color: #766f68;
}

.about-method__intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(12rem, 0.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.about-method__intro h2 {
  max-width: 13ch;
  margin-top: 0;
  color: #171512;
}

.about-method__intro > div > p {
  color: #6c655f;
}

.about-method__steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 21, 18, 0.24);
  border-bottom: 1px solid rgba(23, 21, 18, 0.16);
}

.about-step {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
  padding: clamp(2rem, 3vw, 3rem);
}

.about-step + .about-step {
  border-inline-start: 1px solid rgba(23, 21, 18, 0.14);
}

.about-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 22%, rgba(255, 125, 54, 0.18), transparent 10rem);
  opacity: 0;
  transition: opacity 420ms var(--ease-standard);
}

.about-step:hover::before {
  opacity: 1;
}

.about-step__index {
  position: absolute;
  inset-inline-end: 1.2rem;
  inset-block-start: 0.7rem;
  color: rgba(23, 21, 18, 0.055);
  font-size: clamp(5rem, 8vw, 7.5rem);
  font-weight: 840;
  letter-spacing: -0.08em;
  line-height: 1;
}

.about-step small,
.about-step h3,
.about-step p {
  position: relative;
  z-index: 1;
}

.about-step small {
  color: #b84d1d;
  font-size: 0.59rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-step h3 {
  max-width: 10ch;
  margin-top: 4.6rem;
  color: #171512;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.about-step p {
  max-width: 27rem;
  margin-top: 1.1rem;
  color: #6b645e;
  font-size: 0.88rem;
  line-height: 1.62;
}

.about-step > i {
  position: absolute;
  inset-inline: 2rem;
  inset-block-end: 1.7rem;
  height: 2px;
  background: linear-gradient(90deg, #c85320 0 18%, rgba(23, 21, 18, 0.13) 18%);
  transform-origin: left;
}

.about-trust {
  padding-block: clamp(7rem, 11vw, 10rem);
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 125, 54, 0.1), transparent 27rem),
    #090b0e;
}

.about-trust__grid {
  display: grid;
  grid-template-columns: minmax(28rem, 1.08fr) minmax(25rem, 0.92fr);
  align-items: start;
  gap: clamp(4rem, 9vw, 9rem);
}

.about-trust__quote h2 {
  max-width: 14ch;
}

.about-trust__quote footer {
  margin-top: 1.5rem;
  color: var(--about-accent);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-trust__list {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.about-trust__list > li {
  display: grid;
  min-height: 10rem;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--about-line);
}

.about-trust__list > li > span {
  color: var(--about-accent);
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.about-trust__list h3 {
  color: #eeeae4;
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.about-trust__list p {
  margin-top: 0.55rem;
  color: #89919a;
  font-size: 0.84rem;
  line-height: 1.58;
}

.about-association {
  display: block;
  margin-top: clamp(6rem, 10vw, 9rem);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--about-line);
  border-bottom: 1px solid var(--about-line);
}

.about-association__mark {
  position: relative;
  display: grid;
  width: clamp(11rem, 16vw, 15rem);
  aspect-ratio: 1;
  place-content: center;
  border: 1px solid rgba(255, 125, 54, 0.3);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 125, 54, 0.13), transparent 66%);
  box-shadow: 0 0 0 0.8rem rgba(255, 125, 54, 0.025);
  text-align: center;
}

.about-association__mark strong {
  color: rgba(255, 255, 255, 0.1);
  font-size: clamp(4rem, 7vw, 6.5rem);
  letter-spacing: -0.09em;
  line-height: 0.75;
}

.about-association__mark span {
  margin-top: 0.9rem;
  color: var(--about-accent);
  font-size: 0.59rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-association__copy h2 {
  max-width: 20ch;
  font-size: clamp(2.25rem, 3.6vw, 3.6rem);
}

.about-association__copy > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.about-association__copy > div span {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #aeb4bc;
  font-size: 0.64rem;
  font-weight: 650;
}

.about-final {
  min-height: 42rem;
  padding-block: clamp(7rem, 11vw, 10rem);
  isolation: isolate;
  background:
    linear-gradient(112deg, #0a0c0f 0 58%, rgba(255, 125, 54, 0.09) 58.2% 78%, transparent 78.2%),
    radial-gradient(circle at 76% 45%, rgba(255, 125, 54, 0.16), transparent 24rem),
    #080a0d;
}

.about-final__ghost {
  inset-inline-end: -0.03em;
  inset-block-end: -0.08em;
}

.about-final__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(28rem, 1.15fr) minmax(18rem, 0.45fr);
  align-items: end;
  gap: clamp(4rem, 10vw, 10rem);
}

.about-final__copy h2 {
  max-width: 14ch;
}

.about-final__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.about-final__aside {
  padding: 1.5rem 0 0 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-inline-start: 2px solid rgba(255, 125, 54, 0.65);
}

.about-final__aside > span {
  color: var(--about-accent);
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-final__aside > strong {
  display: block;
  margin-top: 0.55rem;
  color: #f1ede7;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.045em;
}

.about-final__aside > p {
  margin-top: 0.5rem;
  color: #858d96;
  font-size: 0.75rem;
}

/* About hero entrance and ambient motion. */
@keyframes about-hero-line-enter {
  from { opacity: 0; clip-path: inset(0 0 100% 0); filter: blur(7px); transform: translate3d(0, 1.2rem, 0); }
  to { opacity: 1; clip-path: inset(-0.22em -0.12em -0.26em -0.12em); filter: none; transform: none; }
}

@keyframes about-hero-detail-enter {
  from { opacity: 0; transform: translate3d(0, 1rem, 0); }
  to { opacity: 1; transform: none; }
}

@keyframes about-portrait-enter {
  from { opacity: 0; filter: blur(8px); transform: translate3d(2rem, 1rem, 0) scale(0.92); }
  to { opacity: 1; filter: none; transform: none; }
}

@keyframes about-orbit-spin {
  from { transform: translate(-50%, -58%) rotate(0deg); }
  to { transform: translate(-50%, -58%) rotate(360deg); }
}

@keyframes about-portrait-breathe {
  0%, 100% { box-shadow: 0 2.8rem 6rem rgba(0, 0, 0, 0.48), 0 0 0 0.7rem rgba(255, 125, 54, 0.026); }
  50% { box-shadow: 0 3rem 6.5rem rgba(0, 0, 0, 0.52), 0 0 0 0.95rem rgba(255, 125, 54, 0.05); }
}

@media (prefers-reduced-motion: no-preference) {
  .about-hero .about-kicker {
    animation: about-hero-detail-enter 560ms 40ms var(--ease-emphasized) both;
  }

  .about-hero__line {
    animation: about-hero-line-enter 820ms var(--ease-emphasized) both;
  }

  .about-hero__line:nth-child(1) { animation-delay: 100ms; }
  .about-hero__line:nth-child(2) { animation-delay: 175ms; }
  .about-hero__line:nth-child(3) { animation-delay: 255ms; }

  .about-hero__lede { animation: about-hero-detail-enter 650ms 340ms var(--ease-emphasized) both; }
  .about-hero__media { animation: about-portrait-enter 900ms 120ms var(--ease-emphasized) both; }
  .about-hero__actions { animation: about-hero-detail-enter 650ms 440ms var(--ease-emphasized) both; }
  .about-hero__facts { animation: about-hero-detail-enter 650ms 520ms var(--ease-emphasized) both; }
  .about-hero__orbit { animation: about-orbit-spin 26s 1s linear infinite; }
  .about-hero__portrait-frame { animation: about-portrait-breathe 5.2s 1.1s ease-in-out infinite; }
}

/* About section reveals, replayed in both scroll directions. */
html.about-motion-enhanced .about-v2 [data-about-reveal] {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 1.6rem, 0);
  transition:
    opacity 680ms var(--ease-standard) var(--about-reveal-delay, 0ms),
    filter 680ms var(--ease-standard) var(--about-reveal-delay, 0ms),
    transform 820ms var(--ease-emphasized) var(--about-reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

html.about-motion-enhanced .about-v2 [data-about-reveal='left'] {
  transform: translate3d(-2.6rem, 1rem, 0);
}

html.about-motion-enhanced .about-v2 [data-about-reveal='right'] {
  transform: translate3d(2.6rem, 1rem, 0);
}

html.about-motion-enhanced .about-v2 [data-about-reveal='zoom'] {
  transform: translate3d(0, 1rem, 0) scale(0.9);
}

html.about-motion-enhanced .about-v2 [data-about-entry='up'][data-about-reveal='rise'] {
  transform: translate3d(0, -1.35rem, 0);
}

html.about-motion-enhanced .about-v2 [data-about-entry='up'][data-about-reveal='left'] {
  transform: translate3d(-2.3rem, -0.8rem, 0);
}

html.about-motion-enhanced .about-v2 [data-about-entry='up'][data-about-reveal='right'] {
  transform: translate3d(2.3rem, -0.8rem, 0);
}

html.about-motion-enhanced .about-v2 [data-about-entry='up'][data-about-reveal='zoom'] {
  transform: translate3d(0, -0.8rem, 0) scale(0.93);
}

html.about-motion-enhanced .about-v2 [data-about-reveal].is-about-revealed {
  opacity: 1;
  filter: none;
  transform: none;
  will-change: auto;
}

html.about-motion-enhanced .about-step > i {
  transform: scaleX(0);
  transition: transform 950ms var(--ease-emphasized) calc(var(--about-reveal-delay, 0ms) + 180ms);
}

html.about-motion-enhanced .about-step.is-about-revealed > i {
  transform: scaleX(1);
}

html.about-motion-enhanced .about-principle > span,
html.about-motion-enhanced .about-step__index {
  opacity: 0;
  transform: scale(0.82);
  transition:
    opacity 560ms var(--ease-standard) calc(var(--about-reveal-delay, 0ms) + 120ms),
    transform 720ms var(--ease-emphasized) calc(var(--about-reveal-delay, 0ms) + 120ms);
}

html.about-motion-enhanced .about-principle.is-about-revealed > span,
html.about-motion-enhanced .about-step.is-about-revealed .about-step__index {
  opacity: 1;
  transform: none;
}

@media (max-width: 70rem) {
  .about-hero__grid {
    grid-template-columns: minmax(26rem, 1fr) minmax(23rem, 0.8fr);
    gap: 1.4rem 3rem;
  }

  .about-hero__copy h1 {
    font-size: clamp(3.2rem, 5.8vw, 4.7rem);
  }

  .about-hero__portrait-frame {
    width: min(34vw, 24rem);
  }

  .about-hero__orbit {
    width: min(39vw, 27rem);
  }

  .about-approach__grid,
  .about-trust__grid {
    gap: 4rem;
  }
}

@media (max-width: 56rem) {
  .about-hero__grid {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    padding-block: 4.5rem;
  }

  .about-hero__copy,
  .about-hero__actions {
    align-self: auto;
  }

  .about-hero__media {
    grid-column: 1;
    grid-row: auto;
  }

  .about-hero__portrait-frame {
    width: min(55vw, 24rem);
  }

  .about-hero__orbit {
    width: min(63vw, 27rem);
  }

  .about-approach__grid,
  .about-trust__grid,
  .about-association,
  .about-final__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-approach__intro {
    position: relative;
    inset-block-start: auto;
  }

  .about-method__steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-step {
    min-height: 18rem;
  }

  .about-step + .about-step {
    border-top: 1px solid rgba(23, 21, 18, 0.14);
    border-inline-start: 0;
  }
}

@media (max-width: 39.9375rem) {
  .about-kicker {
    gap: 0.6rem;
    font-size: 0.55rem;
    letter-spacing: 0.135em;
  }

  .about-kicker > i {
    width: 1.8rem;
  }

  .about-hero__grid {
    gap: 0;
    padding-block: 2.4rem 3.5rem;
  }

  .about-hero__copy h1 {
    max-width: 100%;
    margin-top: 1.1rem;
    font-size: clamp(2.45rem, 10.8vw, 2.95rem);
    line-height: 0.94;
  }

  .about-hero__line {
    width: auto;
  }

  .about-hero__lede {
    margin-top: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .about-hero__media {
    margin-top: 1.9rem;
    padding-block: 0 1.2rem;
  }

  .about-hero__portrait-frame {
    width: min(69vw, 17.5rem);
  }

  .about-hero__orbit {
    width: min(78vw, 20rem);
    transform: translate(-50%, -62%);
  }

  .about-hero__media blockquote {
    width: min(88vw, 20.5rem);
    margin: -1.25rem 0 0 1.15rem;
    padding-inline-start: 0.9rem;
  }

  .about-hero__media blockquote > p {
    font-size: 0.82rem;
    line-height: 1.43;
  }

  .about-hero__actions {
    gap: 0.6rem;
    margin-top: 0.6rem;
  }

  .about-hero__actions .contact-action,
  .about-hero__actions .phone-action {
    width: 100%;
  }

  .about-hero__actions .phone-action__call {
    flex: 1 1 auto;
  }

  .about-hero__actions .phone-action__copy {
    flex: 0 0 5.3rem;
  }

  .about-hero__facts {
    grid-template-columns: 0.55fr 1.25fr 0.55fr;
    margin-top: 1.2rem;
  }

  .about-hero__facts > div {
    padding: 0.85rem 0.65rem 0 0;
  }

  .about-hero__facts > div + div {
    padding-inline-start: 0.65rem;
  }

  .about-hero__facts dt {
    font-size: 0.48rem;
  }

  .about-hero__facts dd {
    font-size: 0.69rem;
  }

  .about-approach,
  .about-method,
  .about-trust,
  .about-final {
    min-height: auto;
    padding-block: 5.4rem;
  }

  .about-approach__grid,
  .about-trust__grid {
    gap: 3.4rem;
  }

  .about-approach__intro h2,
  .about-method__intro h2,
  .about-trust__quote h2,
  .about-association__copy h2,
  .about-final__copy h2 {
    margin-top: 1rem;
    font-size: clamp(2.25rem, 10.2vw, 2.85rem);
    line-height: 0.98;
  }

  .about-approach__intro > p:last-child,
  .about-method__intro > div > p,
  .about-association__copy > p:not(.about-kicker),
  .about-final__copy > p:not(.about-kicker) {
    margin-top: 1.15rem;
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .about-principle {
    min-height: 10rem;
    grid-template-columns: 2.4rem minmax(0, 1fr);
    gap: 0.85rem;
    padding-block: 1.45rem;
  }

  .about-principle > span {
    font-size: 1.55rem;
  }

  .about-principle h3 {
    font-size: 1.35rem;
  }

  .about-principle p {
    margin-top: 0.55rem;
    font-size: 0.78rem;
    line-height: 1.52;
  }

  .about-method__intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.8rem;
  }

  .about-step {
    min-height: 17rem;
    padding: 1.65rem 1rem;
  }

  .about-step__index {
    font-size: 5.2rem;
  }

  .about-step h3 {
    margin-top: 3.6rem;
    font-size: 1.9rem;
  }

  .about-step p {
    font-size: 0.8rem;
    line-height: 1.55;
  }

  .about-step > i {
    inset-inline: 1rem;
  }

  .about-trust__list > li {
    min-height: 8.5rem;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.8rem;
  }

  .about-trust__list h3 {
    font-size: 1.08rem;
  }

  .about-trust__list p {
    font-size: 0.78rem;
  }

  .about-association {
    gap: 2.25rem;
    margin-top: 5rem;
    padding-block: 3.2rem;
  }

  .about-association__mark {
    width: 8.5rem;
  }

  .about-association__copy > div {
    gap: 0.45rem;
  }

  .about-final__grid {
    gap: 3.2rem;
  }

  .about-final__actions {
    gap: 0.65rem;
    margin-top: 1.5rem;
  }

  .about-final__actions .contact-action,
  .about-final__actions .phone-action {
    width: 100%;
  }

  .about-final__actions .phone-action__call {
    flex: 1 1 auto;
  }

  .about-final__aside {
    padding-top: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.about-motion-enhanced .about-v2 [data-about-reveal] {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }

  .about-hero__orbit,
  .about-hero__portrait-frame {
    animation: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-v3 .method-flow,
  .home-v3 .method-flow__stage {
    min-height: auto;
    height: auto;
  }

  .home-v3 .method-flow__stage {
    position: relative;
    inset-block-start: auto;
  }

  .home-v3 .method-route,
  .home-v3 .method-route li {
    height: auto;
  }

  .home-v3 .method-route li {
    position: relative;
    inset: auto;
  }

  .home-v3 .price-story__marquee span,
  .home-v3 .content-flow__signal {
    animation: none !important;
  }
}

/* About Stefan v3 — editorial hero, intentionally distinct from the homepage portrait hero. */
.about-v2 .about-hero {
  color: #171512;
  background:
    linear-gradient(rgba(23, 21, 18, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 18, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 78% 24%, rgba(255, 125, 54, 0.24), transparent 25rem),
    #eee9e1;
  background-size: 8.5rem 8.5rem, 8.5rem 8.5rem, auto, auto;
}

.about-v2 .about-hero::after {
  background: linear-gradient(180deg, transparent 78%, rgba(208, 198, 184, 0.42));
}

.about-v2 .about-hero__ghost {
  inset-inline-end: -0.02em;
  inset-block-end: -0.06em;
  color: rgba(23, 21, 18, 0.045);
}

.about-v2 .about-hero__grid {
  grid-template-columns: minmax(34rem, 1.05fr) minmax(24rem, 0.7fr);
  grid-template-rows: 1fr auto auto;
  gap: 1.45rem clamp(4rem, 8vw, 8rem);
  padding-block: clamp(4.6rem, 7vw, 7rem) 3rem;
}

.about-v2 .about-hero__copy {
  align-self: end;
}

.about-v2 .about-hero .about-kicker {
  color: #6d6861;
}

.about-v2 .about-hero__name {
  position: relative;
  display: block;
  width: max-content;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(5.4rem, 8.5vw, 9.2rem);
  font-weight: 850;
  letter-spacing: -0.095em;
  line-height: 0.67;
  text-transform: uppercase;
}

.about-v2 .about-hero__name span,
.about-v2 .about-hero__name strong {
  display: block;
}

.about-v2 .about-hero__name span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(23, 21, 18, 0.82);
}

.about-v2 .about-hero__name strong {
  margin-inline-start: 0.52em;
  color: #cf5d27;
}

.about-v2 .about-hero__copy h1 {
  max-width: 17ch;
  margin-top: clamp(2.1rem, 4vw, 3rem);
  color: #171512;
  font-size: clamp(2.15rem, 3.15vw, 3.45rem);
  font-weight: 770;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.about-v2 .about-hero__line {
  width: auto;
}

.about-v2 .about-hero__line--accent {
  color: #cf5d27;
}

.about-v2 .about-hero__lede {
  max-width: 38rem;
  margin-top: 1.25rem;
  color: #625d57;
}

.about-hero__editorial {
  position: relative;
  display: flex;
  min-height: clamp(31rem, 43vw, 38rem);
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 4vw, 3.3rem);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(145deg, transparent 0 47%, rgba(255, 125, 54, 0.13) 47.2% 72%, transparent 72.2%),
    linear-gradient(160deg, #17191c, #090b0e 72%);
  box-shadow: 0 2.4rem 5rem rgba(51, 37, 27, 0.25);
  color: #f2eee8;
}

.about-hero__editorial::before,
.about-hero__editorial::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.about-hero__editorial::before {
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.065);
}

.about-hero__editorial::after {
  inset-block: 0;
  inset-inline-end: 12%;
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 125, 54, 0.62), transparent);
}

.about-hero__monogram {
  position: absolute;
  inset-block-start: 0.02em;
  inset-inline-end: 0.06em;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(10rem, 20vw, 18rem);
  font-weight: 860;
  letter-spacing: -0.12em;
  line-height: 0.8;
  user-select: none;
}

.about-hero__manifest {
  position: relative;
  z-index: 2;
}

.about-hero__manifest > p {
  color: #ff8a4a;
  font-size: 0.58rem;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-hero__manifest blockquote {
  max-width: 19ch;
  margin-top: 1.05rem;
  color: #f2eee8;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.about-hero__manifest blockquote em {
  color: #ff8847;
}

.about-hero__manifest ul {
  display: grid;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.about-hero__manifest li {
  display: grid;
  grid-template-columns: 2.3rem 1fr;
  align-items: center;
  gap: 0.8rem;
  padding-block: 0.72rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #aeb4bb;
  font-size: 0.72rem;
  font-weight: 620;
}

.about-hero__manifest li span {
  color: #ff8847;
  font-size: 0.55rem;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.about-hero__signature {
  position: absolute;
  z-index: 2;
  inset-block-start: 2.4rem;
  inset-inline-start: clamp(2rem, 4vw, 3.3rem);
  color: #eeeae4;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-hero__signature i {
  color: #747c84;
  font-style: normal;
}

.about-v2 .about-hero__actions > small {
  color: #777068;
}

.about-v2 .about-hero__actions .phone-action {
  border-color: rgba(23, 21, 18, 0.16);
  background: rgba(255, 255, 255, 0.36);
  color: #24211e;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.56);
}

.about-v2 .about-hero__actions .phone-action__call-copy small,
.about-v2 .about-hero__actions .phone-action__copy {
  color: #706a64;
}

.about-v2 .about-hero__actions .phone-action__call-copy strong {
  color: #26221f;
}

.about-v2 .about-hero__actions .phone-action__copy {
  border-inline-start-color: rgba(23, 21, 18, 0.12);
}

.about-v2 .about-hero__facts {
  border-top-color: rgba(23, 21, 18, 0.18);
}

.about-v2 .about-hero__facts > div + div {
  border-inline-start-color: rgba(23, 21, 18, 0.14);
}

.about-v2 .about-hero__facts dt {
  color: #756f69;
}

.about-v2 .about-hero__facts dd {
  color: #24211e;
}

@keyframes about-editorial-enter {
  from { opacity: 0; clip-path: inset(0 0 0 100%); transform: translate3d(2rem, 0, 0); }
  to { opacity: 1; clip-path: inset(0); transform: none; }
}

@keyframes about-name-enter {
  from { opacity: 0; letter-spacing: -0.14em; transform: translate3d(-1.5rem, 0, 0); }
  to { opacity: 1; letter-spacing: -0.095em; transform: none; }
}

@keyframes about-monogram-drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-0.7rem, 0.55rem, 0); }
}

@media (prefers-reduced-motion: no-preference) {
  .about-v2 .about-hero__name {
    animation: about-name-enter 900ms 100ms var(--ease-emphasized) both;
  }

  .about-v2 .about-hero__editorial {
    animation: about-editorial-enter 980ms 160ms var(--ease-emphasized) both;
  }

  .about-v2 .about-hero__monogram {
    animation: about-monogram-drift 8s 1.2s ease-in-out infinite;
  }
}

@media (max-width: 70rem) {
  .about-v2 .about-hero__grid {
    grid-template-columns: minmax(29rem, 1fr) minmax(22rem, 0.7fr);
    gap-inline: 3.2rem;
  }

  .about-v2 .about-hero__name {
    font-size: clamp(5rem, 8.3vw, 7.4rem);
  }
}

@media (max-width: 56rem) {
  .about-v2 .about-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .about-v2 .about-hero__editorial {
    min-height: 28rem;
    grid-column: 1;
    grid-row: auto;
    order: 3;
    margin-block: 2rem 0.6rem;
  }

  .about-v2 .about-hero__copy { order: 1; }
  .about-v2 .about-hero__actions { order: 2; }
  .about-v2 .about-hero__facts { order: 4; }
}

@media (max-width: 39.9375rem) {
  .about-v2 .about-hero {
    min-height: auto;
    background-size: 5.5rem 5.5rem, 5.5rem 5.5rem, auto, auto;
  }

  .about-v2 .about-hero__grid {
    gap: 0;
    padding-block: 2.7rem 3.6rem;
  }

  .about-v2 .about-hero__name {
    margin-top: 1.5rem;
    font-size: clamp(4.25rem, 20vw, 5.35rem);
    line-height: 0.68;
  }

  .about-v2 .about-hero__name span {
    -webkit-text-stroke-width: 1px;
  }

  .about-v2 .about-hero__copy h1 {
    max-width: 15ch;
    margin-top: 2.2rem;
    font-size: clamp(2rem, 9vw, 2.5rem);
    line-height: 1;
  }

  .about-v2 .about-hero__lede {
    font-size: 0.86rem;
  }

  .about-v2 .about-hero__editorial {
    min-height: 23rem;
    margin-top: 2rem;
    padding: 1.75rem;
  }

  .about-hero__signature {
    inset-block-start: 1.7rem;
    inset-inline-start: 1.75rem;
  }

  .about-hero__manifest blockquote {
    max-width: 18ch;
    font-size: 1.55rem;
  }

  .about-hero__manifest ul {
    margin-top: 1.45rem;
  }

  .about-v2 .about-hero__actions {
    margin-top: 1.7rem;
  }

  .about-v2 .about-hero__facts {
    margin-top: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-v2 .about-hero__editorial,
  .about-v2 .about-hero__name,
  .about-v2 .about-hero__monogram {
    animation: none !important;
  }
}

/* Mobile premium pass v1 ------------------------------------------------- */
@keyframes mobile-premium-rise {
  from {
    opacity: 0.08;
    transform: translate3d(0, 1.65rem, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes mobile-premium-slide-left {
  from {
    opacity: 0.08;
    transform: translate3d(-1.65rem, 1rem, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes mobile-premium-slide-right {
  from {
    opacity: 0.08;
    transform: translate3d(1.65rem, 1rem, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes mobile-premium-scale {
  from {
    opacity: 0.08;
    transform: translate3d(0, 1.25rem, 0) scale(0.955);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 39.9375rem) {
  :root {
    --mobile-section-space: clamp(4.9rem, 15vw, 5.8rem);
  }

  html.motion-ready {
    scroll-behavior: auto;
  }

  html.motion-pending body {
    opacity: 1;
  }

  a,
  button,
  summary {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(251, 125, 54, 0.16);
  }

  #servicii,
  #masini,
  #cum-incep,
  #tarife,
  #tiktok,
  #ghiduri {
    scroll-margin-block-start: calc(var(--header-height) + 0.75rem);
  }

  .story-section,
  .home-v3 .faq {
    padding-block: var(--mobile-section-space);
  }

  .story-heading {
    gap: 1.25rem;
    margin-bottom: 2.65rem;
  }

  .story-heading > div {
    gap: 1rem;
  }

  .story-heading h2,
  .method-flow h2,
  .price-story h2,
  .content-flow h2,
  .home-v3 .faq .section-header h2,
  .story-final h2 {
    font-size: clamp(2.2rem, 10.4vw, 2.95rem);
    line-height: 0.98;
    text-wrap: balance;
  }

  .home-v3 .faq .section-header h2 {
    margin-block-start: -0.22em;
    padding-block-start: 0.22em;
    line-height: 1.08;
  }

  .story-heading > div > p,
  .method-flow header > p:not(.story-eyebrow),
  .price-story header > p:not(.story-eyebrow),
  .content-flow__social > p:not(.story-eyebrow) {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .story-eyebrow {
    gap: 0.6rem;
    font-size: 0.58rem;
    letter-spacing: 0.145em;
  }

  .story-hero__grid {
    padding-block-start: 2.5rem;
  }

  .story-hero__copy h1 {
    max-width: 11.5ch;
    font-size: clamp(2.65rem, 11.35vw, 3.15rem);
    line-height: 0.955;
  }

  .story-hero__lede {
    margin-top: 1.25rem;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .story-hero__actions {
    gap: 0.55rem;
    margin-top: 1.35rem;
  }

  .story-hero__actions .button {
    min-height: 3.4rem;
  }

  .story-hero__response {
    margin-top: 0.5rem;
  }

  .story-hero__phone {
    margin-top: 0.65rem;
  }

  .story-hero__facts {
    margin-top: 1.35rem;
  }

  .story-hero__facts dt {
    font-size: 0.57rem;
  }

  .story-hero__facts dd {
    font-size: 0.72rem;
  }

  .story-hero__media {
    padding: 0.85rem 0 3.4rem;
    animation: none;
  }

  .story-hero__portrait-stage {
    width: min(74vw, 18.25rem);
  }

  .story-hero__quote {
    width: min(88vw, 21.5rem);
    margin-top: 1.1rem;
  }

  .home-v3 .intent-list > li,
  .home-v3 .intent-list > li:hover {
    gap: 0.75rem;
    padding-block: 1.8rem;
  }

  .home-v3 .intent-list__copy h3 {
    font-size: 1.55rem;
    line-height: 1.04;
  }

  .home-v3 .intent-list__copy p {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .home-v3 .contact-action.button--text,
  .home-v3 .story-link {
    min-height: 3rem;
  }

  .drive-scene,
  .drive-scene--reverse {
    gap: 0.8rem;
    padding-block: 2.8rem;
  }

  .drive-scene__copy > p:not(.drive-scene__eyebrow) {
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .drive-scene__copy ul {
    gap: 0.65rem 1rem;
    margin: 1.15rem 0 1.25rem;
  }

  .drive-scene__media--cutout,
  .drive-scene--reverse .drive-scene__media--cutout {
    min-height: 18.5rem;
    margin-inline: -0.75rem;
  }

  .home-v3 .method-flow__stage {
    padding-block: 5.3rem;
  }

  .home-v3 .method-flow__grid {
    gap: 3.25rem;
  }

  .home-v3 .method-route li {
    min-height: 10.25rem;
    padding-block: 1.65rem;
  }

  .home-v3 .method-route p {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .home-v3 .price-story {
    padding-block: 5.8rem 5.2rem;
  }

  .home-v3 .price-story__grid {
    gap: 2.65rem;
  }

  .home-v3 .price-story__details {
    gap: 1.7rem;
  }

  .home-v3 .price-story__details .button {
    min-height: 3.5rem;
  }

  .home-v3 .content-flow__social,
  .home-v3 .content-flow__social--standalone {
    padding: 2.2rem 4.35rem 2.35rem 1.35rem;
  }

  .home-v3 .content-flow__phone {
    width: min(70vw, 17rem);
    margin: 2rem -2.1rem 0 0;
  }

  .home-v3 .content-flow__social > p:not(.story-eyebrow) {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .home-v3 .guide-flow__grid {
    gap: 3rem;
  }

  .home-v3 .guide-flow__list > a {
    min-height: 10.75rem;
  }

  .home-v3 .guide-flow__list p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .home-v3 .instagram-flow__social {
    min-height: 22rem;
  }

  .home-v3 .instagram-flow__notes li {
    min-height: 7.25rem;
  }

  .home-v3 .faq-list summary {
    min-height: 5.25rem;
    font-size: 0.94rem;
    line-height: 1.35;
  }

  .story-final__inner {
    padding-block-start: 5rem;
  }

  .story-final__actions {
    gap: 0.7rem;
    margin-top: 1.6rem;
  }
}

@supports (animation-timeline: view()) {
  @media (max-width: 39.9375rem) and (prefers-reduced-motion: no-preference) {
    .home-v3 .story-hero__media,
    .home-v3 .story-heading,
    .home-v3 .method-flow header,
    .home-v3 .price-story header,
    .home-v3 .guide-flow__intro,
    .home-v3 .faq .section-header,
    .home-v3 .story-final__copy {
      animation: mobile-premium-rise linear both;
      animation-timeline: view();
      animation-range: entry 2% cover 28%;
    }

    .home-v3 .intent-list > li,
    .home-v3 .method-route li,
    .home-v3 .price-story__details,
    .home-v3 .price-story__extra,
    .home-v3 .guide-flow__list > a,
    .home-v3 .instagram-flow__notes li,
    .home-v3 .faq-list details {
      animation: mobile-premium-rise linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 24%;
    }

    .home-v3 .drive-scene__copy {
      animation: mobile-premium-slide-left linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 30%;
    }

    .home-v3 .drive-scene--reverse .drive-scene__copy {
      animation-name: mobile-premium-slide-right;
    }

    .home-v3 .drive-scene__media,
    .home-v3 .price-story__amount,
    .home-v3 .content-flow__social,
    .home-v3 .content-flow__phone-image,
    .home-v3 .instagram-flow__social,
    .home-v3 .story-final__vehicle {
      animation: mobile-premium-scale linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 34%;
    }
  }
}

/* Mobile motion v2 — reliable viewport reveals and calm ambient movement. */
@keyframes mobile-motion-phone-idle {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-0.35deg); }
  50% { transform: translate3d(0, -0.42rem, 0) rotate(0.35deg); }
}

@keyframes mobile-motion-glow-breathe {
  0%, 100% { opacity: 0.42; transform: scale(0.92); }
  50% { opacity: 0.78; transform: scale(1.08); }
}

@keyframes mobile-motion-signal {
  0%, 100% { box-shadow: 0 0.9rem 2.2rem rgba(104, 47, 17, 0.14); transform: scale(1); }
  50% { box-shadow: 0 1rem 2.8rem rgba(251, 125, 54, 0.28), 0 0 0 0.42rem rgba(251, 125, 54, 0.07); transform: scale(1.045); }
}

@keyframes mobile-motion-portrait-ring {
  0%, 100% {
    box-shadow: 0 1.6rem 3.5rem rgba(0, 0, 0, 0.32), 0 0 0 0.4rem rgba(255, 125, 54, 0.025);
  }
  50% {
    box-shadow: 0 1.8rem 3.8rem rgba(0, 0, 0, 0.38), 0 0 0 0.62rem rgba(255, 125, 54, 0.055);
  }
}

@keyframes mobile-motion-seal-settle {
  0% { opacity: 0; transform: translateY(-44%) rotate(-13deg) scale(0.72); }
  68% { opacity: 1; transform: translateY(-52%) rotate(11deg) scale(1.045); }
  100% { opacity: 1; transform: translateY(-50%) rotate(8deg) scale(1); }
}

@keyframes mobile-motion-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-24%, 0, 0); }
}

@keyframes mobile-motion-whatsapp {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(37, 211, 102, 0)); }
  50% { filter: drop-shadow(0 0 0.42rem rgba(37, 211, 102, 0.38)); }
}

@media (max-width: 39.9375rem) and (prefers-reduced-motion: no-preference) {
  html.mobile-motion-enhanced .home-v3 [data-mobile-reveal] {
    animation: none !important;
    opacity: 0;
    filter: blur(6px);
    transform: translate3d(0, 1.7rem, 0);
    transition:
      opacity 680ms var(--ease-standard) var(--mobile-reveal-delay, 0ms),
      filter 680ms var(--ease-standard) var(--mobile-reveal-delay, 0ms),
      transform 820ms var(--ease-emphasized) var(--mobile-reveal-delay, 0ms);
    will-change: opacity, filter, transform;
  }

  html.mobile-motion-enhanced .home-v3 [data-mobile-reveal='left'] {
    transform: translate3d(-2.35rem, 1rem, 0) rotate(-0.7deg);
  }

  html.mobile-motion-enhanced .home-v3 [data-mobile-reveal='right'] {
    transform: translate3d(2.35rem, 1rem, 0) rotate(0.7deg);
  }

  html.mobile-motion-enhanced .home-v3 [data-mobile-reveal='zoom'] {
    transform: translate3d(0, 1.2rem, 0) scale(0.92);
  }

  html.mobile-motion-enhanced .home-v3 [data-mobile-entry='up'][data-mobile-reveal='rise'] {
    transform: translate3d(0, -1.45rem, 0);
  }

  html.mobile-motion-enhanced .home-v3 [data-mobile-entry='up'][data-mobile-reveal='left'] {
    transform: translate3d(-2.15rem, -0.8rem, 0) rotate(0.55deg);
  }

  html.mobile-motion-enhanced .home-v3 [data-mobile-entry='up'][data-mobile-reveal='right'] {
    transform: translate3d(2.15rem, -0.8rem, 0) rotate(-0.55deg);
  }

  html.mobile-motion-enhanced .home-v3 [data-mobile-entry='up'][data-mobile-reveal='zoom'] {
    transform: translate3d(0, -1rem, 0) scale(0.94);
  }

  html.mobile-motion-enhanced .home-v3 [data-mobile-reveal].is-mobile-revealed {
    opacity: 1;
    filter: none;
    transform: none;
    will-change: auto;
  }

  html.mobile-motion-enhanced .home-v3 .intent-list > li .intent-list__road {
    transform: scaleX(0);
    transition: transform 900ms var(--ease-emphasized) calc(var(--mobile-reveal-delay, 0ms) + 180ms);
  }

  html.mobile-motion-enhanced .home-v3 .intent-list > li .intent-list__index,
  html.mobile-motion-enhanced .home-v3 .guide-flow__index,
  html.mobile-motion-enhanced .home-v3 .method-route__number {
    opacity: 0;
    transform: translate3d(0, 0.7rem, 0) scale(0.84);
    transition:
      opacity 520ms var(--ease-standard) calc(var(--mobile-reveal-delay, 0ms) + 110ms),
      transform 720ms var(--ease-emphasized) calc(var(--mobile-reveal-delay, 0ms) + 110ms);
  }

  html.mobile-motion-enhanced .home-v3 .intent-list > li.is-mobile-revealed .intent-list__road {
    transform: scaleX(1);
  }

  html.mobile-motion-enhanced .home-v3 .intent-list > li.is-mobile-revealed .intent-list__index,
  html.mobile-motion-enhanced .home-v3 .guide-flow__list > a.is-mobile-revealed .guide-flow__index,
  html.mobile-motion-enhanced .home-v3 .method-route li.is-mobile-revealed .method-route__number {
    opacity: 1;
    transform: none;
  }

  html.mobile-motion-enhanced .home-v3 .story-heading h2,
  html.mobile-motion-enhanced .home-v3 .method-flow header h2,
  html.mobile-motion-enhanced .home-v3 .price-story header h2,
  html.mobile-motion-enhanced .home-v3 .guide-flow__intro h2,
  html.mobile-motion-enhanced .home-v3 .story-final__copy h2 {
    clip-path: inset(0 -0.12em 100% -0.12em);
    transform: translate3d(0, 0.75rem, 0);
    transition:
      clip-path 820ms var(--ease-emphasized) calc(var(--mobile-reveal-delay, 0ms) + 80ms),
      transform 820ms var(--ease-emphasized) calc(var(--mobile-reveal-delay, 0ms) + 80ms);
  }

  html.mobile-motion-enhanced .home-v3 .is-mobile-revealed > h2,
  html.mobile-motion-enhanced .home-v3 .story-heading.is-mobile-revealed h2,
  html.mobile-motion-enhanced .home-v3 .method-flow header.is-mobile-revealed h2,
  html.mobile-motion-enhanced .home-v3 .price-story header.is-mobile-revealed h2,
  html.mobile-motion-enhanced .home-v3 .guide-flow__intro.is-mobile-revealed h2,
  html.mobile-motion-enhanced .home-v3 .story-final__copy.is-mobile-revealed h2 {
    clip-path: inset(-0.22em -0.12em -0.26em -0.12em);
    transform: none;
  }

  html.mobile-motion-enhanced .home-v3 .drive-scene__copy h3 {
    animation: none !important;
    clip-path: inset(0 100% 0 0);
    transform: translate3d(-0.7rem, 0, 0);
    transition:
      clip-path 760ms var(--ease-emphasized) calc(var(--mobile-reveal-delay, 0ms) + 90ms),
      transform 760ms var(--ease-emphasized) calc(var(--mobile-reveal-delay, 0ms) + 90ms);
  }

  html.mobile-motion-enhanced .home-v3 .drive-scene--reverse .drive-scene__copy h3 {
    clip-path: inset(0 0 0 100%);
    transform: translate3d(0.7rem, 0, 0);
  }

  html.mobile-motion-enhanced .home-v3 .drive-scene__copy.is-mobile-revealed h3 {
    clip-path: inset(-0.22em -0.12em -0.26em -0.12em);
    transform: none;
  }

  html.mobile-motion-enhanced .home-v3 .drive-scene__media.is-mobile-revealed .drive-scene__glow {
    animation: mobile-motion-glow-breathe 3.8s 500ms ease-in-out infinite !important;
  }

  html.mobile-motion-enhanced .home-v3 .story-hero__media.is-mobile-revealed .story-hero__portrait-stage {
    animation: mobile-motion-portrait-ring 4.6s 650ms ease-in-out infinite;
  }

  html.mobile-motion-enhanced .home-v3 .price-story__amount.is-mobile-revealed .price-story__seal {
    animation: mobile-motion-seal-settle 760ms 260ms var(--ease-emphasized) both;
  }

  html.mobile-motion-enhanced .home-v3 .price-story__marquee span {
    animation: mobile-motion-marquee 18s linear infinite !important;
  }

  html.mobile-motion-enhanced .home-v3 .content-flow__phone-image {
    animation: none !important;
  }

  html.mobile-motion-enhanced .home-v3 .content-flow__social.is-mobile-revealed .content-flow__phone-image {
    animation: mobile-motion-phone-idle 4.8s 700ms ease-in-out infinite !important;
  }

  html.mobile-motion-enhanced .home-v3 .content-flow__social.is-mobile-revealed .content-flow__signal,
  html.mobile-motion-enhanced .home-v3 .instagram-flow__social.is-mobile-revealed .instagram-flow__signal {
    animation: mobile-motion-signal 3.2s 520ms ease-in-out infinite !important;
  }

  html.mobile-motion-enhanced .home-v3 .contact-action__icon {
    animation: mobile-motion-whatsapp 3.4s ease-in-out infinite;
  }

  .home-v3 .button,
  .home-v3 .story-link,
  .home-v3 .guide-flow__list > a,
  .home-v3 .faq-list summary {
    transition:
      transform 180ms var(--ease-emphasized),
      background-color 220ms var(--ease-standard),
      border-color 220ms var(--ease-standard),
      color 220ms var(--ease-standard);
  }

  .home-v3 .button:active,
  .home-v3 .story-link:active,
  .home-v3 .guide-flow__list > a:active,
  .home-v3 .faq-list summary:active {
    transform: scale(0.975);
  }
}

.drive-scene__media--seat .drive-scene__glow,
html.mobile-motion-enhanced .home-v3 .drive-scene__media--seat.is-mobile-revealed .drive-scene__glow {
  animation: none !important;
  animation-timeline: auto;
  opacity: 0.66;
  transform: none !important;
  transition: none;
  will-change: auto;
}

@media (max-width: 39.9375rem) and (prefers-reduced-motion: reduce) {
  html.mobile-motion-enhanced .home-v3 [data-mobile-reveal] {
    animation: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Mobile vehicle scale refinement. */
@media (max-width: 39.9375rem) {
  .home-v3 .drive-scene__car,
  .home-v3 .drive-scene__car-grade {
    inset: 5%;
    width: 90%;
    height: 90%;
  }

  .home-v3 .drive-scene__media--cutout::before {
    inset-inline: 15% 12%;
    inset-block-end: 17%;
  }

  .home-v3 .story-final__vehicle {
    width: 90%;
  }
}

/* Mobile intent cards — compact decision footer instead of a long empty stack. */
@media (max-width: 39.9375rem) {
  .home-v3 .intent-list > li,
  .home-v3 .intent-list > li:hover {
    width: 100%;
    min-width: 0;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 1.15rem;
    padding: 1.75rem 0;
  }

  .home-v3 .intent-list > li::before {
    background:
      radial-gradient(circle at 88% 24%, rgba(251, 125, 54, 0.13), transparent 7.5rem),
      linear-gradient(118deg, transparent 56%, rgba(251, 125, 54, 0.025) 56.2%, transparent 78%);
    opacity: 1;
  }

  .home-v3 .intent-list > li::after {
    inset-inline-end: -0.02em;
    inset-block-end: -0.1em;
    color: rgba(255, 255, 255, 0.026);
    font-size: clamp(4rem, 18vw, 5.1rem);
  }

  .home-v3 .intent-list__index {
    inset-inline-end: 0;
    inset-block-start: 0.45rem;
    font-size: 4.35rem;
  }

  .home-v3 .intent-list__copy {
    min-width: 0;
    grid-column: 1;
    grid-row: 1;
    padding-inline-end: clamp(2.6rem, 13vw, 4.25rem);
  }

  .home-v3 .intent-list__copy p {
    max-width: 29rem;
  }

  .home-v3 .intent-list__price {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.085);
  }

  .home-v3 .intent-list > li > .button {
    max-width: 100%;
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    min-height: 3rem;
    margin: 0;
    padding: 0;
  }

  .home-v3 .intent-list__road {
    display: none;
  }
}

@media (max-width: 39.9375rem) and (prefers-reduced-motion: no-preference) {
  .story-hero__eyebrow {
    animation-delay: 40ms;
  }

  .story-hero__title-line:nth-child(1) {
    animation-delay: 90ms;
  }

  .story-hero__title-line:nth-child(2) {
    animation-delay: 150ms;
  }

  .story-hero__title-line:nth-child(3) {
    animation-delay: 230ms;
  }

  .story-hero__lede {
    animation-delay: 300ms;
  }

  .story-hero__actions {
    animation-delay: 360ms;
  }

  .story-hero__response {
    animation-delay: 410ms;
  }

  .story-hero__phone {
    animation: v3-hero-detail-enter var(--duration-flow) 450ms var(--ease-emphasized) both;
  }

  .story-hero__facts {
    animation-delay: 500ms;
  }
}

@media (max-width: 39.9375rem) and (prefers-reduced-motion: reduce) {
  .home-v3 .instagram-flow__social,
  .home-v3 .instagram-flow__notes li,
  .home-v3 .content-flow__phone-image {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Mobile hero sales flow v2 --------------------------------------------- */
@media (max-width: 39.9375rem) {
  .home-v3 .story-hero__grid {
    gap: 0;
    padding-block: 1.8rem 2.2rem;
  }

  .home-v3 .story-hero__copy {
    display: contents;
  }

  .home-v3 .story-hero__eyebrow,
  .home-v3 .story-hero__copy h1,
  .home-v3 .story-hero__lede,
  .home-v3 .story-hero__actions,
  .home-v3 .story-hero__response,
  .home-v3 .story-hero__phone,
  .home-v3 .story-hero__facts,
  .home-v3 .story-hero__media {
    grid-column: 1;
    min-width: 0;
  }

  .home-v3 .story-hero__eyebrow {
    order: 1;
  }

  .home-v3 .story-hero__copy h1 {
    order: 2;
    max-width: 100%;
    margin-top: 0.95rem;
    font-size: clamp(2.18rem, 9.2vw, 2.5rem);
    letter-spacing: -0.055em;
    line-height: 0.97;
  }

  .home-v3 .story-hero__copy h1 .story-hero__title-line {
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
  }

  .home-v3 .story-hero__copy h1 .story-hero__title-line--accent {
    white-space: normal;
  }

  .home-v3 .story-hero__lede {
    order: 3;
    max-width: 34rem;
    margin-top: 1.05rem;
    font-size: 0.91rem;
    line-height: 1.54;
  }

  .home-v3 .story-hero__actions {
    order: 5;
    margin-top: 1.15rem;
  }

  .home-v3 .story-hero__actions .story-link {
    display: none;
  }

  .home-v3 .story-hero__actions .button {
    min-height: 3.45rem;
    border-radius: 999px;
    box-shadow: 0 0.85rem 2.2rem rgba(0, 0, 0, 0.2);
  }

  .home-v3 .story-hero__response {
    order: 6;
    margin-top: 0.48rem;
    text-align: center;
  }

  .home-v3 .story-hero__media {
    order: 4;
    margin-top: 1.55rem;
    padding: 0 0 1rem;
  }

  .home-v3 .story-hero__portrait-stage {
    width: min(68vw, 16.5rem);
    box-shadow:
      0 1.6rem 3.5rem rgba(0, 0, 0, 0.32),
      0 0 0 0.4rem rgba(255, 125, 54, 0.025);
  }

  .home-v3 .story-hero__quote {
    width: min(88vw, 20rem);
    margin-top: 0.85rem;
    padding-inline-start: 0.9rem;
  }

  .home-v3 .story-hero__quote p {
    font-size: 0.86rem;
    line-height: 1.38;
  }

  .home-v3 .story-hero__quote footer {
    margin-top: 0.55rem;
  }

  .home-v3 .story-hero__facts {
    order: 7;
    margin-top: 0.8rem;
    padding-block: 0.85rem;
    border-bottom: 1px solid var(--story-line);
  }

  .home-v3 .story-hero__facts div {
    padding-block: 0;
  }

  .home-v3 .story-hero__facts dd {
    margin-top: 0.28rem;
    font-size: 0.7rem;
  }

  .home-v3 .story-hero__phone {
    order: 8;
    width: 100%;
    min-height: 3.35rem;
    margin-top: 1rem;
    justify-self: stretch;
  }

  .home-v3 .story-hero__phone .phone-action__call {
    flex: 1 1 auto;
  }

  .home-v3 .story-hero__phone .phone-action__copy {
    flex: 0 0 5.4rem;
  }

  .home-v3 .intent-flow {
    padding-block-start: 3.8rem;
  }

  .home-v3 .intent-flow .story-heading h2 {
    font-size: clamp(1.75rem, 7.75vw, 2.05rem);
    line-height: 1.1;
  }

  .home-v3 .intent-flow .story-heading__line {
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
  }
}

@supports (animation-timeline: view()) {
  @media (max-width: 39.9375rem) and (prefers-reduced-motion: no-preference) {
    .home-v3 .story-hero__facts,
    .home-v3 .story-hero__phone {
      animation: mobile-premium-rise linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 22%;
    }
  }
}
