/* =====================================================================
   Insurance Vault — one page site
   Palette + type mirror the Google Sites original:
   deep navy headings, brand blue actions, rounded geometric type.
   ===================================================================== */

:root {
  --navy:        #12369E;   /* headings, icon line art */
  --navy-deep:   #0C2570;
  --blue:        #0F3CAE;   /* buttons / solid fills */
  --blue-bright: #2C7FE0;   /* logo, accents */
  --blue-tint:   #E8EEFB;   /* input fills, soft panels */
  --blue-tint-2: #F4F7FE;   /* alternating section bg */

  --ink:         #1F2733;
  --ink-soft:    #4A5567;
  --line:        #DCE3F2;
  --white:       #FFFFFF;
  --danger:      #C0392B;
  --success:     #1E7A46;

  --head: "Comfortaa", "Quicksand", system-ui, sans-serif;
  --body: "Quicksand", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1140px;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(18, 54, 158, .07);
  --shadow-md: 0 10px 30px rgba(18, 54, 158, .10);
  --shadow-lg: 0 20px 50px rgba(12, 37, 112, .16);
  --header-h: 72px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--blue); }

/* Author `display` rules beat the UA sheet, so restate this explicitly. */
[hidden] { display: none !important; }

h1, h2, h3 {
  font-family: var(--head);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.01em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 18px;
  border-radius: 0 0 10px 10px; text-decoration: none; font-weight: 700;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ------------------------------------------------------------- layout */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap.narrow { max-width: 860px; }
.center { text-align: center; }

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-title { font-size: clamp(2rem, 1.3rem + 3vw, 3.25rem); margin-bottom: 1.2em; }

.intro   { background: var(--white); }
.about   { background: var(--blue-tint-2); }
.features{ background: var(--white); }
.how     { background: var(--blue-tint-2); }
.download{ background: var(--white); }
.contact { background: var(--blue-tint-2); }

.lead { font-size: clamp(1.02rem, .98rem + .3vw, 1.18rem); color: var(--ink-soft); }

/* ------------------------------------------------------------ buttons */
.btn {
  --btn-bg: var(--blue);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--body); font-weight: 700; font-size: 1rem;
  padding: .85rem 2rem;
  color: #fff; background: var(--btn-bg);
  border: 2px solid var(--btn-bg); border-radius: 8px;
  text-decoration: none; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.btn:hover  { background: var(--navy); border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-lg    { padding: 1.05rem 3rem; font-size: 1.06rem; min-width: min(420px, 100%); }
.btn-sm    { padding: .55rem 1.15rem; font-size: .9rem; }
.btn-block { width: 100%; }

/* ------------------------------------------------------------- header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
/* Solid once scrolled, and also while the mobile menu is open — otherwise the
   dark-on-dark close icon and links sit on the transparent hero. */
.site-header.is-stuck,
.site-header.is-menu-open {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* Official logo artwork. The mark and wordmark are separate files so each can
   be sized independently — the supplied horizontal lockup is so tall relative
   to its text that at header height the wordmark would render about 7px. */
.brand { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; }
.brand-mark { width: auto; height: 34px; flex: none; }

.brand-wordmark {
  height: 15px; width: auto; flex: none;
  aspect-ratio: 900 / 104;
  transition: filter .3s var(--ease);
}
/* The wordmark art is pure white, so inverting it against the solid header
   gives exactly the black original — one image instead of two stacked, and
   nothing to go wrong if only one of them were to load. */
.site-header.is-stuck .brand-wordmark,
.site-header.is-menu-open .brand-wordmark { filter: invert(1); }

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav ul { display: flex; gap: 1.6rem; }
.nav a {
  position: relative;
  font-weight: 600; font-size: .95rem; color: #fff;
  text-decoration: none; padding: .35rem 0;
  transition: color .2s var(--ease);
}
.site-header.is-stuck .nav a { color: var(--ink); }

.nav ul a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav ul a:hover::after,
.nav ul a.is-active::after { transform: scaleX(1); }
.nav ul a.is-active { color: var(--blue-bright); }
.site-header.is-stuck .nav ul a.is-active { color: var(--blue); }

/* `.nav a` (0,1,1) outranks `.btn-sm` (0,1,0), so the pill was inheriting
   `padding: .35rem 0` and rendering with no horizontal padding at all. Match
   that specificity to win the button's own padding and size back. */
.nav a.nav-cta {
  padding: .55rem 1.15rem;
  font-size: .9rem;
  color: #fff !important;
}
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span {
  display: block; height: 2.5px; width: 100%; border-radius: 2px;
  background: #fff; transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.site-header.is-stuck .nav-toggle span,
.site-header.is-menu-open .nav-toggle span { background: var(--navy); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* --------------------------------------------------------------- hero */
.hero {
  position: relative;
  min-height: min(100svh, 780px);
  display: grid; place-items: center;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  isolation: isolate;
  overflow: hidden;
}

/* Photo slot. The gradient below shows through until assets/hero.webp exists,
   so the hero never renders as a broken image. */
.hero-media {
  position: absolute; inset: 0; z-index: -2;
  background:
    url("assets/hero.webp") center 30% / cover no-repeat,
    linear-gradient(135deg, #14213D 0%, #1B3572 45%, #0E2A63 100%);
  transform: scale(1.04);
  animation: heroDrift 22s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.10) translate3d(0, -1.4%, 0); }
}

.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 20, 52, .72) 0%, rgba(8, 20, 52, .55) 45%, rgba(8, 20, 52, .80) 100%);
}

/* Base styles from the React Bits component. */
.side-rays-container {
  width: 100%;
  height: 100%;
  position: relative;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

/* Placement in the hero: above the photo and its overlay, beneath the copy.
   .hero sets `isolation: isolate`, so a negative z-index stays inside it. */
.hero-rays {
  position: absolute; inset: 0;
  z-index: -1;
  height: auto;
}

/* Sits after .hero-rays in the DOM at the same depth, so it paints over the
   brightest part of the fan and keeps the transparent nav readable. */
.hero-topscrim {
  position: absolute; inset: 0 0 auto 0;
  height: calc(var(--header-h) + 44px);
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 20, 52, .55) 0%, rgba(8, 20, 52, 0) 100%);
}

