:root {
  /* Brand tokens */
  --cf-black:   #030814;
  --cf-navy:    #0f1e30;
  --cf-ink:     #1a3048;
  --cf-muted:   #5a6e84;
  --cf-faint:   #8da0b4;
  --cf-white:   #ffffff;
  --cf-soft:    #f5f9fc;
  --cf-soft2:   #edf4fb;
  --cf-line:    rgba(10,140,255,.1);

  --cf-cyan:    #20e4ff;
  --cf-blue:    #0a8cff;
  --cf-royal:   #426dff;
  --cf-violet:  #8f31ff;
  --cf-magenta: #a43bff;
  --cf-green:   #14b87a;
  --cf-warning: #f59e0b;
  --cf-red:     #ff3b5f;

  --cf-gradient-logo:   linear-gradient(120deg, #20e4ff 0%, #0a8cff 42%, #426dff 68%, #a43bff 100%);
  --cf-gradient-word:   linear-gradient(90deg,  #0a8cff 0%, #426dff 52%, #a43bff 100%);
  --cf-gradient-action: linear-gradient(120deg, #0a8cff 0%, #426dff 58%, #8f31ff 100%);

  --shadow:        0 18px 48px rgba(7,26,58,.07), 0 4px 14px rgba(10,140,255,.06);
  --shadow-strong: 0 28px 70px rgba(7,26,58,.12), 0 10px 32px rgba(66,109,255,.1);
  --shadow-card:   0 2px 8px rgba(7,26,58,.05), 0 8px 28px rgba(7,26,58,.07);

  --radius: 8px;
  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--cf-navy);
  background: var(--cf-soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Très subtil — juste de la profondeur, pas de grille géométrique */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 60% 50% at 10% 5%,  rgba(32,228,255,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 92% 12%,  rgba(164,59,255,.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 55% 95%,  rgba(10,140,255,.04) 0%, transparent 60%),
    linear-gradient(180deg, #f5f9fc 0%, #ffffff 40%, #f8fbff 100%);
  pointer-events: none;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
h1, h2, h3, p { margin-top: 0; }

/* === SKIP LINK === */
.skip-link {
  position: fixed;
  left: 16px; top: 14px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 12px;
  border-radius: 6px;
  background: var(--cf-navy);
  color: #fff;
}
.skip-link:focus { transform: translateY(0); }

/* === LAYOUT === */
.wrap { width: min(var(--wrap), calc(100vw - 44px)); margin: 0 auto; }
.section { padding: 96px 0; }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,.68,0,1.2), transform .65s cubic-bezier(.22,.68,0,1.2);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .42s; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(10,140,255,.1);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 4px 28px rgba(7,26,58,.08);
}
.header-inner {
  width: min(var(--wrap), calc(100vw - 44px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand, .footer-brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 50px; height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(10,140,255,.16));
}
.brand-word {
  display: inline-flex;
  align-items: baseline;
  color: var(--cf-navy);
  font-size: 1.42rem;
  font-weight: 950;
  line-height: 1;
}
.brand-word strong { color: var(--cf-navy); }
.brand-word span {
  background: var(--cf-gradient-word);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--cf-muted);
}
.site-nav a { position: relative; padding: 8px 0; transition: color .18s ease; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 1px;
  height: 2px;
  background: var(--cf-gradient-word);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}
.site-nav a:hover { color: var(--cf-blue); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* === BUTTONS === */
.header-cta, .button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid transparent;
  padding: 13px 20px;
  font-weight: 850;
  line-height: 1;
  will-change: transform;
  transition: transform .22s cubic-bezier(.22,.68,0,1.28), box-shadow .22s ease;
}
.button span, .header-cta { position: relative; z-index: 1; }

/* shine sweep */
.button::after, .header-cta::after {
  content: "";
  position: absolute;
  top: -60%; bottom: -60%;
  left: -34%; width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg) translateX(-120%);
  transition: transform .55s ease;
  pointer-events: none;
}

.header-cta, .button.primary {
  color: #fff;
  background: var(--cf-gradient-action);
  box-shadow: 0 12px 28px rgba(10,140,255,.22), inset 0 1px 0 rgba(255,255,255,.28);
}
.button.secondary {
  color: var(--cf-navy);
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--cf-gradient-action) border-box;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(7,26,58,.08), inset 0 1px 0 rgba(255,255,255,.9);
}
.header-cta:hover, .button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(10,140,255,.3), 0 0 0 4px rgba(10,140,255,.08);
}
.button.secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(7,26,58,.12), 0 0 0 4px rgba(10,140,255,.06);
}
.header-cta:hover::after, .button:hover::after {
  transform: skewX(-18deg) translateX(520%);
}
.header-cta:active, .button:active, .button.is-pressed {
  transform: translateY(1px) scale(.985);
}

.menu-toggle { display: none; }

/* === TYPOGRAPHY === */
.eyebrow {
  margin: 0 0 14px;
  color: var(--cf-blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--cf-navy);
  font-size: clamp(40px, 5.8vw, 74px);
  line-height: .97;
  letter-spacing: -.01em;
}
h2 {
  margin-bottom: 18px;
  color: var(--cf-navy);
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.06;
}
h3 { color: var(--cf-navy); font-size: 1.12rem; line-height: 1.2; }
.lead {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--cf-muted);
  font-size: 1.14rem;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 74px;
  background:
    radial-gradient(ellipse 68% 55% at 18% 12%, rgba(32,228,255,.1)  0%, transparent 55%),
    radial-gradient(ellipse 55% 48% at 88% 22%, rgba(164,59,255,.08) 0%, transparent 55%),
    linear-gradient(155deg, #f8fbff 0%, #ffffff 45%, #f5f0ff 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/hero-lifestyle.png') center 20% / cover no-repeat;
  opacity: .13;
  filter: saturate(.35) blur(1px);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
  will-change: transform;
}
.hero-orb-a {
  width: 480px; height: 480px;
  top: -80px; left: -60px;
  background: radial-gradient(circle, rgba(32,228,255,.14), transparent 70%);
  animation: orbFloat 14s ease-in-out infinite;
}
.hero-orb-b {
  width: 380px; height: 380px;
  top: 40px; right: -40px;
  background: radial-gradient(circle, rgba(164,59,255,.11), transparent 70%);
  animation: orbFloat 18s ease-in-out infinite reverse;
}

.hero-shield {
  position: absolute;
  left: 52%; top: 14%;
  width: min(62vw, 960px);
  opacity: .06;
  filter: saturate(.8);
  transform: translateX(-18%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: 54px;
}

/* Hero h1 — navy, no gradient text (more readable/trustworthy) */
.hero-copy h1 { color: var(--cf-navy); background: none; -webkit-text-fill-color: initial; }

/* Word reveal */
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordReveal .5s cubic-bezier(.22,.68,0,1.22) forwards;
}
@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }

