/* =========================================================================
   EVA — care operations platform · marketing site
   Design tokens: dark-first (honours the product's identity), full light theme.
   Type: Bricolage Grotesque (display) · Hanken Grotesk (body) · JetBrains Mono (labels)
   ========================================================================= */

:root {
  /* Brand */
  --eva: #18e0cd;
  --cyan: #2bd4ee;
  --eva-deep: #0bb6a6;          /* accent that survives on light grounds */

  /* Semantic (echoes the planner legend) */
  --good: #39d98a;
  --warn: #f5b73d;
  --crit: #f2555a;

  /* Radii / motion */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --maxw: 1200px;

  --font-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
}

/* ---- DARK (default) — neutrals biased toward teal, never flat grey ------ */
:root, :root[data-theme="dark"] {
  --ink: #06121b;
  --ink-2: #081824;
  --surface: #0d2130;
  --surface-2: #102a3c;
  --line: rgba(120, 200, 210, .14);
  --line-strong: rgba(130, 215, 225, .28);
  --text: #e7f2f2;
  --text-soft: #c2d5da;
  --muted: #85a1ab;
  --glow: rgba(24, 224, 205, .5);
  --card: rgba(15, 34, 46, .66);
  --card-hi: rgba(22, 46, 62, .82);
  --shadow: 0 30px 70px -30px rgba(0, 0, 0, .8);
  --on-accent: #04201d;
  --accent: var(--eva);
  --accent-2: var(--cyan);
}

/* ---- LIGHT — cool teal-white, deepened accent for contrast -------------- */
@media (prefers-color-scheme: light) {
  :root {
    --ink: #eef4f4;
    --ink-2: #e4eeee;
    --surface: #ffffff;
    --surface-2: #f2f8f8;
    --line: rgba(12, 60, 66, .12);
    --line-strong: rgba(12, 70, 76, .24);
    --text: #0a2028;
    --text-soft: #234049;
    --muted: #567079;
    --glow: rgba(11, 182, 166, .28);
    --card: rgba(255, 255, 255, .8);
    --card-hi: #ffffff;
    --shadow: 0 24px 60px -32px rgba(6, 40, 46, .45);
    --on-accent: #ffffff;
    --accent: var(--eva-deep);
    --accent-2: #0aa9d0;
  }
}
:root[data-theme="light"] {
  --ink: #eef4f4;
  --ink-2: #e4eeee;
  --surface: #ffffff;
  --surface-2: #f2f8f8;
  --line: rgba(12, 60, 66, .12);
  --line-strong: rgba(12, 70, 76, .24);
  --text: #0a2028;
  --text-soft: #234049;
  --muted: #567079;
  --glow: rgba(11, 182, 166, .28);
  --card: rgba(255, 255, 255, .8);
  --card-hi: #ffffff;
  --shadow: 0 24px 60px -32px rgba(6, 40, 46, .45);
  --on-accent: #ffffff;
  --accent: var(--eva-deep);
  --accent-2: #0aa9d0;
}

/* ---- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  font-size: 1.0625rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; text-wrap: balance; letter-spacing: -.02em; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---- Ambient background ------------------------------------------------ */
.bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: var(--ink); }
.bg__grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 72%);
  opacity: .6;
}
.bg__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.bg__glow--1 { width: 640px; height: 640px; top: -220px; right: -140px; background: radial-gradient(circle, var(--glow), transparent 66%); }
.bg__glow--2 { width: 560px; height: 560px; top: 780px; left: -220px; background: radial-gradient(circle, rgba(43,212,238,.32), transparent 66%); }

/* ---- Shared layout ----------------------------------------------------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); display: inline-block;
}
.section-head { max-width: 720px; margin: 0 auto clamp(2.4rem, 5vw, 4rem); text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin: .7rem 0 .8rem; }
.section-head p { color: var(--muted); font-size: 1.075rem; }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  padding: .82rem 1.5rem; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  color: var(--on-accent);
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 34px -12px var(--glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px var(--glow); }
.btn--ghost { color: var(--text); background: transparent; border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }

/* ---- Nav --------------------------------------------------------------- */
.nav { position: sticky; top: 0; z-index: 50; padding: .7rem clamp(1rem, 4vw, 2.5rem); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 1.5rem;
  padding: .55rem .7rem .55rem 1.1rem; border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,.6);
}
.nav__brand img { height: 26px; width: auto; }
.nav__links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav__links a { color: var(--text-soft); font-size: .95rem; font-weight: 500; position: relative; padding: .2rem 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--accent); transition: width .25s var(--ease); border-radius: 2px; }
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: .7rem; }
.theme-toggle {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: transparent; border: 1px solid var(--line-strong); color: var(--text-soft); cursor: pointer;
  transition: color .2s, border-color .2s, transform .2s;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); transform: rotate(-8deg); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle__moon { display: none; }
