/* ==========================================================================
   SMD Traders — shared stylesheet
   A division of DevSpark Ltd. Mobile-first, no build step, no dependencies.
   ========================================================================== */

/* --- Design tokens ------------------------------------------------------- */
:root {
  --navy: #1F5FA9;
  --navy-dark: #17497f;
  --navy-tint: #eaf1fa;
  --slate: #243447;
  --slate-soft: #33475f;
  --accent: #E8833A;
  --accent-dark: #cf6d27;
  --accent-tint: #fdf1e7;

  --ink: #1b2735;
  --body: #4d5f74;
  --muted: #7386a0;
  --line: #e3e9f1;
  --surface: #ffffff;
  --canvas: #f6f8fb;

  --ok: #1f8a5b;
  --ok-tint: #e8f6ef;
  --err: #c0392f;
  --err-tint: #fdeceb;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-pill: 999px;

  --sh-sm: 0 1px 2px rgba(36, 52, 71, .06), 0 2px 8px rgba(36, 52, 71, .05);
  --sh-md: 0 2px 6px rgba(36, 52, 71, .06), 0 10px 26px rgba(36, 52, 71, .08);
  --sh-lg: 0 8px 20px rgba(36, 52, 71, .10), 0 24px 48px rgba(36, 52, 71, .10);

  --wrap: 1160px;
  --gap: 1.5rem;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  margin: 0 0 .6em;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5.2vw, 3.1rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); }
h3 { font-size: 1.125rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--navy-dark); }

