:root {
  --bg: #06060a;
  --bg-2: #0d0d14;
  --surface: #111118;
  --border: #1e1e2a;
  --fg: #e8e8f0;
  --fg-dim: #7a7a8c;
  --amber: #f5a623;
  --amber-dim: rgba(245, 166, 35, 0.15);
  --amber-glow: rgba(245, 166, 35, 0.08);
  --white: #ffffff;
  --red: #ff4444;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Syne', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  background: rgba(6,6,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--amber);
}
.nav-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
}
.nav-link {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 140px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--amber);
  text-transform: uppercase;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
}

/* Device visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.device-frame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.device-body {
  width: 180px;
  height: 260px;
  background: linear-gradient(145deg, #1a1a24, #0e0e16);
  border: 1px solid var(--border);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
  gap: 12px;
  box-shadow:
    0 0 0 1px rgba(245,166,35,0.08),
    0 30px 60px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
}
.device-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lens-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(245,166,35,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(245,166,35,0.2), inset 0 0 8px rgba(0,0,0,0.5);
}
.lens-inner {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2a2a3a, #0a0a0e);
  border: 1px solid rgba(255,255,255,0.1);
}
.mic-dots {
  display: flex;
  gap: 8px;
}
.mic-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(245,166,35,0.5);
}
.device-body-mid {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.led-strip {
  display: flex;
  gap: 6px;
}
.led {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.led-off { background: #1e1e2a; }
.led-amber {
  background: var(--amber);
  box-shadow: 0 0 10px var(--amber), 0 0 20px rgba(245,166,35,0.4);
  animation: led-pulse 2s ease-in-out infinite;
}
@keyframes led-pulse {
  0%, 100% { box-shadow: 0 0 10px var(--amber), 0 0 20px rgba(245,166,35,0.4); }
  50% { box-shadow: 0 0 16px var(--amber), 0 0 32px rgba(245,166,35,0.6); }
}
.body-texture {
  width: 100px;
  height: 80px;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.02) 3px,
    rgba(255,255,255,0.02) 4px
  );
  border-radius: 4px;
}
.device-bottom {
  display: flex;
  justify-content: center;
}
.charging-pins {
  display: flex;
  gap: 6px;
}
.pin {
  width: 16px; height: 3px;
  background: rgba(245,166,35,0.4);
  border-radius: 2px;
}
.device-glow {
  position: absolute;
  bottom: 20px;
  width: 120px; height: 40px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.15), transparent);
  border-radius: 50%;
  filter: blur(10px);
}

/* Stats row */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stat-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-val {
  font-family: 'DM Mono', monospace;
  font-size: 20px;
  font-weight: 500;
  color: var(--amber);
}
.stat-unit {
  font-size: 12px;
  color: var(--fg-dim);
}
.stat-lbl {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Hero copy */
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-headline {
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.headline-line { color: var(--fg); }
.headline-accent { color: var(--amber); }
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-dim);
  max-width: 480px;
}

/* Press bar */
.hero-press {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.press-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--fg-dim);
  white-space: nowrap;
}
.press-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.press-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--fg-dim);
  opacity: 0.6;
}
.press-sep { color: var(--border); }

/* ── MANIFESTO ── */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 48px;
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--amber);
  display: block;
  margin-bottom: 48px;
}
.manifesto-rule {
  width: 60px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 60px;
}
.manifesto-columns {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.manifesto-body {
  font-size: 20px;
  line-height: 1.6;
  color: var(--fg-dim);
  margin-bottom: 32px;
}
.manifesto-highlight {
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
}
.manifesto-highlight em { color: var(--amber); font-style: normal; }
.manifesto-cards { display: flex; flex-direction: column; gap: 32px; }
.m-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}
.m-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--amber), transparent);
  opacity: 0.4;
}
.m-card-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.m-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.m-card-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-dim);
}