.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(10,140,255,.14);
  border-radius: 12px;
  padding: 8px 13px;
  color: var(--cf-muted);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
  font-weight: 750;
  font-size: .88rem;
  transition: border-color .2s, color .2s, background .2s;
}
.trust-row span svg {
  width: 12px; height: 12px;
  flex-shrink: 0;
  color: var(--cf-green);
}
.trust-row span:hover {
  border-color: rgba(10,140,255,.3);
  color: var(--cf-blue);
  background: rgba(255,255,255,.9);
}

.hero-visual { min-height: 560px; display: grid; align-items: center; }

/* === FAMILY CARD (glassmorphism sur fond clair) === */
.family-card {
  position: relative;
  border: 1px solid rgba(10,140,255,.14);
  border-radius: 20px;
  padding: 26px;
  background: rgba(255,255,255,.78);
  box-shadow:
    0 2px 0 rgba(255,255,255,.9) inset,
    0 -1px 0 rgba(10,140,255,.06) inset,
    0 20px 60px rgba(7,26,58,.1),
    0 6px 20px rgba(10,140,255,.08);
  backdrop-filter: blur(40px) saturate(160%);
  -webkit-backdrop-filter: blur(40px) saturate(160%);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .35s cubic-bezier(.22,.68,0,1.2), box-shadow .35s ease;
}
.family-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(32,228,255,.07), transparent 35%),
    linear-gradient(315deg, rgba(164,59,255,.05), transparent 42%);
  pointer-events: none;
}
.family-card::after {
  content: "";
  position: absolute;
  left: 20px; right: 20px; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10,140,255,.4), transparent);
  pointer-events: none;
}
.family-card:hover {
  box-shadow:
    0 2px 0 rgba(255,255,255,.95) inset,
    0 28px 80px rgba(7,26,58,.14),
    0 10px 36px rgba(10,140,255,.12),
    0 0 0 1px rgba(10,140,255,.18);
}
.family-card > :not(.guardian-glow) { position: relative; }

.guardian-glow {
  position: absolute;
  inset: -120px -80px auto auto;
  width: 270px; height: 270px;
  border-radius: 999px;
  background: conic-gradient(from 150deg, rgba(14,175,255,.08), rgba(10,140,255,.22), rgba(164,59,255,.18), rgba(14,175,255,.08));
  filter: blur(32px);
  opacity: .5;
  animation: guardianPulse 8s ease-in-out infinite;
}

.family-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.family-card-head img { width: 200px; height: 58px; object-fit: contain; object-position: left center; }
.family-card-head strong { display: block; color: var(--cf-navy); font-size: 1.14rem; }
.family-card-head span { color: var(--cf-green); font-weight: 800; font-size: .9rem; }

/* === TICKETS === */
.ticket {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
  border: 1px solid rgba(10,140,255,.1);
  border-radius: 14px;
  padding: 15px;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.ticket > span {
  display: grid;
  width: 42px; height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--cf-gradient-action);
  font-weight: 900;
  box-shadow: 0 6px 16px rgba(10,140,255,.24);
}
.ticket strong { display: block; color: var(--cf-navy); }
.ticket small  { display: block; color: var(--cf-muted); }
.ticket.urgent { border-color: rgba(164,59,255,.18); box-shadow: 0 8px 28px rgba(164,59,255,.1); }
.ticket:hover  { transform: translateX(4px); border-color: rgba(10,140,255,.22); box-shadow: 0 12px 32px rgba(7,26,58,.1); }
.ticket.is-pressed { transform: translateX(2px) scale(.992); }

/* === MINI DASHBOARD === */
.mini-dashboard, .stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.mini-dashboard div, .stat-row div {
  border: 1px solid rgba(10,140,255,.1);
  border-radius: 14px;
  padding: 14px;
  background: var(--cf-soft);
  transition: border-color .2s, background .2s, transform .2s;
}
.mini-dashboard div:hover, .stat-row div:hover {
  border-color: rgba(10,140,255,.22);
  background: #fff;
  transform: translateY(-2px);
}
.mini-dashboard strong, .stat-row strong { display: block; color: var(--cf-navy); font-size: 1.35rem; }
.mini-dashboard span, .stat-row span { color: var(--cf-muted); font-size: .84rem; font-weight: 750; }

.signal-strip {
  display: grid;
  grid-template-columns: 1fr .65fr .35fr .2fr;
  gap: 6px;
  margin-top: 18px;
  opacity: .7;
}
.signal-strip span {
  height: 4px;
  border-radius: 999px;
  background: var(--cf-gradient-action);
  animation: signalMove 2.6s ease-in-out infinite;
}
.signal-strip span:nth-child(2) { animation-delay: .18s; }
.signal-strip span:nth-child(3) { animation-delay: .36s; }
.signal-strip span:nth-child(4) { animation-delay: .54s; }

