:root {
  --bg: #05070f;
  --bg-soft: #090f1d;
  --surface: #0d1528;
  --surface-2: #101b33;
  --line: rgba(250, 204, 21, 0.24);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f9fafb;
  --muted: #acb2c0;
  --accent: #facc15;
  --accent-2: #ffe66d;
  --accent-3: #ffb703;
  --success: #a3e635;
  --danger: #fb7185;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
  --fs-xs:   0.72rem;
  --fs-sm:   0.82rem;
  --fs-base: 0.92rem;
  --fs-md:   1.05rem;
  --fs-lg:   1.3rem;
  --fs-xl:   2.2rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  background: radial-gradient(circle at 14% -12%, #1e2c4e 0%, rgba(30, 44, 78, 0) 48%), var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: clip;
}

main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-bottom: 4rem;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 78%);
  z-index: -3;
}

.bg-orb {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -2;
  pointer-events: none;
}

.orb-a {
  top: -10rem;
  left: -8rem;
  background: rgba(250, 204, 21, 0.18);
}

.orb-b {
  right: -8rem;
  top: 16rem;
  background: rgba(255, 183, 3, 0.12);
}

.container {
  width: min(1180px, 94vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(4, 6, 12, 0.72);
}

.nav-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  text-decoration: none;
  color: inherit;
}

.brand-wordmark {
  display: block;
  width: 150px;
  max-width: 48vw;
  height: auto;
}

.brand-name {
  margin: 0;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-sub {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: var(--fs-base);
  transition: color 0.18s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-more {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-more-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: var(--fs-base);
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  transition: color 0.18s ease;
  white-space: nowrap;
}

.nav-more-btn:hover,
.nav-more.open .nav-more-btn {
  color: var(--text);
}

.nav-more-drop {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  background: rgba(9, 14, 25, 0.97);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 0.4rem 0;
  min-width: 160px;
  backdrop-filter: blur(12px);
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.nav-more.open .nav-more-drop {
  display: flex;
  flex-direction: column;
}

.nav-more-login {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 1rem;
  color: var(--muted) !important;
  text-decoration: none;
  font-size: var(--fs-sm);
  transition: color 0.15s, background 0.15s;
}

.mobile-menu .nav-more-login {
  padding: 0.75rem 1.5rem;
  font-size: var(--fs-base);
  border-bottom: 1px solid var(--line-soft);
}

.nav-more-login:hover {
  color: var(--accent) !important;
  background: rgba(255,255,255,0.04);
}

.nav-more-login svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.nav-more-drop a {
  padding: 0.55rem 1rem;
  color: var(--muted) !important;
  text-decoration: none;
  font-size: var(--fs-sm);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.nav-more-drop a:hover {
  color: var(--accent) !important;
  background: rgba(255,255,255,0.04);
}

.footer-client-login {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: var(--accent) !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: var(--fs-sm) !important;
  transition: color 0.2s;
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

.footer-client-login svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-solid {
  background: linear-gradient(120deg, var(--accent), var(--accent-3));
  color: #181202;
  box-shadow: 0 10px 24px rgba(250, 204, 21, 0.28);
  padding: 0.78rem 1.2rem;
}

.btn-outline {
  background: transparent;
  color: var(--accent-2);
  border-color: rgba(250, 204, 21, 0.42);
  padding: 0.78rem 1.2rem;
}

.btn-ghost {
  color: var(--accent-2);
  border-color: rgba(250, 204, 21, 0.4);
  padding: 0.62rem 1rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.2rem;
  padding: 5.2rem 0 3.6rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: var(--fs-sm);
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero h1 .hero-title-main {
  color: var(--text) !important;
  display: block;
  margin-top: 0;
}

.hero h1 .hero-title-accent {
  color: var(--accent) !important;
  display: block;
  margin-top: 0.2em;
}

.hero-copy > p {
  margin: 1rem 0 0;
  font-size: var(--fs-md);
  color: var(--muted);
  max-width: 58ch;
}

.hero-cta {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.quick-metrics {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.quick-metrics li {
  padding: 0.9rem 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  background: linear-gradient(145deg, rgba(16, 24, 44, 0.85), rgba(10, 16, 30, 0.75));
}

.quick-metrics strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  color: var(--accent-2);
}

.quick-metrics span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: var(--fs-sm);
}

.hero-visual {
  position: relative;
  min-height: 600px;
  border-radius: 26px;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.halo {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.24), rgba(250, 204, 21, 0));
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.globe-wrap {
  position: absolute;
  width: 391px;
  height: 391px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.globe-core,
.globe-ring,
.globe-grid {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.globe-core {
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.25) 1px, transparent 2px),
    radial-gradient(circle at 68% 46%, rgba(255, 255, 255, 0.2) 1px, transparent 2px),
    radial-gradient(circle at 40% 68%, rgba(255, 255, 255, 0.2) 1px, transparent 2px),
    radial-gradient(circle at center, rgba(250, 204, 21, 0.2), rgba(12, 18, 34, 0.94));
  background-size: 18px 18px, 22px 22px, 19px 19px, 100% 100%;
  animation: spin 38s linear infinite;
}

.globe-ring {
  border: 1px solid rgba(250, 204, 21, 0.5);
  box-shadow: inset 0 0 60px rgba(250, 204, 21, 0.22);
}

.globe-grid {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0, rgba(255, 255, 255, 0.07) 1px, transparent 1px, transparent 26px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.07) 0, rgba(255, 255, 255, 0.07) 1px, transparent 1px, transparent 26px);
  mix-blend-mode: screen;
  opacity: 0.45;
  animation: spinReverse 52s linear infinite;
}

.threat,
.patch {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.threat {
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55);
  animation: threatBlink 1.6s infinite;
}

.patch {
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  animation: patchPulse 2.4s infinite;
  animation-delay: 0.8s;
}

.threat-1 { top: 78px; left: 88px; }
.threat-2 { top: 138px; right: 74px; animation-delay: 0.45s; }
.threat-3 { bottom: 82px; left: 168px; animation-delay: 0.9s; }
.threat-4 { top: 220px; right: 92px; animation-delay: 0.3s; }
.threat-5 { bottom: 122px; right: 136px; animation-delay: 1.1s; }
.patch-1 { top: 210px; left: 104px; }
.patch-2 { top: 92px; right: 126px; animation-delay: 1.2s; }

.pulse {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.6);
  animation: ping 2.2s infinite;
}

.pulse-1 { top: 82px; left: 58px; }
.pulse-2 { top: 200px; right: 62px; animation-delay: 0.6s; }
.pulse-3 { bottom: 74px; left: 160px; animation-delay: 1.1s; }

.floating-card {
  position: absolute;
  width: 220px;
  border-radius: 14px;
  border: 1px solid rgba(250, 204, 21, 0.35);
  background: linear-gradient(145deg, rgba(14, 22, 40, 0.94), rgba(10, 16, 30, 0.9));
  padding: 0.75rem 0.85rem;
}

.floating-card p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-2);
  font-size: var(--fs-xs);
}

.floating-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: var(--fs-base);
}

