/* =========================================================================
   LOCK IN TOOLS
   One background colour, one ink colour, one typeface. All text is pure
   black. Hierarchy comes from size and weight, never from grey.
   ========================================================================= */

:root {
  --green: #CFFDE3;
  --ink: #000000;

  /* One fill for every box and chip, one shape for everything */
  --tint: #FFFFFF;
  --radius: 999px;

  --panel: #FFFFFF;
  --panel-soft: #FFFFFF;
  --line: rgba(0, 0, 0, 0.16);

  --font: "Space Grotesk", ui-sans-serif, system-ui, -apple-system,
    "Helvetica Neue", Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(20px, 5vw, 72px);
  --maxw: 1180px;

  --bw: 2px;      /* standard border */
  --bw-thick: 2.6px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--green);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body:not(.is-ready) {
  overflow: hidden;
  height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-weight: 700;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

li { text-wrap: pretty; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

svg[class] {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

::selection { background: var(--ink); color: var(--green); }

:focus-visible {
  outline: 2.5px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================================
   BOOT SCREEN
   ========================================================================= */

.boot {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--green);
  display: grid;
  place-items: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}

.boot.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.boot-inner {
  display: grid;
  justify-items: center;
  gap: 26px;
}

.boot-word {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  color: var(--ink);
  animation: bootPulse 2.4s ease-in-out infinite;
}

@keyframes bootPulse {
  0%, 100% { opacity: 0.32; }
  50% { opacity: 0.78; }
}

.loader {
  width: 62px;
  aspect-ratio: 1;
  display: flex;
  --c1: linear-gradient(#3F9E77 0 0);
  --c2: linear-gradient(#7FD9AF 0 0);
  --s: calc(100% / 3) calc(100% / 3);
  background:
    var(--c1) 0 0, var(--c2) 50% 0, var(--c1) 100% 0,
    var(--c2) 0 50%, var(--c2) 100% 50%,
    var(--c1) 0 100%, var(--c2) 50% 100%, var(--c1) 100% 100%;
  background-repeat: no-repeat;
  animation: l8-0 1.5s infinite alternate;
}

.loader::before {
  content: "";
  width: calc(100% / 3);
  height: calc(100% / 3);
  background: var(--ink);
  animation: inherit;
  animation-delay: 0s;
  animation-name: l8-1;
}

@keyframes l8-0 {
  0%, 12.49%   { background-size: var(--s), 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0; }
  12.5%, 24.9% { background-size: var(--s), var(--s), 0 0, 0 0, 0 0, 0 0, 0 0, 0 0; }
  25%, 37.4%   { background-size: var(--s), var(--s), var(--s), 0 0, 0 0, 0 0, 0 0, 0 0; }
  37.5%, 49.9% { background-size: var(--s), var(--s), var(--s), 0 0, var(--s), 0 0, 0 0, 0 0; }
  50%, 61.4%   { background-size: var(--s), var(--s), var(--s), 0 0, var(--s), 0 0, 0 0, var(--s); }
  62.5%, 74.9% { background-size: var(--s), var(--s), var(--s), 0 0, var(--s), 0 0, var(--s), var(--s); }
  75%, 86.4%   { background-size: var(--s), var(--s), var(--s), 0 0, var(--s), var(--s), var(--s), var(--s); }
  87.5%, 100%  { background-size: var(--s), var(--s), var(--s), var(--s), var(--s), var(--s), var(--s), var(--s); }
}

@keyframes l8-1 {
  0%, 5%  { transform: translate(0, 0); }
  12.5%   { transform: translate(100%, 0); }
  25%     { transform: translate(200%, 0); }
  37.5%   { transform: translate(200%, 100%); }
  50%     { transform: translate(200%, 200%); }
  62.5%   { transform: translate(100%, 200%); }
  75%     { transform: translate(0, 200%); }
  87.5%   { transform: translate(0, 100%); }
  95%, 100% { transform: translate(100%, 100%); }
}

/* =========================================================================
   REVEAL
   ========================================================================= */

.nav, #main, .foot {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.is-ready .nav { opacity: 1; transform: none; transition-delay: 0.05s; }
.is-ready #main { opacity: 1; transform: none; transition-delay: 0.12s; }
.is-ready .foot { opacity: 1; transform: none; transition-delay: 0.2s; }

/* =========================================================================
   CHIPS — bordered links used in the nav and footer
   ========================================================================= */

.chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 17px;
  border: var(--bw) solid var(--ink);
  border-radius: var(--radius);
  background: var(--tint);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.012em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    transform 0.12s var(--ease);
}

.chip:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18); }
.chip:active { transform: scale(0.97); }
/* Current page is marked with a second ring, so every chip keeps the
   same fill and text colour */
.chip.is-current { box-shadow: inset 0 0 0 2px var(--ink); }

.chip-mark {
  font-size: 16px;
  font-weight: 700;
  padding: 9px 19px;
}

/* =========================================================================
   NAV
   ========================================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--gutter);
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease,
    opacity 0.7s var(--ease), transform 0.7s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-stuck {
  background: var(--green);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line);
}

.nav-links {
  display: flex;
  gap: 9px;
}

/* =========================================================================
   BUTTONS
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 27px;
  border-radius: var(--radius);
  border: var(--bw) solid var(--ink);
  background: var(--ink);
  color: var(--tint);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 10px 26px rgba(0, 0, 0, 0.2);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.012em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.22s var(--ease), color 0.22s var(--ease),
    transform 0.12s var(--ease), box-shadow 0.22s var(--ease);
}

.btn:active { transform: scale(0.972); }

.btn-icon { width: 18px; height: 18px; stroke-width: 2.6; flex: 0 0 auto; }

.btn:hover {
  background: #1c1c1c;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.26), 0 16px 38px rgba(0, 0, 0, 0.26);
}

.btn-lg { padding: 18px 34px; font-size: 17.5px; }
.btn-lg .btn-icon { width: 20px; height: 20px; }

/* =========================================================================
   SHELL
   ========================================================================= */

.page[hidden] { display: none; }

.rule {
  border-top: var(--bw) solid var(--ink);
  scroll-margin-top: 76px;
}

/* Bordered box used on the major titles */
.boxed {
  display: inline-block;
  border: var(--bw-thick) solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(10px, 1.5vw, 16px) clamp(22px, 3.2vw, 38px)
           clamp(13px, 1.9vw, 20px);
  background: var(--tint);
  text-wrap: balance;
  text-align: center;
}

/* =========================================================================
   HERO — Hyperspeed runs behind this, full bleed
   ========================================================================= */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--navh, 72px) + clamp(28px, 4vw, 56px)) var(--gutter)
           clamp(70px, 8vw, 104px);
  text-align: center;
  overflow: hidden;
  background: var(--green);
  /* Pulled up under the sticky nav so the road runs edge to edge. --navh is
     measured at runtime, so this stays exact at every width. */
  margin-top: calc(-1 * var(--navh, 72px));
}