/* === STATS BAND === */
.stats-band {
  padding: 32px 0;
  background: #fff;
  border-top: 1px solid var(--cf-line);
  border-bottom: 1px solid var(--cf-line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stats-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 20px 16px;
  border: 1px solid rgba(10,140,255,.09);
  border-radius: 16px;
  background: var(--cf-soft);
  transition: border-color .2s, background .2s, transform .2s;
}
.stats-grid > div:hover {
  border-color: rgba(10,140,255,.2);
  background: #fff;
  transform: translateY(-3px);
}
.stats-grid strong {
  background: var(--cf-gradient-action);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 950;
  line-height: 1;
}
.stats-grid span {
  color: var(--cf-muted);
  font-size: .88rem;
  font-weight: 750;
}

/* === URGENCY BAND (garde le foncé — section urgence) === */
.urgency-band {
  position: relative;
  overflow: hidden;
  padding: 52px 0;
  color: #fff;
  background:
    radial-gradient(ellipse at 72% 50%, rgba(143,49,255,.24), transparent 38%),
    radial-gradient(ellipse at 26% 20%, rgba(10,140,255,.2),  transparent 34%),
    linear-gradient(108deg, #070d1f, #0a1428);
}
.urgency-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,  rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000, transparent 86%);
  pointer-events: none;
}
.urgency-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 36px; }
.urgency-band .eyebrow { color: var(--cf-cyan); }
.urgency-band h2 { color: #fff; margin-bottom: 0; font-size: clamp(22px, 3vw, 34px); }

.urgency-panel {
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(280px, 1fr);
  grid-template-areas: "summary chart" "tickets chart" "action action";
  gap: 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 16px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(24px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 24px 60px rgba(0,0,0,.3);
}
.alarm-card {
  grid-area: summary;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 14px;
  background: rgba(0,0,0,.22);
}
.alarm-card strong { display: block; color: #fff; font-size: 1.1rem; }
.alarm-card small  { display: block; color: rgba(255,255,255,.62); font-weight: 800; }
.alarm-dot {
  width: 16px; height: 16px;
  border-radius: 999px;
  background: var(--cf-blue);
  box-shadow: 0 0 0 5px rgba(10,140,255,.18), 0 0 24px rgba(10,140,255,.5);
  animation: alarmPulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.alarm-dot.p1 { background: var(--cf-red); box-shadow: 0 0 0 5px rgba(255,59,95,.18), 0 0 24px rgba(255,59,95,.5); }

.ticket-chart {
  grid-area: chart;
  position: relative;
  overflow: hidden;
  min-height: 178px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 14px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    rgba(0,0,0,.18);
  background-size: 22px 22px, 22px 22px, auto;
}
.chart-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.chart-head strong { color: #fff; font-weight: 950; }
.chart-head span { border-radius: 999px; padding: 5px 9px; color: rgba(255,255,255,.75); background: rgba(255,255,255,.1); font-size: .78rem; font-weight: 950; }
.priority-bars { display: grid; gap: 11px; }
.priority-bars div { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: center; }
.priority-bars span { color: rgba(255,255,255,.7); font-size: .82rem; font-weight: 950; }
.priority-bars strong { position: relative; height: 10px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.1); }
.priority-bars strong::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: var(--c);
  box-shadow: 0 0 16px color-mix(in srgb, var(--c), transparent 50%);
  animation: queueFill 2.6s ease-in-out infinite;
}
.mini-queue { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 17px; }
.mini-queue span { height: 42px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: rgba(255,255,255,.06); }
.mini-queue span::before { content: ""; display: block; width: 22px; height: 22px; margin: 9px auto; border-radius: 8px; background: var(--cf-blue); }
.mini-queue .critical::before { background: var(--cf-red); }
.mini-queue .warning::before  { background: var(--cf-warning); }

.urgency-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.urgency-list span {
  position: relative;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 14px 14px 14px 38px;
  background: rgba(255,255,255,.08);
  font-weight: 800;
  color: #fff;
  transition: transform .18s ease, background .18s ease;
}
.urgency-list span::before {
  content: "";
  position: absolute;
  left: 14px; top: 50%;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--cf-blue);
  box-shadow: 0 0 0 4px rgba(10,140,255,.16), 0 0 16px rgba(10,140,255,.4);
  transform: translateY(-50%);
}
.urgency-list span:hover { transform: translateY(-2px); background: rgba(255,255,255,.12); }
.ticket-alerts span { display: flex; align-items: center; gap: 10px; min-height: 72px; padding: 14px; }
.ticket-alerts { grid-area: tickets; align-self: start; }
.ticket-alerts span::before { display: none; }
.ticket-alerts em {
  display: inline-grid;
  min-width: 34px; height: 28px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--cf-blue);
  font-style: normal;
  font-size: .82rem;
  font-weight: 950;
}
.ticket-alerts .p1-ticket { border-color: rgba(255,59,95,.3); background: linear-gradient(135deg, rgba(255,59,95,.18), rgba(255,255,255,.05)); }
.ticket-alerts .p1-ticket em { background: var(--cf-red); }
.ticket-alerts .p2-ticket { border-color: rgba(245,184,46,.28); background: linear-gradient(135deg, rgba(245,184,46,.14), rgba(255,255,255,.05)); }
.ticket-alerts .p2-ticket em { color: #1c2340; background: var(--cf-warning); }
.urgency-action { grid-area: action; grid-column: 1/-1; justify-self: stretch; min-height: 54px; font-size: 1.02rem; }

/* === URGENCY SCENARIOS === */
.urgency-scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.urgency-scenario {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 24px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  transition: background .2s, border-color .2s, transform .2s;
}
.urgency-scenario:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-3px);
}
.scenario-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.scenario-pill {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 11px;
  border-radius: 8px;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .04em;
}
.pill-p1 { background: rgba(255,59,95,.22); color: #ff8099; border: 1px solid rgba(255,59,95,.3); }
.pill-p2 { background: rgba(245,158,11,.18); color: #fbbf24; border: 1px solid rgba(245,158,11,.28); }
.pill-p3 { background: rgba(10,140,255,.18); color: #60b4ff; border: 1px solid rgba(10,140,255,.28); }
.scenario-delay {
  color: rgba(255,255,255,.45);
  font-size: .8rem;
  font-weight: 850;
  white-space: nowrap;
}
.scenario-icon-wrap {
  display: grid;
  width: 46px; height: 46px;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
}
.scenario-icon-wrap svg {
  width: 22px; height: 22px;
  fill: none;
  stroke: rgba(255,255,255,.75);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.urgency-scenario h3 {
  margin: 0;
  color: #fff;
  font-size: 1.04rem;
  line-height: 1.25;
}
.urgency-scenario p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: .9rem;
  line-height: 1.55;
  flex: 1;
}
.scenario-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,.65);
  font-size: .86rem;
  font-weight: 900;
  transition: color .18s;
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.scenario-link:hover { color: #fff; }

/* === AUDIT PREVIEW CARD === */
.audit-preview {
  border: 1px solid rgba(10,140,255,.14);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}
.audit-preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--cf-line);
  background: var(--cf-soft);
}
.audit-preview-header img {
  width: 32px; height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.audit-preview-header > div { flex: 1; }
.audit-preview-header strong {
  display: block;
  color: var(--cf-navy);
  font-size: .95rem;
  font-weight: 900;
  line-height: 1.2;
}
.audit-preview-header span {
  display: block;
  color: var(--cf-muted);
  font-size: .78rem;
  font-weight: 750;
  margin-top: 2px;
}
.audit-status-badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 11px;
  border-radius: 8px;
  background: rgba(20,184,122,.12);
  color: var(--cf-green);
  border: 1px solid rgba(20,184,122,.22);
  font-size: .76rem;
  font-weight: 900;
  white-space: nowrap;
}
.audit-checklist {
  display: grid;
  padding: 8px 0;
}
.audit-item {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 13px 22px;
  border-bottom: 1px solid rgba(10,140,255,.05);
  transition: background .15s;
}
.audit-item:last-child { border-bottom: 0; }
.audit-item:hover { background: var(--cf-soft); }
.audit-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.audit-ok   .audit-dot { background: var(--cf-green);   box-shadow: 0 0 0 3px rgba(20,184,122,.15); }
.audit-warn .audit-dot { background: var(--cf-warning); box-shadow: 0 0 0 3px rgba(245,158,11,.15); }
.audit-alert .audit-dot { background: var(--cf-violet); box-shadow: 0 0 0 3px rgba(143,49,255,.15); }
.audit-label {
  color: var(--cf-navy);
  font-size: .92rem;
  font-weight: 750;
}
.audit-result {
  font-size: .8rem;
  font-weight: 900;
  padding: 4px 9px;
  border-radius: 7px;
  white-space: nowrap;
}
.audit-ok   .audit-result { color: var(--cf-green);   background: rgba(20,184,122,.1); }
.audit-warn .audit-result { color: #b45309;            background: rgba(245,158,11,.1); }
.audit-alert .audit-result { color: var(--cf-violet);  background: rgba(143,49,255,.1); }
.audit-preview-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--cf-line);
  background: var(--cf-soft);
}
.audit-preview-footer > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 14px 12px;
  border-right: 1px solid var(--cf-line);
  text-align: center;
}
.audit-preview-footer > div:last-child { border-right: 0; }
.audit-preview-footer strong {
  color: var(--cf-navy);
  font-size: 1.3rem;
  font-weight: 950;
  line-height: 1;
}
.audit-preview-footer span {
  color: var(--cf-muted);
  font-size: .76rem;
  font-weight: 750;
}

