/* StackHaul — Warm Industrial */

:root {
  --bg: #F7F5F0;
  --bg-alt: #F0EDE6;
  --fg: #161615;
  --fg-muted: #6B6963;
  --accent: #E8930A;
  --accent-dim: rgba(232, 147, 10, 0.12);
  --amber-glow: rgba(232, 147, 10, 0.06);
  --dark: #0E0D0B;
  --warm-gray: #C8C4BB;
}

* { 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;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 80px 80px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, var(--accent-dim) 0%, transparent 70%),
    linear-gradient(160deg, var(--bg) 0%, var(--amber-glow) 100%);
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.hero-headline .line-three { color: var(--accent); }

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

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

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--warm-gray);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.visual-frame {
  width: 420px;
  height: 420px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.visual-noise {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(22, 22, 21, 0.03) 2px,
      rgba(22, 22, 21, 0.03) 4px
    ),
    linear-gradient(135deg, #2A2520 0%, #1A1814 50%, #252118 100%);
}

.visual-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 147, 10, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.visual-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 2px;
  padding: 2px;
}

.vg-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease;
}

.vg-cell:hover {
  background: rgba(232, 147, 10, 0.12);
}

.vg-icon {
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}

.vg-label {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(247, 245, 240, 0.8);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── JOBS ── */
.jobs {
  padding: 100px 80px;
  background: var(--dark);
  color: var(--bg);
}

.jobs-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.job-card {
  background: #1C1A17;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.job-card:hover {
  border-color: rgba(232, 147, 10, 0.4);
  background: #222019;
}

.job-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 4px;
}

.job-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--bg);
}

.job-card p {
  font-size: 14px;
  color: rgba(247, 245, 240, 0.5);
  line-height: 1.6;
  flex: 1;
}

.job-detail {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── HOW ── */
.how {
  padding: 100px 80px;
  background: var(--bg);
}

.how-header {
  margin-bottom: 64px;
}

.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.how h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.1;
}

.how-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
}

.how-steps {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 64px;
}

.step {
  flex: 1;
  background: var(--bg-alt);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 32px;
  border-radius: 12px;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.step h4 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-arrow {
  color: var(--warm-gray);
  flex-shrink: 0;
}

.how-callout {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 40px;
  text-align: center;
}

.callout-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

/* ── GEO ── */
.geo {
  padding: 100px 80px;
  background: var(--fg);
  color: var(--bg);
}

.geo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.geo h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.geo > div > p {
  font-size: 16px;
  color: rgba(247, 245, 240, 0.55);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 32px;
}

.geo-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.geo-towns span {
  padding: 6px 14px;
  border: 1px solid rgba(247, 245, 240, 0.15);
  border-radius: 100px;
  font-size: 13px;
  color: rgba(247, 245, 240, 0.7);
  font-weight: 500;
}

/* Map */
.map-block {
  background: #1A1916;
  border: 1px solid rgba(247, 245, 240, 0.08);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.map-dot-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.map-dot {
  flex: 1;
  height: 28px;
  border-radius: 4px;
  background: rgba(247, 245, 240, 0.04);
  border: 1px solid rgba(247, 245, 240, 0.06);
}

.map-dot.active {
  background: rgba(232, 147, 10, 0.3);
  border-color: rgba(232, 147, 10, 0.5);
}

.map-overlay-text {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.35);
  white-space: nowrap;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 80px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(232, 147, 10, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.closing-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing > div > p {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 48px;
}

.closing-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.cd-line {
  flex: 1;
  height: 1px;
  background: var(--warm-gray);
}

.cd-icon {
  font-size: 18px;
  color: var(--accent);
}

.closing-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}

/* Footer */
footer {
  background: var(--dark);
  color: rgba(247, 245, 240, 0.3);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 28px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 40px;
    min-height: auto;
  }
  .hero-visual { justify-content: flex-start; }
  .visual-frame { width: 100%; height: 280px; }
  .jobs-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { flex-direction: column; gap: 16px; }
  .step-arrow { transform: rotate(90deg); }
  .geo-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .hero { padding: 48px 24px; }
  .jobs { padding: 72px 24px; }
  .jobs-grid { grid-template-columns: 1fr; }
  .how { padding: 72px 24px; }
  .geo { padding: 72px 24px; }
  .closing { padding: 80px 24px; }
  .hero-stats { gap: 20px; }
  .stat-val { font-size: 24px; }
}