.hero-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Soft mint wash so black text stays readable wherever the road ends up */
.hero-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(46% 36% at 50% 46%,
      rgba(207, 253, 227, 0.5) 0%,
      rgba(207, 253, 227, 0.3) 46%,
      rgba(207, 253, 227, 0.08) 76%,
      rgba(207, 253, 227, 0) 100%);
}

/* Fades the animation out into the page instead of cutting it off */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(110px, 17vh, 220px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(207, 253, 227, 0) 0%,
    rgba(207, 253, 227, 0.55) 48%,
    var(--green) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 30px;
  max-width: 100%;
}

.plaque-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.plaque {
  position: relative;
  border: var(--bw-thick) solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 40px) clamp(26px, 6vw, 70px);
  background: var(--tint);
  box-shadow: 0 0 46px 12px rgba(255, 255, 255, 0.8),
    0 24px 60px -26px rgba(0, 0, 0, 0.35);
}

.plaque-title {
  font-size: clamp(2.35rem, 8.8vw, 6.4rem);
  font-weight: 700;
  letter-spacing: -0.052em;
}

.hero-line {
  font-size: clamp(1.52rem, 3.4vw, 2.3rem);
  font-weight: 700;
  max-width: 19ch;
  letter-spacing: -0.024em;
  line-height: 1.32;
  text-shadow: 0 2px 16px rgba(207, 253, 227, 0.95),
    0 0 34px rgba(207, 253, 227, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--tint);
  border: 1.5px solid var(--line);
}

