/* =========================================
   GEEPOW — Industrial Precision Theme
   ========================================= */

:root {
  --bg: #0F0F0F;
  --bg-light: #FAFAF8;
  --surface: #1A1A1A;
  --surface-2: #242424;
  --fg: #F0EDE8;
  --fg-muted: #8A8680;
  --accent: #FF4D00;
  --accent-dim: rgba(255, 77, 0, 0.12);
  --border: rgba(240, 237, 232, 0.08);
  --border-light: #E0DDD8;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ─────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo { display: flex; align-items: center; gap: 8px; }
.logo-mark {
  width: 32px; height: 32px;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.12em;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 500 !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }

/* ── HERO ──────────────────────────────── */
.hero {
  padding: 80px 48px 0;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-label {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: opacity 0.2s;
}
.hero-btn:hover { opacity: 0.85; }

/* Machine spec cards */
.hero-right {
  display: grid;
  gap: 12px;
  padding-top: 8px;
}

.machine-spec-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  transition: border-color 0.2s;
}
.machine-spec-card:hover { border-color: var(--accent); }
.machine-spec-card.secondary { opacity: 0.7; }

.spec-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.spec-brand {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.spec-model {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  flex-direction: column;
}
.spec-val {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--fg);
  line-height: 1.1;
}
.spec-unit {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 2px;
}
.spec-label {
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 6px;
}

.spec-footer { padding-top: 12px; border-top: 1px solid var(--border); }
.spec-status {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: #00C47A;
}
.spec-status.used { color: var(--accent); }

/* ── STATS BAR ─────────────────────────── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 64px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  flex: 1;
  text-align: center;
}
.stat-value {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--fg);
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin: 0 32px;
}

/* ── SECTIONS ──────────────────────────── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
}
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 56px;
}

/* ── MACHINES ──────────────────────────── */
.machines { background: var(--bg); }
.machine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.machine-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.machine-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.machine-card.featured { border-color: var(--accent); background: var(--accent-dim); }
.machine-icon { color: var(--accent); margin-bottom: 20px; }
.machine-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}
.machine-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.65; margin-bottom: 20px; }
.machine-range {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  padding: 6px 12px;
  background: var(--accent-dim);
  border-radius: 4px;
  display: inline-block;
}
.machines-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.machines-note { font-size: 14px; color: var(--fg-muted); max-width: 480px; }
.machines-link { font-size: 14px; color: var(--accent); text-decoration: none; font-weight: 500; }

/* ── APPLICATIONS ──────────────────────── */
.applications { background: var(--surface); }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.industry-card {
  display: flex;
  gap: 24px;
  padding: 40px;
  background: var(--surface);
  transition: background 0.2s;
}
.industry-card:hover { background: var(--surface-2); }
.industry-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 4px;
}
.industry-body h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}
.industry-body p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* ── PROCESS ───────────────────────────── */
.process { background: var(--bg); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.process-step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
}
.process-step:hover { border-color: var(--accent); }
.step-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 16px;
}
.process-step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
.process-step p { font-size: 13px; color: var(--fg-muted); line-height: 1.65; }
.process-arrow {
  color: var(--fg-muted);
  flex-shrink: 0;
  padding-top: 28px;
}

/* ── CLOSING ───────────────────────────── */
.closing { background: var(--surface); border-top: 1px solid var(--border); }
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.closing-label {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.closing-body { font-size: 16px; color: var(--fg-muted); line-height: 1.7; max-width: 560px; margin-bottom: 40px; }
.closing-actions { display: flex; align-items: center; gap: 32px; }
.closing-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.closing-btn:hover { opacity: 0.85; }
.closing-link { font-size: 14px; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.closing-link:hover { color: var(--fg); }

.badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  border: 2px solid var(--border);
  border-radius: 50%;
  text-align: center;
}
.badge-val { font-size: 11px; color: var(--fg-muted); letter-spacing: 0.06em; }
.badge-city {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--fg);
  margin: 6px 0;
}

/* ── FOOTER ────────────────────────────── */
.footer { background: var(--bg); border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.footer-tagline { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.footer-col a, .footer-col p { display: block; font-size: 13px; color: var(--fg-muted); text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--fg); }
.footer-address { font-style: normal; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 12px; color: var(--fg-muted); }

/* ── RESPONSIVE ────────────────────────── */
@media (max-width: 900px) {
  .navbar { padding: 16px 24px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 48px 24px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: grid; grid-template-columns: 1fr 1fr; }
  .section-inner { padding: 64px 24px; }
  .stats-inner { padding: 24px; gap: 0; }
  .stat-value { font-size: 28px; }
  .stat-divider { margin: 0 16px; }
  .machine-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .process-arrow { display: none; }
  .closing-inner { grid-template-columns: 1fr; gap: 40px; }
  .badge-inner { width: 140px; height: 140px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-right { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .footer-links { grid-template-columns: 1fr; }
}