.floating-card span {
  display: block;
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: var(--fs-sm);
}

.card-kpis {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.55rem;
}

.card-kpi strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: var(--fs-lg);
  margin: 0;
}

.kpi-yellow { color: var(--accent-2); }
.kpi-red    { color: #f87171; }
.kpi-green  { color: #86efac; }

.card-kpi span {
  display: block;
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: var(--fs-xs);
  line-height: 1.3;
}

.state-alert {
  color: #f87171;
  font-style: normal;
}

.state-patch {
  color: #86efac;
  font-style: normal;
}

.state-feed {
  margin-top: 0.45rem;
  display: grid;
  gap: 0.24rem;
}

.state-feed i {
  font-style: normal;
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.state-feed i:first-child {
  color: #fca5a5;
}

.state-feed i:last-child {
  color: #86efac;
}

.card-a {
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
}

.sample-peek {
  padding-top: 0.5rem;
}

.sample-card {
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 20px;
  padding: 1.4rem;
  background: linear-gradient(145deg, rgba(14, 22, 40, 0.65), rgba(9, 14, 24, 0.52));
}

/* Report banner */
.rpt-banner {
  padding: 0.65rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(251, 113, 133, 0.35);
  background: linear-gradient(90deg, rgba(251, 113, 133, 0.14), rgba(251, 113, 133, 0.07));
  color: #fca5a5;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Metrics row */
.rpt-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.rpt-metric {
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 10px;
  padding: 0.9rem 1rem;
}

.rpt-metric-label {
  margin: 0;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.rpt-metric-value {
  margin: 0.35rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.rpt-label-fail { color: #fb7185; font-weight: 700; }
.rpt-label-pass { color: #86efac; font-weight: 700; }
.rpt-val-fail   { color: #fb7185; }
.rpt-val-pass   { color: #86efac; }
.score-critical { color: #fb7185; }

/* Findings accordions */
.rpt-findings-wrap {
  position: relative;
}

.rpt-findings-list .rpt-finding-extra {
  display: none;
}

.rpt-finding {
  background: rgba(10, 15, 28, 0.82);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  margin-bottom: 0.6rem;
  overflow: hidden;
}

.rpt-finding[open] {
  border-color: rgba(255, 255, 255, 0.18);
}

.rpt-finding-header {
  padding: 0.9rem 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-size: var(--fs-base);
  font-weight: 600;
  gap: 1rem;
}

.rpt-finding-header::-webkit-details-marker { display: none; }
.rpt-finding-header:hover { background: rgba(255,255,255,0.02); }

.rpt-tag {
  flex-shrink: 0;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.rpt-tag-fail {
  background: rgba(251, 113, 133, 0.14);
  color: #fb7185;
  border: 1px solid rgba(251, 113, 133, 0.28);
}

.rpt-tag-pass {
  background: rgba(52, 211, 153, 0.14);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.28);
}

.rpt-finding-body {
  padding: 1rem 1rem 1.1rem;
  border-top: 1px solid var(--line-soft);
  background: rgba(0,0,0,0.22);
}

.rpt-finding-label {
  margin: 0 0 0.4rem;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}

.rpt-code {
  background: #000;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  font-size: var(--fs-sm);
  color: #dce7ff;
  line-height: 1.55;
  white-space: normal;
  word-wrap: break-word;
}

.rpt-code-danger {
  border-left: 3px solid #fb7185;
  color: #ffd5d5;
}

.rpt-finding-note {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem 0.75rem 1rem;
  background: rgba(251, 113, 133, 0.08);
  border: 1px solid rgba(251, 113, 133, 0.28);
  border-left: 3px solid #fb7185;
  border-radius: 8px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #fca5a5;
  line-height: 1.55;
}

/* Fade + toggle */
.rpt-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 100px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(8, 12, 22, 0.97));
}

.rpt-toggle-btn {
  display: block;
  width: fit-content;
  margin: 0.75rem auto 0;
  padding: 0.55rem 1.6rem;
  background: transparent;
  border: 1px solid rgba(255, 230, 109, 0.22);
  border-radius: 10px;
  color: var(--accent-2);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.75;
  transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.rpt-toggle-btn:hover {
  background: rgba(255, 230, 109, 0.06);
  border-color: rgba(255, 230, 109, 0.45);
  opacity: 1;
}

section {
  margin: 0 auto;
}

.section-head h2 {
  margin: 0.24rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 2.7vw, 2.3rem);
  letter-spacing: -0.02em;
}

.section-head.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: end;
}

.section-head.split > p {
  margin: 0;
  color: var(--muted);
}

.trust {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: rgba(10, 15, 26, 0.7);
}

.trust > p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-base);
}

.trust-logos {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.6rem;
}

.trust-logos span {
  border-radius: 10px;
  padding: 0.58rem 0.64rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #d3d8e1;
  font-size: var(--fs-sm);
}

.service-grid,
.proof-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid article,
.proof-grid article {
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(140deg, rgba(13, 21, 40, 0.92), rgba(9, 14, 25, 0.9));
  padding: 1rem;
}

.service-grid h3,
.proof-grid h3 {
  margin: 0;
  font-size: var(--fs-md);
}

.service-grid p,
.proof-grid p {
  margin: 0.46rem 0 0;
  color: var(--muted);
  font-size: var(--fs-base);
}

.service-grid ul {
  margin: 0.7rem 0 0;
  padding-left: 1rem;
  color: #d9deea;
}

.service-grid li {
  margin-bottom: 0.38rem;
  font-size: var(--fs-sm);
}

.kicker {
  margin: 0;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-2);
}

.pipeline-card .kicker {
  color: var(--accent-2) !important;
  opacity: 1;
  text-align: center;
  justify-self: center;
}

.story-strip {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.story-tile {
  border-radius: 16px;
  border: 1px solid rgba(250, 204, 21, 0.25);
  background: linear-gradient(160deg, rgba(13, 21, 40, 0.95), rgba(9, 14, 25, 0.88));
  padding: 1.6rem 1.5rem;
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.1rem;
  row-gap: 0.35rem;
  align-items: center;
}

.story-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 52px;
  height: 52px;
  color: var(--accent-2);
  flex-shrink: 0;
  align-self: center;
}

.story-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.story-tag {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fg);
}

.story-tile h3 {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: var(--fs-base);
  line-height: 1.45;
  color: var(--muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.story-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.8rem;
  background: rgba(250, 204, 21, 0.06);
  border: 1px solid rgba(250, 204, 21, 0.18);
  border-radius: 8px;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.01em;
}

.story-stat-arrow {
  color: var(--success);
  font-size: 0.75rem;
}

.story-quote {
  margin: auto 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line-soft);
}

.story-quote p {
  margin: 0;
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--muted);
  line-height: 1.55;
}

.story-quote footer {
  margin-top: 0.45rem;
  font-size: var(--fs-xs);
  color: var(--muted);
  font-weight: 500;
  font-style: normal;
}

#services {
  margin-top: 2.5rem;
}

.visual-pipeline {
  margin-top: 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(250, 204, 21, 0.22);
  background: linear-gradient(145deg, rgba(14, 22, 40, 0.65), rgba(9, 14, 24, 0.52));
  padding: 0.5rem 1.2rem;
  display: flex;
  flex-direction: column;
}

.pipeline-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.4rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(250, 204, 21, 0.12);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pipeline-card.step-in {
  opacity: 1;
  transform: translateY(0);
}

.pipeline-card:last-child {
  border-bottom: none;
}

.pipeline-head {
  display: contents;
}

.pipeline-card .kicker {
  grid-column: 1;
  grid-row: 1 / 3;
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  align-self: center;
  min-width: 2.8rem;
}

.pipeline-card h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: var(--fs-md);
  align-self: end;
}

.pipeline-card p {
  grid-column: 2;
  grid-row: 2;
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: var(--fs-base);
  line-height: 1.5;
}

.attack-radar {
  margin-top: 0.9rem;
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  background: rgba(10, 15, 26, 0.72);
  padding: 0.95rem;
}

.radar-row {
  display: grid;
  grid-template-columns: 170px 1fr 42px;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.52rem;
}

.radar-row:last-child {
  margin-bottom: 0;
}

.radar-row span {
  font-size: var(--fs-sm);
  color: #e2e6ef;
}

.radar-row div {
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.radar-row b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(120deg, var(--accent), var(--accent-3));
}

.radar-row em {
  font-style: normal;
  font-family: "Sora", sans-serif;
  color: var(--accent-2);
  font-size: var(--fs-sm);
}

.runline {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.runline article {
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: rgba(12, 18, 33, 0.82);
  padding: 0.8rem;
  text-align: center;
}

.runline span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  color: #191202;
  background: linear-gradient(120deg, var(--accent), var(--accent-3));
  font-family: "Sora", sans-serif;
}

.runline p {
  margin: 0.42rem 0 0;
  color: #e2e6ef;
  font-size: var(--fs-base);
}

/* Results carousel */
.results-carousel-wrap {
  position: relative;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(250, 204, 21, 0.12);
  border-radius: 16px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(250, 204, 21, 0.35);
  background: rgba(9, 14, 25, 0.9);
  color: var(--accent-2);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s, opacity 0.2s;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.results-carousel-wrap:hover .carousel-arrow {
  opacity: 1;
  pointer-events: auto;
}

.carousel-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(250, 204, 21, 0.1);
}

.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

.results-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.results-carousel::before,
.results-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 5;
  pointer-events: none;
}