.hero-inner { text-align: center; color: #fff; }

.hero-lockup {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(.5rem, 2vw, 1.25rem);
  margin-bottom: clamp(1rem, 3vw, 2rem);
}
.hero-mark {
  width: auto; height: clamp(70px, 11vw, 130px);
  flex: none; order: 2;
}

/* Sized off the mark so the pairing holds at every width. */
.hero-wordmark {
  order: 1; width: auto;
  height: clamp(30px, 4.7vw, 56px);
  aspect-ratio: 900 / 104;
}

.hero-title {
  color: #fff; font-weight: 500;
  font-size: clamp(1.6rem, .9rem + 3.2vw, 3rem);
  margin-bottom: .4em; text-wrap: balance;
}
.hero-sub {
  font-size: clamp(1rem, .9rem + .6vw, 1.35rem);
  color: rgba(255, 255, 255, .92);
  margin-bottom: 2.2em; text-wrap: balance;
}

.hero-scroll {
  position: absolute; bottom: 1.75rem; left: 50%; translate: -50% 0;
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 2px solid rgba(255, 255, 255, .45); border-radius: 50%;
  animation: bob 2.2s ease-in-out infinite;
}
.hero-scroll svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
@keyframes bob { 0%, 100% { translate: -50% 0; } 50% { translate: -50% 8px; } }

/* --------------------------------------------------------- who are we */
.about-grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  align-items: center;
}

.about-media {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "team phone" "slogan phone";
}
.media-team   { grid-area: team; }
.media-phone  { grid-area: phone; }
.media-slogan { grid-area: slogan; }

.media-card {
  margin: 0; border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow-md); background: var(--blue-tint);
}
.media-card img { width: 100%; height: 100%; object-fit: cover; }
.media-team  { aspect-ratio: 3 / 2; }
.media-phone { aspect-ratio: 3 / 4; }

/* Shown only while assets/team.webp or assets/app-in-hand.webp are missing —
   a calm placeholder instead of a broken-image icon. See assets/README.md. */
.media-card.is-empty {
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(45deg, #E4EBFA 0 12px, #EAF0FC 12px 24px);
  box-shadow: inset 0 0 0 1px var(--line);
}
.media-card.is-empty::after {
  content: "";
  width: 34%; max-width: 64px; aspect-ratio: 4 / 3;
  border: 2.4px solid var(--blue-bright); border-radius: 5px;
  opacity: .55;
  background:
    radial-gradient(circle at 30% 34%, var(--blue-bright) 0 3.5px, transparent 3.6px),
    linear-gradient(to top right, transparent 48%, var(--blue-bright) 48% 62%, transparent 62%);
}

.media-slogan {
  background: var(--blue); color: #fff;
  display: grid; align-items: center;
  padding: 1.1rem 1.2rem; aspect-ratio: 3 / 2;
  font-family: var(--head); line-height: 1.25;
  font-size: clamp(.95rem, .6rem + 1vw, 1.3rem);
}
.media-slogan p { margin: 0; font-weight: 500; }
.media-slogan strong { font-weight: 700; }
.media-slogan .xl { font-size: 1.5em; color: var(--blue-bright); display: inline-block; }

.about-copy h2 { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem); }
.about-copy p  { color: var(--ink-soft); }

