/* Target sub-pages (/targets/*). The rich layout — scattered hero cluster,
   self-running showcase marquee, spec/bullet/board grids — is kept from the old
   geastack.com target page, but every component is restyled to OUR design
   system: eyebrows use the global .eyebrow (accent), code blocks use the
   concept code-window (macOS traffic lights, themed surfaces), buttons use
   .art-btn, and type resolves to the shared tokens. Themes light & dark. */

.target-page { padding: 48px 0 var(--space-section-md); }
@media (max-width: 720px) { .target-page { padding: 40px 0 80px; } }

.target-page .eyebrow { display: block; margin-bottom: 14px; }

.target-page .target-head { max-width: 760px; margin-bottom: 56px; }
.target-page .target-title {
  font-size: var(--fs-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: var(--lh-tight);
  color: var(--text-strong);
  margin-bottom: 20px;
}
.target-page .target-lede {
  font-size: var(--fs-lg);
  line-height: var(--lh-base);
  color: var(--text-muted);
  max-width: 62ch;
}
.target-page .target-cmd {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 18px;
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  color: var(--text-strong);
  background: var(--surface-1);
  border: 1px solid var(--border-hairline);
  user-select: all;
  white-space: nowrap;
  overflow-x: auto;
  max-width: 100%;
}

/* two-column hero (text + product-UI cluster) */
.target-page .target-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: var(--space-section-sm);
}
@media (max-width: 900px) { .target-page .target-hero { grid-template-columns: 1fr; gap: 36px; } }
.target-page .target-hero .target-head { max-width: none; margin-bottom: 0; }
.target-page .target-hero-shot {
  margin: 0;
  border: 1px solid var(--border-hairline);
  background: var(--surface-2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.target-page .target-hero-shot img { display: block; width: 100%; height: auto; }
/* portrait device shots: cap height and centre rather than stretch the column */
.target-page .target-hero-shot.is-portrait { background: var(--surface-1); padding: 20px; }
.target-page .target-hero-shot.is-portrait img { width: auto; max-width: 100%; max-height: 460px; }

/* Two-column editorial section: a left header rail (eyebrow + title) and the
   body on the right, framed by a full-width hairline divider so the section
   uses the whole width intentionally — no dead right-hand space. Full-width
   content (slider, code, grids) spans both columns on the row below. */
.target-page .target-section {
  margin-top: 0;
  padding-top: var(--space-section-sm);
  border-top: 1px solid var(--border-hairline);
}
.target-page .target-section-title {
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.02em;
  line-height: var(--lh-tight);
  margin-bottom: 0;
  text-wrap: balance;
}
.target-page .target-section-body {
  font-size: var(--fs-md);
  line-height: var(--lh-base);
  color: var(--text-muted);
  margin: 20px 0 0;
}
.target-page .target-section-body + .target-section-body { margin-top: 14px; }
/* full-width content sits below the intro */
.target-page .target-section > .mcu-slider,
.target-page .target-section > pre,
.target-page .target-section > .target-specs,
.target-page .target-section > .target-mcu-boards,
.target-page .target-section > .target-boards-more { margin-top: 32px; }
.target-page .target-section-body code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  color: var(--text-strong);
  background: var(--surface-2);
  border: 1px solid var(--border-hairline);
  padding: 1px 5px;
}

/* ── code window — the concept-page macOS frame (themed + traffic lights) ── */
.target-page {
  --cw-body: light-dark(#f1f1f4, #12141d);
  --cw-bar: light-dark(#e6e7ec, #0d0f17);
  --cw-edge: var(--border-hairline);
}
.target-page pre {
  position: relative;
  margin: 24px 0 0;
  padding: 44px 18px 16px;
  background: var(--cw-body);
  border: 1px solid var(--cw-edge);
  border-radius: 8px;
  overflow-x: auto;
  line-height: var(--lh-mono);
}
.target-page pre::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 34px;
  background: var(--cw-bar);
  border-bottom: 1px solid var(--cw-edge);
  border-radius: 7px 7px 0 0;
}
.target-page pre::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 16px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow: 18px 0 0 #febc2e, 36px 0 0 #28c840;
}
.target-page pre code {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  color: var(--code-text);
  background: none;
  border: 0;
  padding: 0;
}
.target-page .tok-com { color: var(--code-mute); font-style: italic; }
.target-page .tok-kw, .target-page .tok-sel { color: var(--code-kw); }
.target-page .tok-typ, .target-page .tok-fn, .target-page .tok-prop { color: var(--code-type); }
.target-page .tok-str { color: var(--code-str); }
.target-page .tok-num { color: var(--code-num); }

/* spec grid — measured numbers */
.target-page .target-specs {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-hairline);
  border: 1px solid var(--border-hairline);
}
@media (max-width: 760px) { .target-page .target-specs { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .target-page .target-specs { grid-template-columns: 1fr; } }
.target-page .target-spec { background: var(--bg-page); padding: 24px 22px 26px; }
.target-page .target-spec-label {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}
.target-page .target-spec-value {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--accent-primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.target-page .target-spec-note { margin-top: 8px; font-size: var(--fs-sm); line-height: var(--lh-base); color: var(--text-muted); }

/* bullet grid — host APIs */
.target-page .target-bullets {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-hairline);
  border: 1px solid var(--border-hairline);
}
@media (max-width: 720px) { .target-page .target-bullets { grid-template-columns: 1fr; } }
/* a lone 5th reason spans both columns so the grid doesn't leave a gap */
.why-gea .target-bullets > .target-bullet:nth-child(5):last-child { grid-column: 1 / -1; }
.target-page .target-bullet { background: var(--bg-page); padding: 20px 22px; }
.target-page .target-bullet-title { font-size: var(--fs-md); font-weight: 700; color: var(--text-strong); margin-bottom: 6px; }
.target-page .target-bullet-body { font-size: var(--fs-sm); line-height: var(--lh-base); color: var(--text-muted); }
.target-page .target-bullet-body code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  color: var(--text-strong);
  background: var(--surface-2);
  border: 1px solid var(--border-hairline);
  padding: 0 4px;
}