.results-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.results-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.results-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  align-items: stretch;
  will-change: transform;
}

.result-card {
  flex: 0 0 300px; /* overridden by JS */
  border-radius: 16px;
  border: 1px solid rgba(250, 204, 21, 0.25);
  background: linear-gradient(145deg, rgba(14, 22, 40, 0.65), rgba(9, 14, 24, 0.52));
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
}

.rc-top {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
}

.rc-company-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  margin-bottom: 0.15rem;
}

.rc-attribution {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.rc-attribution strong {
  font-size: var(--fs-xs);
  font-weight: 400;
  color: var(--muted);
  opacity: 0.7;
}

.rc-company {
  margin: 0;
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rc-tag {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--muted);
  background: transparent;
  border: none;
  padding: 0;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0;
}

.rc-stats {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line-soft);
  margin-top: auto;
}

.rc-kpi-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #86efac;
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.rc-after {
  font-size: 2.8rem;
  font-weight: 700;
  color: #86efac;
  line-height: 1;
  letter-spacing: -0.02em;
}

.rc-stat-label {
  font-size: var(--fs-xs);
  color: var(--muted);
  opacity: 0.7;
  line-height: 1.3;
  margin-top: 0.15rem;
}

.rc-finding {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 1.1rem;
}

.rc-quote {
  margin-top: 0;
  padding-top: 0;
}