img, svg { max-width: 100%; }
ul, ol { margin: 0 0 1rem; padding-left: 1.15rem; }
li { margin-bottom: .4rem; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

/* --- Layout helpers ------------------------------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 1.15rem;
}

.section { padding: 3.25rem 0; }
.section--tight { padding: 2.25rem 0; }
.section--alt { background: var(--surface); }

.section-head { max-width: 62ch; margin-bottom: 2rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--body); font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  margin-bottom: .7rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: .7rem 1.1rem;
  background: var(--slate);
  color: #fff;
  border-radius: 0 0 var(--r-sm) 0;
  text-decoration: none;
}
.skip-link:focus { left: 0; color: #fff; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--solid { fill: currentColor; stroke: none; }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font: inherit;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease,
              color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--sh-sm); }
.btn--primary:hover { background: var(--accent-dark); color: #fff; box-shadow: var(--sh-md); }

.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-dark); color: #fff; }

.btn--ghost { border-color: rgba(255, 255, 255, .45); color: #fff; background: transparent; }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; border-color: #fff; }

.btn--outline { border-color: var(--line); background: var(--surface); color: var(--ink); }
.btn--outline:hover { border-color: var(--navy); color: var(--navy); }

.btn--sm { padding: .55rem 1rem; font-size: .9rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

/* --- Badges & chips ------------------------------------------------------ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .85rem .4rem .6rem;
  border-radius: var(--r-pill);
  background: var(--accent-tint);
  color: #8a4a12;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.35;
}
.badge .icon { width: 1.05rem; height: 1.05rem; stroke-width: 1.9; }
.badge--onDark { background: rgba(255, 255, 255, .14); color: #fff; }
.badge--ok { background: var(--ok-tint); color: #146c47; }

.chip {
  display: inline-block;
  padding: .22rem .6rem;
  border-radius: var(--r-pill);
  background: var(--navy-tint);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.chip--accent { background: var(--accent-tint); color: #a85a17; }

/* --- Announcement strip -------------------------------------------------- */
.strip {
  background: var(--slate);
  color: #cdd8e6;
  font-size: .82rem;
}
.strip .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem 1.4rem;
  padding-block: .55rem;
  text-align: center;
}
.strip__item { display: inline-flex; align-items: center; gap: .45rem; }
.strip__item .icon { width: 1rem; height: 1rem; color: var(--accent); }
.strip strong { color: #fff; font-weight: 600; }
.flag { width: 1.35rem; height: .68rem; border-radius: 2px; flex: none; display: block; }

/* --- Header -------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -.02em;
}
.logo svg { width: 34px; height: 34px; flex: none; }
.logo__name { font-size: 1.12rem; line-height: 1.1; }
.logo__sub {
  display: block;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: .5rem;
  padding: .5rem .8rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
}
.js .nav-toggle { display: inline-flex; }

.site-nav { display: flex; align-items: center; gap: .35rem; }
.site-nav a {
  padding: .5rem .8rem;
  border-radius: var(--r-sm);
  color: var(--slate-soft);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
}
.site-nav a:hover { background: var(--navy-tint); color: var(--navy); }
.site-nav a[aria-current="page"] { color: var(--navy); background: var(--navy-tint); }
.site-nav .btn { margin-left: .4rem; }
.site-nav .btn:hover { background: var(--accent-dark); color: #fff; }

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--slate) 0%, #1d3350 45%, var(--navy) 100%);
  color: #e9f0f8;
  isolation: isolate;
}
.hero__circuit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: .5;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  z-index: -1;
  width: 44rem;
  height: 44rem;
  top: -18rem;
  right: -14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 131, 58, .30) 0%, rgba(232, 131, 58, 0) 68%);
  pointer-events: none;
}
.hero .wrap { position: relative; padding-block: 3.5rem 3.75rem; }
.hero__inner { max-width: 46rem; }
.hero h1 { color: #fff; margin-bottom: .5rem; }
.hero__lede {
  font-size: clamp(1.05rem, 2.1vw, 1.22rem);
  color: #c6d5e6;
  max-width: 40rem;
  margin-bottom: 1.6rem;
}
.hero__kicker {
  display: block;
  margin-bottom: .35rem;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.75rem;
}
.hero__points {
  display: grid;
  gap: .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: .95rem;
  color: #bacbdf;
}
.hero__points li { display: flex; align-items: flex-start; gap: .55rem; margin: 0; }
.hero__points .icon { width: 1.15rem; height: 1.15rem; margin-top: .22rem; color: var(--accent); }

/* Compact page banner for interior pages */
.page-head {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--slate) 0%, #21395a 100%);
  color: #e9f0f8;
  isolation: isolate;
}
.page-head .hero__circuit { opacity: .38; }
.page-head .wrap { position: relative; padding-block: 2.75rem; }
.page-head h1 { color: #fff; margin-bottom: .35rem; }
.page-head p { color: #c1d1e2; max-width: 54ch; margin: 0; }

/* --- Breadcrumb ---------------------------------------------------------- */
.crumbs {
  font-size: .85rem;
  color: rgba(255, 255, 255, .72);
  margin-bottom: .9rem;
}
.crumbs a { color: rgba(255, 255, 255, .9); }
.crumbs span { padding-inline: .4rem; opacity: .55; }

/* --- Generic grids ------------------------------------------------------- */
.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

/* --- Cards --------------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  padding: 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--body); font-size: .95rem; }

.card--link { display: block; text-decoration: none; color: inherit; }
.card--link:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: #cfdcec;
  color: inherit;
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 1rem;
  border-radius: var(--r-md);
  background: var(--navy-tint);
  color: var(--navy);
}
.card__icon .icon { width: 1.7rem; height: 1.7rem; }
.card__icon--accent { background: var(--accent-tint); color: var(--accent-dark); }

.card__more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .9rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
}
.card__more .icon { width: 1rem; height: 1rem; transition: transform .18s ease; }
.card--link:hover .card__more .icon { transform: translateX(3px); }

.card__list {
  margin: .8rem 0 0;
  padding: 0;
  list-style: none;
  font-size: .88rem;
  color: var(--muted);
}
.card__list li {
  display: flex;
  gap: .45rem;
  align-items: flex-start;
  margin-bottom: .3rem;
}
.card__list .icon {
  width: .95rem; height: .95rem;
  margin-top: .3rem;
  color: var(--ok);
  stroke-width: 2.4;
}

/* --- Product cards ------------------------------------------------------- */
.product {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }

.product__media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 30% 25%, #ffffff 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(140deg, #eef3fa 0%, #dfe8f4 100%);
  color: var(--navy);
  border-bottom: 1px solid var(--line);
}
.product__media .icon {
  width: 42%;
  height: 42%;
  stroke-width: 1.1;
  opacity: .78;
}
.product__flag {
  position: absolute;
  top: .7rem;
  left: .7rem;
}
.product__body { display: flex; flex-direction: column; flex: 1; padding: 1.15rem 1.25rem 1.35rem; }
.product__cat {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .35rem;
}
.product__name { font-size: 1.02rem; margin-bottom: .3rem; }
.product__spec { font-size: .88rem; color: var(--muted); margin-bottom: .9rem; }
.product__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-top: auto;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
}
.product__price { font-size: .95rem; color: var(--ink); font-weight: 700; }
.product__price span { display: block; font-size: .7rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

/* --- Feature / trust rows ------------------------------------------------ */
.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  flex: none;
  border-radius: var(--r-md);
  background: var(--accent-tint);
  color: var(--accent-dark);
}
.feature__icon .icon { width: 1.45rem; height: 1.45rem; }
.feature h3 { font-size: 1.02rem; margin-bottom: .25rem; }
.feature p { font-size: .93rem; margin: 0; }

