/* ==========================================================================
   LUDOENTREPRISE // NOTHING OS DESIGN SYSTEM
   Inspiré par Carl Pei / Nothing Phone (NDot, Bento Grid, Glyph LED, Monochrome)
   ========================================================================== */

:root {
  --bg-main: #050505;
  --bg-card: #0c0c0c;
  --bg-card-hover: #121212;
  --border-subtle: #1c1c1c;
  --border-active: #333333;
  --border-focus: #ffffff;
  
  --text-pure: #ffffff;
  --text-main: #e6e6e6;
  --text-muted: #808080;
  --text-subtle: #4d4d4d;
  
  --glyph-red: #ff2a34;
  --glyph-red-glow: rgba(255, 42, 52, 0.45);
  --glyph-green: #00e676;
  --glyph-green-glow: rgba(0, 230, 118, 0.4);

  --font-ndot: 'Silkscreen', 'DotGothic16', monospace;
  --font-matrix: 'DotGothic16', monospace;
  --font-mono: 'Space Mono', monospace;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-card: 26px;
  --radius-pill: 999px;
  --radius-inner: 16px;

  --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.5;
  background-color: var(--bg-main);
}

/* ─── TRAME DE FOND MATRIX NOTHING ────────────────────────────────────────── */
.dot-matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 60%, transparent 100%);
}

/* ─── TOP NAVIGATION / STATUS BAR ─────────────────────────────────────────── */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-glyph {
  width: 8px;
  height: 8px;
  background: var(--glyph-red);
  box-shadow: 0 0 10px var(--glyph-red-glow);
  border-radius: 1px;
}

.brand-name {
  font-family: var(--font-ndot);
  font-size: 15px;
  letter-spacing: 1.5px;
  color: var(--text-pure);
}

.brand-version {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-subtle);
}

.nav-center .loc-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  background: #111111;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.live-clock {
  font-family: var(--font-ndot);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--text-pure);
  background: #0d0d0d;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
}

.sound-toggle {
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition-fast);
}

.sound-toggle:hover {
  background: #181818;
  border-color: var(--border-active);
}

/* ─── BENTO GRID CONTAINER ────────────────────────────────────────────────── */
.bento-container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 28px auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

/* ─── BENTO CARD BASE ─────────────────────────────────────────────────────── */
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.bento-card:hover {
  border-color: var(--border-active);
  background: var(--bg-card-hover);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-subtle);
  letter-spacing: 0.8px;
}

.widget-label {
  color: var(--text-muted);
}

.sys-code {
  color: var(--text-subtle);
}

/* Scanline animée sur hover */
.card-scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  pointer-events: none;
}

.bento-card:hover .card-scanline {
  animation: scanlinePass 1.8s ease-in-out infinite;
}

@keyframes scanlinePass {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ─── PULSE DOTS ─────────────────────────────────────────────────────────── */
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.pulse-dot.red {
  background: var(--glyph-red);
  box-shadow: 0 0 8px var(--glyph-red-glow);
  animation: redPulse 2s infinite ease-in-out;
}

.pulse-dot.green {
  background: var(--glyph-green);
  box-shadow: 0 0 8px var(--glyph-green-glow);
  animation: greenPulse 2.5s infinite ease-in-out;
}

@keyframes redPulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 8px var(--glyph-red-glow); }
  50% { transform: scale(1.3); opacity: 0.7; box-shadow: 0 0 16px var(--glyph-red-glow); }
}

@keyframes greenPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.6; }
}

/* ─── 1. WIDGET HERO (8 COLS) ─────────────────────────────────────────────── */
.widget-hero {
  grid-column: span 8;
}

.hero-body {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.avatar-frame {
  position: relative;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  padding: 6px;
  background: #000;
  border: 1px solid var(--border-subtle);
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) brightness(0.98);
}

.avatar-glyph-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  animation: rotateRing 30s linear infinite;
  pointer-events: none;
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.avatar-status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-pure);
  background: #111;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
}

.hero-content {
  flex: 1;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tech-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  background: #121212;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
}

.tech-tag.highlight {
  color: var(--text-pure);
  border-color: #2e2e2e;
}

.hero-title {
  font-family: var(--font-ndot);
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--text-pure);
  margin-bottom: 8px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-pure);
  margin-bottom: 10px;
}

.hero-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-family: var(--font-ndot);
  font-size: 18px;
  color: var(--text-pure);
}

.metric-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
}

.metric-sep {
  font-family: var(--font-mono);
  color: var(--text-subtle);
}

