/* =========================================================
   Safety Bolt — SOFT MODERN / LUMINOUS
   ========================================================= */

:root {
  /* color */
  --white: #FFFFFF;
  --paper: #FBFDFF;
  --wash: #EAF4FB;
  --wash-2: #F3F9FD;
  --blue: #3F9BD8;
  --blue-deep: #1B6FA8;
  --blue-ink: #0F4E78;
  --ink: #142733;
  --ink-soft: #46606F;
  --muted: #7C95A4;
  --line: #E2EDF4;
  --glow: rgba(63, 155, 216, 0.28);

  /* gradients */
  --grad-hero: radial-gradient(120% 90% at 80% -10%, #EAF4FB 0%, #F6FBFE 45%, #FFFFFF 100%);
  --grad-cta: linear-gradient(135deg, #3F9BD8, #1B6FA8);
  --grad-blob-a: radial-gradient(circle, rgba(63, 155, 216, .35) 0%, transparent 70%);
  --grad-blob-b: radial-gradient(circle, rgba(120, 190, 235, .30) 0%, transparent 70%);
  --grad-text: linear-gradient(100deg, #1B6FA8, #3F9BD8);
  --grad-card: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .6));

  /* shadows */
  --shadow-sm: 0 2px 8px rgba(20, 39, 51, .05);
  --shadow-card: 0 18px 48px -18px rgba(27, 111, 168, .22);
  --shadow-glow: 0 24px 60px -20px rgba(63, 155, 216, .45);
  --shadow-cta: 0 12px 30px -8px rgba(27, 111, 168, .45);

  /* radii */
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 30px;
  --r-pill: 999px;

  --container: 1180px;
  --pad: 24px;
  --section: clamp(72px, 9vw, 128px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink-soft);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

h1, h2, h3 { font-family: "Space Grotesk", sans-serif; color: var(--ink); line-height: 1.15; }

/* ---------- a11y helpers ---------- */
.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;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--blue-deep); color: #fff; padding: 10px 18px;
  border-radius: var(--r-pill); font-weight: 600; font-size: 14px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--section); position: relative; }
.band { background: var(--wash-2); }

.section__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section__head h2 { font-weight: 600; font-size: clamp(30px, 4vw, 44px); letter-spacing: -.01em; margin-top: 14px; }
.section__lead { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.6; margin-top: 18px; max-width: 600px; }

.eyebrow {
  font-family: "Inter", sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--blue-deep);
  display: inline-block;
}
.eyebrow--pill {
  background: var(--wash); padding: 7px 14px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow--pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(63,155,216,.18); }

.grad-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: "Inter", sans-serif; font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s var(--ease), color .25s var(--ease), filter .25s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--grad-cta); color: #fff; box-shadow: var(--shadow-cta); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); filter: brightness(1.05); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--wash); color: var(--blue-deep); border-color: var(--wash); }
.btn--ghost .arrow { transition: transform .3s var(--ease); }
.btn--ghost:hover .arrow { transform: translateX(3px); }
.btn--on-blue { background: #fff; color: var(--blue-deep); box-shadow: 0 10px 24px -10px rgba(0,0,0,.35); }
.btn--on-blue:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(0,0,0,.4); }

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 100; height: 72px;
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.8);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { color: var(--blue-deep); width: 28px; height: 28px; display: block; }
.brand__mark svg { width: 100%; height: 100%; }
.brand__word { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 18px; color: var(--ink); letter-spacing: -.01em; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link {
  position: relative; font-weight: 500; font-size: 15px; color: var(--ink-soft);
  padding: 4px 0; transition: color .25s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 50%; bottom: -2px; height: 2px; width: 0;
  background: var(--blue-deep); transform: translateX(-50%);
  transition: width .3s var(--ease); border-radius: 2px;
}
.nav__link:hover, .nav__link.active { color: var(--blue-deep); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.nav__cta { padding: 11px 22px; }

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: transparent; border: 0; cursor: pointer;
}
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-backdrop {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(20,39,51,.25); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .3s var(--ease);
}
.mobile-backdrop.open { opacity: 1; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(255,255,255,.97); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 12vw, 80px) var(--pad) 40px;
  transform: translateY(-12px); opacity: 0;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu__link { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 28px; color: var(--ink); }
.mobile-menu__link:hover { color: var(--blue-deep); }
.mobile-menu__cta { margin-top: 40px; width: 100%; }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; background: var(--grad-hero); padding-top: clamp(56px, 8vw, 96px); padding-bottom: 0; overflow: hidden; }
.hero__inner { position: relative; z-index: 2; max-width: 860px; margin-inline: auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero__title { font-weight: 600; font-size: clamp(40px, 6vw, 68px); line-height: 1.05; letter-spacing: -.02em; margin-top: 26px; }
.hero__sub { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.6; max-width: 600px; margin: 24px auto 0; color: var(--ink-soft); }
.hero__actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; justify-content: center; }
.hero__trust { margin-top: 28px; font-size: 14px; font-weight: 500; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.hero__trust .sparkle { color: var(--blue); }

/* blobs */
.hero__blob { position: absolute; z-index: 1; border-radius: 50%; filter: blur(70px); opacity: .6; pointer-events: none; will-change: transform; }
.hero__blob--a { width: 520px; height: 520px; background: var(--grad-blob-a); top: -120px; right: -80px; animation: floatA 22s ease-in-out infinite; }
.hero__blob--b { width: 440px; height: 440px; background: var(--grad-blob-b); bottom: -40px; left: -100px; animation: floatB 26s ease-in-out infinite; }

@keyframes floatA {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.08); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px, -18px) scale(1.06); }
}