.rc-quote--solo {
  border-top: none;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rc-stars {
  margin: 0;
  color: var(--accent-2);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
  opacity: 0.85;
}

.rc-quote-text {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.rc-person {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  margin-top: 0;
}

.rc-person strong {
  display: block;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.rc-person span {
  display: block;
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-top: 0.06rem;
}

/* ── Models marquee ── */
.models-band {
  padding: 1.5rem 0 0;
}

.models-marquee-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(250, 204, 21, 0.12);
}

.models-marquee-wrap::before,
.models-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
  border-radius: 16px;
}
.models-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, rgba(5,7,15,0.95), transparent);
}
.models-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, rgba(5,7,15,0.95), transparent);
}

.models-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
  align-items: center;
  padding: 0.75rem 1rem;
}

.model-logo-pill {
  flex-shrink: 0;
  height: 70px;
  padding: 0 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(250, 204, 21, 0.18);
  background: linear-gradient(145deg, rgba(14, 22, 40, 0.65), rgba(9, 14, 24, 0.52));
}

.model-logo-pill img {
  height: 30px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  opacity: 0.72;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}

.model-logo-pill:hover img {
  opacity: 1;
}

/* Gemini: PNG has offset whitespace — nudge down to visually center */
.model-logo-pill:nth-child(3) img,
.model-logo-pill:nth-child(13) img { object-position: center 60%; }

