/* ==========================================================================
   Move My Way — website design system
   Soft-UI (neumorphic) surfaces on a warm ground, with the app's own coral kept
   solid for anything clickable. Palette and type come from the Flutter app's
   AppColors / Plus Jakarta Sans so site and product read as one thing.

   The rule used throughout: shadow describes *surface*, colour describes
   *action*. Cards, panels and inputs are extruded or inset; primary buttons
   stay solid coral, so an affordance never depends on a soft shadow that a
   low-vision visitor may not perceive at all.
   ========================================================================== */

/* --- Fonts (self-hosted, same TTFs the app bundles) ---------------------- */
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../assets/fonts/PlusJakartaSans-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../assets/fonts/PlusJakartaSans-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../assets/fonts/PlusJakartaSans-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../assets/fonts/PlusJakartaSans-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../assets/fonts/PlusJakartaSans-ExtraBold.ttf') format('truetype');
  font-weight: 800; font-style: normal; font-display: swap;
}

/* --- Tokens -------------------------------------------------------------- */
:root {
  /* Brand — from AppColors */
  --coral: #ff674b;
  --coral-light: #ff8a73;
  --coral-dark: #e04a2e;
  --coral-deep: #b8351c;
  --coral-wash: #fdece8;

  --blue: #c8eaf8;
  --blue-deep: #1273b8;
  --yellow: #f9e7b5;

  --ink: #1f2340;
  --ink-soft: #444a6b;
  --muted: #565c73;
  --hint: #70768b;   /* placeholder text — dark enough to stay legible on the sunken ground */

  /* Neumorphic ground. Deliberately not white: soft UI needs room for a
     highlight above the surface and a shadow below it. */
  --bg: #f2eae1;
  --surface: #f8f2ec;
  --surface-raised: #fbf6f1;
  --surface-sunken: #ecdfd3;
  --line: #ddd0c2;

  --nm-light: #ffffff;
--nm-dark:#cdbcac;

  --nm-flat:     -2px -2px 5px var(--nm-light),  3px 3px 7px var(--nm-dark);
  --nm-raised:   -6px -6px 14px var(--nm-light), 7px 7px 16px var(--nm-dark);
  --nm-lifted:  -10px -10px 24px var(--nm-light), 13px 13px 30px var(--nm-dark);
  --nm-inset:    inset -3px -3px 7px var(--nm-light), inset 4px 4px 9px var(--nm-dark);
  --nm-inset-sm: inset -2px -2px 4px var(--nm-light), inset 2px 2px 5px var(--nm-dark);

  --shadow-coral: 5px 7px 18px rgba(224, 74, 46, .34), -4px -4px 12px var(--nm-light);
  --shadow-coral-lg: 7px 12px 28px rgba(224, 74, 46, .4), -5px -5px 14px var(--nm-light);

  --green: #3f9c43;
  --amber: #d99e00;
  --red: #d93a2b;
  --violet: #6f5bd0;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --container: 1180px;
  --nav-h: 96px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

/* Dark ground for inverted sections — the same soft-UI logic, flipped.
   .section--ink opts a whole section in, so pages can alternate light and dark
   bands without any component needing a dark-specific rule of its own. */
.on-dark, .section--ink {
  --bg: #22253c;
  --surface: #282c47;
  --surface-raised: #2c3050;
  --surface-sunken: #1d2035;
  --line: #383d60;
  --nm-light: #313657;
  --nm-dark: #15172a;
  --ink: #ffffff;
  --ink-soft: #d6d9e8;
  --muted: #a7adc7;
  --hint: #7b819d;
  --coral-deep: #ffb3a2;
  --coral-dark: #ff8a73;
  --green: #6ecf72;
  --blue-deep: #77c4f2;
  background: var(--bg);
  color: var(--ink);
}

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Kills Android Chrome's grey/blue flash on every tap. Safe to remove
     everywhere: the tap-target feedback this site actually uses is real CSS
     (:hover/:active transforms, the pressed states on .btn etc.), and
     keyboard/switch-device users still get a visible ring from
     :focus-visible below — that one is deliberately untouched. */
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
/* Author-set display values otherwise beat the UA rule for [hidden]. */
[hidden] { display: none !important; }
h1, h2, h3, h4, p, figure, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 8px;
}

.skip-link {
  position: fixed; top: 10px; left: 50%;
  transform: translate(-50%, -170%);
  z-index: 200;
  background: var(--ink); color: #fff;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  transition: transform .25s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* --- Layout -------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
/* overflow-x: clip rather than hidden — hidden would turn a section into a
   scroll container and silently break the tour's position:sticky phone. */
.section { padding: clamp(66px, 9vw, 124px) 0; position: relative; overflow-x: clip; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--alt { background: var(--surface-sunken); }

.stack > * + * { margin-top: 16px; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* --- Type ---------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--coral-deep);
  background: var(--surface);
  padding: 9px 17px; border-radius: 999px;
  box-shadow: var(--nm-flat);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--coral);
  animation: pulse-dot 2.2s var(--ease-soft) infinite;
}