/* board grid */
.target-page .target-mcu-boards {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-hairline);
  border: 1px solid var(--border-hairline);
}
@media (max-width: 820px) { .target-page .target-mcu-boards { grid-template-columns: 1fr; } }
.target-page .target-mcu-board { background: var(--bg-page); padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; }
.target-page .target-mcu-board-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.target-page .target-mcu-board-name { font-size: var(--fs-md); font-weight: 700; color: var(--text-strong); letter-spacing: -0.005em; line-height: 1.25; }
.target-page .target-mcu-board-vendor { font-family: var(--font-mono); font-size: var(--fs-2xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-primary-3); }
.target-page .target-mcu-board-spec { font-size: var(--fs-sm); line-height: var(--lh-base); color: var(--text-muted); }
.target-page .target-boards-more { margin-top: 20px; font-size: var(--fs-md); color: var(--text-muted); }
.target-page .target-boards-more a { color: var(--accent-primary); text-decoration: none; font-weight: 600; }
.target-page .target-boards-more a:hover { text-decoration: underline; }

/* status badge */
.target-page .target-badge {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border-hairline);
  color: var(--text-muted);
  white-space: nowrap;
}
.target-page .target-badge.is-available { color: var(--text-strong); border-color: var(--border-strong); }
.target-page .target-badge.is-experimental { color: var(--accent-gold); }
.target-page .target-badge.is-planned { color: var(--text-faint); }