/* ─── 2. WIDGET STATUS LIVE (4 COLS) ──────────────────────────────────────── */
.widget-status {
  grid-column: span 4;
  justify-content: space-between;
}

.status-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin: auto 0;
}

.glyph-symbol-wrap {
  width: 84px;
  height: 84px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glyph-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--border-active);
  background: radial-gradient(circle, rgba(255, 42, 52, 0.12) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: glyphPulse 3s infinite ease-in-out;
}

.glyph-center-dot {
  width: 16px;
  height: 16px;
  background: var(--glyph-red);
  box-shadow: 0 0 16px var(--glyph-red-glow), 0 0 32px var(--glyph-red-glow);
  border-radius: 50%;
}

@keyframes glyphPulse {
  0%, 100% { transform: scale(1); border-color: var(--border-active); }
  50% { transform: scale(1.05); border-color: rgba(255, 42, 52, 0.4); }
}

.status-headline {
  font-family: var(--font-ndot);
  font-size: 20px;
  letter-spacing: 1.5px;
  color: var(--text-pure);
}

.status-sub {
  font-size: 12.5px;
  color: var(--text-muted);
  max-width: 220px;
  margin: 0 auto;
}

.status-actions {
  width: 100%;
}

.btn-nothing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: var(--transition-smooth);
  width: 100%;
}

.btn-nothing.primary {
  background: var(--text-pure);
  color: #000;
  font-weight: 700;
  border: 1px solid #ffffff;
}

.btn-nothing.primary:hover {
  background: #d9d9d9;
  transform: translateY(-1px);
}

/* ─── 3. WIDGET OFFRE PHARE (12 COLS) ─────────────────────────────────────── */
.widget-offer {
  grid-column: span 12;
}

.badge-price {
  font-family: var(--font-ndot);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--glyph-red);
  background: rgba(255, 42, 52, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 42, 52, 0.3);
}

.offer-body {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 36px;
  align-items: center;
}

.offer-title {
  font-family: var(--font-ndot);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--text-pure);
  margin-bottom: 12px;
  line-height: 1.3;
}

.offer-intro {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.payment-flex {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #111111;
  padding: 14px 16px;
  border-radius: var(--radius-inner);
  border: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-main);
}

.flex-icon {
  font-size: 20px;
  line-height: 1;
}

.specs-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #0f0f0f;
  padding: 14px;
  border-radius: var(--radius-inner);
  border: 1px solid var(--border-subtle);
}

.spec-bullet {
  font-family: var(--font-ndot);
  color: var(--text-subtle);
  font-size: 10px;
  margin-top: 4px;
}

.spec-item strong {
  display: block;
  font-size: 13px;
  color: var(--text-pure);
  margin-bottom: 2px;
}

.spec-sub {
  display: block;
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─── 4. WIDGET SHOWCASE DÉMOS (12 COLS) ──────────────────────────────────── */
.widget-showcase {
  grid-column: span 12;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.demo-card {
  background: #101010;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.demo-card:hover {
  border-color: var(--border-active);
  background: #141414;
  transform: translateY(-3px);
}

.demo-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.demo-screen {
  background: #000;
  border: 1px solid #242424;
  border-radius: 14px;
  height: 170px;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.demo-screen-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 8px;
  background: #242424;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.demo-screen-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}

.client-name {
  font-family: var(--font-ndot);
  color: var(--text-pure);
  font-size: 11px;
}

.stars {
  color: #ffb800;
  letter-spacing: 1px;
  font-size: 10px;
}

.screen-headline {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-pure);
  margin: 6px 0;
}

.screen-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.screen-tags span {
  font-family: var(--font-mono);
  font-size: 8.5px;
  background: #181818;
  color: var(--text-muted);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #282828;
}

.screen-buttons {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.fake-btn {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 9px;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  font-weight: 700;
}

.fake-btn.call {
  background: #00e676;
  color: #000;
}

.fake-btn.sms {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
}

.demo-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.demo-title {
  font-family: var(--font-ndot);
  font-size: 15px;
  color: var(--text-pure);
  margin-bottom: 6px;
}

.demo-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.demo-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.8px;
  color: var(--text-pure);
  background: #181818;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-fast);
}

.demo-link:hover {
  background: #222222;
  border-color: var(--border-active);
}

/* ─── 5. WIDGET DIALS / PHILOSOPHIE (6 COLS) ──────────────────────────────── */
.widget-dials {
  grid-column: span 6;
}

.dials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.dial-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dial-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px dashed var(--border-active);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: #080808;
  position: relative;
}

.dial-circle::after {
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  width: 4px;
  height: 4px;
  background: var(--text-subtle);
  border-radius: 50%;
}

.dial-num {
  font-family: var(--font-ndot);
  font-size: 15px;
  color: var(--text-pure);
}

.dial-lbl {
  font-family: var(--font-ndot);
  font-size: 11px;
  letter-spacing: 0.8px;
  color: var(--text-pure);
  margin-bottom: 6px;
}

.dial-sub {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─── 6. WIDGET CONSOLE / TERMINAL (6 COLS) ───────────────────────────────── */
.widget-terminal {
  grid-column: span 6;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #262626;
}

.terminal-body {
  background: #050505;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-inner);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
}

.terminal-history {
  height: 120px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.term-line.prompt {
  color: var(--glyph-red);
}

.term-line.reply {
  color: var(--text-muted);
}

.terminal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.term-cmd-btn {
  background: #141414;
  border: 1px solid var(--border-subtle);
  color: var(--text-pure);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.term-cmd-btn:hover {
  background: #222222;
  border-color: var(--border-active);
}

.terminal-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 8px;
}

.term-arrow {
  color: var(--glyph-red);
  font-weight: 700;
}

.term-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-pure);
  font-family: var(--font-mono);
  font-size: 11.5px;
  width: 100%;
}

/* ─── 7. WIDGET CONTACT & GLYPH ACTION (12 COLS) ─────────────────────────── */
.widget-contact {
  grid-column: span 12;
}

.contact-body {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 36px;
  align-items: center;
}

.contact-title {
  font-family: var(--font-ndot);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--text-pure);
  margin-bottom: 12px;
  line-height: 1.3;
}