.h-display { font-size: clamp(2.5rem, 6vw, 4.15rem); line-height: 1.03; font-weight: 800; letter-spacing: -.038em; }
.h1 { font-size: clamp(2.1rem, 4.4vw, 3.15rem); line-height: 1.09; font-weight: 800; letter-spacing: -.032em; }
.h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.15; font-weight: 800; letter-spacing: -.027em; }
.h3 { font-size: clamp(1.15rem, 1.6vw, 1.36rem); line-height: 1.3; font-weight: 700; letter-spacing: -.016em; }
.h4 { font-size: 1.02rem; font-weight: 700; letter-spacing: -.01em; }

.lede { font-size: clamp(1.06rem, 1.4vw, 1.22rem); color: var(--muted); max-width: 62ch; line-height: 1.68; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.tiny { font-size: .78rem; }
.accent { color: var(--coral-dark); }
.section-head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 62px); }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head > * + .lede { margin-top: 16px; }
.section-head.center { margin-inline: auto; }

/* Highlight that draws itself when scrolled into view. */
.mark { position: relative; white-space: nowrap; }
.mark::after {
  content: ''; position: absolute; left: -.06em; right: -.06em; bottom: .04em; height: .36em;
  background: linear-gradient(90deg, rgba(255, 103, 75, .32), rgba(249, 231, 181, .85));
  border-radius: 999px; z-index: -1;
  transform: scaleX(0); transform-origin: left;
  transition: transform .9s .25s var(--ease);
}
.is-visible .mark::after, .mark.is-visible::after { transform: scaleX(1); }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--surface); color: var(--ink);
  box-shadow: var(--nm-raised);
  font-weight: 700; font-size: .96rem; letter-spacing: -.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background-color .25s var(--ease-soft), color .25s var(--ease-soft);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-3px); box-shadow: var(--nm-lifted); }
.btn:active { transform: translateY(0); box-shadow: var(--nm-inset); }

/* Solid coral: the one thing on the page that must never read as a surface. */
.btn--primary { background: var(--coral); color: #fff; box-shadow: var(--shadow-coral); }
.btn--primary:hover { background: var(--coral-dark); box-shadow: var(--shadow-coral-lg); }
.btn--primary:active {
  background: var(--coral-dark);
  box-shadow: inset 4px 4px 10px rgba(120, 30, 12, .45), inset -3px -3px 8px rgba(255, 160, 140, .3);
}

.btn--outline { background: var(--surface); color: var(--ink); }
.btn--outline:hover { color: var(--coral-deep); }

.btn--ghost { background: none; box-shadow: none; padding-inline: 10px; }
.btn--ghost:hover { color: var(--coral-deep); box-shadow: none; transform: translateY(-2px); }
.btn--ghost:active { box-shadow: none; }

.btn--light { background: var(--surface); color: var(--ink); }

.btn--lg { padding: 18px 34px; font-size: 1.02rem; }
.btn--sm { padding: 11px 21px; font-size: .875rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled='true'] { opacity: .55; cursor: not-allowed; transform: none !important; }

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

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; color: var(--coral-deep);
  padding: 11px 22px; border-radius: 999px;
  background: var(--surface); box-shadow: var(--nm-flat);
  transition: gap .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.link-arrow:hover { gap: 14px; box-shadow: var(--nm-raised); transform: translateY(-2px); }
.link-arrow:hover svg { transform: translateX(3px); }

/* --- Navigation ---------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  transition: box-shadow .35s var(--ease-soft), background-color .35s var(--ease-soft);
}
.nav.is-stuck {
  background: color-mix(in srgb, var(--bg) 93%, transparent);
  box-shadow: 0 6px 20px rgba(120, 112, 96, .18);
}
.nav__inner { display: flex; align-items: center; gap: 20px; width: 100%; }

.brand { display: inline-flex; align-items: center; gap: 14px; font-weight: 800; letter-spacing: -.024em; font-size: 1.3rem; }
.brand img {
  width: 64px; height: 64px; object-fit: contain;
  transition: transform .45s var(--ease-spring);
}
.brand span { white-space: nowrap; }
.brand:hover img {
  transform: rotate(-8deg) scale(1.07);
}

/* The link rail is one sunken groove; the active pill sits raised inside it. */
.nav__links {
  display: flex; align-items: center; gap: 3px; margin-inline: auto;
  padding: 5px; border-radius: 999px;
  background: var(--surface-sunken);
  box-shadow: var(--nm-inset-sm);
}
.nav__link {
  position: relative;
  white-space: nowrap;
  padding: 9px 15px; border-radius: 999px;
  font-weight: 600; font-size: .9rem; color: var(--ink-soft);
  transition: color .25s var(--ease-soft), box-shadow .3s var(--ease), background-color .25s;
}
.nav__link:hover { color: var(--ink); }
.nav__link.is-active {
  color: var(--coral-deep);
  background: var(--surface);
  box-shadow: var(--nm-flat);
}

.nav__actions { display: flex; align-items: center; gap: 10px; }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border: 0; border-radius: 15px;
  background: var(--surface); box-shadow: var(--nm-flat);
  cursor: pointer;
  transition: box-shadow .3s var(--ease);
}
.nav__toggle:active, .nav__toggle[aria-expanded='true'] { box-shadow: var(--nm-inset-sm); }
.nav__toggle span {
  display: block; position: relative;
  width: 18px; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform .35s var(--ease), background-color .2s;
}
.nav__toggle span::before, .nav__toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform .35s var(--ease), top .25s var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle[aria-expanded='true'] span { background: transparent; }
.nav__toggle[aria-expanded='true'] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded='true'] span::after { top: 0; transform: rotate(-45deg); }