/* ── SILICON ── */
.silicon {
  padding: 100px 48px;
  background: var(--bg);
}
.silicon-inner { max-width: 1200px; margin: 0 auto; }
.silicon-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 60px;
}
.silicon-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
}
.silicon-badge {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--amber);
  background: var(--amber-dim);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 8px 16px;
  border-radius: 6px;
  white-space: nowrap;
  margin-top: 8px;
}
.silicon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.isa-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.isa-head {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.isa-table { }
.isa-row {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  gap: 0;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
}
.isa-row:last-child { border-bottom: none; }
.isa-op { color: var(--amber); font-weight: 500; }
.isa-desc { color: var(--fg-dim); }
.isa-clk { color: var(--fg-dim); text-align: right; font-size: 11px; }
.isa-foot {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.ternary-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ternary-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.t-cell {
  aspect-ratio: 1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 500;
}
.t-neg { background: rgba(255,68,68,0.2); color: #ff6666; }
.t-zero { background: rgba(255,255,255,0.05); color: var(--fg-dim); }
.t-pos { background: rgba(80,200,120,0.2); color: #50c878; }
.ternary-legend {
  display: flex;
  gap: 20px;
}
.t-legend {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.energy-save { color: var(--amber); }
.ternary-math {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--fg-dim);
  text-align: center;
  padding: 12px 16px;
  background: var(--amber-dim);
  border-radius: 8px;
  border: 1px solid rgba(245,166,35,0.2);
}

/* ── COMPARE ── */
.compare {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.compare-inner { max-width: 1200px; margin: 0 auto; }
.compare-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}
.compare-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-dim);
  max-width: 640px;
  margin-bottom: 48px;
}
.table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  min-width: 700px;
}
.compare-table th {
  text-align: left;
  padding: 12px 16px;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  font-size: 10px;
  border-bottom: 1px solid var(--border);
}
.compare-table th.th-omi {
  color: var(--amber);
}
.compare-table td {
  padding: 14px 16px;
  color: var(--fg-dim);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.compare-table td.td-omi {
  color: var(--fg);
}
.compare-table td.td-check {
  color: #50c878;
}
.compare-table tr:hover td {
  background: rgba(255,255,255,0.02);
}
.compare-table tr.tr-price td {
  border-top: 1px solid var(--border);
  font-weight: 500;
}
.compare-table tr.tr-price td.td-omi {
  color: var(--amber);
  font-size: 16px;
}
.compare-note {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--fg-dim);
  margin-top: 20px;
  line-height: 1.6;
}

/* ── SPECS ── */
.specs {
  padding: 100px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.specs-inner { max-width: 1200px; margin: 0 auto; }
.specs-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.specs-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
}
.specs-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-dim);
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}
.spec-block {
  background: var(--surface);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.spec-block-accent {
  background: var(--amber-dim);
  border: 1px solid rgba(245,166,35,0.2);
}
.spec-icon {
  font-size: 18px;
  color: var(--amber);
  margin-bottom: 4px;
}
.spec-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
.spec-val {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg);
}
.batch-banner {
  text-align: center;
  padding: 20px;
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 8px;
  background: var(--amber-dim);
}
.batch-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--amber);
}

/* ── CLOSING ── */
.closing {
  padding: 120px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--amber);
  margin-bottom: 40px;
}
.closing-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-dim);
  margin-bottom: 40px;
}
.closing-dev {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.dev-badge {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--surface);
}
.closing-price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.price-from {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: var(--fg-dim);
}
.price-from strong { color: var(--fg); font-size: 28px; }
.price-deposit {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
}
.price-deposit strong { color: var(--amber); }

/* ── FOOTER ── */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--amber);
}
.footer-by {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--fg-dim);
}
.footer-meta {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
  text-align: center;
}
.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--fg-dim);
  opacity: 0.5;
}

/* ═══════════════════════════════════════════
   GOD MODE PAGE
   ═══════════════════════════════════════════ */