.contact-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.legal-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-subtle);
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-action-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-action-btn.primary-action {
  background: var(--text-pure);
  color: #000;
  border: 1px solid #ffffff;
}

.contact-action-btn.primary-action:hover {
  background: #e6e6e6;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.contact-action-btn.whatsapp-action {
  background: #111111;
  color: var(--text-pure);
  border: 1px solid var(--border-subtle);
}

.contact-action-btn.whatsapp-action:hover {
  background: #181818;
  border-color: #25d366;
}

.contact-action-btn.sms-action {
  background: #111111;
  color: var(--text-pure);
  border: 1px solid var(--border-subtle);
}

.contact-action-btn.sms-action:hover {
  background: #181818;
  border-color: var(--border-active);
}

.contact-action-btn.google-action {
  background: #111111;
  color: var(--text-pure);
  border: 1px solid var(--border-subtle);
}

.contact-action-btn.google-action:hover {
  background: #181818;
  border-color: #ffb800;
  box-shadow: 0 4px 16px rgba(255, 184, 0, 0.15);
}

.btn-icon {
  font-size: 20px;
}

.btn-data {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.btn-legend {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.8px;
  opacity: 0.7;
}

.btn-main {
  font-family: var(--font-ndot);
  font-size: 14px;
  letter-spacing: 1px;
}

.btn-arrow {
  font-family: var(--font-mono);
  font-size: 16px;
}

/* ─── FOOTER NOTHING ──────────────────────────────────────────────────────── */
.bottom-footer {
  border-top: 1px solid var(--border-subtle);
  background: #020202;
  padding: 24px 28px;
  position: relative;
  z-index: 1;
}

.footer-wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.footer-brand {
  font-family: var(--font-ndot);
  color: var(--text-pure);
  margin-right: 12px;
}

.cf-badge {
  color: var(--text-subtle);
}

.status-indicator {
  color: var(--glyph-green);
}

/* ─── RESPONSIVE MOBILE ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .widget-hero { grid-column: span 12; }
  .widget-status { grid-column: span 12; }
  .offer-body { grid-template-columns: 1fr; gap: 24px; }
  .contact-body { grid-template-columns: 1fr; gap: 24px; }
  .widget-dials { grid-column: span 12; }
  .widget-terminal { grid-column: span 12; }
  .showcase-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-nav { padding: 12px 16px; }
  .nav-center { display: none; }
  .bento-container { padding: 0 14px; gap: 14px; margin-top: 16px; }
  .bento-card { padding: 20px; border-radius: 20px; }
  .hero-body { flex-direction: column; text-align: center; gap: 20px; }
  .hero-metrics { justify-content: center; }
  .tag-row { justify-content: center; }
  .specs-grid { grid-template-columns: 1fr; }
  .dials-row { grid-template-columns: 1fr; gap: 20px; }
  .footer-wrap { flex-direction: column; gap: 10px; text-align: center; }
}