.drawer {
  position: fixed; inset: var(--nav-h) 0 auto 0;
  z-index: 99;
  background: var(--bg);
  box-shadow: 0 24px 50px rgba(120, 112, 96, .3);
  padding: 20px 24px 28px;
  display: grid; gap: 9px;
  transform: translateY(-16px); opacity: 0; visibility: hidden; pointer-events: none;
  transition: transform .4s var(--ease), opacity .3s var(--ease-soft), visibility .4s;
}
.drawer.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
.drawer a {
  padding: 15px 18px; border-radius: 16px;
  font-weight: 700; font-size: 1.05rem;
  background: var(--surface); box-shadow: var(--nm-flat);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), color .2s;
}
.drawer a:hover { transform: translateX(4px); box-shadow: var(--nm-raised); }
.drawer a.is-active { color: var(--coral-deep); box-shadow: var(--nm-inset-sm); }
.drawer .btn { margin-top: 10px; }

/* --- Hero ---------------------------------------------------------------- */
.hero { position: relative; padding: clamp(46px, 7vw, 88px) 0 clamp(58px, 8vw, 106px); overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.hero__copy > * + * { margin-top: 22px; }
.hero__title { max-width: 15ch; }
.hero__note { display: flex; align-items: center; gap: 10px; font-size: .875rem; color: var(--muted); }
.hero__note svg { width: 17px; height: 17px; color: var(--green); flex: none; }

.hero__proof { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__proof > div {
  padding: 16px 22px; border-radius: var(--radius);
  background: var(--surface); box-shadow: var(--nm-flat);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.hero__proof > div:hover { transform: translateY(-4px); box-shadow: var(--nm-raised); }
.proof__num { font-size: 1.65rem; font-weight: 800; letter-spacing: -.035em; line-height: 1.1; }
.proof__label { font-size: .78rem; color: var(--muted); font-weight: 600; }

.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; pointer-events: none; z-index: 0; }
.blob--1 { width: 460px; height: 460px; background: var(--blue); top: -170px; right: -110px; animation: drift 22s var(--ease-soft) infinite alternate; }
.blob--2 { width: 380px; height: 380px; background: var(--yellow); bottom: -150px; left: -130px; animation: drift 26s var(--ease-soft) infinite alternate-reverse; }
/* Anchored from the right so it can never push the page wider than the viewport. */
.blob--3 { width: 300px; height: 300px; background: rgba(255, 103, 75, .26); top: 42%; right: 12%; animation: drift 30s var(--ease-soft) infinite alternate; }
.hero .container, .section .container { position: relative; z-index: 1; }


/* --- Decorative star field ----------------------------------------------
   The star is the app's own reward mark. Used sparingly as ambient depth so
   large sections do not read as empty; always aria-hidden and never a control. */
.stars { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.stars span {
  position: absolute;
  background: url('/assets/img/star.png') center / contain no-repeat;
  opacity: .5;
  animation: star-drift 9s var(--ease-soft) infinite;
  will-change: transform;
}
/* Kept to the outer margins and low in opacity. They are depth, not content,
   and must never compete with a headline for attention. */
.stars span:nth-child(1) { width: 120px; height: 120px; top: 6%;   left: -3%;  animation-delay: -.5s;  opacity: .32; }
.stars span:nth-child(2) { width: 158px; height: 158px; bottom: 6%; right: -3%; animation-delay: -4s;   opacity: .3; }
.stars span:nth-child(3) { width: 92px;  height: 92px;  bottom: 12%; left: 3%;  animation-delay: -7s;   opacity: .24; }
.stars span:nth-child(4) { width: 104px; height: 104px; top: 8%;   right: 6%;  animation-delay: -2.4s; opacity: .2; }
.stars span:nth-child(n+5) { display: none; }

/* Once the container fills the viewport there is no margin left to sit in, so
   only the two corner stars stay. */
@media (max-width: 1320px) {
  .stars span:nth-child(3), .stars span:nth-child(4) { display: none; }
  .stars span:nth-child(1) { left: -6%; }
  .stars span:nth-child(2) { right: -6%; }
}

@keyframes star-drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-18px) rotate(8deg); }
}