/* ── GM HERO ── */
.gm-hero {
  min-height: 100vh;
  padding: 140px 48px 80px;
  background: var(--bg);
  position: relative;
}
.gm-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.gm-hero-inner { max-width: 1200px; margin: 0 auto; }
.gm-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}
.gm-hero-copy { display: flex; flex-direction: column; gap: 28px; }
.gm-headline {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
}
.gm-line { color: var(--fg); }
.gm-accent { color: var(--amber); }
.gm-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-dim);
  max-width: 480px;
}
.gm-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.gm-btn {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all 0.2s;
  display: inline-block;
}
.gm-btn-primary {
  background: var(--amber);
  color: #000;
  font-weight: 500;
}
.gm-btn-primary:hover { background: #ffb83d; }
.gm-btn-ghost {
  background: transparent;
  color: var(--fg-dim);
  border: 1px solid var(--border);
}
.gm-btn-ghost:hover { color: var(--fg); border-color: var(--fg-dim); }

/* Chip art */
.gm-hero-card { display: flex; justify-content: center; }
.gm-chip-art { perspective: 800px; }
.gm-chip-body {
  background: linear-gradient(145deg, #1a1a24, #0e0e16);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow:
    0 0 0 1px rgba(245,166,35,0.08),
    0 40px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transform: rotateY(-8deg) rotateX(4deg);
}
.gm-chip-label {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.15em;
  color: var(--amber);
}
.gm-chip-sublabel {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--fg-dim);
}
.gm-chip-grid {
  display: grid;
  grid-template-columns: repeat(3, 48px);
  gap: 4px;
}
.gm-cg-row { display: flex; gap: 4px; }
.gm-cg-cell {
  width: 48px; height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 20px;
  font-weight: 500;
}
.gm-neg { background: rgba(255,68,68,0.2); color: #ff6666; }
.gm-zero { background: rgba(255,255,255,0.06); color: var(--fg-dim); }
.gm-pos { background: rgba(80,200,120,0.2); color: #50c878; }
.gm-chip-legend {
  display: flex;
  gap: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
}

/* Specs bar */
.gm-specs-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.gm-spec-item {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.gm-spec-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}
.gm-spec-val {
  font-family: 'DM Mono', monospace;
  font-size: 22px;
  font-weight: 500;
  color: var(--amber);
}
.gm-spec-lbl {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  text-transform: uppercase;
}

/* ── GM THREAD ── */
.gm-thread {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.gm-thread-inner { max-width: 1200px; margin: 0 auto; }
.gm-thread-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.gm-section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 24px;
}
.gm-body-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-dim);
  margin-bottom: 20px;
}
.gm-thread-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.gm-meta-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
}
.gm-meta-value {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
}
.gm-status-ready {
  background: rgba(80,200,120,0.15);
  color: #50c878;
  border: 1px solid rgba(80,200,120,0.3);
}
.gm-meta-sep { color: var(--fg-dim); }

/* Thread card */
.gm-thread-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gm-card-x-icon {
  color: var(--fg-dim);
  display: flex;
  align-items: center;
}
.gm-card-thread-preview { display: flex; flex-direction: column; gap: 12px; }
.gm-tweet {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  line-height: 1.6;
  color: var(--fg);
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.gm-tweet-accent { color: var(--amber); }
.gm-tweet-faded { color: var(--fg-dim); }
.gm-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.gm-card-footer span {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
}
.gm-post-btn {
  color: var(--amber) !important;
  background: var(--amber-dim);
  padding: 4px 10px !important;
  border-radius: 4px;
}

/* ── GM RESERVE ── */
.gm-reserve {
  padding: 100px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.gm-reserve-inner { max-width: 1200px; margin: 0 auto; }
.gm-reserve-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.gm-reserve-copy { display: flex; flex-direction: column; gap: 0; }

/* Email sequence */
.gm-email-sequence {
  margin-top: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.gm-seq-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gm-seq-title {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--fg);
  font-weight: 500;
}
.gm-seq-sub {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--fg-dim);
}
.gm-seq-list { padding: 8px 0; }
.gm-seq-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 24px;
  position: relative;
}
.gm-seq-done { }
.gm-seq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(80,200,120,0.15);
  border: 1px solid rgba(80,200,120,0.4);
  color: #50c878;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gm-seq-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  flex-shrink: 0;
  margin-top: 1px;
}
.gm-seq-label {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 2px;
}
.gm-seq-desc {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--fg-dim);
  line-height: 1.5;
}