/* === FOUNDER MISSION BLOCK === */
.founder-mission {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid rgba(10,140,255,.1);
  border-radius: 16px;
  background: var(--cf-soft);
}
.founder-mission p {
  margin: 0;
  color: var(--cf-muted);
  font-size: .97rem;
  line-height: 1.6;
}

/* === TRUST PROOF === */
.trust-proof { padding: 32px 0; background: #fff; border-top: 1px solid var(--cf-line); border-bottom: 1px solid var(--cf-line); }
.trust-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.trust-proof-grid div {
  border: 1px solid rgba(10,140,255,.1);
  border-radius: 16px;
  padding: 18px;
  background: var(--cf-soft);
  box-shadow: var(--shadow-card);
  transition: border-color .22s, background .22s, transform .22s;
}
.trust-proof-grid div:hover { border-color: rgba(10,140,255,.2); background: #fff; transform: translateY(-3px); }
.trust-proof-grid strong { display: block; color: var(--cf-navy); font-size: 1.1rem; }
.trust-proof-grid span   { display: block; margin-top: 3px; color: var(--cf-muted); font-weight: 750; }

/* === SECTION HEADINGS === */
.section-head { max-width: 760px; margin-bottom: 36px; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head p, .split p, .mission-card p, .cta-card p { color: var(--cf-muted); font-size: 1.05rem; }

/* === SERVICE CARDS === */
.service-grid, .plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card, .plan-card, .steps article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10,140,255,.1);
  border-radius: 18px;
  padding: 26px;
  background: #fff;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card::after, .plan-card::after, .steps article::after {
  content: "";
  position: absolute;
  left: 20px; right: 20px; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10,140,255,.35), transparent);
  opacity: .6;
  pointer-events: none;
}
.service-card::before, .plan-card::before, .steps article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(32,228,255,.05), transparent 38%, rgba(164,59,255,.03));
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}
.service-card:hover, .plan-card:hover, .steps article:hover {
  transform: translateY(-6px);
  border-color: rgba(10,140,255,.18);
  box-shadow: 0 20px 56px rgba(7,26,58,.12), 0 6px 20px rgba(10,140,255,.1);
}
.service-card:hover::before, .plan-card:hover::before, .steps article:hover::before { opacity: 1; }
.service-card.is-pressed, .plan-card.is-pressed { transform: translateY(-2px) scale(.992); }
.service-card { min-height: 220px; }
.service-card p { color: var(--cf-muted); }