@media (max-width: 720px) {
  .stars span:nth-child(n+3) { display: none; }
  .stars span { opacity: .26; transform: scale(.6); }
}

/* --- Warm section tints --------------------------------------------------
   The site sat too close to plain white. These give whole bands a coral cast
   so sections read as brand rather than as blank paper, while keeping text
   contrast well clear of the AA threshold. */
.section--warm {
  background:
    radial-gradient(820px 480px at 10% 0%, rgba(255, 138, 115, .34), transparent 66%),
    radial-gradient(700px 460px at 92% 100%, rgba(249, 205, 150, .46), transparent 64%),
    var(--bg);
}
.section--warm-deep {
  background:
    radial-gradient(900px 540px at 84% 6%, rgba(255, 103, 75, .32), transparent 62%),
    radial-gradient(680px 460px at 6% 94%, rgba(255, 176, 130, .34), transparent 62%),
    var(--surface-sunken);
}
/* A coral band for the moments that should stop the eye. Deliberately a light
   wash rather than saturated coral: white text on full-strength coral was hard
   to read, so the band keeps the normal dark ink and lets the colour sit behind
   it. */
.section--coral {
  background: linear-gradient(140deg, #ffeade 0%, #ffdccb 46%, #ffcdb8 100%);
  --surface: rgba(255, 255, 255, .7);
  --surface-sunken: rgba(255, 252, 250, .55);
  --nm-light: #ffffff;
  --nm-dark: #e6bda8;
  --line: rgba(184, 53, 28, .18);
}
.section--coral .eyebrow { background: rgba(255, 255, 255, .82); color: var(--coral-deep); }
.section--coral .card,
.section--coral .stat { background: rgba(255, 255, 255, .62); box-shadow: var(--nm-flat); }
.section--coral .btn--light { background: #fff; }
/* The outlined step numerals need a stronger stroke here: the pale coral ground
   sits much closer to their colour than the default page background does. */
.section--coral .step::before { -webkit-text-stroke-color: rgba(160, 44, 20, .78); }
.section--coral .step__line { background: rgba(255, 255, 255, .55); }

/* --- Cards --------------------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--nm-raised);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.card::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(440px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 103, 75, .1), transparent 62%);
  opacity: 0; transition: opacity .45s var(--ease-soft); pointer-events: none;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--nm-lifted); }
.card:hover::after { opacity: 1; }
.card > * + * { margin-top: 13px; }
.card p { color: var(--muted); font-size: 1rem; line-height: 1.62; }

.card__icon {
  width: 56px; height: 56px; border-radius: 19px;
  display: grid; place-items: center;
  background: var(--surface); color: var(--coral-dark);
  box-shadow: var(--nm-inset-sm);
  transition: transform .5s var(--ease-spring), box-shadow .35s var(--ease), color .3s;
}
.card__icon svg { width: 26px; height: 26px; }
.card:hover .card__icon { transform: translateY(-3px) rotate(-7deg) scale(1.06); box-shadow: var(--nm-flat); }
.card__icon--blue { color: var(--blue-deep); }
.card__icon--yellow { color: #97730a; }
.card__icon--green { color: var(--green); }
.card__icon--violet { color: var(--violet); }

/* A card led by the Compass character instead of a line icon. Sized to match
   .card__icon so both kinds of card keep the same rhythm. */
.card__mascot {
  width: 56px; height: 56px; border-radius: 19px;
  display: grid; place-items: center;
  background: var(--surface); box-shadow: var(--nm-inset-sm);
  transition: transform .5s var(--ease-spring), box-shadow .35s var(--ease);
}
.card__mascot img { width: 74%; height: auto; object-fit: contain; }
.card:hover .card__mascot { transform: translateY(-3px) rotate(-6deg) scale(1.06); box-shadow: var(--nm-flat); }

.card--flat { background: transparent; box-shadow: none; padding: 0; }
.card--flat:hover { transform: none; box-shadow: none; }

.tagline-list { display: grid; gap: 11px; margin-top: 14px; }
.tagline-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; line-height: 1.6; color: var(--ink-soft); }
.tagline-list svg { width: 18px; height: 18px; color: var(--green); flex: none; margin-top: 3px; }

/* --- Numbered steps ------------------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 32px; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: block; font-size: 2.4rem; font-weight: 800; letter-spacing: -.04em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(224, 74, 46, .45);
  margin-bottom: 8px;
}
.step__line {
  position: absolute; top: 10px; left: 0; right: 0; height: 8px;
  border-radius: 999px; overflow: hidden;
  background: var(--surface-sunken); box-shadow: var(--nm-inset-sm);
}
.step__line::after {
  content: ''; position: absolute; inset: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--coral-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 1s var(--ease);
}
.is-visible .step__line::after { transform: scaleX(1); }
.step:nth-child(2) .step__line::after { transition-delay: .18s; }
.step:nth-child(3) .step__line::after { transition-delay: .36s; }
.step p { color: var(--muted); font-size: .94rem; margin-top: 9px; }

/* --- Scroll-driven app tour --------------------------------------------- */
.tour { position: relative; }
.tour__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 460px); gap: clamp(30px, 6vw, 80px); align-items: start; }
.tour__sticky { position: sticky; top: calc(var(--nav-h) + 40px); display: grid; place-items: center; }
.tour__steps { display: grid; gap: clamp(16px, 3vh, 26px); }