/* ── Support matrix page ────────────────────────────────────────────────── */
.target-page .matrix-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.target-page .matrix-head .target-section-title { margin-bottom: 0; }
.target-page .matrix-target-body { margin-top: 12px; }
.target-page .matrix-devices {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 360px));
  justify-content: start;
  gap: 14px;
}
.target-page .matrix-device {
  border: 1px solid var(--border-hairline);
  background: var(--bg-page);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.target-page .matrix-device-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.target-page .matrix-device-name { font-size: var(--fs-md); font-weight: 700; color: var(--text-strong); letter-spacing: -0.005em; line-height: 1.25; }
.target-page .matrix-device-chip { font-family: var(--font-mono); font-size: var(--fs-2xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-primary-3); }
.target-page .matrix-device-detail { font-size: var(--fs-sm); line-height: var(--lh-base); color: var(--text-muted); }

/* ── Hero accent — ONE real board photo beside the text ──────────────────── */

/* ── Surfaces slider — the product UIs as a crisp scroll-snap carousel, shown
   ONCE. Pure CSS: one horizontal track that snaps slide to slide on drag,
   wheel, trackpad, touch and arrow keys (track is tabindex=0). Each slide is a
   hairline-framed card; the screenshot is object-fit:contain on surface-2 so
   square, round and landscape UIs all sit in a uniform frame. NO edge fade /
   mask, NO shadow, NO blur — slides clip at a hard hairline, crisp in light
   AND dark. ── */
.mcu-slider { margin-top: 28px; }
.mcu-track {
  display: flex;
  gap: 1px;
  background: var(--border-hairline);
  border: 1px solid var(--border-hairline);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}
.mcu-track:focus-visible { outline: 2px solid var(--accent-primary-2); outline-offset: 2px; }
.mcu-track::-webkit-scrollbar { height: 8px; }
.mcu-track::-webkit-scrollbar-track { background: transparent; }
.mcu-track::-webkit-scrollbar-thumb { background: var(--border-strong); }
.mcu-slide {
  flex: 0 0 clamp(260px, 80vw, 360px);
  margin: 0;
  scroll-snap-align: start;
  background: var(--bg-page);
  display: flex;
  flex-direction: column;
}
.mcu-slide-frame {
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
}
.mcu-slide-frame img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.mcu-slide figcaption {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--border-hairline);
}
.mcu-slide-kind {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-primary-3);
}
.mcu-slide-label { font-size: var(--fs-base-sm); font-weight: 700; color: var(--text-strong); letter-spacing: -0.005em; }
/* iOS / Android galleries are all portrait phone shots — use taller, narrower slides */
.target-ios .mcu-slide,
.target-android .mcu-slide { flex: 0 0 clamp(220px, 70vw, 300px); }
.target-ios .mcu-slide-frame,
.target-android .mcu-slide-frame { aspect-ratio: 3 / 4; }
.mcu-slider-hint {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.mcu-slider-hint span { color: var(--accent-primary-3); }
@media (max-width: 560px) { .mcu-slide { flex-basis: 84vw; } }

/* ── closing CTA — our .art-cta + .art-btn system ───────────────────────── */
.target-page .art-cta {
  margin-top: var(--space-section-md);
  padding-top: var(--s-6);
  border-top: 1px solid var(--border-hairline);
}
.target-page .art-cta-title {
  font-size: var(--fs-h2);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: var(--lh-tight);
  color: var(--text-strong);
  margin-bottom: var(--s-3);
}
.target-page .art-cta p {
  font-size: var(--fs-lg);
  line-height: var(--lh-base);
  color: var(--text-base);
}
.target-page .art-cta-actions { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-4); }
.target-page .art-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-family: var(--font-sans);
  font-size: var(--fs-base-sm);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  color: var(--text-strong);
  background: transparent;
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius);
  transition: background var(--t-base), border-color var(--t-base), color var(--t-base);
}
.target-page .art-btn:hover { background: var(--surface-2); border-color: var(--border-strong); color: var(--text-strong); }
.target-page .art-btn span { transition: transform var(--t-base); }
.target-page .art-btn:hover span { transform: translateX(3px); }
.target-page .art-btn-primary { color: #fff; background: var(--accent-primary); border-color: var(--accent-primary); }
.target-page .art-btn-primary:hover { color: #fff; background: var(--accent-primary-hover); border-color: var(--accent-primary-hover); }

/* page foot — back to the target hub */
.target-page .target-foot {
  margin-top: 56px;
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}
.target-page .target-foot a {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border-hairline);
  padding: 10px 16px;
  text-decoration: none;
  transition: color var(--t-base), border-color var(--t-base);
}
.target-page .target-foot a:hover { color: var(--text-base); border-color: var(--border-strong); }

/* ── Single framed figure (a surface shot below a section intro) ──────────── */
.target-page .target-figure {
  margin: 32px 0 0;
  border: 1px solid var(--border-hairline);
  background: var(--surface-2);
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.target-page .target-figure img { display: block; width: 100%; height: auto; }
.target-page .target-figure.is-portrait { background: var(--surface-1); padding: 24px; }
.target-page .target-figure.is-portrait img { width: auto; max-width: 100%; max-height: 560px; }
.target-page .target-figcaption { margin-top: 12px; font-size: var(--fs-sm); color: var(--text-muted); }

/* ── Real device captures — a small grid of framed screenshots ────────────── */
.target-page .target-shots {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 14px;
}
.target-page .target-shots figure {
  margin: 0;
  border: 1px solid var(--border-hairline);
  background: var(--surface-1);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.target-page .target-shots img { display: block; width: auto; max-width: 100%; max-height: 340px; margin: 0 auto; }
.target-page .target-shots figcaption { font-size: var(--fs-xs); color: var(--text-muted); text-align: center; }

/* ── Embedded demo video (the counter running across devices) ─────────────── */
.target-page .target-video { margin: 28px 0 0; }
.target-page .target-video .demo-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--border-hairline);
  background: #08080c;
}
.target-page .target-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.target-page .target-video figcaption { margin-top: 12px; font-size: var(--fs-sm); color: var(--text-muted); }

/* ── Targets overview (hub) — ported 1:1 from the geastack.com TargetsHub ──── */
.targets-hub .targets-hub-head { max-width: 760px; margin-bottom: 64px; }
.targets-hub .targets-hub-head .eyebrow { margin-bottom: 14px; }
.targets-hub .targets-hub-title {
  font-size: var(--fs-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: var(--lh-tight);
  color: var(--text-strong);
  margin-bottom: 20px;
}
.targets-hub .targets-hub-lede {
  font-size: 17px;
  line-height: var(--lh-base);
  color: var(--text-muted);
  max-width: 62ch;
}

/* 2 x 2 target cards */
.targets-hub .targets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-hairline);
  border: 1px solid var(--border-hairline);
}
@media (max-width: 720px) { .targets-hub .targets-grid { grid-template-columns: 1fr; } }