/* === ICON DOTS === */
.icon-dot {
  display: grid;
  width: 44px; height: 44px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.28), transparent), var(--cf-gradient-action);
  box-shadow: 0 10px 24px rgba(10,140,255,.2);
  animation: softFloat 5.5s ease-in-out infinite;
}
.icon-dot svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.icon-audit   { background: linear-gradient(135deg, rgba(255,255,255,.28), transparent), linear-gradient(135deg, #20e4ff, #0a8cff 54%, #426dff); }
.icon-ticket  { background: linear-gradient(135deg, rgba(255,255,255,.28), transparent), linear-gradient(135deg, #0a8cff, #426dff 55%, #8f31ff); }
.icon-advice  { background: linear-gradient(135deg, rgba(255,255,255,.28), transparent), linear-gradient(135deg, #20e4ff, #14b87a 54%, #0a8cff); }
.icon-deploy  { background: linear-gradient(135deg, rgba(255,255,255,.28), transparent), linear-gradient(135deg, #426dff, #0a8cff 48%, #20e4ff); }
.icon-guardian { background: linear-gradient(135deg, rgba(255,255,255,.3), transparent), linear-gradient(135deg, #20e4ff, #426dff 46%, #a43bff); }

.accent-card {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7,26,58,.96), rgba(66,109,255,.88));
  border-color: rgba(66,109,255,.3);
  box-shadow: 0 18px 50px rgba(7,26,58,.2), 0 6px 20px rgba(66,109,255,.18);
}
.accent-card h3, .accent-card p { color: #fff; }
.accent-card p { color: rgba(255,255,255,.72); }

/* === BADGE SOON === */
.badge-soon {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 9px;
  border-radius: 7px;
  background: rgba(10,140,255,.1);
  color: var(--cf-blue);
  border: 1px solid rgba(10,140,255,.18);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-soon-light {
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.2);
}

/* === VISUAL SECTION === */
.visual-section { background: var(--cf-soft2); }
.split { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 54px; }
.device-panel {
  border: 1px solid rgba(10,140,255,.12);
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(32,228,255,.12), rgba(143,49,255,.06)), #fff;
  box-shadow: var(--shadow-strong);
}
.screen { border: 1px solid rgba(7,26,58,.1); border-radius: 16px; padding: 20px; background: #fff; }
.screen-top {
  position: relative;
  overflow: hidden;
  height: 150px;
  margin-bottom: 16px;
  border-radius: 14px;
  padding: 18px;
  background:
    radial-gradient(circle at 20% 24%, rgba(32,228,255,.46), transparent 18%),
    radial-gradient(circle at 82% 70%, rgba(164,59,255,.38), transparent 20%),
    linear-gradient(90deg, rgba(32,228,255,.12) 1px, transparent 1px),
    linear-gradient(rgba(66,109,255,.1) 1px, transparent 1px),
    linear-gradient(135deg, #071a3a, #123e7c 54%, #7042ff);
  background-size: auto, auto, 24px 24px, 24px 24px, auto;
}
.screen-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 32%, rgba(255,255,255,.14) 45%, transparent 58% 100%);
  transform: translateX(-70%);
  animation: consoleSweep 6s ease-in-out infinite;
  pointer-events: none;
}
.console-brand {
  position: relative; z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 8px 11px 8px 8px;
  color: #fff;
  background: rgba(3,8,20,.22);
  backdrop-filter: blur(10px);
}
.console-brand img { width: 30px; height: 30px; object-fit: contain; }
.console-brand strong { font-size: 1rem; line-height: 1; }
.console-brand span { background: var(--cf-gradient-word); background-clip: text; -webkit-text-fill-color: transparent; }
.console-grid { position: absolute; right: 18px; top: 20px; z-index: 1; display: grid; grid-template-columns: repeat(4, 12px); gap: 7px; }
.console-grid span { width: 12px; height: 12px; border-radius: 4px; background: rgba(255,255,255,.24); animation: consoleTile 2.8s ease-in-out infinite; }
.console-grid span:nth-child(2n) { animation-delay: .22s; }
.console-grid span:nth-child(3n) { background: rgba(32,228,255,.42); animation-delay: .42s; }
.console-grid span:nth-child(5n) { background: rgba(164,59,255,.42); animation-delay: .64s; }
.heartbeat { position: absolute; left: 18px; right: 18px; bottom: 20px; z-index: 1; height: 44px; opacity: .95; }
.heartbeat svg { width: 100%; height: 100%; overflow: visible; }
.heartbeat path { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.heartbeat-base { stroke: rgba(255,255,255,.16); stroke-width: 2; }
.heartbeat-line { stroke: #0eafff; stroke-width: 3; stroke-dasharray: 110 430; stroke-dashoffset: 430; filter: drop-shadow(0 0 8px rgba(10,140,255,.42)); animation: heartbeatFlow 3.6s linear infinite; }
.heartbeat-b { animation-delay: -1.8s; opacity: .72; }
.risk-line { display: grid; grid-template-columns: 12px 1fr auto; gap: 12px; align-items: center; border-bottom: 1px solid var(--cf-line); padding: 14px 0; }
.risk-line:last-child { border-bottom: 0; }
.risk-line span { width: 10px; height: 10px; border-radius: 50%; background: var(--cf-warning); }
.risk-line.good span  { background: var(--cf-green); }
.risk-line.alert span { background: var(--cf-violet); }
.risk-line strong { color: var(--cf-navy); }
.risk-line em { color: var(--cf-muted); font-style: normal; font-weight: 800; }

/* === PLANS === */
.plans-section { background: var(--cf-soft); }
.plan-card { display: flex; min-height: 450px; flex-direction: column; }
.plan-card.featured { border-color: rgba(66,109,255,.22); transform: translateY(-12px); box-shadow: 0 28px 70px rgba(7,26,58,.14), 0 8px 28px rgba(66,109,255,.12); }
.plan-card .button { min-height: 48px; border-radius: 13px; }
.badge { align-self: flex-start; margin: 0 0 16px; border-radius: 10px; padding: 7px 11px; color: #fff; background: var(--cf-gradient-logo); font-size: .8rem; font-weight: 900; }
.price { margin: 14px 0 18px; color: var(--cf-navy); font-size: 3rem; font-weight: 900; line-height: 1; }
.price span { color: var(--cf-muted); font-size: 1rem; }
.plan-kicker { margin: 10px 0 -4px; color: var(--cf-blue); font-size: .82rem; font-weight: 950; letter-spacing: .04em; text-transform: uppercase; }
.plan-note { margin-top: 22px; color: var(--cf-muted); font-size: .95rem; text-align: center; }
.plan-card ul { display: grid; gap: 11px; margin: 0 0 26px; padding: 0; list-style: none; }
.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--cf-muted);
  line-height: 1.5;
}
.plan-card li::before {
  content: "✓";
  display: inline-flex;
  min-width: 19px;
  height: 19px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(10,140,255,.1);
  color: var(--cf-blue);
  font-size: .68rem;
  font-weight: 900;
  margin-top: 2px;
  flex-shrink: 0;
}
.plan-card.featured li::before {
  background: rgba(10,140,255,.16);
}
.plan-card .button { margin-top: auto; }

/* === STEPS === */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 57px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 1px;
  background: linear-gradient(90deg, var(--cf-blue), var(--cf-royal), var(--cf-violet));
  opacity: .18;
  pointer-events: none;
}
.steps span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 2.2rem;
  font-weight: 950;
  line-height: 1;
  background: var(--cf-gradient-word);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.steps p { color: var(--cf-muted); }

/* === MISSION === */
.mission { background: linear-gradient(180deg, #fff, var(--cf-soft2)); }
.mission-card, .cta-card {
  border: 1px solid rgba(10,140,255,.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}
.mission-card { display: grid; grid-template-columns: 1fr .8fr; gap: 36px; align-items: center; padding: 42px; }
.mission-card p { color: var(--cf-muted); }
.mission-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mission-points span {
  border: 1px solid rgba(10,140,255,.1);
  border-radius: 14px;
  padding: 18px;
  color: var(--cf-navy);
  background: var(--cf-soft);
  font-weight: 900;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.mission-points span:hover { transform: translateY(-3px); background: #fff; border-color: rgba(10,140,255,.2); }

/* === CTA / AUDIT FORM === */
.cta-section { padding-top: 52px; }
.cta-card { padding: 44px; text-align: center; }
.cta-card p { color: var(--cf-muted); }
.audit-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin-top: 32px;
  text-align: left;
}
.audit-form label:not(.check-inline):not(.consent-field) {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--cf-navy);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .01em;
}
.audit-form label small {
  font-weight: 700;
  color: var(--cf-muted);
  font-size: .8rem;
  margin-left: 4px;
}
.audit-form input:not([type="checkbox"]),
.audit-form select {
  min-height: 50px;
  border: 1.5px solid rgba(10,140,255,.15);
  border-radius: 12px;
  padding: 11px 14px;
  background: rgba(255,255,255,.7);
  color: var(--cf-navy);
  font-size: .95rem;
  font-weight: 750;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.audit-form input:not([type="checkbox"]):focus,
.audit-form select:focus {
  border-color: var(--cf-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(10,140,255,.1);
  outline: none;
}
/* availability groups */
.avail-group {
  grid-column: 1/-1;
  border: none;
  border-top: 1.5px solid rgba(10,140,255,.1);
  padding: 18px 0 4px;
  background: transparent;
  margin: 0;
}
.avail-group legend {
  float: left;
  width: 100%;
  padding: 0 0 10px;
  color: var(--cf-muted);
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.avail-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  clear: left;
}
.audit-form .check-inline {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 10px;
  border: 1.5px solid rgba(10,140,255,.16);
  border-radius: 99px;
  background: rgba(255,255,255,.8);
  color: var(--cf-navy);
  font-weight: 800;
  font-size: .88rem;
  cursor: pointer;
  transition: border-color .18s, background .18s, box-shadow .18s;
  user-select: none;
  white-space: nowrap;
}
.audit-form .check-inline:hover {
  border-color: var(--cf-blue);
  background: rgba(10,140,255,.04);
}
.audit-form .check-inline input[type="checkbox"] {
  display: block;
  width: 16px;
  height: 16px;
  min-height: unset !important;
  flex-shrink: 0;
  accent-color: var(--cf-blue);
  cursor: pointer;
  margin: 0;
}
.audit-form .check-inline span {
  color: var(--cf-muted);
  font-size: .78rem;
  font-weight: 700;
}
.audit-form .check-inline span::before { content: "·\00a0"; }
.audit-form .check-inline:has(input:checked) {
  border-color: var(--cf-blue);
  background: rgba(10,140,255,.08);
  box-shadow: 0 0 0 3px rgba(10,140,255,.1);
  color: var(--cf-blue);
}
/* rest of form */
.audit-form .consent-field { grid-column: 1/-1; display: flex; align-items: flex-start; gap: 10px; color: var(--cf-muted); font-size: .92rem; font-weight: 750; line-height: 1.35; }
.consent-field input { width: 18px; min-width: 18px; height: 18px; min-height: 18px; margin-top: 1px; accent-color: var(--cf-blue); }
.consent-field a { color: var(--cf-blue); font-weight: 900; }
.audit-form button { grid-column: 1/-1; min-height: 52px; }
.form-status { grid-column: 1/-1; min-height: 22px; margin: 0; color: var(--cf-green); font-weight: 850; }
.form-trust {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--cf-muted);
  font-size: .84rem;
  font-weight: 750;
}
.form-trust svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  stroke: var(--cf-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* === FAQ === */
.faq-section { background: var(--cf-soft); }
.faq-list { display: grid; gap: 12px; }
details {
  border: 1px solid rgba(10,140,255,.1);
  border-radius: 16px;
  padding: 18px 20px;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
details:hover { transform: translateY(-2px); border-color: rgba(10,140,255,.2); box-shadow: 0 14px 40px rgba(7,26,58,.1); }
details.is-pressed { transform: scale(.992); }
summary {
  cursor: pointer;
  color: var(--cf-navy);
  font-weight: 900;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "";
  display: block;
  width: 18px; height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(10,140,255,.08) url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7l3 3 3-3' stroke='%230a8cff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/14px no-repeat;
  transition: transform .22s cubic-bezier(.22,.68,0,1.28), background-color .18s;
  flex-shrink: 0;
}
details[open] summary { color: var(--cf-blue); }
details[open] summary::after {
  transform: rotate(180deg);
  background-color: rgba(10,140,255,.14);
}
details[open] {
  border-color: rgba(10,140,255,.18);
  background: rgba(255,255,255,1);
}
details p { margin: 14px 0 0; color: var(--cf-muted); padding-top: 14px; border-top: 1px solid rgba(10,140,255,.07); }

/* === FOOTER (garde le foncé) === */
.site-footer {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 44px 0 0;
  background: #0a1222;
  color: rgba(255,255,255,.7);
}
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start; padding-bottom: 36px; }
.footer-brand .brand-mark { filter: drop-shadow(0 6px 14px rgba(10,140,255,.2)); }
.footer-brand .brand-word { color: #fff; }
.footer-brand .brand-word strong { color: #fff; }
.site-footer p { margin: 6px 0 0; color: rgba(255,255,255,.45); font-size: .92rem; }
.footer-email {
  display: inline-block;
  margin-top: 10px;
  color: rgba(10,140,255,.85);
  font-size: .9rem;
  font-weight: 800;
  transition: color .18s;
}
.footer-email:hover { color: var(--cf-blue); }
.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 850;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
}
.site-footer nav a { transition: color .18s; }
.site-footer nav a:hover { color: rgba(255,255,255,.85); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.3);
  font-size: .82rem;
  font-weight: 750;
}
.site-footer nav a { transition: color .18s; }
.site-footer nav a:hover { color: #fff; }

/* === CURSOR GLOW === */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 280px; height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(10,140,255,.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}

/* === FLOATING DOTS (hero) === */
.hero-dots { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-dots span {
  position: absolute;
  border-radius: 999px;
  background: var(--cf-blue);
  opacity: 0;
  animation: dotFloat linear infinite;
}
@keyframes dotFloat {
  0%   { opacity: 0;   transform: translateY(0)       scale(1); }
  10%  { opacity: .35; }
  90%  { opacity: .35; }
  100% { opacity: 0;   transform: translateY(-100px)  scale(.5); }
}

/* === LEGAL PAGES === */
.legal-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 55% 22%, rgba(32,228,255,.08), transparent 32%),
    radial-gradient(ellipse at 84% 24%, rgba(143,49,255,.06), transparent 30%),
    linear-gradient(135deg, #f8fbff, #f0eeff);
}
.legal-wrap { position: relative; z-index: 1; max-width: 940px; }
.legal-wrap h1 { max-width: 940px; }
.legal-note { display: inline-flex; border: 1px solid rgba(10,140,255,.14); border-radius: 14px; padding: 10px 13px; color: var(--cf-muted); background: rgba(255,255,255,.72); font-weight: 800; }
.legal-section { background: var(--cf-soft); }
.legal-grid { display: grid; grid-template-columns: 320px 1fr; gap: 28px; align-items: start; }
.legal-summary, .legal-content article { border: 1px solid rgba(10,140,255,.1); border-radius: 18px; background: #fff; box-shadow: var(--shadow-card); }
.legal-summary { position: sticky; top: 102px; padding: 26px; }
.legal-summary h2, .legal-content h2 { margin-bottom: 12px; color: var(--cf-navy); font-size: 1.3rem; }
.legal-content h3 { margin-bottom: 10px; color: var(--cf-navy); font-size: 1.05rem; font-weight: 900; }
.legal-summary p, .legal-content p { color: var(--cf-muted); }
.legal-content { display: grid; gap: 16px; }
.legal-content article { padding: 26px; }
.legal-content a { color: var(--cf-blue); font-weight: 900; }
.legal-checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.legal-checklist span { border: 1px solid rgba(10,140,255,.1); border-radius: 14px; padding: 12px 13px; color: var(--cf-navy); background: var(--cf-soft); font-weight: 850; }

/* === RESPONSIVE === */

/* Prevent horizontal scroll on all screens */
html, body { overflow-x: hidden; }

/* iOS fix — font-size < 16px triggers zoom on input focus */
.audit-form input:not([type="checkbox"]),
.audit-form select { font-size: max(1rem, .95rem); }

/* Disable cursor glow on touch devices — no mouse cursor */
@media (hover: none) and (pointer: coarse) {
  .cursor-glow { display: none !important; }
}

/* === 980px — Tablet / small laptop === */
@media (max-width: 980px) {
  .urgency-scenarios { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Header */
  .header-inner { grid-template-columns: auto auto; }
  .header-cta { display: none; }
  .menu-toggle {
    justify-self: end;
    display: grid; gap: 5px;
    width: 44px; height: 44px;
    place-content: center;
    border: 1px solid var(--cf-line);
    border-radius: 8px;
    background: #fff;
  }
  .menu-toggle span { width: 22px; height: 2px; background: var(--cf-navy); border-radius: 2px; }
  .site-nav {
    position: fixed;
    left: 16px; right: 16px; top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--cf-line);
    border-radius: 12px;
    padding: 8px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow-strong);
    z-index: 39;
  }
  .site-nav a {
    padding: 14px 12px;
    font-size: 1rem;
    border-radius: 8px;
    border-bottom: 1px solid rgba(10,140,255,.06);
  }
  .site-nav a:last-child { border-bottom: 0; }
  body.menu-open .site-nav { display: flex; }

  /* Layout */
  .hero { min-height: auto; }
  .hero-grid, .split, .mission-card, .legal-grid, .footer-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo-wrap { max-width: 300px; margin: 0 auto; }
  .legal-summary { position: static; }
  .service-grid, .plans-grid, .trust-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .audit-form { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .plans-grid { align-items: stretch; }
}

/* === 640px — Phone landscape / large phone === */
@media (max-width: 640px) {
  /* Spacing */
  .section { padding: 60px 0; }
  .urgency-band { padding: 48px 0; }
  .cta-section { padding-top: 36px; }
  .stats-band { padding: 18px 0; }
  .wrap { width: min(100% - 28px, var(--wrap)); }

  /* Typography */
  h1 { font-size: clamp(28px, 9vw, 38px); line-height: 1.06; }
  h2 { font-size: clamp(22px, 6.5vw, 32px); }
  .lead { font-size: 1rem; }
  .eyebrow { font-size: .74rem; }

  /* Brand */
  .brand { max-width: calc(100vw - 104px); }
  .brand-mark { width: 40px; height: 40px; }
  .brand-word { font-size: 1.22rem; }

  /* Hero */
  .hero-shield { opacity: .04; }
  .hero-grid { gap: 28px; }
  .hero-visual { min-height: auto; }
  .hero-chat { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .button { width: 100%; min-height: 52px; justify-content: center; }
  .trust-row { gap: 7px; }
  .trust-row span { font-size: .8rem; padding: 7px 10px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stats-grid > div { padding: 16px 10px; }

  /* Cards */
  .family-card, .cta-card, .mission-card { padding: 20px; }
  .plan-card { min-height: unset; }
  .plan-card.featured { box-shadow: var(--shadow-strong); }
  .price { font-size: 2.4rem; }
  .badge { font-size: .76rem; padding: 5px 9px; }

  /* Grids — single column */
  .service-grid, .plans-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .urgency-list, .mini-dashboard, .stat-row, .mission-points { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .legal-checklist { grid-template-columns: 1fr; }
  .family-card-head { display: grid; justify-content: start; }
  .family-card-head img { width: 190px; height: 58px; }

  /* Urgency */
  .urgency-grid { gap: 28px; }
  .urgency-scenario { padding: 18px; gap: 10px; }
  .scenario-top { flex-wrap: wrap; gap: 6px; }

  /* Chat widget */
  .chat-messages { max-height: 240px; overflow-y: auto; }
  .msg { font-size: .9rem; max-width: 90%; }

  /* Audit preview */
  .audit-preview-footer { grid-template-columns: repeat(3, 1fr); }
  .audit-item { padding: 11px 16px; gap: 10px; }

  /* Founder */
  .founder-photo-wrap { max-width: 220px; margin: 0 auto; }
  .founder-creds { gap: 6px; }
  .founder-creds span { font-size: .8rem; padding: 5px 10px; }
  .founder-mission { padding: 16px; }

  /* Form */
  .avail-options { gap: 6px; }
  .audit-form .check-inline { font-size: .84rem; padding: 8px 12px 8px 8px; }

  /* Legal */
  .legal-grid { grid-template-columns: 1fr; }
  .legal-content article { padding: 20px; }
  .legal-note { font-size: .84rem; }

  /* Footer */
  .site-footer { padding-top: 32px; }
  .footer-grid { gap: 24px; }
  .site-footer nav { flex-direction: column; gap: 8px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 4px; font-size: .78rem; }
}

/* === 480px — Phone portrait === */
@media (max-width: 480px) {
  /* Spacing */
  .section { padding: 48px 0; }
  .cta-section { padding-top: 28px; }

  /* Typography */
  h1 { font-size: 27px; }
  h2 { font-size: 21px; }
  h3 { font-size: 1rem; }

  /* Layout — full single column */
  .steps { grid-template-columns: 1fr; }
  .urgency-scenarios { grid-template-columns: 1fr; }

  /* CTA card */
  .cta-card { padding: 20px 16px; }

  /* Stats */
  .stats-grid strong { font-size: 1.35rem; }
  .stats-grid span { font-size: .8rem; }

  /* Urgency pills */
  .scenario-pill { font-size: .68rem; height: 22px; padding: 0 8px; }
  .scenario-delay { font-size: .74rem; }

  /* Chat */
  .chat-header { padding: 12px 14px; gap: 10px; }
  .chat-messages { padding: 12px; }
  .chat-footer { padding: 10px 14px; }
  .msg { font-size: .86rem; padding: 9px 11px; }

  /* Audit preview */
  .audit-preview-header { padding: 12px 14px; gap: 10px; }
  .audit-label { font-size: .84rem; }

  /* Form */
  .form-trust { font-size: .78rem; }
  .avail-group { padding: 14px 0 2px; }

  /* Hero actions */
  .hero-actions .button { min-height: 54px; font-size: .95rem; }

  /* Founder badge */
  .founder-badge { padding: 6px 10px; font-size: .78rem; }
  .founder-badge img { width: 20px; height: 20px; }
}

/* === 380px — Very small phones (iPhone SE, etc.) === */
@media (max-width: 380px) {
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  .trust-row span { font-size: .74rem; padding: 6px 8px; gap: 3px; }
  .trust-row span svg { display: none; }
  .stats-grid strong { font-size: 1.2rem; }
  .stats-grid span { font-size: .76rem; }
  .hero-actions .button { font-size: .88rem; padding: 11px 16px; }
  .brand-word { font-size: 1.12rem; }
  .brand-mark { width: 36px; height: 36px; }
  .urgency-scenario p { font-size: .84rem; }
  .msg { font-size: .82rem; max-width: 94%; }
}

/* === KEYFRAMES === */
@keyframes bgOrbs {
  0%, 100% { opacity: 1; }
  50%       { opacity: .8; }
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(24px,-16px) scale(1.05); }
  66%      { transform: translate(-16px,12px) scale(.97); }
}
@keyframes guardianPulse {
  0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: .4; }
  50%      { transform: translate3d(-18px,20px,0) scale(1.08); opacity: .58; }
}
@keyframes signalMove {
  0%, 100% { transform: scaleX(.72); opacity: .44; }
  50%      { transform: scaleX(1);   opacity: .9; }
}
@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
@keyframes consoleSweep {
  0%, 48%, 100% { transform: translateX(-75%); }
  72%           { transform: translateX(75%); }
}
@keyframes consoleTile {
  0%, 100% { transform: scale(.82); opacity: .45; }
  45%      { transform: scale(1);   opacity: 1; }
}
@keyframes heartbeatFlow {
  0%   { stroke-dashoffset: 430; opacity: 0; }
  8%   { opacity: .95; }
  82%  { opacity: .95; }
  100% { stroke-dashoffset: -110; opacity: 0; }
}
@keyframes alarmPulse {
  0%, 100% { transform: scale(.9); opacity: .72; }
  50%      { transform: scale(1);  opacity: 1; }
}
@keyframes queueFill {
  0%, 100% { transform: scaleX(.92); opacity: .78; }
  50%      { transform: scaleX(1);   opacity: 1; }
}

/* === HERO CHAT WIDGET === */
.hero-chat {
  position: relative;
  border: 1px solid rgba(10,140,255,.16);
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  box-shadow:
    0 2px 0 rgba(255,255,255,.95) inset,
    0 24px 64px rgba(7,26,58,.11),
    0 8px 24px rgba(10,140,255,.1);
  backdrop-filter: blur(40px) saturate(160%);
  -webkit-backdrop-filter: blur(40px) saturate(160%);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .35s cubic-bezier(.22,.68,0,1.2), box-shadow .35s ease;
}
.hero-chat::before {
  content: "";
  position: absolute;
  left: 20px; right: 20px; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10,140,255,.45), transparent);
  pointer-events: none;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px 14px;
  border-bottom: 1px solid rgba(10,140,255,.09);
  background: rgba(245,249,252,.7);
}
.chat-avatar {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(10,140,255,.18);
  box-shadow: 0 4px 12px rgba(10,140,255,.18);
}
.chat-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.chat-avatar-fallback {
  width: 100%; height: 100%;
  display: grid;
  place-items: center;
  background: var(--cf-gradient-action);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
}
.chat-info { flex: 1; }
.chat-info strong {
  display: block;
  color: var(--cf-navy);
  font-size: .95rem;
  font-weight: 900;
  line-height: 1.2;
}
.chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--cf-muted);
  font-size: .82rem;
  font-weight: 750;
}
.chat-status em {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cf-green);
  box-shadow: 0 0 0 3px rgba(20,184,122,.18), 0 0 10px rgba(20,184,122,.4);
  animation: statusPulse 2.4s ease-in-out infinite;
  font-style: normal;
}

.chat-badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--cf-gradient-action);
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(10,140,255,.18);
}

.chat-messages {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  min-height: 220px;
}
.msg {
  max-width: 82%;
  padding: 11px 15px;
  border-radius: 16px;
  font-size: .93rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s cubic-bezier(.22,.68,0,1.2);
}
.msg.visible {
  opacity: 1;
  transform: translateY(0);
}
.msg.client {
  justify-self: end;
  background: var(--cf-gradient-action);
  color: #fff;
  border-bottom-right-radius: 5px;
  box-shadow: 0 6px 18px rgba(10,140,255,.2);
}
.msg.advisor {
  justify-self: start;
  background: var(--cf-soft2);
  color: var(--cf-navy);
  border: 1px solid rgba(10,140,255,.1);
  border-bottom-left-radius: 5px;
}
.msg.typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 18px;
  min-width: 62px;
}
.msg.typing span {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cf-muted);
  animation: typingDot 1.3s ease-in-out infinite;
}
.msg.typing span:nth-child(2) { animation-delay: .18s; }
.msg.typing span:nth-child(3) { animation-delay: .36s; }

.chat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 18px 16px;
  border-top: 1px solid rgba(10,140,255,.09);
  flex-wrap: wrap;
}

.ticket-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(10,140,255,.14);
  border-radius: 10px;
  padding: 7px 12px;
  background: var(--cf-soft);
  color: var(--cf-muted);
  font-size: .84rem;
  font-weight: 750;
}
.ticket-tag em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 7px;
  border-radius: 6px;
  background: var(--cf-blue);
  color: #fff;
  font-style: normal;
  font-weight: 900;
  font-size: .75rem;
  letter-spacing: .04em;
}

.response-note {
  color: var(--cf-muted);
  font-size: .84rem;
  font-weight: 750;
}
.response-note strong { color: var(--cf-blue); }

@keyframes statusPulse {
  0%, 100% { transform: scale(.9); opacity: .8; }
  50%       { transform: scale(1.1); opacity: 1; }
}
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: .45; }
  30%            { transform: translateY(-5px); opacity: 1; }
}

/* === TESTIMONIALS === */
.testimonials-section {
  background: var(--cf-soft2);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  position: relative;
  border: 1px solid rgba(10,140,255,.1);
  border-radius: 20px;
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 18px; right: 22px;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(10,140,255,.1);
  font-family: Georgia, serif;
  font-weight: 900;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(10,140,255,.18);
  box-shadow: 0 20px 54px rgba(7,26,58,.1), 0 6px 20px rgba(10,140,255,.09);
}
.testimonial-stars {
  margin-bottom: 14px;
  color: var(--cf-warning);
  font-size: 1rem;
  letter-spacing: .06em;
}
.testimonial-quote {
  margin: 0 0 20px;
  color: var(--cf-ink);
  font-size: .97rem;
  line-height: 1.6;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  display: grid;
  width: 42px; height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color, var(--cf-blue));
  font-weight: 900;
  font-size: .88rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.testimonial-author strong { display: block; color: var(--cf-navy); font-size: .93rem; line-height: 1.2; }
.testimonial-author span   { display: block; color: var(--cf-muted); font-size: .82rem; font-weight: 750; }

/* === FOUNDER SECTION === */
.founder-section {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.founder-shield-bg {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  object-fit: contain;
  opacity: .04;
  pointer-events: none;
  filter: saturate(0);
}
.founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 64px;
}
.founder-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.founder-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(32,228,255,.14), transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(164,59,255,.1), transparent 55%);
  filter: blur(28px);
  pointer-events: none;
}
.founder-photo {
  position: relative;
  width: 320px; height: 320px;
  border-radius: 28px;
  overflow: hidden;
  border: 3px solid rgba(10,140,255,.15);
  box-shadow:
    0 2px 0 rgba(255,255,255,.9) inset,
    0 32px 80px rgba(7,26,58,.14),
    0 10px 32px rgba(10,140,255,.12);
}
.founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.founder-photo-fallback {
  width: 100%; height: 100%;
  display: grid;
  place-items: center;
  background: var(--cf-gradient-action);
  color: #fff;
  font-size: 5rem;
  font-weight: 900;
}
.founder-badge {
  position: absolute;
  bottom: 18px; right: -18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(10,140,255,.14);
  border-radius: 14px;
  padding: 10px 14px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(7,26,58,.12);
  white-space: nowrap;
  font-size: .88rem;
  font-weight: 900;
  color: var(--cf-navy);
}
.founder-badge img {
  width: 22px; height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}
