/* === BASE === */
:root {
  --bg: #0d0d12;
  --bg-2: #141418;
  --bg-3: #1c1c22;
  --fg: #f0ede8;
  --fg-2: #9a978f;
  --fg-3: #5c5954;
  --gold: #E8A838;
  --gold-dim: #c4922e;
  --border: #2a2a35;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'Epilogue', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(13,13,18,0.92);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--gold);
  line-height: 1;
}

.nav-tagline {
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.05em;
  font-family: var(--font-body);
  line-height: 1;
}

.nav-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(232, 168, 56, 0.4);
  padding: 8px 18px;
  border-radius: 3px;
  transition: background 0.2s, border-color 0.2s;
}
.nav-cta:hover { background: rgba(232,168,56,0.1); border-color: var(--gold); }

/* === SECTION SHARED === */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  color: var(--fg);
}

.section-sub {
  color: var(--fg-2);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 16px;
}

/* === HERO === */
.hero {
  padding: 140px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-2);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-headline .gold {
  color: var(--gold);
}

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

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 3px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(232,168,56,0.06);
}

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

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

.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--fg);
}

.stat-label {
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.03em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin: 0 28px;
}

.hero-right {}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(232,168,56,0.08) 0%, transparent 40%, transparent 60%, rgba(13,13,18,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-illustration {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(13,13,18,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(232,168,56,0.4);
  border-radius: 4px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--fg-2);
  letter-spacing: 0.05em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.hero-annotation {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--fg-3);
}

.annotation-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.annotation-dot.hot {
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
}

/* === PROBLEM === */
.problem {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
}

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

.problem-header {
  max-width: 580px;
  margin-bottom: 56px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.problem-card {
  background: var(--bg-2);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--fg);
}

.problem-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-2);
}

.problem-quote {
  margin-top: 48px;
  padding: 28px 32px;
  border-left: 2px solid var(--gold);
  background: var(--bg);
  border-radius: 0 4px 4px 0;
}

.problem-quote p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-2);
  font-style: italic;
}

/* === AEGIS === */
.aegis {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.aegis-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.aegis-cycle {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.aegis-step {
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 0 8px;
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.aegis-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
}

.aegis-step p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-3);
}

.aegis-arrow {
  flex-shrink: 0;
  opacity: 0.5;
}

/* === WHAT YOU GET === */
.whatyouget {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 32px;
}

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

.whatyouget-header {
  max-width: 580px;
  margin-bottom: 56px;
}

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

.deliverable {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  transition: border-color 0.2s;
}

.deliverable:hover {
  border-color: var(--gold-dim);
}

.del-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.del-content h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
  margin-bottom: 8px;
}

.del-content p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-2);
}

/* === INDUSTRIES === */
.industries {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.industries-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.industry {
  background: var(--bg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.industry h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
}

.industry p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-2);
}

/* === CLOSING === */
.closing {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 100px 32px;
}

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

.closing-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 64px;
}

.closing-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 28px;
}

.closing-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-2);
  margin-bottom: 20px;
}

.closing-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.closing-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 32px;
  background: var(--bg);
  border-right: 1px solid var(--border);
}

.closing-stat:last-child {
  border-right: none;
}

.closing-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--gold);
}

.closing-stat-label {
  font-size: 12px;
  color: var(--fg-3);
  text-align: center;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.footer-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--fg-2);
  margin-top: 4px;
}

.footer-loc {
  font-size: 12px;
  color: var(--fg-3);
}

.footer-sub {
  font-size: 11px;
  color: var(--fg-3);
  margin-top: 8px;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .deliverables-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .aegis-cycle { gap: 0; }
}

@media (max-width: 640px) {
  .hero { padding: 100px 20px 60px; }
  .problem { padding: 60px 20px; }
  .aegis { padding: 60px 20px; }
  .whatyouget { padding: 60px 20px; }
  .industries { padding: 60px 20px; }
  .closing { padding: 60px 20px; }
  .nav-inner { padding: 14px 20px; }
  .nav-tagline { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { text-align: center; justify-content: center; }
  .problem-grid { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; margin: 0; }
  .aegis-step { width: 120px; }
  .closing-stats { flex-direction: column; }
  .closing-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .closing-stat:last-child { border-bottom: none; }
}