/* ─── Prodigy Solutions ─── */

:root {
  /* Dark theme is default. data-theme="light" override below. */
  --bg: #18130f;
  --bg-2: #1f1813;
  --bg-3: #271f19;
  --line: #2a221c;
  --line-2: #3a2e25;
  --ink: #f1e8de;
  --ink-2: #c9bdaf;
  --ink-3: #8a7d6f;
  --ink-4: #5a5046;
  --accent: #e8685c;
  --accent-2: #f4978d;
  --accent-soft: rgba(232, 104, 92, 0.12);
  --serif: 'Newsreader', 'EB Garamond', Georgia, serif;
  --sans: 'Geist', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono: 'Geist Mono', 'IBM Plex Mono', ui-monospace, monospace;
  --maxw: 1280px;
}

/* ─── Light theme ─── */
/* Same warm/cream palette inverted: ivory bg, charcoal ink, the same red accent. */
:root[data-theme="light"] {
  --bg: #f4ede1;
  --bg-2: #ebe3d3;
  --bg-3: #e2d8c5;
  --line: #d8cdb8;
  --line-2: #c5b9a1;
  --ink: #1a140f;
  --ink-2: #3d342a;
  --ink-3: #6b5f50;
  --ink-4: #8a7d6f;
  --accent: #c4413a;
  --accent-2: #a8332d;
  --accent-soft: rgba(196, 65, 58, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: #fff; }

/* Typography */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.mono { font-family: var(--mono); }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  font-weight: 500;
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 10px;
  vertical-align: 2px;
}
.italic-serif {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; }
h1 { font-size: clamp(38px, 6.4vw, 96px); }
h2 { font-size: clamp(34px, 4.4vw, 64px); }
h3 { font-size: clamp(22px, 2vw, 32px); }

p { text-wrap: pretty; }

/* Layout */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 720px) { .wrap { padding: 0 22px; } }

section { padding: 120px 0; position: relative; }
@media (max-width: 720px) { section { padding: 56px 0; } }
@media (max-width: 480px) { section { padding: 44px 0; } }

.section-hd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.section-hd .hd-l h2 { margin-top: 16px; }
.section-hd .hd-r { color: var(--ink-2); font-size: 17px; max-width: 480px; }
@media (max-width: 860px) {
  .section-hd { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; }
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(24, 19, 15, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
}
.brand .pt { color: var(--accent); margin-left: 1px; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--ink-2); transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-tools { display: flex; gap: 8px; align-items: center; }
.nav-pill {
  border: 1px solid var(--line-2);
  border-radius: 4px;
  width: 38px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--ink-2);
  cursor: pointer;
  background: transparent;
  font-family: var(--sans);
}
.nav-pill:hover { border-color: var(--ink-3); color: var(--ink); }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-inner { padding: 16px 22px; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  background: transparent;
  transition: all .2s;
  font-family: var(--sans);
}
.btn:hover { background: rgba(255,255,255,0.04); border-color: var(--ink-3); }
.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn.primary:hover { background: var(--accent-2); border-color: var(--accent-2); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ── HERO ── */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero h1 .em { font-style: italic; color: var(--accent); }
.hero h1 .em::after { content: '.'; color: var(--accent); }
.hero-sub {
  margin-top: 28px;
  color: var(--ink-2);
  font-size: 18px;
  max-width: 460px;
}
.hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 520px;
}
.hero-meta .m-k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.hero-meta .m-v {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
}
.hero-meta .m-d {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 4px;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 0 64px; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
  .hero-meta .m-v { font-size: 18px; }
  .hero h1 { line-height: 1.08; letter-spacing: -0.018em; }
  .hero-meta .m-v { font-size: 19px; }
}