.targets-hub .target-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-page);
  text-decoration: none;
  transition: background var(--t-base);
}
.targets-hub .target-card:hover { background: var(--surface-1); }

.targets-hub .target-card-art {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b0d14;
  border-bottom: 1px solid var(--border-hairline);
  isolation: isolate;
}
/* red wash — a `color` blend forces every shot to one shared red hue so the four read as a single set */
.targets-hub .target-card-art::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #ff1f2e;
  mix-blend-mode: color;
  opacity: 0.55;
  pointer-events: none;
}
.targets-hub .target-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.82) saturate(0.86) contrast(1.03);
  transform: scale(1.001);
  transition: filter var(--t-base), transform var(--t-base);
}
/* fade the photo into the card body + a faint top vignette for cohesion */
.targets-hub .target-card-art::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(7, 8, 12, 0.22) 0%, rgba(7, 8, 12, 0) 38%, rgba(7, 8, 12, 0.62) 100%);
  pointer-events: none;
}
.targets-hub .target-card:hover .target-card-art img {
  filter: brightness(0.95) saturate(0.95) contrast(1.03);
  transform: scale(1.04);
}

.targets-hub .target-card-body {
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.targets-hub .target-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.targets-hub .target-card-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.015em;
  line-height: var(--lh-tight);
}
.targets-hub .target-card-line {
  font-size: 14.5px;
  line-height: var(--lh-base);
  color: var(--text-muted);
}
.targets-hub .target-card-cta {
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-base);
}

/* ── Why GEA — comparison CTA cards (main page) ───────────────────────────── */
.target-page .target-cta-row { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 720px) { .target-page .target-cta-row { grid-template-columns: 1fr; } }
.why-gea .target-cta-row { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .why-gea .target-cta-row { grid-template-columns: 1fr; } }
.target-page .target-cta {
  display: block;
  padding: 22px 24px;
  border: 1px solid var(--border-hairline);
  text-decoration: none;
  transition: border-color var(--t-base), background var(--t-base);
}
.target-page .target-cta:hover { border-color: var(--border-strong); background: var(--surface-1); }
.target-page .target-cta-eyebrow { font-family: var(--font-mono); font-size: var(--fs-2xs); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 10px; }
.target-page .target-cta-title { font-size: var(--fs-md); font-weight: 700; color: var(--text-strong); margin-bottom: 4px; }
.target-page .target-cta-body { font-size: var(--fs-sm); line-height: var(--lh-base); color: var(--text-muted); }

