/* ===== ROOT ===== */
:root {
  --bg: #15232E;
  --bg-light: #1A2E40;
  --surface: #1E3447;
  --cream: #F4EFE6;
  --cream-dark: #EAE3D8;
  --gold: #D4922A;
  --gold-light: #E8A93A;
  --slate: #2A3F52;
  --slate-light: #3D5570;
  --text: #F4EFE6;
  --text-muted: #8FA8BF;
  --text-dark: #1A2E40;
  --green: #4CAF7A;
  --amber: #E8A93A;
  --blue: #5B9FD4;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(21, 35, 46, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 146, 42, 0.12);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ===== SHARED ===== */
section { padding: 100px 0; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, #1A2E40 0%, #0F1A24 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero::after {
  content: '';
  position: absolute;
  top: 20%; right: 8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,146,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(76,175,122,0.25);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(76,175,122,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(76,175,122,0.1); }
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat-value {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.4;
  max-width: 120px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--slate-light);
}

/* ===== CREDENTIAL STACK ===== */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}
.credential-stack {
  position: relative;
  width: 280px;
  height: 200px;
}
.cred-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--slate-light);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}
.cred-card--back {
  width: 240px;
  height: 160px;
  top: -10px;
  left: 20px;
  opacity: 0.4;
  transform: rotate(-6deg);
  background: var(--bg-light);
}
.cred-card--mid {
  width: 250px;
  height: 165px;
  top: 0px;
  left: 15px;
  opacity: 0.6;
  transform: rotate(-2deg);
  background: var(--slate);
}
.cred-card--front {
  width: 270px;
  height: 185px;
  top: 15px;
  left: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,146,42,0.15);
  background: var(--surface);
}
.cred-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cred-card-bar {
  height: 4px;
  width: 100px;
  border-radius: 2px;
}
.cred-card-bar--slate { background: var(--slate-light); }
.cred-card-bar--gold { background: var(--gold); }
.cred-card-bar--blue { background: var(--blue); }
.cred-card-icon { color: var(--gold); }
.cred-card-body { margin-bottom: 12px; }
.cred-field { margin-bottom: 10px; }
.cred-field-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.cred-field-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
}
.cred-field-value--accent { color: var(--green); }
.cred-card-seal {
  position: absolute;
  bottom: 16px;
  right: 16px;
}
.cred-card-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--slate);
  padding: 3px 8px;
  border-radius: 4px;
}
.cred-card-lines { margin-top: 10px; }
.cred-line {
  height: 4px;
  background: var(--slate-light);
  border-radius: 2px;
  margin-bottom: 6px;
}
.cred-line--thin { width: 60%; }
.cred-line--thick { width: 85%; }

