/* FDE Team Theme — Industrial Premium */

:root {
  --bg: #0B0F1A;
  --bg-surface: #111827;
  --bg-card: #141D2F;
  --amber: #E8B84B;
  --amber-dim: rgba(232, 184, 75, 0.12);
  --text-primary: #F0EDE6;
  --text-secondary: #8892A4;
  --text-muted: #4A5568;
  --border: rgba(255,255,255,0.07);
  --border-amber: rgba(232,184,75,0.25);
}

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

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

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 80px 100px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,184,75,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,184,75,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  display: inline-block;
  border: 1px solid var(--border-amber);
  padding: 6px 16px;
  border-radius: 2px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  margin-bottom: 36px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 560px;
  font-weight: 300;
}

/* STATS */
.stats {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  padding: 56px 48px;
  text-align: center;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--amber);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* SERVICES */
.services {
  padding: 120px 80px;
  background: var(--bg);
}

.services-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.section-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg);
  padding: 48px 40px;
  position: relative;
  transition: background 0.2s;
}

.service-card:hover { background: var(--bg-surface); }

.service-card.featured {
  background: var(--bg-card);
  border: 1px solid var(--border-amber);
}

.service-card.featured:hover { background: #1a2540; }

.service-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--border-amber);
  padding: 4px 12px;
  border-radius: 2px;
}

.service-icon {
  width: 40px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 28px;
}

.service-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.service-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-weight: 300;
}

.service-features {
  list-style: none;
}

.service-features li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 5px 0;
  border-top: 1px solid var(--border);
  font-weight: 400;
}

.service-features li::before {
  content: '—';
  margin-right: 10px;
  color: var(--amber);
  opacity: 0.6;
}

/* PROCESS */
.process {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 80px;
}

.process-inner { max-width: 1200px; margin: 0 auto; }

.protocol-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 72px;
  overflow-x: auto;
  padding-bottom: 16px;
}

.protocol-step {
  flex: 1;
  text-align: center;
  min-width: 120px;
}

.protocol-day {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--amber);
  margin-bottom: 12px;
}

.protocol-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.protocol-detail {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 0 12px;
}

.protocol-step.highlight .protocol-name { color: var(--amber); }

.protocol-arrow {
  width: 40px;
  height: 1px;
  background: var(--border-amber);
  margin-top: 28px;
  flex-shrink: 0;
  position: relative;
}

.protocol-arrow::after {
  content: '>';
  position: absolute;
  right: -2px;
  top: -10px;
  color: var(--amber);
  font-size: 12px;
  opacity: 0.6;
}

/* AGENTS */
.agents {
  background: var(--bg);
  padding: 120px 80px;
  border-top: 1px solid var(--border);
}

.agents-inner { max-width: 1200px; margin: 0 auto; }

.agents-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.65;
  font-weight: 300;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.agent-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}

.agent-card:hover { background: var(--bg-surface); }

.agent-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
  opacity: 0.7;
}

.agent-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.agent-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 300;
}

.agents-footer {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
}

/* CLOSING */
.closing {
  background: var(--bg-card);
  padding: 140px 80px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing-inner { max-width: 800px; margin: 0 auto; }

.closing-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 36px;
  display: inline-block;
  border: 1px solid var(--border-amber);
  padding: 8px 20px;
  border-radius: 2px;
}

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.closing-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { padding: 80px 32px 80px; }
  .services { padding: 80px 32px; }
  .process { padding: 80px 32px; }
  .agents { padding: 80px 32px; }
  .closing { padding: 100px 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .agents-grid { grid-template-columns: 1fr; }
  .protocol-timeline { flex-direction: column; align-items: flex-start; gap: 0; }
  .protocol-arrow { display: none; }
  .protocol-step { display: flex; align-items: center; gap: 20px; text-align: left; min-width: auto; padding: 12px 0; border-top: 1px solid var(--border); }
  .protocol-day { margin-bottom: 0; min-width: 60px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 36px 24px; }
  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 56px; }
  .section-headline { font-size: 36px; }
  .closing-headline { font-size: 40px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}