.tick { width: 17px; height: 17px; flex: 0 0 auto; }

/* =========================================================================
   TOOL SECTIONS
   ========================================================================= */

/* Both tool sections share one shape: a heading block, then a two column
   body, then anything full width underneath. */
.tool {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 8.5vw, 112px) var(--gutter);
  display: grid;
  gap: clamp(34px, 4.5vw, 58px);
}

.tool-head { display: grid; gap: 20px; justify-items: start; }
.tool-head .lede { margin-bottom: 0; }
.tool-head .stat { margin-bottom: 0; }

.tool-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.tool-title {
  font-size: clamp(1.95rem, 4.9vw, 3.4rem);
  margin-bottom: 0;
}

.lede {
  font-size: clamp(1.1rem, 1.85vw, 1.34rem);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -0.022em;
  margin-bottom: 24px;
  max-width: 44ch;
}

.body {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.66;
  max-width: 50ch;
  margin-bottom: 26px;
}

.facts {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  max-width: 50ch;
  border-top: 1.5px solid var(--line);
}

.facts li {
  position: relative;
  padding: 14px 0 14px 28px;
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 1.5px solid var(--line);
}

.facts li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 23px;
  width: 7px;
  height: 7px;
  background: var(--ink);
  border-radius: 50%;
}

/* =========================================================================
   STAT — animated counter
   ========================================================================= */

.stat {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 26px);
  border: var(--bw-thick) solid var(--ink);
  border-radius: 20px;
  padding: clamp(16px, 2.2vw, 22px) clamp(18px, 2.6vw, 26px);
  background: var(--panel);
  margin-bottom: 28px;
  max-width: 50ch;
}

.stat-num {
  font-size: clamp(2.5rem, 6.4vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.055em;
  white-space: nowrap;
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
}

.stat-plus { font-size: 0.62em; vertical-align: super; letter-spacing: -0.02em; }

.stat.is-done .stat-num {
  animation: statNudge 2.6s cubic-bezier(0.3, 0, 0.2, 1) infinite;
  transform-origin: left center;
}

@keyframes statNudge {
  0%, 62%, 100% { transform: translateY(0) scale(1); }
  14% { transform: translateY(-16px) scale(1.12); }
  30% { transform: translateY(0) scale(1); }
  40% { transform: translateY(-8px) scale(1.06); }
  50% { transform: translateY(0) scale(1); }
  56% { transform: translateY(-3px) scale(1.02); }
}

.stat-label {
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.48;
}

/* =========================================================================
   SIDE BY SIDE COMPARISON
   ========================================================================= */

.compare {
  width: 100%;
  max-width: 1020px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
}

.compare-item {
  display: grid;
  gap: 12px;
  align-content: start;
}

.compare-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.compare-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: var(--tint);
  border: var(--bw) solid var(--ink);
  border-radius: 9px;
}

