/* ============================================================
   Eazilend, eazilend.co.uk
   Master design spec v1. Figtree variable, self-hosted.
   ============================================================ */

@font-face {
  font-family: 'Figtree';
  src: url('../fonts/figtree-variable.woff2') format('woff2-variations');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #211434;
  --paper: #f6f3f8;
  --black: #0a0610;
  --purple: #7854a3;
  --lilac: #d1bada;
  --cta-a: #8e2ef9;
  --cta-b: #6d18d6;
  --ink-soft: #4a3a61;
  --hair-dark: rgba(209, 186, 218, .14);
  --hair-light: rgba(33, 20, 52, .14);
  --shadow-dark: 0 32px 80px -24px rgba(10, 6, 16, .5);
  --shadow-light: 0 24px 64px -28px rgba(33, 20, 52, .22);
  --grad-ink: linear-gradient(96deg, #7d58aa 0%, #211434 78%);
  --grad-light: linear-gradient(102deg, #ffffff 10%, #e9def3 55%, #c9aede 96%);
  --r-frame: 16px;
  --r-phone: 28px;
  --r-card: 20px;
  --head-h: 64px;
  --pad-dark: 160px;
  --pad-light: 140px;
  --ease-out: cubic-bezier(.2, .7, .3, 1);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Figtree', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; }
img { height: auto; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
sup { font-size: .6em; }
[hidden] { display: none !important; }
::selection { background: var(--cta-a); color: #fff; }
:focus-visible { outline: 2px solid var(--cta-a); outline-offset: 3px; border-radius: 4px; }

.skip {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 999px;
  font-weight: 600; transition: top .2s;
}
.skip:focus { top: 12px; }

.wrap {
  width: 100%;
  max-width: calc(1240px + 64px);
  margin-inline: auto;
  padding-inline: 32px;
}

/* ---------- Type ---------- */
h1, h2, h3 { color: var(--ink); letter-spacing: normal; text-wrap: balance; }
h1 { font-size: 84px; line-height: 1.12; font-weight: 800; }
h2 { font-size: 60px; line-height: 1.14; font-weight: 800; }
h3 { font-size: 40px; line-height: 1.18; font-weight: 750; }
.card-title { font-size: 20px; line-height: 1.3; font-weight: 650; }
.lede { font-size: 21px; line-height: 1.6; }
.lede-light { color: rgba(238, 231, 246, .84); }

.kicker {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 20px;
}
.kicker-light { color: #c9aede; }

.grad-ink, .grad-light {
  background: var(--grad-ink);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding-bottom: .12em;
}
.grad-light { background: var(--grad-light); -webkit-background-clip: text; background-clip: text; }

.footnote { font-size: 13px; line-height: 1.5; color: #8a7b9e; }
.footnote-dark { color: rgba(233, 226, 240, .45); }

/* ---------- Sections ---------- */
.sec-dark { background: var(--black); padding-block: var(--pad-dark); }
.sec-light { background: var(--paper); padding-block: var(--pad-light); }
section[id], footer[id] { scroll-margin-top: var(--head-h); }

.sec-intro { max-width: 780px; margin-inline: auto; text-align: center; }
.sec-intro h2 { margin-bottom: 24px; }
.sec-intro .lede { max-width: 640px; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out),
              border-color .2s, background-color .2s, opacity .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-cta {
  background: linear-gradient(120deg, var(--cta-a), var(--cta-b));
  color: #fff;
  box-shadow: 0 10px 28px -12px rgba(142, 46, 249, .55);
}
.btn-cta:hover { box-shadow: 0 16px 36px -12px rgba(142, 46, 249, .65); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .34);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, .6); box-shadow: 0 10px 28px -16px rgba(209, 186, 218, .5); }

.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: default; }
.btn[disabled]:hover { transform: none; }

/* ---------- Header ---------- */
.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--head-h);
  display: flex;
  align-items: center;
  background: rgba(10, 6, 16, .5);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hair-dark);
  transition: background-color .25s;
}
.site-head.scrolled { background: rgba(10, 6, 16, .85); }

.head-in { display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 30px; width: auto; display: block; }

.head-nav { display: flex; gap: 32px; margin-left: auto; }
.head-nav a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  transition: color .2s;
}
.head-nav a:hover { color: #fff; }

.head-cta { padding: 10px 22px; font-size: 15px; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: 0;
  cursor: pointer;
}
.burger span { display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px; }

/* ---------- 2 Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--black);
  overflow: hidden;
}
.hero-art {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  pointer-events: none;
}
.hero-wave {
  position: absolute;
  top: 50%;
  right: -22%;
  height: 158%;
  width: auto;
  max-width: none;
  transform: translateY(-48%);
  filter: saturate(1.14) brightness(1.06);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 6, 16, .9) 0%, rgba(10, 6, 16, .55) 30%, rgba(10, 6, 16, 0) 56%),
    linear-gradient(to top, rgba(10, 6, 16, .55), rgba(10, 6, 16, 0) 24%);
}
.hero-in {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  align-items: center;
}
/* Wider than the 5-col spec block: 84px h1 cannot make 3 lines in 5
   cols, and "h1 max 3 lines" wins. Lede keeps a 30em measure. */
.hero-copy {
  width: 100%;
  max-width: 900px;
  padding-block: calc(var(--head-h) + 24px);
}
.hero-title {
  background: var(--grad-light);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding-bottom: .12em;
}
.hero-copy .lede { max-width: 30em; margin-top: 20px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero-cue {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(209, 186, 218, 0), rgba(209, 186, 218, .55));
}

/* The static brochure artwork is the shipped hero; only the copy
   carries an entrance reveal. */
.js .hero-copy > * { animation: riseIn .5s var(--ease-out) both; }
.js .hero-copy > :nth-child(2) { animation-delay: .06s; }
.js .hero-copy > :nth-child(3) { animation-delay: .12s; }
.js .hero-copy > :nth-child(4) { animation-delay: .18s; }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Frames ---------- */
/* Lit border: brightest at the top edge, falling to the standard
   hairline at the sides and bottom. Two-layer background keeps the
   gradient border inside the radius. */
.frame {
  position: relative;
  border-radius: var(--r-frame);
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(to bottom, rgba(233, 222, 243, .34), rgba(33, 20, 52, .14) 42%) border-box;
  box-shadow: var(--shadow-light);
}
.frame img { display: block; width: 100%; }
.frame-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding-inline: 14px;
  background: #17102a;
  border-bottom: 1px solid var(--hair-dark);
}
.frame-bar i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(209, 186, 218, .28);
}
.frame-dark {
  background:
    linear-gradient(#17102a, #17102a) padding-box,
    linear-gradient(to bottom, rgba(233, 222, 243, .34), rgba(209, 186, 218, .14) 42%) border-box;
  box-shadow: var(--shadow-dark);
}
.frame-phone {
  border-radius: var(--r-phone);
  width: 400px;
  max-width: 100%;
  margin-inline: auto;
}

/* ---------- 3 Showcase shrink ---------- */
.showcase { background: var(--black); }
.showcase-head {
  padding-top: var(--pad-dark);
  padding-bottom: 64px;
  text-align: center;
}
.showcase-head h2 { margin-bottom: 0; }
.showcase-media { position: relative; }
.showcase-lead {
  position: absolute;
  inset: 0;
  opacity: var(--leadfade, 0);
}
.showcase-track { height: calc(100svh + 600px); }
.showcase-pin {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding-inline: 32px;
  padding-top: calc(var(--head-h) + 8px);
  padding-bottom: 12px;
}
.showcase-frame {
  position: relative;
  width: 94vw;
  max-width: 94vw;
  border-radius: 8px;
  margin-inline: auto;
}
/* Motion 2 end-state glow: one per dark section, <=.3 opacity */
.showcase-pin::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 620px;
  height: 420px;
  transform: translate(-50%, -58%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(142, 46, 249, .3), transparent 72%);
  filter: blur(40px);
  opacity: var(--glow, 0);
  pointer-events: none;
}
.showcase-frame, .showcase-caption { z-index: 1; }