:root[data-theme="light"] .theme-toggle__sun { display: none; }
:root[data-theme="light"] .theme-toggle__moon { display: block; }

/* ---- Hero -------------------------------------------------------------- */
.hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1rem, 4vw, 2.5rem) clamp(2rem, 5vw, 4rem);
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center;
}
.hero__title { font-size: clamp(2.5rem, 5.4vw, 4.35rem); font-weight: 800; margin: 1rem 0 1rem; }
/* Acronym expansion — the initials glow so E · V · A read out of the words. */
.acronym {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.35rem); letter-spacing: -.01em;
  color: var(--text-soft); margin-bottom: 1.2rem;
}
.acronym span {
  color: var(--accent); font-weight: 800;
  text-shadow: 0 0 18px color-mix(in srgb, var(--accent) 55%, transparent);
}
.hero__lede { color: var(--text-soft); font-size: 1.16rem; max-width: 33ch; }
.hero__cta { display: flex; gap: .9rem; margin: 1.9rem 0 2.2rem; flex-wrap: wrap; }
.hero__proof { list-style: none; padding: 0; display: flex; gap: 2rem; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 1.4rem; }
.hero__proof li { display: flex; flex-direction: column; }
.hero__proof strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--text); letter-spacing: -.02em; }
.hero__proof span { font-size: .82rem; color: var(--muted); }

.hero__shot { position: relative; }

/* ---- Window (browser/app frame) --------------------------------------- */
.window {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--card-hi); border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.window__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px; background: color-mix(in srgb, var(--surface-2) 90%, transparent);
  border-bottom: 1px solid var(--line);
}
.window__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--line-strong); }
.window__dot:nth-child(1) { background: #ff5f57; }
.window__dot:nth-child(2) { background: #febc2e; }
.window__dot:nth-child(3) { background: #28c840; }
.window__title { margin-left: 10px; font-family: var(--font-mono); font-size: .72rem; color: var(--muted); letter-spacing: .02em; }
.window img { width: 100%; }
.window--float { transform: perspective(1600px) rotateY(-6deg) rotateX(2deg); transition: transform .6s var(--ease); }
.hero__shot:hover .window--float { transform: perspective(1600px) rotateY(-2deg) rotateX(1deg) translateY(-4px); }

.chip {
  position: absolute; font-family: var(--font-mono); font-size: .74rem; font-weight: 500;
  padding: .5rem .8rem; border-radius: 999px; backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong); background: var(--card-hi); box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .45rem;
}
.chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; }
.chip--good { top: 12%; left: -18px; color: var(--good); }
.chip--good::before { background: var(--good); box-shadow: 0 0 10px var(--good); }
.chip--warn { bottom: 10%; right: -14px; color: var(--warn); }
.chip--warn::before { background: var(--warn); box-shadow: 0 0 10px var(--warn); }

/* ---- Positioning strip ------------------------------------------------- */
.strip { max-width: 860px; margin: 0 auto; padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 2.5rem); text-align: center; }
.strip p { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.15rem, 2.4vw, 1.6rem); line-height: 1.4; color: var(--text-soft); letter-spacing: -.01em; }

/* ---- Section wrappers -------------------------------------------------- */
.platform, .features, .benefits, .mobile, .why, .contact, .safer {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 4vw, 2.5rem);
}

/* ---- Safer planning / live visibility --------------------------------- */
.safer { padding-bottom: clamp(1.5rem, 4vw, 3rem); }
.safer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.safer__card {
  padding: 1.6rem 1.5rem; border-radius: var(--r-md);
  background: var(--card); border: 1px solid var(--line); backdrop-filter: blur(10px);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.safer__card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.safer__card--good { border-color: color-mix(in srgb, var(--good) 34%, var(--line)); }
.safer__card--warn { border-color: color-mix(in srgb, var(--warn) 34%, var(--line)); }
.safer__flag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-mono); font-size: .78rem; font-weight: 500; letter-spacing: .01em;
  padding: .42rem .8rem; border-radius: 999px; margin-bottom: .9rem;
  background: color-mix(in srgb, var(--accent) 12%, transparent); color: var(--accent);
}
.safer__flag::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 10px currentColor; }
.safer__flag--good { background: color-mix(in srgb, var(--good) 15%, transparent); color: var(--good); }
.safer__flag--warn { background: color-mix(in srgb, var(--warn) 16%, transparent); color: var(--warn); }
.safer__flag--live { background: color-mix(in srgb, var(--cyan) 14%, transparent); color: var(--accent-2); }
.safer__card p { color: var(--muted); font-size: .96rem; }