/* Radar */
.radar-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .radar-wrap { max-width: 360px; }
}
.radar-wrap svg { width: 100%; height: 100%; display: block; }
.radar-sweep {
  animation: sweep 14s linear infinite;
  transform-origin: 250px 250px;
}
@keyframes sweep {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* Each ping fades in only when the sweep line hits it. */
.ping {
  opacity: 0;
  animation: ping-pop 14s linear infinite;
}
.ping .ping-ring {
  opacity: 0;
  animation: ring-pop 14s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.ping .ping-label {
  opacity: 0;
  animation: label-pop 14s linear infinite;
}
@keyframes ping-pop {
  0%    { opacity: 0; }
  0.2%  { opacity: 1; }
  6%    { opacity: 1; }
  20%   { opacity: 0.18; }
  40%   { opacity: 0; }
  100%  { opacity: 0; }
}
@keyframes ring-pop {
  0%    { opacity: 0; transform: scale(0.2); }
  0.5%  { opacity: 0.85; transform: scale(0.6); }
  8%    { opacity: 0.35; transform: scale(2); }
  16%   { opacity: 0; transform: scale(2.6); }
  100%  { opacity: 0; }
}
@keyframes label-pop {
  0%   { opacity: 0; }
  0.5% { opacity: 0.9; }
  18%  { opacity: 0.7; }
  40%  { opacity: 0; }
  100% { opacity: 0; }
}

/* ── STRIP ── */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.strip-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip-cell {
  padding: 28px 32px 28px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.strip-cell:last-child { border-right: none; }
.strip-cell:not(:first-child) { padding-left: 32px; }
.strip-cell .k {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 4px;
}
.strip-cell .v {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.4;
}
@media (max-width: 860px) {
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .strip-cell { padding: 22px 18px; }
  .strip-cell:nth-child(2), .strip-cell:nth-child(4) { border-right: none; }
  .strip-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .strip-inner { grid-template-columns: 1fr; }
  .strip-cell { border-right: none !important; border-bottom: 1px solid var(--line); padding: 18px 0; }
  .strip-cell:last-child { border-bottom: none; }
}

/* ── DER WEG (Path) ── */
.path-svg-wrap {
  position: relative;
  margin-top: 40px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.path-svg-wrap svg { width: 100%; height: auto; display: block; }
.path-stations {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.path-station {
  padding: 18px 0 4px;
  border-top: 1px solid var(--line);
  position: relative;
}
.path-station::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.path-station .ix {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.path-station .ttl {
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 6px;
}
.path-station .desc {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.45;
}
@media (max-width: 860px) {
  .path-stations { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .path-stations { grid-template-columns: 1fr; gap: 14px; }
  .path-station { padding: 18px 16px; }
}

/* ── INDUSTRIES ── */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.ind-card {
  background: var(--bg-2);
  padding: 32px 26px 28px;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  transition: background .25s;
  position: relative;
}
.ind-card:hover { background: var(--bg-3); }
.ind-card .ix {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.ind-illust {
  height: 160px;
  margin: 4px 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ind-illust svg { max-width: 100%; max-height: 100%; }
.ind-card h3 { margin-bottom: 14px; }
.ind-card .desc {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.ind-card .tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ind-card .tag {
  font-size: 11.5px;
  padding: 4px 9px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--ink-2);
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
@media (max-width: 1100px) {
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ind-grid { grid-template-columns: 1fr; }
  .ind-card { min-height: 0; padding-bottom: 36px; }
}

/* ── NUMBERS ── */
.numbers {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.num-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.num-cell {
  position: relative;
  padding-top: 24px;
}
.num-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 36px;
  height: 2px;
  background: var(--accent);
}
.num-cell .nm {
  font-family: var(--serif);
  font-size: clamp(54px, 5.2vw, 84px);
  line-height: 0.95;
  font-feature-settings: 'lnum';
}
.num-cell .nm .sym { color: var(--accent); font-style: italic; font-size: 0.6em; }
.num-cell .lb {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.45;
  max-width: 220px;
}
@media (max-width: 860px) {
  .num-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ── PROCESS ── */
.proc-list {
  border-top: 1px solid var(--line);
}
.proc-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr 220px;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding .25s;
}
.proc-row:hover { padding-left: 12px; }
.proc-row .ix {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.04em;
  padding-top: 8px;
}
.proc-row h3 { font-size: 28px; }
.proc-row .desc {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}
.proc-row .vis {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.proc-row .vis svg { max-height: 100%; }
@media (max-width: 860px) {
  .proc-row { grid-template-columns: 1fr; gap: 14px; padding: 28px 0; }
  .proc-row .vis { justify-content: flex-start; height: 70px; }
}

/* ── CASES ── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition: border-color .25s, transform .25s;
}
.case-card:hover { border-color: var(--line-2); transform: translateY(-2px); }
.case-card .badge {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.case-card .industry {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.35;
}
.case-card .chart {
  height: 84px;
  margin: 4px 0 14px;
}
.case-card .chart svg { width: 100%; height: 100%; }
.case-card h3 { font-size: 18px; line-height: 1.3; margin-bottom: 0; }
.case-card .quote {
  color: var(--ink-2);
  font-size: 13.5px;
  font-style: italic;
  line-height: 1.5;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
@media (max-width: 980px) { .cases-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .cases-grid { grid-template-columns: 1fr; } }

/* ── CTA ── */
.cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta h2 .em { font-style: italic; color: var(--accent); }
.cta-info {
  color: var(--ink-2);
  margin-top: 24px;
  font-size: 17px;
  max-width: 480px;
}
.cta-row { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.cta-meta {
  border-left: 1px solid var(--line-2);
  padding-left: 36px;
  font-size: 14px;
}
.cta-meta .k {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.cta-meta .v { color: var(--ink); margin-bottom: 18px; font-size: 15px; }
@media (max-width: 980px) {
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-meta { border-left: none; padding-left: 0; padding-top: 32px; border-top: 1px solid var(--line); }
}

/* ── FOOTER ── */
footer { border-top: 1px solid var(--line); padding: 56px 0 32px; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.foot-grid h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-grid a { color: var(--ink-2); font-size: 14px; }
.foot-grid a:hover { color: var(--ink); }
.foot-brand p { font-size: 13.5px; color: var(--ink-3); margin-top: 14px; max-width: 280px; line-height: 1.5; }
.foot-bot {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--ink-3);
  font-family: var(--mono);
  letter-spacing: 0.03em;
}
@media (max-width: 860px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Animations */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Tweaks panel (small) */
#tw-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 16px;
  font-size: 13px;
  z-index: 100;
  width: 220px;
  display: none;
}
#tw-panel.on { display: block; }
#tw-panel h5 { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; font-weight: 500; }
.sw-row { display: flex; gap: 6px; margin-bottom: 12px; }
.sw {
  width: 24px; height: 24px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .15s;
}
.sw.active { border-color: var(--ink); }

/* Theme-toggle icon: show sun in dark mode (= click will switch to light),
   show moon in light mode (= click will switch to dark). Default = dark. */
.theme-icon-moon { display: none; }
.theme-icon-sun  { display: inline-block; }
:root[data-theme="light"] .theme-icon-moon { display: inline-block; }
:root[data-theme="light"] .theme-icon-sun  { display: none; }

/* ── Radar ping labels, bumped for legibility ──
   CSS overrides the SVG presentation attribute font-size="9".            */
.ping-label { font-size: 13px; letter-spacing: 0.05em; }

/* ── Mobile typography pass, bump everything 1-2px so phones read better ──
   Bumps run at 720px (tablets/phones) and intensify at 480px (small phones).
   Sizes stay below 21px to avoid heavy mobile blocks. */
@media (max-width: 720px) {
  body { font-size: 17px; }

  .eyebrow { font-size: 12.5px; }
  .section-hd .hd-r { font-size: 17px; }

  .hero-sub { font-size: 19px; }
  .hero-meta .m-k { font-size: 12px; }
  .hero-meta .m-v { font-size: 20px; }
  .hero-meta .m-d { font-size: 13px; }

  .strip-cell .k { font-size: 12px; }
  .strip-cell .v { font-size: 16px; line-height: 1.4; }

  .path-station .ix { font-size: 11.5px; }
  .path-station .ttl { font-size: 20px; }
  .path-station .desc { font-size: 14.5px; line-height: 1.55; }

  .ind-card .ix { font-size: 11.5px; }
  .ind-card h3 { font-size: 20px; }
  .ind-card .desc { font-size: 14.5px; line-height: 1.55; }
  .ind-card .tag { font-size: 11.5px; }

  .num-cell .lb { font-size: 13px; line-height: 1.45; }

  .proc-row .ix { font-size: 12px; }
  .proc-row h3 { font-size: 22px; }
  .proc-row .desc { font-size: 16px; line-height: 1.55; }

  .case-card .badge { font-size: 11.5px; }
  .case-card .industry { font-size: 15px; }
  .case-card h3 { font-size: 19px; line-height: 1.3; }

  .cta h2 { font-size: clamp(40px, 7vw, 60px); }
  .cta-info { font-size: 17px; }
  .cta-meta { font-size: 14.5px; }
  .cta-meta .k { font-size: 12px; }
  .cta-meta .v { font-size: 16px; }

  .foot-grid h4 { font-size: 13px; }
  .foot-grid li, .foot-grid a { font-size: 14px; }
  .foot-brand p { font-size: 14.5px; line-height: 1.6; }
  .foot-bot { font-size: 13px; }

  /* Buttons too */
  .btn { font-size: 15px; padding: 14px 22px; }
}
@media (max-width: 480px) {
  .ping-label { font-size: 15px; }
}

/* ── Alternating section backgrounds for visual rhythm ──
   Hero stays --bg. Strip is its own. From #ansatz onward we alternate. */
section#ansatz   { background: var(--bg-2); }
section#fuer-wen { background: var(--bg);   }
section.numbers  { background: var(--bg-2); }
section#auswahl  { background: var(--bg);   }
section#cases    { background: var(--bg-2); }
section.cta      { background: var(--bg);   }

/* Strip strip should be the deeper tone for separation from hero. */
section.strip { background: var(--bg-3); }

/* ── Der Weg SVG: horizontal scroll on mobile so the path/text are readable. ──
   Native viewBox is 1200x360 — squishing to 393px makes text 5px tall.       */
.path-svg-wrap {
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--bg);
}
.path-svg-wrap svg {
  display: block;
  width: 100%;
  min-width: 720px;
  height: auto;
}
@media (max-width: 720px) {
  .path-svg-wrap svg { min-width: 760px; }
  .path-svg-wrap::after {
    content: "↔ wischen für Detail";
    display: block;
    text-align: center;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-3);
    padding: 6px 0 10px;
    position: sticky;
    left: 0;
    right: 0;
  }
}

/* ── Tighter top-margin on the hero-meta on mobile (after the radar) ──
   Fixes the awkward gap that appeared right after the radar SVG stacked
   below the hero text on mobile. */
@media (max-width: 980px) {
  .hero-grid { gap: 32px; }
  .hero-visual { margin-top: -8px; }
  .hero-meta { margin-top: 24px; }
}
@media (max-width: 600px) {
  .hero-grid { gap: 20px; }
  .radar-wrap { max-width: 300px; }
}