.showcase-caption { text-align: center; }
.stat-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(238, 231, 246, .85);
}
.stat-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--hair-dark);
  background-color: rgba(209, 186, 218, .4);
}
.showcase-caption .footnote { margin-top: 12px; }

/* Static end-state (no-js, reduced motion, touch) */
.no-js .showcase-track,
.showcase.static .showcase-track { height: auto; }
.no-js .showcase-pin,
.showcase.static .showcase-pin { position: static; height: auto; padding-block: 96px; }
.no-js .showcase-frame,
.showcase.static .showcase-frame { width: 100%; max-width: 1240px; border-radius: var(--r-frame); }
.no-js .showcase-pin::before,
.showcase.static .showcase-pin::before { opacity: .3; }
.no-js .showcase-lead,
.showcase.static .showcase-lead { opacity: 1; }

/* ---------- 4 Sticky tool showcase ---------- */
/* Rail progress line: fixed 24px from the viewport's left edge, full
   section height. Fill maps 1:1 to scroll progress through the
   section. Does not exist below 1200px. */
.tools { padding-bottom: 0; position: relative; }
.tools::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(209, 186, 218, .14);
}
.tools::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 2px;
  height: calc(var(--railp, 0) * 100%);
  background: #8e2ef9;
}
.tools.static::after,
.no-js .tools::after { height: 100%; }
@media (max-width: 1200px) {
  .tools::before, .tools::after { display: none; }
}
.tools-intro { text-align: center; }
.tools-intro h2 { margin-bottom: 0; }