.compare-mark .mark-icon { width: 21px; height: 21px; stroke-width: 10; stroke-linecap: square; }
.mark-no .mark-icon { color: #D6382B; }
.mark-yes .mark-icon { color: #0E8A4F; }

.compare-col {
  height: 100%;
  border: var(--bw) solid var(--ink);
  border-radius: 22px;
  padding: clamp(20px, 2.6vw, 28px);
  background: var(--panel-soft);
}

.compare-win { background: var(--panel); border-width: var(--bw-thick); }

.compare-head {
  display: flex;
  align-items: flex-start;
  padding-bottom: 16px;
  margin-bottom: 6px;
  border-bottom: var(--bw) solid var(--ink);
}

.compare-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.compare-count { font-size: 14.5px; font-weight: 600; margin-top: 3px; }

.compare-steps {
  margin: 0;
  padding: 0 0 0 22px;
  display: grid;
  gap: 9px;
}

.compare-steps li {
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.45;
  padding-left: 3px;
}

.compare-steps li::marker { font-weight: 700; }

.compare-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1.5px solid var(--line);
  font-size: 15px;
  font-weight: 600;
}

/* =========================================================================
   DEVICE FRAMES
   ========================================================================= */

.tool-visual { display: grid; place-items: start center; width: 100%; }

.phones { grid-auto-flow: column; gap: clamp(14px, 2.4vw, 24px); align-items: start; justify-content: center; }

.phone {
  margin: 0;
  width: clamp(142px, 20vw, 216px);
  padding: 9px;
  border: var(--bw-thick) solid var(--ink);
  border-radius: 26px;
  background: var(--panel);
  box-shadow: 0 26px 60px -26px rgba(0, 0, 0, 0.42);
}

.phone-screen {
  position: relative;
  aspect-ratio: 9 / 19.5;
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel);
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
}

/* A plain laptop: black bezel around the screen, wider base bar below */
.laptop { margin: 0; width: 100%; max-width: 560px; }

.laptop-lid {
  border: var(--bw-thick) solid var(--ink);
  border-radius: 15px 15px 4px 4px;
  background: var(--ink);
  padding: clamp(7px, 1.1vw, 12px);
  box-shadow: 0 30px 60px -32px rgba(0, 0, 0, 0.45);
}

.laptop-screen {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
  background: var(--panel);
  display: grid;
  place-items: center;
}

.laptop-base {
  position: relative;
  width: 106%;
  margin-left: -3%;
  height: 15px;
  border: var(--bw-thick) solid var(--ink);
  border-top: 0;
  border-radius: 0 0 11px 11px;
  background: var(--panel);
}

.laptop-notch {
  position: absolute;
  left: 50%;
  top: 0;
  width: 92px;
  max-width: 26%;
  height: 6px;
  border: var(--bw-thick) solid var(--ink);
  border-top: 0;
  border-radius: 0 0 7px 7px;
  background: var(--panel);
  transform: translateX(-50%);
}

.laptop-screen > img,
.phone-screen > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.has-shot > img { opacity: 1; }

.shot-fallback {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  padding: 10px;
}

.shot-fallback small { font-size: 12.5px; font-weight: 500; }

.has-shot .shot-fallback { display: none; }

/* =========================================================================
   DOC PAGES
   ========================================================================= */

.doc {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 62px) var(--gutter) clamp(70px, 10vw, 120px);
}

.back {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 26px;
}

.back:hover { text-decoration: underline; text-underline-offset: 4px; }
.back-icon { width: 17px; height: 17px; stroke-width: 2.6; transform: rotate(180deg); }

.doc-title { font-size: clamp(1.85rem, 5vw, 3.1rem); margin-bottom: 22px; }

.doc-sub {
  font-size: clamp(1.05rem, 1.85vw, 1.24rem);
  font-weight: 500;
  line-height: 1.5;
  max-width: 46ch;
  margin-bottom: 36px;
}

.grab { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }

.callout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border: var(--bw) solid var(--ink);
  border-radius: 18px;
  background: var(--panel);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.58;
  margin-bottom: 52px;
}

/* Short blocks get balanced line lengths, which stops a single word being
   stranded on the last line at narrow widths */
.callout p,
.stat-label,
.compare-note,
.shot-fallback { text-wrap: balance; }

.callout-quiet { background: var(--panel-soft); margin-bottom: 0; }
.callout-icon { width: 26px; height: 26px; flex: 0 0 auto; margin-top: 1px; }

.steps-head {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  margin-bottom: 6px;
  padding-bottom: 14px;
  border-bottom: var(--bw) solid var(--ink);
}

.steps { list-style: none; counter-reset: step; margin: 0 0 52px; padding: 0; }