.tour__step {
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  background: var(--surface);
  box-shadow: var(--nm-inset-sm);
  opacity: .58;
  cursor: pointer;
  transition: opacity .5s var(--ease-soft), box-shadow .5s var(--ease), transform .5s var(--ease);
}
.tour__step:hover { opacity: .85; }
.tour__step.is-active { opacity: 1; box-shadow: var(--nm-raised); transform: translateX(4px); }
.tour__step .h3 { display: flex; align-items: center; gap: 13px; }
.tour__step p { color: var(--muted); margin-top: 11px; font-size: .95rem; }
.tour__badge {
  width: 34px; height: 34px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  background: var(--surface); color: var(--muted);
  box-shadow: var(--nm-flat);
  font-size: .82rem; font-weight: 800;
  transition: background-color .4s var(--ease-soft), color .4s var(--ease-soft),
              transform .5s var(--ease-spring), box-shadow .4s var(--ease);
}
.tour__step.is-active .tour__badge {
  background: var(--coral); color: #fff; transform: scale(1.1);
  box-shadow: 3px 4px 10px rgba(224, 74, 46, .38);
}
.tour__meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--surface); box-shadow: var(--nm-flat);
  font-size: .78rem; font-weight: 700; color: var(--ink-soft);
}
.chip svg { width: 13px; height: 13px; }
.chip--coral { color: var(--coral-deep); }
/* For a chip sitting on a dark section (.section--ink). The inline rgba()
   values this replaced had a typo — "255.08" is not a valid alpha channel,
   so the browser dropped the whole declaration and fell back to the default
   light .chip background, making the text unreadable against the dark
   section behind it. */
.chip--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: none;
}

/* --- Stats --------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.stat {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--nm-raised);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--nm-lifted); }
.stat__num { font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 800; letter-spacing: -.04em; line-height: 1; color: var(--ink); }
.stat__num .suffix { color: var(--coral-dark); }
.stat__label { margin-top: 11px; font-size: .875rem; color: var(--muted); font-weight: 500; }

/* --- Split rows ---------------------------------------------------------- */
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 6vw, 76px); align-items: center; }
.split + .split { margin-top: clamp(56px, 8vw, 110px); }
.split--flip .split__media { order: -1; }
/* A section whose screenshot has not been supplied yet: one readable column
   rather than a wide, half-empty two-column row. */
.split--solo { grid-template-columns: minmax(0, 1fr); max-width: 780px; }
.split--solo .lede, .split--solo .tagline-list { max-width: none; }
.split__copy > * + * { margin-top: 18px; }

.panel {
  background: var(--surface);
  border-radius: var(--radius-xl); padding: clamp(26px, 3vw, 40px);
  box-shadow: var(--nm-raised);
}
.panel--sunken { box-shadow: var(--nm-inset); background: var(--surface-sunken); }
.panel--wash {
  background: linear-gradient(150deg, var(--blue) 0%, var(--surface) 48%, var(--yellow) 100%);
  box-shadow: var(--nm-raised);
}

/* --- Download / QR ------------------------------------------------------- */
.download-card {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius-xl); padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--nm-raised);
}
.qr {
  position: relative;
  display: grid; place-items: center; gap: 15px;
  padding: 26px; border-radius: var(--radius-lg);
  background: var(--surface); box-shadow: var(--nm-inset);
}
.qr img { width: 200px; height: 200px; }
.qr__caption { font-size: .78rem; color: var(--muted); font-weight: 600; text-align: center; }
.qr::after {
  content: ''; position: absolute; left: 26px; right: 26px; top: 26px; height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--coral), transparent);
  box-shadow: 0 0 14px rgba(255, 103, 75, .8);
  animation: scan 3.4s var(--ease-soft) infinite;
  pointer-events: none;
}