/* ── Why GEA — head-to-head comparison page ───────────────────────────────── */
.why-vs .why-vs-hero { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; }
.why-vs .why-vs-hero .target-head { margin-bottom: 0; }
.why-vs .vs-card { position: relative; flex: 0 0 auto; margin-top: 6px; display: flex; align-items: stretch; border: 1px solid var(--border-hairline); }
.why-vs .vs-side { width: 158px; height: 108px; display: flex; align-items: center; justify-content: center; padding: 20px; }
.why-vs .vs-side-gea { background: #0b0d14; }
.why-vs .vs-side-them { background: #ffffff; border-left: 1px solid var(--border-hairline); }
.why-vs .vs-side img { display: block; width: auto; height: auto; max-width: 100%; max-height: 46px; }
.why-vs .vs-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--text-strong); background: var(--bg-page); border: 1px solid var(--border-hairline);
}
@media (max-width: 760px) { .why-vs .why-vs-hero { flex-direction: column; gap: 26px; } }

.why-vs .vs-table { margin-top: 28px; border: 1px solid var(--border-hairline); background: var(--bg-page); overflow: hidden; }
.why-vs .vs-row { display: grid; grid-template-columns: 1.1fr 1fr 1fr; border-bottom: 1px solid var(--border-hairline); }
.why-vs .vs-row:last-child { border-bottom: none; }
.why-vs .vs-cell { padding: 14px 18px; font-size: 14px; line-height: var(--lh-base); color: var(--text-muted); border-right: 1px solid var(--border-hairline); }
.why-vs .vs-cell:last-child { border-right: none; }
.why-vs .vs-label { font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-faint); }
.why-vs .vs-cell-gea { color: var(--text-strong); font-weight: 600; background: var(--surface-1); }
.why-vs .vs-row-head .vs-cell { font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); background: var(--surface-1); }
.why-vs .vs-gea-brand { background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
@media (max-width: 560px) { .why-vs .vs-cell { padding: 11px 12px; font-size: 12.5px; } .why-vs .vs-label { font-size: 10.5px; } }
/* three-way table (GEA / LVGL / LVGL Pro): a fourth column, scrolls on narrow screens */
.why-vs .vs-table-3way { overflow-x: auto; }
.why-vs .vs-table-3way .vs-row { grid-template-columns: 0.9fr 1fr 1fr 1fr; min-width: 700px; }

/* ── Why GEA — two audience panels (coming from web / embedded GUI engineer) ── */
.why-gea .why-audiences {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-hairline);
  border: 1px solid var(--border-hairline);
}
@media (max-width: 760px) { .why-gea .why-audiences { grid-template-columns: 1fr; } }
.why-gea .why-audience { background: var(--bg-page); padding: 30px 28px; }
.why-gea .why-audience-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-primary-3);
  margin-bottom: 10px;
}
.why-gea .why-audience-title { font-size: var(--fs-lg); font-weight: 700; color: var(--text-strong); letter-spacing: -0.01em; line-height: var(--lh-tight); margin-bottom: 12px; }
.why-gea .why-audience-body { font-size: var(--fs-sm); line-height: var(--lh-base); color: var(--text-muted); margin-bottom: 18px; }
.why-gea .why-audience-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.why-gea .why-audience-list li { font-size: var(--fs-sm); line-height: var(--lh-base); color: var(--text-muted); padding-left: 18px; position: relative; }
.why-gea .why-audience-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; background: var(--accent-primary-3); }

/* ── Why GEA — the two pillars (developer experience + native speed) ──────── */
.why-gea .why-pillars {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-hairline);
  border: 1px solid var(--border-hairline);
}
@media (max-width: 760px) { .why-gea .why-pillars { grid-template-columns: 1fr; } }
.why-gea .why-pillar { background: var(--bg-page); padding: 32px 30px; }
.why-gea .why-pillar-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-primary-3);
  margin-bottom: 12px;
}
.why-gea .why-pillar-title { font-size: var(--fs-xl); font-weight: 800; color: var(--text-strong); letter-spacing: -0.015em; line-height: var(--lh-tight); margin-bottom: 12px; }
.why-gea .why-pillar-body { font-size: var(--fs-sm); line-height: var(--lh-base); color: var(--text-muted); }