.steps li {
  counter-increment: step;
  position: relative;
  padding: 22px 0 22px 60px;
  border-bottom: 1.5px solid var(--line);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 21px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: var(--bw) solid var(--ink);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.steps h3 { font-size: 17.5px; font-weight: 700; letter-spacing: -0.024em; margin-bottom: 6px; }
.steps p { font-size: 16.5px; font-weight: 500; line-height: 1.58; }
.steps b { font-weight: 700; }

/* ---- Story ---- */

.doc-story .doc-title { max-width: 15ch; margin-bottom: 44px; }

.prose { display: grid; gap: 18px; margin-bottom: 48px; }

.prose h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  margin-top: 22px;
  padding-bottom: 10px;
  border-bottom: var(--bw) solid var(--ink);
}

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

.prose p { font-size: 17.5px; font-weight: 500; line-height: 1.68; max-width: 60ch; }

.sign {
  font-weight: 700;
  font-size: 19px !important;
  padding-top: 18px;
  margin-top: 14px;
  border-top: var(--bw) solid var(--ink);
  width: fit-content;
  padding-right: 50px;
}

/* =========================================================================
   FOOTER
   ========================================================================= */

.foot { border-top: var(--bw-thick) solid var(--ink); }

.foot-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 34px var(--gutter) 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
  align-items: flex-start;
}

.foot-mark { font-size: 18px; font-weight: 700; letter-spacing: -0.035em; }

.foot-inner { align-items: center; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 1000px) {
  .compare { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 900px) {
  .tool-body { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  /* On a phone the product shot belongs directly under the heading */
  .tool-visual { order: -1; }
  .laptop { max-width: 100%; }
}

@media (max-width: 620px) {
  body { font-size: 16.5px; }

  /* The wordmark is dropped on phones so all four links fit one row */
  .nav { gap: 6px; padding: 10px 12px; justify-content: center; }
  .chip-mark { display: none; }
  .nav-links { width: 100%; gap: 5px; justify-content: space-between; flex-wrap: nowrap; }
  .chip {
    padding: 8px clamp(8px, 2.6vw, 14px);
    font-size: clamp(11.5px, 3.3vw, 14px);
    letter-spacing: -0.02em;
  }

  .hero { padding-bottom: 76px; }
  .hero-content { gap: 22px; }
  .plaque { padding: clamp(16px, 4.5vw, 22px) clamp(14px, 4.5vw, 26px); }
  /* Vertical screens get their own sizing so the wordmark never wraps */
  .plaque-title {
    font-size: min(10.2vw, 3rem);
    white-space: nowrap;
    letter-spacing: -0.05em;
  }
  .hero-line { max-width: 15ch; font-size: clamp(1.3rem, 5.6vw, 1.7rem); }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { font-size: 13.5px; text-align: center; }

  /* Text blocks get their own line length on narrow screens so sentences
     do not strand a single word on the last line */
  .lede, .body, .facts, .stat, .doc-sub, .prose p { max-width: 100%; }

  .stat { flex-direction: column; align-items: flex-start; gap: 10px; }
  .stat.is-done .stat-num { transform-origin: left center; }

  .phones { gap: 12px; }
  .phone { padding: 6px; border-radius: 20px; }
  .phone-screen { border-radius: 11px; }

  .grab { flex-direction: column; align-items: stretch; }
  .grab .btn { width: 100%; }

  .steps li { padding-left: 48px; }
  .steps li::before { width: 30px; height: 30px; font-size: 14px; top: 22px; }

  .compare-steps { padding-left: 20px; }

  .foot-inner { flex-direction: column; padding-bottom: 20px; }
}

/* Very narrow phones need the nav squeezed a little further */
@media (max-width: 365px) {
  .nav { padding: 10px 7px; gap: 4px; }
  .nav-links { gap: 4px; }
  .chip { padding: 7px 8px; font-size: 11px; letter-spacing: -0.03em; }
}

/* =========================================================================
   REDUCED MOTION
   ========================================================================= */

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

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .nav, #main, .foot { opacity: 1; transform: none; }
}