.notice {
  display: flex; gap: 15px; align-items: flex-start;
  background: var(--surface); border-radius: var(--radius);
  padding: 19px 22px; box-shadow: var(--nm-inset-sm);
  border-left: 4px solid var(--amber);
}
.notice svg { width: 21px; height: 21px; color: #9a7208; flex: none; margin-top: 2px; }
.notice p { font-size: .9rem; color: var(--ink-soft); }
.notice strong { color: var(--ink); }
.notice code {
  font-family: ui-monospace, 'Cascadia Code', Menlo, monospace; font-size: .86em;
  background: var(--surface-sunken); padding: 2px 7px; border-radius: 6px;
}
.notice--info { border-left-color: var(--blue-deep); }
.notice--info svg { color: var(--blue-deep); }
.notice--danger { border-left-color: var(--red); }
.notice--danger svg { color: var(--red); }

/* --- Banner CTA ---------------------------------------------------------- */
.banner {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 32px; align-items: center;
  background: linear-gradient(125deg, #262a45 0%, #32375c 58%, #40355a 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 52px);
  box-shadow: var(--nm-lifted);
}
.banner::before {
  content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 103, 75, .5), transparent 68%);
  top: -140px; right: -70px;
  animation: drift 18s var(--ease-soft) infinite alternate;
}
.banner > * { position: relative; z-index: 1; }
.banner p { color: rgba(255, 255, 255, .78); margin-top: 13px; max-width: 56ch; }
.banner .eyebrow { background: rgba(255, 255, 255, .12); box-shadow: none; color: #ffc7ba; }
.banner .btn { background: #fff; color: var(--ink); box-shadow: 6px 8px 22px rgba(0, 0, 0, .32); }
.banner .btn:hover { box-shadow: 8px 12px 30px rgba(0, 0, 0, .4); }

/* --- FAQ ----------------------------------------------------------------- */
.faq { display: grid; gap: 14px; max-width: 860px; margin-inline: auto; }
.faq__item {
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--nm-flat); overflow: hidden;
  transition: box-shadow .4s var(--ease);
}
.faq__item.is-open { box-shadow: var(--nm-raised); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 21px 26px; background: none; border: 0; cursor: pointer; text-align: left;
  font-weight: 700; font-size: 1rem; color: var(--ink);
  transition: color .2s;
}
.faq__q:hover { color: var(--coral-deep); }
.faq__icon {
  width: 30px; height: 30px; flex: none; position: relative; border-radius: 10px;
  background: var(--surface); box-shadow: var(--nm-flat);
  transition: box-shadow .35s var(--ease);
}
.faq__item.is-open .faq__icon { box-shadow: var(--nm-inset-sm); }
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; top: 50%; left: 50%; background: var(--coral-dark);
  border-radius: 2px; transform: translate(-50%, -50%);
  transition: transform .4s var(--ease), opacity .3s;
}
.faq__icon::before { width: 13px; height: 2px; }
.faq__icon::after { width: 2px; height: 13px; }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 26px 24px; color: var(--muted); font-size: .95rem; }
.faq__a code {
  font-family: ui-monospace, 'Cascadia Code', Menlo, monospace; font-size: .86em;
  background: var(--surface-sunken); padding: 2px 7px; border-radius: 6px;
}