/* ---- Modules grid ------------------------------------------------------ */
.modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.module {
  padding: 1.7rem 1.6rem; border-radius: var(--r-md);
  background: var(--card); border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.module:hover { transform: translateY(-5px); border-color: var(--line-strong); background: var(--card-hi); }
.module__icon {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 13px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  margin-bottom: 1.1rem;
}
.module__icon svg { width: 24px; height: 24px; }
.module h3 { font-size: 1.28rem; margin-bottom: .45rem; }
.module p { color: var(--muted); font-size: .98rem; }

/* ---- Feature deep dives ------------------------------------------------ */
.features { display: flex; flex-direction: column; gap: clamp(3.5rem, 8vw, 7rem); padding-top: 0; }
/* Media sits in the wider column; on reversed rows the wide column moves right so the
   screenshot stays large on both sides. */
.feature { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feature--reverse { grid-template-columns: 1fr 1.35fr; }
.feature--reverse .feature__media { order: 2; }
.feature--reverse .feature__text { order: 1; }
.feature__media .window { transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.feature__media .window:hover { transform: translateY(-6px); }
.feature__text h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin: .8rem 0 1rem; }
.feature__text > p { color: var(--text-soft); font-size: 1.08rem; }

.ticks { list-style: none; padding: 0; margin-top: 1.4rem; display: grid; gap: .75rem; }
.ticks li { position: relative; padding-left: 2rem; color: var(--text-soft); }
.ticks li em { font-style: normal; color: var(--text); font-weight: 600; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .18em; width: 20px; height: 20px; border-radius: 6px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent);
}
.ticks li::after {
  content: ""; position: absolute; left: 6px; top: .46em; width: 8px; height: 5px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---- Benefits ---------------------------------------------------------- */
.benefits__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.benefit { padding: 1.6rem 1.5rem; border-radius: var(--r-md); background: var(--card); border: 1px solid var(--line); transition: transform .3s var(--ease), border-color .3s var(--ease); }
.benefit:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.benefit h3 { font-size: 1.1rem; margin-bottom: .5rem; letter-spacing: -.01em; }
.benefit p { color: var(--muted); font-size: .94rem; }

/* ---- Mobile ------------------------------------------------------------ */
.mobile { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.mobile__text h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin: .8rem 0 1rem; }
.mobile__text > p { color: var(--text-soft); font-size: 1.08rem; }
.mobile__note { margin-top: 1.5rem; font-family: var(--font-mono); font-size: .82rem; color: var(--muted); }
.mobile__shots { position: relative; display: flex; justify-content: center; gap: 1rem; min-height: 460px; align-items: center; }
.phone {
  width: 220px; aspect-ratio: 9 / 19; border-radius: 34px; padding: 10px;
  background: linear-gradient(160deg, var(--surface-2), var(--ink-2));
  border: 1px solid var(--line-strong); box-shadow: var(--shadow); position: relative;
}
.phone--back { transform: rotate(6deg) translateY(18px) scale(.92); opacity: .82; margin-left: -70px; z-index: -1; }
.phone__notch { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 62px; height: 6px; border-radius: 999px; background: var(--line-strong); }
.phone__screen {
  width: 100%; height: 100%; border-radius: 26px; overflow: hidden;
  background: radial-gradient(120% 80% at 50% 0%, color-mix(in srgb, var(--accent) 12%, var(--ink)) , var(--ink));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; text-align: center; padding: 1rem;
}
.phone__screen--placeholder { border: 1px dashed var(--line-strong); }
.ph-eva { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--accent); letter-spacing: -.03em; text-shadow: 0 0 24px var(--glow); }
.ph-label { color: var(--text-soft); font-weight: 600; font-size: .95rem; }
.ph-soon { font-family: var(--font-mono); font-size: .68rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }

/* ---- Why band ---------------------------------------------------------- */
.why__inner {
  max-width: 900px; margin: 0 auto; text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem); border-radius: var(--r-xl);
  background:
    radial-gradient(120% 140% at 50% 0%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 60%),
    var(--card);
  border: 1px solid var(--line-strong);
}
.why__inner h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); margin-bottom: 1rem; }
.why__inner p { color: var(--text-soft); font-size: 1.12rem; max-width: 62ch; margin: 0 auto; }

/* ---- Contact ----------------------------------------------------------- */
.contact { padding-bottom: clamp(5rem, 11vw, 9.5rem); }
.contact__card {
  text-align: center; max-width: 820px; margin: 0 auto;
  padding: clamp(2.6rem, 6vw, 4.5rem) clamp(1.4rem, 4vw, 3rem); border-radius: var(--r-xl);
  background: linear-gradient(160deg, var(--card-hi), var(--surface));
  border: 1px solid var(--line-strong); box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.contact__card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(90% 120% at 50% -10%, var(--glow), transparent 55%); opacity: .5;
}
.contact__card > * { position: relative; z-index: 1; }
.contact__card h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin: .7rem 0 1rem; }
.contact__card p { color: var(--text-soft); font-size: 1.1rem; max-width: 52ch; margin: 0 auto; }
.contact__reach {
  margin-top: 2rem !important; font-size: clamp(1.15rem, 2.4vw, 1.5rem) !important;
  font-family: var(--font-display); font-weight: 500; color: var(--text) !important; line-height: 1.5;
}
.contact__reach a {
  color: var(--accent); font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--accent) 45%, transparent);
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.contact__reach a:hover { border-color: var(--accent); }