/* Trust panel */
.gm-trust-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 80px;
}
.gm-trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.gm-trust-header {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.gm-trust-items { padding: 8px 0; }
.gm-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 20px;
}
.gm-trust-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--amber-dim);
  border: 1px solid rgba(245,166,35,0.2);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gm-ti-signed {
  background: rgba(80,200,120,0.15);
  border-color: rgba(80,200,120,0.3);
  color: #50c878;
}
.gm-trust-title {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 2px;
}
.gm-trust-sub {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--fg-dim);
  line-height: 1.5;
}

/* Queue position */
.gm-queue-position {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gm-queue-position::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.4;
}
.gm-queue-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--fg-dim);
  margin-bottom: 8px;
}
.gm-queue-num {
  font-family: 'DM Mono', monospace;
  font-size: 28px;
  font-weight: 500;
  color: var(--amber);
  margin-bottom: 6px;
}
.gm-queue-status {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--fg-dim);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { align-items: center; }
  .manifesto-columns { grid-template-columns: 1fr; gap: 40px; }
  .silicon-header { flex-direction: column; gap: 20px; }
  .silicon-grid { grid-template-columns: 1fr; }
  .specs-header { grid-template-columns: 1fr; gap: 20px; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats-row { grid-template-columns: repeat(2, 1fr); }
  nav, .hero, .manifesto, .silicon, .compare, .specs, .closing { padding-left: 24px; padding-right: 24px; }
  .gm-hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .gm-hero-card { display: none; }
  .gm-thread-layout { grid-template-columns: 1fr; gap: 40px; }
  .gm-reserve-layout { grid-template-columns: 1fr; gap: 40px; }
  .gm-trust-panel { padding-top: 0; }
}
@media (max-width: 600px) {
  .specs-grid { grid-template-columns: 1fr; }
  .hero-stats-row { grid-template-columns: repeat(4, 1fr); }
  .stat-val { font-size: 16px; }
  .gm-specs-bar { flex-direction: column; }
  .gm-spec-divider { width: 40px; height: 1px; }
  .gm-actions { flex-direction: column; }
  .gm-btn { text-align: center; }
}

/* ═══════════════════════════════════════════
   PRIVACY LED PAGE
   ═══════════════════════════════════════════ */

/* ── PL HERO ── */
.pl-hero {
  min-height: 100vh;
  padding: 120px 48px 80px;
  background: var(--bg);
  position: relative;
}
.pl-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.pl-hero-inner { max-width: 1200px; margin: 0 auto; }
.pl-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 48px;
}
.pl-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}