.founder-badge span { color: var(--cf-navy); }

.founder-copy .eyebrow { margin-bottom: 10px; }
.founder-copy h2 { margin-bottom: 18px; }
.founder-lead {
  max-width: 540px;
  margin-bottom: 24px;
  color: var(--cf-muted);
  font-size: 1.08rem;
  line-height: 1.65;
}
.founder-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.founder-creds span {
  border: 1px solid rgba(10,140,255,.14);
  border-radius: 12px;
  padding: 8px 13px;
  background: var(--cf-soft);
  color: var(--cf-navy);
  font-weight: 850;
  font-size: .88rem;
  transition: border-color .2s, background .2s, transform .2s;
}
.founder-creds span:hover {
  border-color: rgba(10,140,255,.28);
  background: #fff;
  transform: translateY(-2px);
}

/* === RESPONSIVE: new sections === */
@media (max-width: 980px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-grid { grid-template-columns: 1fr; text-align: center; }
  .founder-photo-wrap { justify-content: center; }
  .founder-photo { width: 260px; height: 260px; }
  .founder-badge { right: 0; }
  .founder-lead { margin-inline: auto; }
  .founder-creds { justify-content: center; }
}
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-chat { border-radius: 18px; }
  .founder-photo { width: 220px; height: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-word { opacity: 1 !important; transform: none !important; animation: none !important; }
  .cursor-glow { display: none; }
  .msg { opacity: 1 !important; transform: none !important; }
}
