/* Scan My Site - brand stylesheet (locked palette). Mobile-first, responsive. */

/* ---- Local FontAwesome ------------------------------------------------ */
@import url("/assets/fontawesome/css/all.min.css");

/* ---- Design tokens (locked brand colours) ----------------------------- */
:root {
  --amber:    #FF9A00;
  --amber-600:#e08600;
  --navy:     #0A1322;
  --navy-700: #0d1a2e;
  --navy-600: #12223b;
  --charcoal: #1A1A26;
  --slate:    #586272;
  --slate-300:#9aa3b2;
  --light:    #F2F4F7;
  --white:    #ffffff;

  --ring: rgba(255, 154, 0, .35);
  --line: rgba(255, 255, 255, .08);
  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1140px;
  --shadow: 0 18px 50px -20px rgba(0, 0, 0, .55);

  --ff-sans: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans);
  background: var(--navy);
  color: var(--light);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--amber); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--amber-600); }
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; color: var(--white); }
:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; border-radius: 6px; }

/* ---- Layout helpers --------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: 84px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; font-weight: 700;
  color: var(--amber); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--amber); display: inline-block; }
.lead { color: var(--slate-300); font-size: 1.12rem; max-width: 60ch; }
.text-center { text-align: center; }
.center-x { margin-inline: auto; }

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 1rem; line-height: 1; cursor: pointer;
  padding: 15px 26px; border-radius: var(--radius-sm); border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--amber); color: var(--navy); box-shadow: 0 10px 26px -10px var(--amber); }
.btn-primary:hover { background: var(--amber-600); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--light); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn-block { width: 100%; }

/* ---- Radar background motif ------------------------------------------- */
.radar-bg { position: relative; isolation: isolate; }
.radar-bg::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 600px at 78% -10%, rgba(255,154,0,.16), transparent 60%),
    radial-gradient(1100px 700px at 12% 110%, rgba(88,98,114,.18), transparent 55%),
    var(--navy);
}
.radar-rings {
  position: absolute; z-index: -1; pointer-events: none;
  width: 620px; height: 620px; right: 40px; top: -20px; opacity: .5;
  background:
    radial-gradient(circle, transparent 0 28%, var(--line) 28% 28.4%, transparent 28.4%),
    radial-gradient(circle, transparent 0 42%, var(--line) 42% 42.4%, transparent 42.4%),
    radial-gradient(circle, transparent 0 58%, var(--line) 58% 58.4%, transparent 58.4%),
    radial-gradient(circle, transparent 0 74%, var(--line) 74% 74.4%, transparent 74.4%);
}
.radar-rings::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255,154,0,.45), transparent 18%);
  -webkit-mask: radial-gradient(circle, transparent 26%, #000 26.5%);
          mask: radial-gradient(circle, transparent 26%, #000 26.5%);
  animation: sweep 6s linear infinite;
}
@keyframes sweep { to { transform: rotate(360deg); } }
/* Green "target acquired" blip in the lower-left quadrant. The sweep and blip
   are both 6s/linear and start together, so the flash is timed to the moment the
   orange sweep line crosses ~225deg (lower-left), at ~63% of the cycle. */
.radar-rings::before {
  content: ""; position: absolute; z-index: 1;
  top: 71%; left: 29%;
  width: 12px; height: 12px; border-radius: 50%;
  background: #28e07a;
  box-shadow: 0 0 0 0 rgba(40, 224, 122, .7);
  animation: blip 6s linear infinite;
}
@keyframes blip {
  0%, 60%   { opacity: 0; box-shadow: 0 0 0 0 rgba(40, 224, 122, .7); }
  63%       { opacity: 1; box-shadow: 0 0 0 0 rgba(40, 224, 122, .7); }
  85%       { opacity: 1; box-shadow: 0 0 0 16px rgba(40, 224, 122, 0); }
  92%, 100% { opacity: 0; box-shadow: 0 0 0 0 rgba(40, 224, 122, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .radar-rings::after { animation: none; }
  .radar-rings::before { animation: none; }
  .section--scan::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---- Site header ------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  /* Solid match to the logo's baked-in background so it has no visible box. */
  background: #000C21;
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo img { height: 34px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { color: var(--light); font-weight: 600; font-size: .95rem; }
.nav__links a:not(.btn):hover { color: var(--amber); }
.nav__cta { margin-left: 8px; }
.nav__toggle { display: none; background: none; border: 0; color: var(--light); font-size: 1.5rem; cursor: pointer; }

/* Desktop: larger logo (50% up from 68px), with a taller header to fit it. */
@media (min-width: 1024px) {
  .nav { height: 110px; }
  /* Bigger wordmark, but clip 10px of the logo's dead padding off top and
     bottom (same #000C21 as the header) so the navbar stays slim. */
  .nav__logo { height: 100px; display: flex; align-items: center; overflow: hidden; }
  .nav__logo img { height: 120px; }
}

/* ---- Hero ------------------------------------------------------------- */
.hero { padding: 96px 0 72px; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
.hero h1 .accent { color: var(--amber); }
.hero .lead { margin-top: 20px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
/* Trust tags - row of pill chips, anchored to the base of the hero. */
.hero__inner { display: flex; flex-direction: column; }
.hero__content {
  flex: 1 1 auto;
  background: rgba(13, 26, 46, .45);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  padding: 30px 30px;
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  box-shadow: var(--shadow);
}
.hero__trust {
  list-style: none; margin: 38px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.hero__trust li {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255, 255, 255, .04); backdrop-filter: blur(4px);
  color: var(--light); font-size: .9rem; font-weight: 600;
}
.hero__trust i { color: var(--amber); }

/* Hero photo background (--hero-bg, hosted locally). Shown on all viewports,
   including mobile; desktop adds the fixed-attachment parallax below.
   Overlay is navy at 60% so the photo reads softly behind the copy. */
.hero--parallax {
  background-image:
    linear-gradient(rgba(10, 19, 34, .6), rgba(10, 19, 34, .6)),
    var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* The photo carries the hero, so drop the radar overlay at every size. */
.hero--parallax .radar-rings { display: none; }
.hero--parallax.radar-bg::before { display: none; }

@media (min-width: 1024px) {
  .hero--parallax {
    min-height: calc(100vh - 110px); /* fill the viewport beneath the sticky header */
    display: flex;
    padding: 0;
    background-attachment: fixed; /* the parallax effect */
  }
  .hero--parallax .hero__inner {
    min-height: inherit;
    width: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
    padding-top: 40px;
    padding-bottom: 0;
  }
  /* Centre the headline panel; push the trust tags to the base of the hero. */
  .hero--parallax .hero__content {
    align-self: center;
    justify-self: start;
    max-width: 760px;
    padding: 44px 46px;
  }
  .hero--parallax .hero__trust {
    margin-top: 0; padding: 24px 0 34px; border-top: 1px solid var(--line);
  }
}
/* Honour reduced-motion: pin the background instead of the parallax scroll. */
@media (prefers-reduced-motion: reduce) {
  .hero--parallax { background-attachment: scroll; }
}

/* ---- Cards / grid ----------------------------------------------------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.012));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--ring); }
.card__icon {
  width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,154,0,.12); color: var(--amber); font-size: 1.2rem; margin-bottom: 16px;
}
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { color: var(--slate-300); font-size: .97rem; }

/* ---- Section heads ---------------------------------------------------- */
.section__head { max-width: 64ch; margin-bottom: 44px; }
.section__head h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.section__head p { color: var(--slate-300); margin-top: 14px; font-size: 1.08rem; }

/* ---- Steps (How it works) - panels joined by arrows ------------------- */
.steps { display: flex; align-items: stretch; gap: 16px; }
.step-panel {
  flex: 1 1 0;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: rgba(13, 26, 46, .6);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 26px;
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  backdrop-filter: blur(8px) saturate(120%);
}
.step__num {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; color: var(--navy);
  background: var(--amber); font-size: 1.15rem; margin-bottom: 18px;
}
.step-panel h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step-panel p { color: var(--slate-300); font-size: .96rem; }
.step-arrow {
  flex: 0 0 auto; align-self: center;
  color: var(--amber); font-size: 1.6rem;
}
/* Free / paid phase labels above each triad. */
.steps-label {
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
  text-align: center; color: var(--light); font-weight: 700; font-size: 1.05rem;
  margin: 0 0 18px;
}
.steps + .steps-label { margin-top: 40px; }
.steps-tag {
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px; border: 1px solid var(--line);
}
.steps-tag--free { color: #28e07a; border-color: rgba(40, 224, 122, .5); background: rgba(40, 224, 122, .12); }
.steps-tag--paid { color: var(--amber); border-color: rgba(255, 154, 0, .5); background: rgba(255, 154, 0, .12); }

/* ---- Why us - scanner-beam animation, full viewport on desktop -------- */
.section--scan { position: relative; overflow: hidden; isolation: isolate; }
.section--scan > .container { position: relative; z-index: 1; }
/* Ambient cyber-grid, slowly drifting and faded toward the edges. */
.section--scan::before {
  content: ""; position: absolute; inset: -40px; z-index: -2; opacity: .22;
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 46px,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 46px 100%;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 78%);
          mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 78%);
  animation: grid-pan 16s linear infinite;
}
@keyframes grid-pan { to { background-position: 46px 46px, 46px 46px; } }
/* Missile Command backdrop canvas (drawn behind the cards). */
.mc-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: -1; pointer-events: none;
}
@media (min-width: 1024px) {
  .section--scan, .section--page { min-height: 100vh; display: flex; align-items: center; }
  /* Keep the How-it-works heading on a single line on desktop. */
  #how .section__head h2 { white-space: nowrap; }
  /* Align the free/paid phase labels with the left-most panel. */
  #how .steps-label, #what-next .steps-label { justify-content: flex-start; }
}

/* ---- Full-viewport photo section (How it works, office.webp) ---------- */
.section--full {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(rgba(10, 19, 34, .82), rgba(10, 19, 34, .82)),
    var(--how-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 1024px) {
  .section--full { background-attachment: fixed; /* parallax */ }
}
@media (prefers-reduced-motion: reduce) {
  .section--full { background-attachment: scroll; }
}

/* ---- CTA band --------------------------------------------------------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-700), var(--charcoal));
  border: 1px solid var(--line); border-radius: 20px; padding: 48px;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.cta-band p { color: var(--slate-300); margin: 14px auto 26px; max-width: 52ch; }

/* ---- Contact - viewport-fit, photo bg folding into the footer --------- */
.section--contact {
  position: relative;
  background-image:
    linear-gradient(rgba(10, 19, 34, .80) 0%, rgba(13, 26, 46, .95) 86%, #000C21 100%),
    var(--contact-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section--contact .cta-band {
  background: rgba(13, 26, 46, .64);
  border-color: rgba(255, 255, 255, .12);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  padding: 32px;
}
.section--contact .form { gap: 12px; }
@media (min-width: 1024px) {
  .section--contact {
    min-height: 100vh; display: flex; align-items: center;
    padding-top: 0; padding-bottom: 0;
    background-attachment: fixed; /* parallax */
  }
  /* Keep the whole card within one viewport: tighten the copy and field heights. */
  .section--contact .cta-band { padding: 26px 32px; }
  .section--contact .cta-band h2 { font-size: 1.7rem; }
  .section--contact .cta-band > p { margin: 10px auto 18px; font-size: .98rem; }
  .section--contact .field textarea { min-height: 72px; }
  .section--contact .form__note { margin-top: 2px; }
}
@media (prefers-reduced-motion: reduce) {
  .section--contact { background-attachment: scroll; }
}

/* ---- Forms ------------------------------------------------------------ */
.form { display: grid; gap: 16px; }
.form__row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.field { display: grid; gap: 7px; text-align: left; }
.field label { font-size: .88rem; font-weight: 600; color: var(--light); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 14px; font: inherit; color: var(--light);
  background: rgba(0,0,0,.25); border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--slate); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px var(--ring);
}
.field textarea { min-height: 130px; resize: vertical; }
/* Honeypot - hidden from humans, catches bots (anti form hijacking). */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form__note { font-size: .82rem; color: var(--slate); }
.form__note a { color: var(--slate-300); text-decoration: underline; }

/* ---- Alerts ----------------------------------------------------------- */
.alert { padding: 13px 16px; border-radius: var(--radius-sm); font-size: .95rem; border: 1px solid transparent; }
.alert-ok { background: rgba(46,160,90,.12); border-color: rgba(46,160,90,.4); color: #c9f5d8; }
.alert-err { background: rgba(214,69,69,.12); border-color: rgba(214,69,69,.4); color: #ffd4d4; }

/* ---- Footer ----------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); background: #000C21; padding: 54px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 34px; }
.footer__grid img { height: 84px; width: auto; margin-bottom: 16px; }
.footer__grid p { color: var(--slate-300); font-size: .94rem; max-width: 38ch; }
.footer__col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--slate-300); margin-bottom: 14px; }
.footer__col a { display: block; color: var(--light); font-size: .95rem; margin-bottom: 9px; }
.footer__col a:hover { color: var(--amber); }
@media (min-width: 1024px) {
  .footer__grid img { height: 128px; }
}
.footer__bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  color: var(--slate); font-size: .86rem;
}

/* ===== Coming-soon page ================================================ */
.coming {
  min-height: 100vh; min-height: 100dvh; display: grid;
  grid-template-rows: auto 1fr auto; padding: 0;
}
.coming__inner { display: grid; place-items: center; text-align: center; padding: 40px 22px; }
/* Centre the radar in the viewport and let the sweep pass OVER the logo/content.
   pointer-events stay off (base rule) so the form below remains clickable. */
.coming .radar-rings {
  position: fixed; top: 50%; left: 50%; right: auto;
  width: min(86vmin, 760px); height: min(86vmin, 760px);
  transform: translate(-50%, -50%); opacity: .5; z-index: 3;
}
.coming__logo { height: clamp(80px, 15vw, 168px); width: auto; margin: 30px auto 0; }
.coming h1 { font-size: clamp(2rem, 6vw, 3.6rem); margin-top: 18px; }
.coming h1 .accent { color: var(--amber); }
.coming .lead { margin: 18px auto 0; }
.badge-soon {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 999px;
  background: rgba(255,154,0,.12); border: 1px solid var(--ring); color: var(--amber);
  font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
}
.badge-soon .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 0 var(--amber); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(255,154,0,0); } 100% { box-shadow: 0 0 0 0 rgba(255,154,0,0); } }

/* Countdown */
.countdown { display: flex; gap: 14px; justify-content: center; margin: 40px auto 8px; flex-wrap: wrap; }
.countdown__unit {
  min-width: 92px; padding: 20px 14px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid var(--line);
}
.countdown__num { font-size: clamp(1.9rem, 5vw, 2.8rem); font-weight: 800; color: var(--white); font-variant-numeric: tabular-nums; line-height: 1; }
.countdown__label { display: block; margin-top: 9px; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--slate-300); }
.countdown--done { font-size: 1.2rem; color: var(--amber); font-weight: 700; }

.notify { max-width: 520px; margin: 36px auto 0; }
.notify__inline { display: flex; gap: 10px; }
.notify__inline .field { flex: 1; }
.coming__footer { padding: 26px 22px; color: var(--slate); font-size: .85rem; }
.coming__footer a { color: var(--slate-300); }

/* ---- Favicon warning modal (one-time, dismissable) -------------------- */
.fav-modal {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: end center;
  background: rgba(5,9,16,.55); padding: 22px;
}
.fav-modal__box {
  background: var(--charcoal); border: 1px solid var(--ring); border-radius: var(--radius);
  padding: 18px 20px; max-width: 460px; width: 100%; box-shadow: var(--shadow);
  display: flex; gap: 14px; align-items: flex-start;
}
.fav-modal__box i { color: var(--amber); font-size: 1.3rem; margin-top: 2px; }
.fav-modal__box h4 { font-size: 1rem; margin-bottom: 4px; }
.fav-modal__box p { color: var(--slate-300); font-size: .9rem; }
.fav-modal__close {
  margin-left: auto; background: none; border: 0; color: var(--slate-300);
  font-size: 1.1rem; cursor: pointer; padding: 4px;
}
.fav-modal__close:hover { color: var(--white); }

/* ---- Back-to-top button ---------------------------------------------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--amber); color: var(--navy); border: 0;
  font-size: 1.05rem; cursor: pointer;
  box-shadow: var(--shadow);
  transition: background .2s ease, transform .2s ease;
}
.to-top:hover { background: var(--amber-600); transform: translateY(-2px); }
.to-top[hidden] { display: none; }

/* ===== Responsive ====================================================== */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .section { padding: 60px 0; }
  .nav__links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--navy-700); border-bottom: 1px solid var(--line);
    padding: 8px 22px 18px; transform: translateY(-130%); transition: transform .25s ease;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav__cta { margin: 12px 0 0; }
  .nav__toggle { display: block; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .form__row { grid-template-columns: 1fr; }
  .notify__inline { flex-direction: column; }
  .cta-band { padding: 34px 22px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
}