/* hero device */
.hero__device-wrap { position: relative; z-index: 2; margin-top: clamp(48px, 6vw, 80px); padding-bottom: 0; }
.hero__glow {
  position: absolute; z-index: -1; left: 50%; top: 30%; transform: translateX(-50%);
  width: 70%; height: 70%; background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
  filter: blur(50px); pointer-events: none;
}
.device {
  position: relative; margin-inline: auto; max-width: 880px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.74));
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-glow);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  padding: clamp(20px, 3vw, 30px);
  margin-bottom: calc(-1 * clamp(48px, 7vw, 96px)); /* half-overlap feature strip */
}
.device__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.device__name { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 16px; color: var(--ink); }
.device__loc { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }

.streaming-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wash); color: var(--blue-deep);
  font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: var(--r-pill);
}
.streaming-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); animation: pulseDot 1.6s ease-in-out infinite; }
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(63,155,216,.5); opacity: 1; }
  50% { box-shadow: 0 0 0 6px rgba(63,155,216,0); opacity: .7; }
}

.device__chart { background: var(--wash-2); border-radius: var(--r-md); padding: 8px; border: 1px solid var(--line); }
.chart { width: 100%; height: clamp(160px, 22vw, 220px); }
.chart__pulse { animation: chartPulse 1.6s ease-in-out infinite; }
@keyframes chartPulse {
  0%, 100% { opacity: 1; r: 5; }
  50% { opacity: .4; r: 7; }
}

.device__readouts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 20px; }
.readout { background: rgba(255,255,255,.7); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px 16px; }
.readout__label { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.readout__value { display: inline-flex; align-items: center; gap: 7px; font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: clamp(18px, 2.4vw, 22px); color: var(--blue-ink); margin-top: 4px; }
.readout--ok .readout__value { color: #1f9d5b; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #2bb673; box-shadow: 0 0 0 3px rgba(43,182,115,.18); }

/* =========================================================
   Feature strip
   ========================================================= */
.features { padding-top: clamp(72px, 9vw, 120px); padding-bottom: clamp(48px, 6vw, 72px); background: var(--white); }
.features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.feature-card__label { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 17px; color: var(--ink); line-height: 1.3; }

/* =========================================================
   Glass / soft cards & hex tiles
   ========================================================= */
.glass {
  background: var(--grad-card);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow-card);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.glass:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); border-color: rgba(63,155,216,.35); }

.hex-tile {
  flex: none; width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--wash); color: var(--blue); border-radius: var(--r-md);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.hex-tile--lg { width: 54px; height: 54px; }