/* --- Split panel (about / credibility) ----------------------------------- */
.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.panel {
  background: linear-gradient(150deg, var(--slate) 0%, #24405f 100%);
  color: #dce6f2;
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--sh-md);
}
.panel h3 { color: #fff; }
.panel p { color: #c3d2e2; font-size: .95rem; }
.panel dl { margin: 0; display: grid; gap: .9rem; }
.panel dt {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}
.panel dd { margin: .1rem 0 0; color: #dce6f2; font-size: .95rem; }

.stat-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.5rem;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1rem 1.1rem;
  box-shadow: var(--sh-sm);
}
.stat__n {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.stat__l { font-size: .82rem; color: var(--muted); }

/* --- Signup band --------------------------------------------------------- */
.signup {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--navy) 0%, #17497f 55%, var(--slate) 100%);
  color: #fff;
  isolation: isolate;
}
.signup .hero__circuit { opacity: .32; }
.signup .wrap { position: relative; padding-block: 3rem; }
.signup__inner { max-width: 42rem; margin-inline: auto; text-align: center; }
.signup h2 { color: #fff; }
.signup p { color: #cfdcec; }
.signup__note { font-size: .82rem; color: #a9bed6; margin-top: .9rem; }
.signup__note a { color: #dbe7f4; }

.signup-form {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-top: 1.4rem;
  text-align: left;
}
.signup-form .field { margin: 0; }
.signup-form input[type="email"] {
  background: rgba(255, 255, 255, .97);
  border-color: transparent;
}

/* --- Forms --------------------------------------------------------------- */
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  margin-bottom: .35rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
}
.field .hint { display: block; font-weight: 400; font-size: .8rem; color: var(--muted); }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: .78rem .9rem;
  border: 1px solid #cfd9e6;
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input::placeholder, textarea::placeholder { color: #9aabc0; }

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(31, 95, 169, .18);
}
textarea { min-height: 9rem; resize: vertical; }

/* Honeypot — hidden from humans, visible to naive bots. */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.consent {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .86rem;
  color: var(--body);
}
.consent input { margin-top: .28rem; flex: none; width: 1rem; height: 1rem; accent-color: var(--navy); }

.form-note { font-size: .82rem; color: var(--muted); margin-top: .9rem; }

.alert {
  padding: .9rem 1.05rem;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  font-size: .93rem;
  margin-bottom: 1.25rem;
}
.alert--ok { background: var(--ok-tint); border-color: #b9e2ce; color: #135e3f; }
.alert--err { background: var(--err-tint); border-color: #f3c6c2; color: #8f2b23; }
.alert[hidden] { display: none; }

/* --- Contact detail list ------------------------------------------------- */
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .icon { width: 1.25rem; height: 1.25rem; margin-top: .18rem; color: var(--navy); }
.contact-list strong { display: block; color: var(--ink); font-size: .92rem; }
.contact-list span, .contact-list a { font-size: .93rem; }

/* --- FAQ / prose --------------------------------------------------------- */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.25rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul { padding-left: 1.15rem; }
.prose li { color: var(--body); }

/* --- 404 ----------------------------------------------------------------- */
.notfound { text-align: center; padding-block: 4rem; }
.notfound__code {
  font-size: clamp(3.5rem, 14vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
  color: var(--navy);
  margin-bottom: .35rem;
}
.notfound .btn-row { justify-content: center; }

.btn-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }

.link-grid {
  display: grid;
  gap: .6rem;
  max-width: 34rem;
  margin: 2.25rem auto 0;
  text-align: left;
}
.link-grid a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
  box-shadow: var(--sh-sm);
  transition: border-color .18s ease, transform .18s ease;
}
.link-grid a:hover { border-color: var(--navy); transform: translateX(2px); }
.link-grid .icon { color: var(--navy); width: 1.2rem; height: 1.2rem; }

/* --- Footer -------------------------------------------------------------- */
.site-footer {
  background: var(--slate);
  color: #b7c6d8;
  font-size: .92rem;
  padding-top: 2.75rem;
}
.site-footer h4 {
  color: #fff;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.site-footer a { color: #cdd9e7; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5rem; }

.footer-grid { display: grid; gap: 2rem; padding-bottom: 2rem; }
.footer-brand p { color: #9fb1c6; font-size: .9rem; max-width: 34ch; }
.footer-brand .logo { color: #fff; margin-bottom: .85rem; }
.footer-brand .logo__sub { color: #8fa4bd; }

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-block: 1.25rem 1.75rem;
  font-size: .84rem;
  color: #93a7bd;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-legal p { margin: 0; }
.footer-legal strong { color: #dce6f2; font-weight: 600; }
.footer-legal a { text-decoration: underline; }

.parent-note {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  padding: .9rem 1rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .05);
  font-size: .88rem;
  color: #c3d2e2;
}
.parent-note .icon { width: 1.15rem; height: 1.15rem; color: var(--accent); margin-top: .18rem; flex: none; }
.parent-note strong { color: #fff; }

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 719px) {
  .js .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    padding: .8rem 1.15rem 1.15rem;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-md);
  }
  .js .site-nav.is-open { display: flex; }
  .site-nav .btn { margin-left: 0; margin-top: .4rem; }
  .site-header .wrap { position: relative; flex-wrap: wrap; }
}

@media (min-width: 560px) {
  .signup-form {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .signup-form .field { flex: 1 1 16rem; }
  .signup-form .btn { flex: none; }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 720px) {
  .section { padding: 4.25rem 0; }
  .hero .wrap { padding-block: 5rem 5.25rem; }
  .page-head .wrap { padding-block: 3.5rem; }
  .hero__points { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-legal { flex-direction: row; align-items: center; justify-content: space-between; }
  .card { padding: 1.65rem; }
}

@media (min-width: 960px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1.15fr .85fr; gap: 3rem; }
  .split--wide { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr; }
  .panel { padding: 2rem; }
}

/* --- Motion & print ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media print {
  .site-header, .strip, .signup, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
  .hero, .page-head { background: #fff !important; color: #000 !important; }
  .hero h1, .page-head h1 { color: #000; }
}