/* --- Forms --------------------------------------------------------------- */
.form { display: grid; gap: 22px; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
/* align-content:start keeps inputs on the same baseline when one field in a row
   carries an extra hint line and its neighbour doesn't. */
.field { display: grid; gap: 9px; align-content: start; }
.field label, .form legend { font-weight: 700; font-size: .875rem; }
.field .req { color: var(--coral-dark); }
.field .hint { font-size: .78rem; color: var(--hint); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 15px 18px;
  background: var(--surface-sunken);
  border: 0;
  border-radius: 14px;
  font-size: .95rem;
  box-shadow: var(--nm-inset-sm);
  transition: box-shadow .3s var(--ease-soft);
}
.field input::placeholder, .field textarea::placeholder { color: var(--hint); }
.field textarea { min-height: 124px; resize: vertical; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2362687f' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 17px;
  padding-right: 44px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  box-shadow: var(--nm-inset-sm), 0 0 0 3px rgba(255, 103, 75, .32);
}
.field.has-error input, .field.has-error select, .field.has-error textarea {
  box-shadow: var(--nm-inset-sm), 0 0 0 2px rgba(217, 58, 43, .6);
}
.field__error { font-size: .8rem; font-weight: 600; color: var(--red); display: none; }
.field.has-error .field__error { display: block; }

.checks { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.check {
  display: flex; align-items: center; gap: 12px;
  padding: 15px 17px; border-radius: 16px;
  background: var(--surface); box-shadow: var(--nm-flat);
  cursor: pointer; font-size: .9rem; font-weight: 600;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), color .2s;
}
.check:hover { transform: translateY(-2px); box-shadow: var(--nm-raised); }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check__box {
  width: 24px; height: 24px; flex: none; border-radius: 8px;
  background: var(--surface-sunken); box-shadow: var(--nm-inset-sm);
  display: grid; place-items: center;
  transition: background-color .25s var(--ease-soft), box-shadow .25s var(--ease-soft);
}
.check__box svg { width: 13px; height: 13px; color: #fff; opacity: 0; transform: scale(.5); transition: opacity .2s, transform .3s var(--ease-spring); }
.check input:checked ~ .check__box { background: var(--coral); box-shadow: 2px 2px 6px rgba(224, 74, 46, .4); }
.check input:checked ~ .check__box svg { opacity: 1; transform: scale(1); }
.check:has(input:checked) { color: var(--coral-deep); box-shadow: var(--nm-inset-sm); }
.check input:focus-visible ~ .check__box { outline: 3px solid var(--coral); outline-offset: 2px; }

.form__status { display: none; }
.form__status.is-shown { display: block; }

.success-panel > * { max-width: 100%; }
.success-panel {
  display: grid; gap: 19px; place-items: center; text-align: center;
  padding: clamp(32px, 5vw, 54px);
  background: var(--surface); border-radius: var(--radius-xl);
  box-shadow: var(--nm-raised);
}
.success-panel__tick {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--green); color: #fff; display: grid; place-items: center;
  box-shadow: 5px 7px 20px rgba(63, 156, 67, .38);
  animation: pop .55s var(--ease-spring) both;
}
.success-panel__tick svg { width: 36px; height: 36px; }
.success-panel .ref {
  font-family: ui-monospace, 'Cascadia Code', Menlo, monospace;
  font-weight: 700; letter-spacing: .08em;
  background: var(--surface-sunken); padding: 12px 22px; border-radius: 12px;
  box-shadow: var(--nm-inset-sm);
}

/* The reference and its copy button read as one unit. */
.ref-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; }
.ref-copy {
  width: 48px; height: 48px; flex: none;
  display: grid; place-items: center;
  border: 0; border-radius: 14px; cursor: pointer;
  background: var(--surface); color: var(--ink);
  box-shadow: 4px 4px 10px var(--nm-dark), -4px -4px 10px var(--nm-light);
  transition: transform .25s var(--ease-spring), box-shadow .25s var(--ease-soft), color .2s var(--ease-soft);
}
.ref-copy:hover { color: var(--coral-deep); transform: translateY(-2px); }
.ref-copy:active { transform: translateY(0); box-shadow: var(--nm-inset-sm); }
.ref-copy:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
.ref-copy__icon {
  grid-area: 1 / 1; width: 21px; height: 21px;
  transition: opacity .2s var(--ease-soft), transform .3s var(--ease-spring);
}
.ref-copy__icon--done { color: var(--green); opacity: 0; transform: scale(.5); }
.ref-copy.is-copied .ref-copy__icon--copy { opacity: 0; transform: scale(.5); }
.ref-copy.is-copied .ref-copy__icon--done { opacity: 1; transform: scale(1); }
/* A reference must never break across lines ("MMW-2026-" / "MTXARNX9"). */
.success-panel .ref { white-space: nowrap; }

/* Phones. Measured: the panel has 200 to 294px of room between 320 and 414px
   wide once its side padding is trimmed, so a smaller reference keeps the
   button beside it from 360px up. Narrower than that, the row wraps and the
   button sits neatly centred below the reference instead of squeezing it. */
@media (max-width: 480px) {
  .success-panel { padding-inline: 16px; }
  .success-panel .ref { font-size: .8rem; letter-spacing: .04em; padding: 11px 12px; }
  .ref-row { gap: 8px; }
  .ref-copy { width: 42px; height: 42px; border-radius: 12px; }
  .ref-copy__icon { width: 19px; height: 19px; }
}

/* --- Footer -------------------------------------------------------------- */
.footer {
  background: var(--surface-sunken); color: var(--muted);
  padding: clamp(52px, 6vw, 80px) 0 34px;
  box-shadow: inset 0 8px 18px -12px var(--nm-dark);
}
.footer a { color: var(--muted); transition: color .2s var(--ease-soft); }
.footer a:hover { color: var(--coral-deep); }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: 38px; }
.footer .brand { color: var(--ink); }
.footer .brand img { width: 54px; height: 54px; }
.footer h4 { color: var(--ink); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 17px; }
.footer li + li { margin-top: 11px; }
.footer li a { font-size: .92rem; }
.footer__bottom {
  margin-top: 46px; padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: .82rem;
}