/* LED Stage */
.pl-led-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.pl-device-illustrated {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 40px;
}
.pl-device-chassis {
  width: 160px;
  height: 230px;
  background: linear-gradient(145deg, #1a1a24, #0e0e16);
  border: 1px solid var(--border);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  gap: 12px;
  box-shadow:
    0 0 0 1px rgba(245,166,35,0.06),
    0 30px 60px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
}
.pl-lens-ring {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(245,166,35,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(245,166,35,0.15), inset 0 0 6px rgba(0,0,0,0.5);
}
.pl-lens-inner {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2a2a3a, #0a0a0e);
  border: 1px solid rgba(255,255,255,0.08);
}
.pl-mic-row {
  display: flex;
  gap: 8px;
}
.pl-mic-pill {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(245,166,35,0.5);
}

/* THE LED SECTION */
.pl-led-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.pl-led-label-top {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  opacity: 0.6;
}
.pl-led-window {
  width: 56px; height: 24px;
  background: #0a0a0e;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pl-led-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.pl-led-active {
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.35);
  color: var(--amber);
}
.pl-led-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber), 0 0 16px rgba(245,166,35,0.4);
  animation: led-glow 2s ease-in-out infinite;
}
@keyframes led-glow {
  0%, 100% { box-shadow: 0 0 8px var(--amber), 0 0 16px rgba(245,166,35,0.4); }
  50% { box-shadow: 0 0 14px var(--amber), 0 0 28px rgba(245,166,35,0.6); }
}
.pl-led-label-bot {
  font-family: 'DM Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
  opacity: 0.6;
}

.pl-body-texture {
  width: 90px; height: 70px;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.02) 3px,
    rgba(255,255,255,0.02) 4px
  );
  border-radius: 4px;
}
.pl-charging-row {
  display: flex;
  gap: 6px;
}
.pl-pin {
  width: 14px; height: 3px;
  background: rgba(245,166,35,0.35);
  border-radius: 2px;
}
.pl-device-ambient {
  position: absolute;
  bottom: 10px;
  width: 100px; height: 30px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.12), transparent);
  border-radius: 50%;
  filter: blur(8px);
}

/* Signal callout */
.pl-signal-callout {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  max-width: 280px;
}
.pl-signal-icon {
  color: var(--amber);
  flex-shrink: 0;
}
.pl-signal-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pl-signal-title {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--fg);
}
.pl-signal-sub {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--fg-dim);
}

/* Hero Copy */
.pl-hero-copy { display: flex; flex-direction: column; gap: 24px; }
.pl-headline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--fg);
}
.pl-accent { color: var(--amber); }
.pl-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-dim);
  max-width: 480px;
}
.pl-sub-secondary {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-dim);
  opacity: 0.7;
  max-width: 480px;
  border-left: 2px solid rgba(245,166,35,0.2);
  padding-left: 16px;
}
.pl-status-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pl-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 100px;
}
.pl-pill-on {
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--amber);
}
.pl-pill-off {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg-dim);
}
.pl-pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.pl-dot-on {
  background: var(--amber);
  box-shadow: 0 0 6px rgba(245,166,35,0.5);
}
.pl-dot-off { background: var(--fg-dim); }

.pl-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.pl-btn-primary {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  background: var(--amber);
  color: #000;
  font-weight: 500;
  transition: background 0.2s;
  display: inline-block;
}
.pl-btn-primary:hover { background: #ffb83d; }
.pl-btn-ghost {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  background: transparent;
  color: var(--fg-dim);
  border: 1px solid var(--border);
  transition: all 0.2s;
  display: inline-block;
}
.pl-btn-ghost:hover { color: var(--fg); border-color: var(--fg-dim); }

/* ── PL HOW ── */
.pl-how {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.pl-section-inner { max-width: 1200px; margin: 0 auto; }
.pl-section-rule {
  width: 48px; height: 2px;
  background: var(--amber);
  margin-bottom: 56px;
}
.pl-how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.pl-how-step {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.pl-how-step-accent {
  border-color: rgba(245,166,35,0.25);
  background: rgba(245,166,35,0.03);
}
.pl-step-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--amber);
  font-weight: 500;
  flex-shrink: 0;
  padding-top: 2px;
}
.pl-step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.pl-step-body {
  font-size: 13px;
  line-height: 1.65;
  color: var(--fg-dim);
}

/* ── PL COMPARE ── */
.pl-compare {
  padding: 100px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.pl-compare-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 16px;
}
.pl-compare-intro {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-dim);
  max-width: 560px;
  margin-bottom: 48px;
}
.pl-table-wrap { overflow-x: auto; }
.pl-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  min-width: 700px;
}
.pl-compare-table th {
  text-align: left;
  padding: 12px 16px;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  font-size: 10px;
  border-bottom: 1px solid var(--border);
}
.pl-compare-table th.th-omi { color: var(--amber); }
.pl-compare-table td {
  padding: 14px 16px;
  color: var(--fg-dim);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pl-compare-table td.td-omi { color: var(--fg); }
.pl-compare-table td.td-check { color: #50c878; }
.pl-compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.pl-compare-table tr.pl-tr-price td {
  border-top: 1px solid var(--border);
  font-weight: 500;
}
.pl-compare-table tr.pl-tr-price td.td-omi {
  color: var(--amber);
  font-size: 15px;
}
.pl-compare-note {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--fg-dim);
  margin-top: 20px;
  line-height: 1.6;
}

/* ── PL WHY ── */
.pl-why {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.pl-why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.pl-why-title {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 28px;
}
.pl-why-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--fg-dim);
  margin-bottom: 20px;
}
.pl-why-card {
  background: var(--surface);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 14px;
  padding: 22px 24px;
  margin-top: 12px;
}
.pl-why-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.pl-why-card-body {
  font-size: 13px;
  line-height: 1.65;
  color: var(--fg-dim);
}