/* ===== AGENT PULSE ===== */
.agent-pulse {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  position: relative;
}
.pulse-ring {
  position: absolute;
  left: -18px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
}
.pulse-ring--1 { width: 36px; height: 36px; animation: ring-expand 2s ease-out infinite; opacity: 0.5; }
.pulse-ring--2 { width: 36px; height: 36px; animation: ring-expand 2s ease-out infinite 1s; opacity: 0.25; }
@keyframes ring-expand {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}
.pulse-core {
  width: 36px;
  height: 36px;
  background: rgba(212,146,42,0.15);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pulse-label {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
}

/* ===== PROBLEM ===== */
.problem { background: var(--cream); }
.problem-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.problem .section-label { color: var(--gold); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
  background: var(--cream-dark);
  border-radius: 16px;
  overflow: hidden;
}
.problem-card {
  background: var(--cream);
  padding: 48px 40px;
  transition: transform 0.2s ease;
}
.problem-card:hover { transform: translateY(-4px); }
.problem-icon {
  margin-bottom: 24px;
  color: var(--gold);
}
.problem-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.problem-card p {
  font-size: 15px;
  color: #4A5568;
  line-height: 1.65;
}
.problem-tally {
  margin-top: 48px;
}
.tally-bar {
  height: 3px;
  background: #D1C9BF;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
}
.tally-fill {
  height: 100%;
  width: 70%;
  background: var(--gold);
  border-radius: 2px;
}
.tally-text {
  font-size: 15px;
  color: #4A5568;
}
.tally-text strong { color: var(--text-dark); }

/* ===== AGENT ===== */
.agent { background: var(--bg); }
.agent-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.agent-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 64px;
  max-width: 600px;
}
.agent-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.agent-dashboard {
  background: var(--bg-light);
  border: 1px solid var(--slate);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.dashboard-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--slate);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--slate-light);
}
.dash-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.dash-dot--green { background: var(--green); box-shadow: 0 0 0 4px rgba(76,175,122,0.2); animation: pulse-dot 2s ease-in-out infinite; }
.dashboard-credentials { padding: 16px; }
.dash-cred {
  background: var(--surface);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 10px;
  border-left: 3px solid transparent;
}
.dash-cred--active { border-left-color: var(--green); }
.dash-cred--warning { border-left-color: var(--amber); }
.dash-cred--overseas { border-left-color: var(--blue); }
.dash-cred:last-child { margin-bottom: 0; }
.dash-cred-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.status-dot--green { background: var(--green); }
.status-dot--amber { background: var(--amber); }
.status-dot--blue { background: var(--blue); }
.status-text { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.dash-cred-name { font-size: 14px; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
.dash-cred-meta { font-size: 11px; color: var(--text-muted); margin-bottom: 10px; }
.dash-cred-bar { height: 2px; background: var(--slate); border-radius: 1px; overflow: hidden; }
.dash-cred-fill { height: 100%; border-radius: 1px; }
.dash-cred-fill--green { background: var(--green); }
.dash-cred-fill--amber { background: var(--amber); }
.dash-cred-fill--blue { background: var(--blue); }
.dashboard-actions { padding: 16px; border-top: 1px solid var(--slate); }
.dash-action {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dash-action:last-child { border-bottom: none; padding-bottom: 0; }
.dash-action--done { color: var(--green); }
.dash-action--progress { color: var(--amber); }
.dash-action--pending { color: var(--text-muted); }

/* ===== AGENT FEATURES ===== */
.agent-features { display: flex; flex-direction: column; gap: 28px; }
.agent-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(26,46,64,0.5);
  border: 1px solid var(--slate);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.agent-feature:hover { border-color: var(--gold); }
.feature-marker {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: rgba(212,146,42,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.agent-feature h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}
.agent-feature p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* ===== PCS ===== */
.pcs { background: var(--bg-light); }
.pcs-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.pcs-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 20px;
}
.pcs-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 64px;
}
.pcs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--slate);
  border-radius: 16px;
  overflow: hidden;
}
.pcs-card {
  background: var(--bg-light);
  padding: 48px 40px;
  transition: background 0.2s;
}
.pcs-card:hover { background: var(--surface); }
.pcs-number {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.pcs-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.pcs-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ===== OVERSEAS ===== */
.overseas { background: var(--cream); }
.overseas-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.overseas .section-label { color: var(--gold); }
.overseas-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.globe-art {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.globe-circle {
  position: relative;
  width: 220px;
  height: 220px;
}
.globe-circle svg { position: absolute; top: 0; left: 0; }
.base-dots {
  position: absolute;
  inset: 0;
}
.base-dot {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.base-dot--ramstein { top: 25%; left: 15%; }
.base-dot--benelux { top: 30%; right: 10%; }
.base-dot--kaiser { bottom: 25%; left: 30%; }
.base-dot--pacific { bottom: 35%; right: 20%; }
.base-dot-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,146,42,0.2);
}
.base-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-dark);
  opacity: 0.7;
  white-space: nowrap;
}
.overseas-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.overseas-content p {
  font-size: 15px;
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: 32px;
}
.overseas-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.sofa-tracker {
  background: var(--cream-dark);
  border-radius: 12px;
  overflow: hidden;
}
.sofa-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  font-size: 13px;
  color: #4A5568;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sofa-item:last-child { border-bottom: none; }
.sofa-status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.sofa-status--ok {
  background: rgba(76,175,122,0.15);
  color: #2E7D4F;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 720px; margin: 0 auto; padding: 0 32px; }
.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}
.closing-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--slate);
  border-radius: 16px;
  padding: 24px 32px;
}
.cta-text {
  font-size: 15px;
  color: var(--text-muted);
  text-align: left;
}
.cta-text strong { color: var(--cream); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--slate);
  padding: 32px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--cream);
}
.footer-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero::before { display: none; }
  .hero-visual { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .agent-visual { grid-template-columns: 1fr; }
  .overseas-visual { grid-template-columns: 1fr; }
  .globe-art { display: none; }
  .pcs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 72px 0; }
  .hero-headline { font-size: 40px; }
  .nav-tagline { display: none; }
  .footer-inner { flex-direction: column; gap: 12px; }
}