/* --- Toast --------------------------------------------------------------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 300;
  /* Parked fully below the fold — a percentage alone leaves a sliver visible. */
  transform: translate(-50%, calc(100% + 40px));
  display: flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff;
  padding: 15px 24px; border-radius: 999px;
  box-shadow: 6px 10px 30px rgba(31, 35, 64, .4);
  font-size: .9rem; font-weight: 600;
  transition: transform .55s var(--ease-spring);
  max-width: calc(100vw - 40px);
}
.toast.is-shown { transform: translate(-50%, 0); }
.toast svg { width: 18px; height: 18px; color: var(--coral-light); flex: none; }

/* --- Scroll progress ----------------------------------------------------- */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 101;
  width: 100%; transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--coral), var(--coral-light), var(--yellow));
}

/* --- Scroll reveal ------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-soft), transform .9s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal='left'] { transform: translateX(-34px); }
[data-reveal='right'] { transform: translateX(34px); }
[data-reveal='zoom'] { transform: scale(.93); }
[data-reveal].is-visible { transform: translate(0, 0) scale(1); }

/* --- Keyframes ----------------------------------------------------------- */
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(38px, -26px) scale(1.09); }
  100% { transform: translate(-26px, 30px) scale(.95); }
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(255, 103, 75, .55); }
  70%  { box-shadow: 0 0 0 9px rgba(255, 103, 75, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 103, 75, 0); }
}
@keyframes scan {
  0%   { top: 26px; opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { top: calc(100% - 66px); opacity: 0; }
}
@keyframes pop {
  0%   { transform: scale(.4); opacity: 0; }
  70%  { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes spin { to { transform: rotate(360deg); } }

.spinner {
  width: 17px; height: 17px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .35); border-top-color: #fff;
  animation: spin .7s linear infinite;
}

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  /* Centre with auto margins, never with justify-items — a centred grid item is
     sized to max-content, which pushes long paragraphs past the viewport. */
  .hero__copy > * { max-width: 100%; }
  .hero__title { max-width: 18ch; margin-inline: auto; }
  .hero .btn-row, .hero__proof { justify-content: center; }
  .hero .lede { margin-inline: auto; }
  .tour__grid { grid-template-columns: 1fr; }
  .tour__sticky { position: relative; top: 0; order: -1; margin-bottom: 20px; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .download-card { grid-template-columns: 1fr; text-align: center; }
  .download-card > * { max-width: 100%; }
  .download-card .btn-row { justify-content: center; }
  .download-card .lede { margin-inline: auto; }
  .download-card .notice { text-align: left; }
  .download-card .qr { justify-self: center; }
  .download-card dl { text-align: left; }
}

/* The full nav bar needs ~1090px once "Compass AI" is in it; below that it
   collapses into the drawer. */
@media (max-width: 1180px) {
  .nav__links { display: none; }
  .nav__actions .btn--outline { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__inner { justify-content: space-between; }
}

@media (max-width: 860px) {
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .split, .split--flip .split__media { grid-template-columns: 1fr; order: 0; }
  .split__media { order: -1; }
  .banner { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .checks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* The enlarged brand logo plus a CTA and the menu button no longer fit on the
   narrowest handsets, so the brand wordmark drops and the logo shrinks a little
   — the mark alone still identifies the site. */
@media (max-width: 420px) {
  :root { --nav-h: 76px; }
  .brand span { display: none; }
  .brand img { width: 44px; height: 44px; border-radius: 14px; }
  .nav__inner { gap: 12px; }
  .nav .btn--sm { padding: 10px 16px; font-size: .82rem; }
  .nav__toggle { width: 42px; height: 42px; }
}

@media (max-width: 560px) {
  .container { padding-inline: 18px; }
  .grid--4, .stats { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr; }
  .hero__proof { gap: 12px; }
  .btn { width: 100%; justify-content: center; }
  .btn-row { width: 100%; }
  .btn--ghost, .nav .btn { width: auto; }
}

/* --- Motion / contrast preferences --------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0s !important;
    transition-duration: .001ms !important;
    /* Zeroing the delay too, otherwise staggered decorations still wait their
       full turn before appearing. */
    transition-delay: 0s !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .mark::after { transform: scaleX(1) !important; }
  .step__line::after { transform: scaleX(1) !important; }
}

@media print {
  .nav, .drawer, .progress, .toast, .blob { display: none !important; }
  body { background: #fff; }
}