/* Wire diagram */
.pl-wire-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}
.pl-wire-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 180px;
}
.pl-wire-mic { border-color: rgba(80,200,120,0.25); }
.pl-wire-core { border-color: rgba(245,166,35,0.3); background: rgba(245,166,35,0.04); }
.pl-wire-led { border-color: rgba(245,166,35,0.35); }
.pl-wire-cloud { border-color: rgba(255,255,255,0.06); opacity: 0.5; }
.pl-wire-icon {
  color: var(--fg-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pl-wire-icon-accent { color: var(--amber); }
.pl-wire-icon-dim { color: var(--fg-dim); opacity: 0.5; }
.pl-wire-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: 0.05em;
}
.pl-wire-sub {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--fg-dim);
}
.pl-wire-led-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px var(--amber), 0 0 24px rgba(245,166,35,0.4);
}
.pl-wire-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.pl-wire-line {
  width: 2px;
  height: 24px;
  background: rgba(245,166,35,0.25);
}
.pl-wire-arrowhead {
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid rgba(245,166,35,0.35);
}
.pl-wire-divider {
  display: flex;
  align-items: center;
  width: 180px;
  gap: 12px;
  padding: 8px 0;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: var(--fg-dim);
  letter-spacing: 0.08em;
  opacity: 0.5;
}
.pl-wire-divider::before,
.pl-wire-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── PL CTA ── */
.pl-cta {
  padding: 120px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}
.pl-cta-inner { max-width: 800px; margin: 0 auto; }
.pl-cta-badge {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--amber);
  margin-bottom: 40px;
}
.pl-cta-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 24px;
}
.pl-cta-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-dim);
  margin-bottom: 32px;
}
.pl-cta-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 36px;
}
.price-from {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: var(--fg-dim);
}
.price-from strong { color: var(--fg); font-size: 26px; }
.price-deposit {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
}
.price-deposit strong { color: var(--amber); }
.pl-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.pl-cta-dev-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.dev-badge {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--surface);
}

/* ── PL RESPONSIVE ── */
@media (max-width: 900px) {
  .pl-hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .pl-led-stage { order: 2; }
  .pl-hero-copy { order: 1; }
  .pl-how-grid { grid-template-columns: 1fr; }
  .pl-why-layout { grid-template-columns: 1fr; gap: 40px; }
  .pl-compare, .pl-how, .pl-why, .pl-cta { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 600px) {
  .pl-hero { padding: 100px 24px 60px; }
  .pl-hero-cta { flex-direction: column; }
  .pl-btn { text-align: center; }
  .pl-cta-actions { flex-direction: column; }
}