/* ---- Footer ------------------------------------------------------------ */
.footer { border-top: 1px solid var(--line); background: color-mix(in srgb, var(--ink-2) 80%, transparent); }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 2.5rem) 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 2rem;
}
.footer__brand img { height: 26px; margin-bottom: 1rem; }
.footer__brand p { color: var(--muted); font-size: .92rem; max-width: 34ch; }
.footer__col h4 { font-family: var(--font-mono); font-weight: 500; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.footer__col a { display: block; color: var(--text-soft); font-size: .95rem; padding: .28rem 0; transition: color .2s; }
.footer__col a:hover { color: var(--accent); }
.footer__base {
  max-width: var(--maxw); margin: 0 auto; padding: 1.4rem clamp(1rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  font-size: .84rem; color: var(--muted);
}
.footer__made { font-family: var(--font-mono); letter-spacing: .04em; }

/* ---- "How it works" page ---------------------------------------------- */
.nav__links a[aria-current="page"] { color: var(--accent); }
.nav__links a[aria-current="page"]::after { width: 100%; }

.more-hero { max-width: var(--maxw); margin: 0 auto; padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 3rem); }
.more-hero__inner { max-width: 820px; }
.more-hero h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 800; margin: .8rem 0 .8rem; }
.more-hero .acronym { margin-bottom: 1.4rem; }
.more-hero__lede { color: var(--text-soft); font-size: clamp(1.08rem, 1.8vw, 1.28rem); max-width: 65ch; }
.more-toc { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.more-toc a {
  font-family: var(--font-mono); font-size: .82rem; color: var(--text-soft);
  padding: .5rem .95rem; border-radius: 999px; border: 1px solid var(--line-strong);
  transition: color .2s, border-color .2s, background .2s;
}
.more-toc a:hover { color: var(--accent); border-color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, transparent); }

.deeps { display: flex; flex-direction: column; gap: clamp(4rem, 9vw, 8rem); max-width: 1160px; margin: 0 auto; padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2.5rem); }
.deep { scroll-margin-top: 96px; }
.deep__head { max-width: 760px; margin-bottom: clamp(1.4rem, 3vw, 2.2rem); }
.deep__head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin: .7rem 0 .9rem; }
.deep__head p { color: var(--text-soft); font-size: 1.12rem; }
/* Full-width, much larger screenshots for the deep-dive read. */
.deep__media { margin: 0 0 clamp(1.4rem, 3vw, 2.2rem); }
.window--wide { width: 100%; }
.window--wide img { width: 100%; }
.deep__body { max-width: 900px; }
.deep__body > p { color: var(--text-soft); font-size: 1.08rem; margin-bottom: 1.2rem; }
.ticks--2col { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 2rem; }

/* ---- Scroll reveal ----------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal--delay { transition-delay: .12s; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .window--float { transform: none; }
}

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero__lede { max-width: 52ch; }
  .hero__shot { margin-top: 1rem; }
  .window--float { transform: none; }
  .feature, .mobile { grid-template-columns: 1fr; }
  .feature--reverse .feature__media { order: 0; }
  .feature__media { margin-bottom: .5rem; }
  .feature__text { order: 1 !important; }
  .feature__media { order: 0 !important; }
  .modules { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .safer__grid { grid-template-columns: repeat(2, 1fr); }
  .nav__links { display: none; }
  .chip--good { left: 0; }
  .chip--warn { right: 0; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .mobile__shots { min-height: 420px; }
}
@media (max-width: 560px) {
  body { font-size: 1rem; }
  .nav { padding: .6rem .8rem; }
  .nav__inner { gap: .6rem; padding: .5rem .5rem .5rem .9rem; }
  .nav__brand img { height: 22px; }
  .modules { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }
  .safer__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer__base { flex-direction: column; align-items: flex-start; }
  .hero__proof { gap: 1.2rem; }
  .hero__cta .btn { flex: 1 1 auto; }
  .nav__cta { display: none; }
  .chip { font-size: .68rem; padding: .4rem .65rem; }
  .phone { width: 160px; }
  .phone--back { margin-left: -54px; }
  .why__inner, .contact__card { padding-left: 1.2rem; padding-right: 1.2rem; }
  .contact__reach a { white-space: normal; word-break: break-word; }
  .ticks--2col { grid-template-columns: 1fr; }
}