.tools-split {
  display: grid;
  grid-template-columns: 480px minmax(0, 1fr);
  gap: 56px;
  padding-left: max(32px, calc((100vw - 1512px) / 2 + 32px));
  padding-right: max(32px, calc((100vw - 1512px) / 2 + 32px));
  margin-top: 48px;
}
.tools-rail { max-width: 480px; }
.step {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.step-copy h3 { margin-bottom: 20px; }
.step-copy p + p { margin-top: 14px; }
.step-copy .kicker { margin-bottom: 16px; color: rgba(120, 84, 163, .55); }
.step.is-active .step-copy .kicker { color: var(--purple); }
.tools.static .step-copy .kicker,
.no-js .step-copy .kicker { color: var(--purple); }
.tools.static .tools-rail::after,
.no-js .tools-rail::after { height: 100%; }
.step .step-media { display: none; }

.tools-panel {
  position: sticky;
  top: 96px;
  align-self: start;
  height: calc(100svh - 128px);
  min-height: 560px;
}
.panel-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .28s var(--ease-out), transform .28s var(--ease-out);
  pointer-events: none;
}
.panel-layer.is-active { opacity: 1; transform: translateY(0); }
.panel-layer .frame-light { width: 100%; }

/* ---------- 5 Make it yours ---------- */
.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.card {
  background: #fff;
  border: 1px solid var(--hair-light);
  border-radius: var(--r-card);
  padding: 36px 32px;
}
.card .card-title { margin-bottom: 12px; }
.card p { font-size: 17px; line-height: 1.6; }
.icon-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(209, 186, 218, .12);
  color: var(--purple);
  margin-bottom: 16px;
}
.icon-tile svg { width: 22px; height: 22px; }

/* ---------- 6 Pricing ---------- */
.price-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 64px;
  max-width: 960px;
  margin: 64px auto 0;
  padding: 56px 64px;
  border: 1px solid transparent;
  /* lit border over an opaque equivalent of 12% purple on black */
  background:
    linear-gradient(#180f22, #180f22) padding-box,
    linear-gradient(to bottom, rgba(233, 222, 243, .34), rgba(209, 186, 218, .14) 42%) border-box;
  border-radius: var(--r-card);
}
/* Entrance: first view only. Armed by JS so no-JS and static paths
   render the finished card. */
.price-card.price-armed { opacity: 0; }
.price-card.enter { animation: cardIn .5s var(--ease-out) both; }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
/* One slow sheen pass per viewport entry, screen blend, max 8% white */
.price-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, .08) 50%, transparent 58%);
  mix-blend-mode: screen;
  transform: translateX(-120%);
  pointer-events: none;
}
.price-card.sheen::after { animation: sheenPass 12s linear 1s 1; }
@keyframes sheenPass {
  from { transform: translateX(-120%); }
  to   { transform: translateX(120%); }
}
.p-amount {
  font-size: 128px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.p-vat {
  font-size: 24px;
  font-weight: 650;
  margin-left: .3em;
  vertical-align: super;
  color: rgba(255, 255, 255, .8);
}
.p-per { margin-top: 12px; color: #e4d5f0; font-size: 16px; font-weight: 550; }

.price-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
}
.price-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 620;
  font-size: 17px;
}
.check-dot {
  display: inline-flex;
  width: 22px; height: 22px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--cta-a), var(--cta-b));
}
.check-dot svg { width: 100%; height: 100%; }

.price-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 920px;
  margin: 36px auto 0;
}
.price-aside { color: rgba(238, 231, 246, .7); font-size: 16px; }