/* Copilot: PNG has large transparent padding — scale up to fill pill */
.model-logo-pill:nth-child(4) img,
.model-logo-pill:nth-child(14) img { max-width: 160px; height: 42px; }

/* ── end models marquee ── */

.who {
  margin-top: -2.5rem;
}

.case-band {
  background: transparent;
  padding-top: 1.75rem;
}

.review-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  color: #f8fbff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
}

.avatar-a { background: linear-gradient(140deg, #3b82f6, #1e3a8a); }
.avatar-b { background: linear-gradient(140deg, #2563eb, #0f766e); }
.avatar-c { background: linear-gradient(140deg, #1d4ed8, #1e40af); }
.avatar-d { background: linear-gradient(140deg, #334155, #0f172a); }
.avatar-e { background: linear-gradient(140deg, #0f766e, #115e59); }
.avatar-f { background: linear-gradient(140deg, #475569, #1e293b); }

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.kpi-strip article {
  border-radius: 14px;
  border: 1px solid rgba(250, 204, 21, 0.25);
  background: rgba(250, 204, 21, 0.06);
  padding: 0.82rem;
}

.kpi-strip span {
  font-family: "Sora", sans-serif;
  color: var(--accent-2);
  font-size: var(--fs-lg);
  display: block;
}

.kpi-strip p {
  margin: 0.3rem 0 0;
  color: #e2e6ef;
  font-size: var(--fs-sm);
}

.timeline {
  margin: 1.1rem 0 0;
  list-style: none;
  padding: 0;
  border-left: 1px solid rgba(250, 204, 21, 0.35);
}

.timeline li {
  margin-left: 1rem;
  margin-bottom: 1rem;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: rgba(12, 18, 33, 0.82);
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -1.42rem;
  top: 1rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(250, 204, 21, 0.17);
}

.timeline span {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  color: #191202;
  background: linear-gradient(120deg, var(--accent), var(--accent-3));
}

.timeline h3 {
  margin: 0;
  font-size: var(--fs-md);
}

.timeline p {
  margin: 0.36rem 0 0;
  color: var(--muted);
  font-size: var(--fs-base);
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(250, 204, 21, 0.25);
  background: linear-gradient(145deg, rgba(14, 22, 40, 0.65), rgba(9, 14, 24, 0.52));
  align-items: center;
}

.contact-wrap .cta-kicker {
  margin: 0 0 1rem;
}

.contact-wrap {
  padding-top: 1.75rem;
}

.cta h2 {
  margin: 0.24rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  letter-spacing: -0.02em;
  max-width: none;
}

.cta p {
  color: var(--muted);
  max-width: none;
  white-space: nowrap;
}

.cta .cta-kicker {
  color: var(--accent-2);
  font-weight: 800;
}

.cta-form {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 1.4rem 0 2rem;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .site-footer-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .site-footer-links {
    justify-content: center;
    gap: 1rem;
  }
}

.site-footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-footer-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-sm);
}

.site-footer-location {
  color: var(--muted);
  font-size: var(--fs-sm);
  opacity: 0.65;
}

.site-footer a {
  color: var(--accent);
  font-weight: 700;
  text-decoration-color: rgba(250, 204, 21, 0.75);
}

.site-footer a:hover {
  color: var(--accent-2);
  text-decoration-color: var(--accent-2);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  background: rgba(10, 15, 28, 0.82);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(255, 255, 255, 0.18);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--text);
  cursor: pointer;
  list-style: none;
  gap: 1rem;
}

.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { background: rgba(255,255,255,0.02); }

.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-item[open] .faq-q {
  color: var(--accent);
}

.faq-a {
  padding: 1rem;
  border-top: 1px solid var(--line-soft);
  background: rgba(0,0,0,0.22);
}

.faq-a p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-base);
  line-height: 1.7;
}

.faq-a strong {
  color: var(--text);
  font-weight: 600;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--surface-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  max-width: 640px;
  width: calc(100% - 2rem);
  box-shadow: var(--shadow);
  z-index: 9999;
}
.cookie-banner p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}
.cookie-banner a {
  color: var(--accent);
  text-decoration-color: rgba(250, 204, 21, 0.5);
}
.cookie-accept {
  flex-shrink: 0;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 0.45rem 1rem;
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-accept:hover {
  background: var(--accent-2);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinReverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.45); }
  80% { box-shadow: 0 0 0 18px rgba(250, 204, 21, 0); }
  100% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0); }
}

@keyframes threatBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
  50% { opacity: 0.35; box-shadow: 0 0 0 14px rgba(239, 68, 68, 0); }
}

@keyframes patchPulse {
  0%, 100% { opacity: 0.7; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  60% { opacity: 1; box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
}

@keyframes reviewsRoll {
  0% { transform: translateX(calc(-50% - 0.45rem)); }
  100% { transform: translateX(0); }
}

@media (max-width: 1024px) {
  .site-header .btn-solid {
    padding: 0.6rem 0.9rem;
    font-size: var(--fs-sm);
    line-height: 1.15;
  }

  .hero,
  .cta,
  .case-shell,
  .section-head.split {
    grid-template-columns: 1fr;
  }

  .cta h2,
  .cta p {
    white-space: normal;
  }

  .cta-form {
    justify-content: center;
    padding-left: 0;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .visual-pipeline {
    grid-template-columns: 1fr;
  }


  .story-strip {
    grid-template-columns: 1fr;
  }

  .trust-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 460px;
  }
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  cursor: pointer;
  padding: 0 9px;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(4, 6, 12, 0.97);
  border-top: 1px solid var(--line-soft);
  padding: 0.5rem 0 1rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: var(--fs-base);
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.15s, background 0.15s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--text); background: rgba(255,255,255,0.03); }

.mobile-menu .mobile-cta {
  margin: 1rem 1.5rem 0;
  text-align: center;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  border-bottom: none;
}

.mobile-menu .mobile-cta:hover { background: var(--accent-2); color: #000; }

@media (max-width: 900px) {
  .nav-links,
  .btn-ghost {
    display: none;
  }

  .carousel-arrow {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-shell {
    min-height: 72px;
    gap: 0.55rem;
  }

  html {
    scroll-padding-top: 72px;
  }

  .brand-wordmark {
    width: 132px;
  }

  .brand-sub {
    display: none;
  }

  .site-header > .nav-shell > .btn-solid {
    display: none;
  }

  .hero {
    padding-top: 2.5rem;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
    line-height: 1.07;
    text-align: center !important;
  }

  .hero-copy {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .hero-copy > p {
    font-size: var(--fs-base);
    text-align: center !important;
  }

  .quick-metrics,
  .trust-logos,
  .proof-grid,
  .story-strip,
  .runline {
    grid-template-columns: 1fr;
  }

  .rpt-metrics {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .hero-title-main {
    white-space: normal !important;
    text-align: center !important;
  }

  .hero-title-accent {
    text-align: center !important;
  }

  .hero-cta {
    display: block !important;
    text-align: center;
  }

  .footer-contact {
    display: block;
    margin-top: 0.2rem;
  }

  /* Mobile order: Total Tests, Security Score (row 1) | Passed, Failed (row 2) */
  .rpt-metrics .rpt-metric:nth-child(1) { order: 1; }
  .rpt-metrics .rpt-metric:nth-child(4) { order: 2; }
  .rpt-metrics .rpt-metric:nth-child(2) { order: 3; }
  .rpt-metrics .rpt-metric:nth-child(3) { order: 4; }


  .radar-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .globe-wrap {
    width: 280px;
    height: 280px;
  }

  .floating-card {
    width: min(170px, 56vw);
    left: 1.5rem !important;
    right: auto !important;
  }

  .floating-card p {
    font-size: 0.58rem;
  }

  .card-kpi strong {
    font-size: 1rem;
  }

  .card-kpi span {
    font-size: 0.65rem;
  }

  .sample-table div {
    grid-template-columns: minmax(154px, 1fr) 108px 96px;
    min-width: 390px;
  }

  /* Section spacing tighter on mobile */
  .services { padding-top: 1.25rem !important; }
  .case-band { padding-top: 1.25rem; }
  .contact-wrap { padding-top: 1.25rem; }
  .sample-peek { padding-top: 0.4rem; }

  /* Models band mobile — one logo at a time */
  .models-band {
    padding: 0.75rem 0 0;
  }

  .models-marquee-wrap::before,
  .models-marquee-wrap::after {
    width: 18vw;
  }

  .models-track {
    gap: 1rem;
    padding: 0.75rem 0.5rem;
  }

  .model-logo-pill {
    height: 100px;
    min-width: 64vw;
    padding: 0 2rem;
  }

  .model-logo-pill img {
    height: 36px;
    max-width: 150px;
  }

  /* Copilot override — keep proportional on mobile */
  .model-logo-pill:nth-child(4) img,
  .model-logo-pill:nth-child(14) img {
    height: 48px;
    max-width: 170px;
  }

  /* Results carousel wrap padding tighter on mobile */
  .results-carousel-wrap {
    padding: 0.4rem;
  }

  .hero-visual {
    min-height: 320px;
    margin-top: 1.5rem;
  }

  /* Fixed mobile black dossier bug */
  body.verify-page {
    background: radial-gradient(circle at 14% -12%, #1e2c4e 0%, rgba(30, 44, 78, 0) 48%), var(--bg) !important;
  }

  .halo {
    width: 320px;
    height: 320px;
  }

  .globe-wrap {
    width: 260px;
    height: 260px;
  }

}

/* ── Latest Insights Homepage Section ── */
.latest-insights {
  padding: 4rem 0 0;
  border-top: 1px solid var(--line-soft);
  margin-top: 2rem !important;
}

.latest-insights-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.latest-insights-head h3 {
  font-family: 'Sora', sans-serif;
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.02em;
}

.view-all-link {
  font-size: var(--fs-sm);
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s ease;
  font-weight: 600;
}

.view-all-link:hover {
  color: var(--accent);
}

.insights-slim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.insight-slim-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(16, 24, 44, 0.4), rgba(10, 16, 30, 0.3));
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.insight-slim-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(250, 204, 21, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s;
}

.insight-slim-card:hover {
  border-color: rgba(250, 204, 21, 0.3);
  transform: translateY(-4px);
  background: rgba(16, 24, 44, 0.6);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.insight-slim-card:hover::before {
  opacity: 1;
}

.insight-slim-card h4 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.4;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.01em;
  transition: color 0.2s;
  z-index: 1;
}

.insight-slim-card:hover h4 {
  color: var(--accent);
}

.insight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  z-index: 1;
}

.insight-slim-card .insight-date {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.insight-read-more {
  font-size: 11px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.2s ease;
}

.insight-slim-card:hover .insight-read-more {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 900px) {
  .insights-slim-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .insights-slim-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .latest-insights {
    padding: 3rem 0 0;
  }
}