.glass:hover .hex-tile, .app-card:hover .hex-tile { background: var(--grad-cta); color: #fff; }
.hex-tile--check { width: 30px; height: 30px; border-radius: 10px; }

/* =========================================================
   Stats
   ========================================================= */
.stats { background: var(--white); overflow: hidden; }
.hex-watermark {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 420px; color: rgba(63,155,216,.05); pointer-events: none; z-index: 0;
}
.hex-watermark svg { width: 100%; }
.stats .container { position: relative; z-index: 1; }
.stats__grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.stat { padding: 8px 26px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: var(--line); }
.stat__num { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: clamp(40px, 5vw, 60px); color: var(--blue-ink); line-height: 1; letter-spacing: -.02em; }
.stat__sym { color: var(--blue); }
.stat__unit { font-size: .42em; color: var(--blue); font-weight: 600; }
.stat__label { font-size: 14px; color: var(--ink-soft); margin-top: 12px; }

/* =========================================================
   Applications
   ========================================================= */
.apps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.app-card { padding: 32px; position: relative; overflow: hidden; }
.app-card h3 { font-size: 21px; font-weight: 600; margin: 22px 0 12px; }
.app-card p { font-size: 16px; position: relative; z-index: 1; }
.app-card p strong { color: var(--ink); font-weight: 600; }
.app-card__wash {
  position: absolute; right: -60px; bottom: -60px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(63,155,216,.16) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* =========================================================
   Why
   ========================================================= */
.why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.soft-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.soft-card:hover { transform: translateY(-4px); border-color: rgba(63,155,216,.4); box-shadow: var(--shadow-card); }
.soft-card:hover .hex-tile { background: var(--grad-cta); color: #fff; }
.soft-card h3 { font-size: 19px; font-weight: 600; }
.soft-card p { font-size: 16px; }

.benefits { margin-top: 40px; display: grid; gap: 16px; }
.benefit { display: flex; align-items: flex-start; gap: 14px; font-size: 16px; color: var(--ink-soft); }
.benefit .hex-tile--check { color: var(--blue); background: var(--wash); flex: none; margin-top: 1px; }

/* =========================================================
   How
   ========================================================= */
.how { background: var(--wash-2); }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.how__connector { position: absolute; top: 46px; left: 8%; width: 84%; height: 10px; z-index: 0; pointer-events: none; }
.how__line { stroke-dashoffset: 1200; stroke-dasharray: 6 8; transition: stroke-dashoffset 1.4s ease; }
.how__line.draw { stroke-dashoffset: 0; }

.step-card { padding: 32px 28px; position: relative; overflow: hidden; z-index: 1; }
.step-card__ghost { position: absolute; top: 4px; right: 16px; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 80px; line-height: 1; color: var(--wash); z-index: 0; }
.step-node { position: relative; z-index: 1; width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center; background: var(--wash); color: var(--blue); border-radius: var(--r-md); transition: background .3s var(--ease), color .3s var(--ease); }
.step-node svg { width: 28px; height: 28px; }
.step-card:hover .step-node { background: var(--grad-cta); color: #fff; }
.step-card__body { position: relative; z-index: 1; margin-top: 22px; }
.step-card__body h3 { font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.step-card__body p { font-size: 16px; }

/* =========================================================
   Investors
   ========================================================= */
.investors__inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.investor-pill {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 20px 34px; border-radius: var(--r-pill); position: relative;
}
.investor-pill__logo { height: 36px; width: auto; }
.investor-pill__logo--default { color: var(--ink); }
.investor-pill__logo--hover { position: absolute; left: 34px; height: 36px; opacity: 0; transition: opacity .3s var(--ease); }
.investor-pill:hover .investor-pill__logo--default { opacity: 0; }
.investor-pill:hover .investor-pill__logo--hover { opacity: 1; }
.investor-pill__label { font-weight: 600; font-size: 16px; color: var(--ink-soft); padding-left: 20px; border-left: 1px solid var(--line); }

/* =========================================================
   Contact / CTA band
   ========================================================= */
.contact { background: var(--white); }
.cta-band {
  position: relative; overflow: hidden;
  background: var(--grad-cta); border-radius: var(--r-lg);
  box-shadow: var(--shadow-cta); color: #fff;
  padding: clamp(48px, 7vw, 84px) clamp(28px, 6vw, 80px);
  text-align: center;
}
.cta-band__hex {
  position: absolute; inset: 0; pointer-events: none; opacity: .07;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 1.5px, transparent 1.6px),
    radial-gradient(circle at 70% 60%, #fff 1.5px, transparent 1.6px);
  background-size: 48px 48px, 64px 64px;
}
.cta-band__content { position: relative; z-index: 1; max-width: 640px; margin-inline: auto; }
.cta-band h2 { color: #fff; font-weight: 600; font-size: clamp(28px, 4vw, 42px); letter-spacing: -.01em; }
.cta-band p { color: rgba(255,255,255,.88); font-size: clamp(16px, 1.4vw, 19px); margin: 18px auto 32px; max-width: 520px; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--white); border-top: 1px solid var(--line); padding-top: clamp(56px, 7vw, 80px); padding-bottom: 32px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer__mission { font-size: 15px; margin: 18px 0 14px; max-width: 320px; }
.footer__address { font-size: 14px; color: var(--muted); line-height: 1.6; }
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav-title { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; font-family: "Inter", sans-serif; margin-bottom: 4px; }
.footer__nav a { font-size: 15px; color: var(--ink-soft); transition: color .2s var(--ease); }
.footer__nav a:hover { color: var(--blue-deep); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: clamp(40px, 6vw, 64px); padding-top: 24px; border-top: 1px solid var(--line); }
.footer__bottom p { font-size: 13px; color: var(--muted); }
.footer__badge { color: var(--blue-deep); font-weight: 500; }

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 880px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .stat:nth-child(odd) { padding-left: 0; }
  .stat:nth-child(odd)::before { display: none; }
}

@media (max-width: 820px) {
  .apps__grid { grid-template-columns: 1fr; }
  .how__grid { grid-template-columns: 1fr; gap: 20px; }
  .how__connector { display: none; }
}

@media (max-width: 760px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; }
  .device__readouts { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  :root { --pad: 20px; }
  .features__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat { padding: 0; }
  .stat::before { display: none !important; }
  .hero__actions .btn { width: 100%; }
  .investor-pill { flex-direction: column; gap: 14px; padding: 24px 32px; }
  .investor-pill__label { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 14px; }
  .investor-pill__logo--hover { left: 50%; transform: translateX(-50%); top: 24px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__blob { animation: none; }
  .how__line { stroke-dashoffset: 0; }
}