/* ---------- 7 Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 72px;
  align-items: start;
}
.contact-copy h2 { margin-bottom: 22px; }
.contact-copy { position: sticky; top: calc(var(--head-h) + 40px); }

.contact-form { display: flex; flex-direction: column; gap: 20px; transition: opacity .3s; }
.contact-form.fading { opacity: 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 14px;
  font-weight: 640;
  color: var(--ink);
}
.field .opt { font-weight: 450; color: #8a7b9e; font-size: 13px; }

.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  font: inherit;
  font-size: 17px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--hair-light);
  border-radius: 14px;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cta-a);
  box-shadow: 0 0 0 4px rgba(142, 46, 249, .14);
}

.hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  color: #a1123c;
  font-size: 15px;
  font-weight: 600;
}
.form-error a { text-decoration: underline; }

.form-micro { font-size: 13px; color: #8a7b9e; text-align: center; }

.form-success {
  padding: 44px 40px;
  background: #fff;
  border: 1px solid var(--hair-light);
  border-radius: var(--r-card);
  opacity: 0;
  transition: opacity .3s;
}
.form-success.in { opacity: 1; }
.form-success h3 { font-size: 28px; margin-bottom: 10px; }

/* ---------- 8 Footer ---------- */
.site-foot {
  position: relative;
  background: var(--black);
  padding: 72px 0 56px;
  color: rgba(255, 255, 255, .6);
  overflow: hidden;
}
.foot-mark {
  position: absolute;
  left: 50%;
  bottom: -3%;
  width: 110%;
  max-width: none;
  transform: translateX(-50%);
  pointer-events: none;
}
.foot-mark text {
  font-family: 'Figtree', sans-serif;
  font-size: 150px;
  font-weight: 800;
  fill: none;
  stroke: #d1bada;
  stroke-opacity: .06;
  stroke-width: 1.5;
}
.foot-in {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}
.foot-brand img { height: 26px; width: auto; }
.foot-brand p { margin-top: 14px; font-size: 15px; max-width: 300px; line-height: 1.6; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 28px; }
.foot-nav a { font-size: 15px; font-weight: 600; color: rgba(255, 255, 255, .72); transition: color .2s; }
.foot-nav a:hover { color: #fff; }
.foot-legal {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 28px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--hair-dark);
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
}

/* ---------- Motion 4: entrance reveals ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Breakpoints ---------- */
@media (min-width: 1025px) {
  .price-list li { white-space: nowrap; }
}
@media (min-width: 1201px) {
  .tools-rail { padding-left: 28px; }
}

@media (max-width: 1024px) {
  h1 { font-size: 76px; }
  h2 { font-size: 54px; }
  h3 { font-size: 36px; }
  .lede { font-size: 19px; }
  body { font-size: 17px; }
  .tools-split { grid-template-columns: minmax(0, 42%) minmax(0, 1fr); gap: 40px; }
}

@media (max-width: 900px) {
  .tools-split { display: block; padding-inline: 32px; }
  .tools-rail { max-width: none; }
  .tools-panel { display: none; }
  .step { min-height: 0; display: flex; flex-direction: column-reverse; padding-block: 48px; }
  .step .step-media { display: block; margin-bottom: 32px; }
  .step .frame-light, .step .frame-phone { width: 100%; }
  .step .frame-phone { max-width: 400px; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-copy { position: static; }
  .price-card { grid-template-columns: 1fr; gap: 40px; padding: 44px 36px; }
  .card-row { grid-template-columns: 1fr; gap: 24px; }
  .hero-copy { min-width: 0; width: 100%; max-width: 620px; }
  .hero-art { width: 78%; }
}

@media (max-width: 768px) {
  :root { --pad-dark: 96px; --pad-light: 96px; }
  h1 { font-size: 44px; }
  h2 { font-size: 36px; }
  h3 { font-size: 28px; }
  .lede { font-size: 18px; }
  body { font-size: 16px; }
  .head-nav {
    display: none;
    position: absolute;
    top: var(--head-h);
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 6, 16, .96);
    border-bottom: 1px solid var(--hair-dark);
    padding: 8px 0 12px;
  }
  .head-nav.open { display: flex; }
  .head-nav a { padding: 14px 32px; }
  .burger { display: flex; }
  .head-cta { margin-left: auto; }
  .p-amount { font-size: 96px; }
}

@media (max-width: 620px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .price-list { grid-template-columns: 1fr; }
  .hero-wave { right: -55%; height: 125%; }
}

@media (max-width: 420px) {
  .wrap { padding-inline: 20px; }
  .showcase-pin { padding-inline: 20px; }
  .tools-split { padding-inline: 20px; }
  .stat-row { flex-direction: column; gap: 10px; }
  .stat-dot { display: none; }
}

/* ---------- Reduced motion: collapse to static end-states ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .hero-copy > * { animation: none !important; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .panel-layer { transition: none; }
  .contact-form, .form-success { transition: none; }
  .btn { transition: none; }
  .btn:hover { transform: none; }
  .price-card.price-armed { opacity: 1; }
  .price-card.enter, .price-card.sheen::after { animation: none !important; }
}