/* No photos supplied yet: rather than show three empty frames, drop the media
   column and centre the copy with the slogan tile beneath it as an accent.
   Adding the photos to assets/ restores the two-column layout automatically. */
.about.has-no-photos .about-grid { grid-template-columns: minmax(0, 760px); justify-content: center; }
.about.has-no-photos .about-copy { text-align: center; order: -1; }
.about.has-no-photos .media-team,
.about.has-no-photos .media-phone { display: none; }
.about.has-no-photos .about-media {
  /* Explicit width, not max-width: auto side margins switch off grid stretch,
     so a max-width alone leaves the box shrink-wrapped to its content. */
  display: block; width: min(340px, 100%); margin: 2.25rem auto 0;
}
.about.has-no-photos .media-slogan { aspect-ratio: 16 / 7; }

/* ----------------------------------------------------------- features */
/* Six across on desktop, matching the original single-row layout. Explicit
   step-downs rather than auto-fit, which lands on a lopsided 4 + 2. */
.feature-grid {
  display: grid; gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.feature {
  text-align: center; padding: 1.75rem 1rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature h3 { font-size: 1.05rem; margin-bottom: .45rem; text-wrap: balance; }
.feature p  { color: var(--ink-soft); font-size: .89rem; line-height: 1.5; }

/* Icons are <use> references, so they're coloured via `color` + currentColor —
   class selectors can't reach inside the shadow tree that <use> creates. */
.feature-icon, .step-icon {
  width: 62px; height: 62px; margin: 0 auto 1rem;
  display: block; color: var(--navy);
  transition: color .28s var(--ease);
}
.feature:hover .feature-icon { color: var(--blue-bright); }

/* -------------------------------------------------------- how it works */
.steps {
  display: grid; gap: clamp(1.5rem, 3vw, 2rem);
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  counter-reset: step;
}
/* Connector rail behind the dots */
.steps::before {
  content: ""; position: absolute; z-index: 0;
  left: 12.5%; right: 12.5%; top: 106px;
  height: 2px; background: var(--navy); opacity: .35;
}

.step { position: relative; z-index: 1; text-align: center; padding-top: 0; }
.step-icon { margin-bottom: 1.1rem; width: 92px; height: 92px; }
.step-dot {
  display: block; width: 18px; height: 18px; margin: 0 auto 1.4rem;
  border: 2.6px solid var(--navy); border-radius: 50%;
  background: var(--blue-tint-2);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.step:hover .step-dot { background: var(--navy); transform: scale(1.2); }

.step h3 { font-size: 1.22rem; margin-bottom: .35rem; }
.step p  { color: var(--ink-soft); font-size: .96rem; }

/* ------------------------------------------------------------ download */
.download-grid {
  display: grid; align-items: center; justify-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: repeat(3, 1fr);
}

.qr { margin: 0; text-align: center; }
.qr-art {
  width: clamp(140px, 16vw, 190px); height: auto;
  background: #fff; padding: 8px; border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.qr-art { color: var(--blue-bright); }
.qr figcaption { margin-top: .75rem; font-size: .88rem; color: var(--ink-soft); font-weight: 600; }

.store-badges { display: grid; gap: 1rem; width: 100%; max-width: 240px; }
.badge {
  display: flex; align-items: center; gap: .75rem;
  padding: .7rem 1.1rem;
  background: #101010; color: #fff; border-radius: 9px;
  text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.badge-glyph { width: 26px; height: 26px; flex: none; }
.badge span{ display: grid; line-height: 1.15; }
.badge small  { font-size: .64rem; text-transform: uppercase; letter-spacing: .04em; opacity: .85; }
.badge strong { font-size: 1.05rem; font-weight: 600; font-family: var(--head); }

.download-lockup { text-align: center; }
.download-mark {
  width: auto; height: clamp(90px, 11vw, 130px);
  margin: 0 auto .75rem;
}
.download-wordmark {
  height: clamp(18px, 2vw, 24px); width: auto;
  aspect-ratio: 900 / 104;
  margin: 0 auto;
}

/* ------------------------------------------------------------- contact */
.contact-grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  align-items: start;
}

.field { margin-bottom: .55rem; }
.field label {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}

.contact-form input,
.contact-form textarea {
  width: 100%; font: inherit; color: var(--navy);
  background: var(--blue-tint);
  border: 1px solid transparent; border-radius: 4px;
  padding: .7rem .85rem;
  transition: background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-form textarea { resize: vertical; min-height: 116px; }
.contact-form ::placeholder { color: var(--navy); opacity: .75; }

.contact-form input:hover,
.contact-form textarea:hover { background: #DFE8FA; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; background: #fff;
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(44, 127, 224, .18);
}
.contact-form [aria-invalid="true"] {
  border-color: var(--danger);
  background: #FDF1EF;
}

.error {
  margin: .2rem 0 0; min-height: 1.1em;
  font-size: .8rem; font-weight: 600; color: var(--danger);
}

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { margin: .75rem 0 0; font-weight: 600; font-size: .93rem; }
.form-status.ok   { color: var(--success); }
.form-status.bad  { color: var(--danger); }

.contact-details h3 { font-size: clamp(1.35rem, 1rem + 1.2vw, 1.85rem); margin-bottom: 1rem; }

.detail-list { display: grid; gap: .85rem; margin-bottom: 2rem; }
.detail-list li { display: flex; align-items: flex-start; gap: .7rem; color: var(--ink-soft); }
.detail-list strong { color: var(--ink); font-weight: 700; }
.detail-list a { color: var(--blue); text-decoration-color: rgba(15, 60, 174, .35); }
.detail-list a:hover { text-decoration-color: currentColor; }
.detail-icon { width: 21px; height: 21px; flex: none; margin-top: .22rem; color: var(--blue); }

/* -------------------------------------------------------------- footer */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, .82); padding: 2.5rem 0; }
.footer-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1.25rem;
}
/* Footer sits on navy, so its wordmark stays white — the invert rule above
   is scoped to .site-header and never reaches it. */
.footer-note { margin: 0; font-size: .88rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-nav a {
  color: rgba(255, 255, 255, .82); text-decoration: none;
  font-size: .9rem; font-weight: 600;
  padding: .5rem 0;   /* tap target — the text alone is only 24px tall */
}
.footer-nav a:hover { color: #fff; text-decoration: underline; }

/* Privacy / T&C document link. Flagged as a PDF so the download isn't a
   surprise, and given a little more presence than the section anchors. */
.footer-legal {
  display: inline-flex; align-items: center; gap: .4rem;
  color: #fff !important;
}
.footer-legal .detail-icon { width: 16px; height: 16px; margin: 0; color: inherit; }
.pdf-tag {
  font-size: .66rem; font-weight: 700; letter-spacing: .06em;
  padding: .12rem .34rem; border-radius: 3px;
  background: rgba(255, 255, 255, .18); color: #fff;
}

/* --------------------------------------------------- scroll reveal fx */
/* Scoped to .js so the page still renders fully when scripting is unavailable. */
.js .reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.feature.reveal, .step.reveal { transition-delay: var(--d, 0ms); }

/* ==================================================================== */
/*                            RESPONSIVE                                */
/* ==================================================================== */

@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature      { padding: 2rem 1.35rem; }
  .feature h3   { font-size: 1.15rem; }
  .feature p    { font-size: .95rem; }
  .feature-icon { width: 72px; height: 72px; }
}

@media (max-width: 1000px) {
  .about-grid   { grid-template-columns: 1fr; }
  .about-copy   { order: -1; text-align: center; }
  .about-media  { max-width: 560px; margin-inline: auto; }

  /* The rail can't span a wrapped grid, so drop it and the dots together —
     stray circles read as stray circles. */
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
  .steps::before { display: none; }
  .step-dot { display: none; }

  .download-grid { grid-template-columns: 1fr 1fr; }
  .download-lockup { grid-column: 1 / -1; }

  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 1rem 1.25rem 1.75rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }

  .nav ul { flex-direction: column; gap: 0; }
  .nav ul a {
    display: block; padding: .85rem .25rem;
    color: var(--ink); border-bottom: 1px solid var(--line);
  }
  .nav ul a::after { display: none; }
  .nav-cta { margin-top: 1.1rem; justify-content: center; }
}

@media (max-width: 760px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero-lockup { flex-direction: column; gap: .25rem; }
  .hero-mark   { order: 1; }
  .hero-wordmark { order: 2; }

  .steps         { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .btn-lg        { width: 100%; min-width: 0; }

  .about-media {
    grid-template-columns: 1fr;
    grid-template-areas: "phone" "team" "slogan";
  }
  .media-phone { aspect-ratio: 4 / 3; }

  .footer-inner { flex-direction: column; text-align: center; }
}

/* ------------------------------------------------------------ a11y prefs */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------- print */
@media print {
  .site-header, .hero-scroll, .nav-toggle { display: none; }
  .js .reveal { opacity: 1; transform: none; }
  .hero { min-height: auto; color: #000; }
  .hero-media, .hero-overlay { display: none; }
  .hero-inner, .hero-title, .hero-sub, .hero-wordmark { color: #000; }
}
