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

:root {
  --navy: #0b0f1c;
  --navy-mid: #141929;
  --navy-light: #1e2740;
  --gold: #c8a96e;
  --gold-light: #e2c98a;
  --silver: #8fa3b8;
  --white: #f0ede8;
  --off: #d6d0c7;
  --text-dim: #5a6a80;
  --tech: #2a6dd9;
  --tech-glow: rgba(42, 109, 217, 0.15);
  --real: #9c6b3c;
  --real-glow: rgba(156, 107, 60, 0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
.cursor {
  position: fixed; width: 8px; height: 8px;
  border-radius: 50%; background: var(--gold);
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}
.cursor-ring {
  position: fixed; width: 32px; height: 32px;
  border-radius: 50%; border: 1px solid rgba(200,169,110,.4);
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 3rem;
  background: linear-gradient(to bottom, rgba(11,15,28,.98), transparent);
  backdrop-filter: blur(2px);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 300;
  letter-spacing: .15em; color: var(--white); text-decoration: none;
}
.logo span { color: var(--gold); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'DM Mono', monospace; font-size: .7rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--silver); text-decoration: none; transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  font-family: 'DM Mono', monospace; font-size: .7rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy); background: var(--gold);
  padding: .6rem 1.4rem; text-decoration: none;
  transition: background .3s, transform .2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  min-height: 52vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 9rem 3rem 5rem;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-content { position: relative; z-index: 1; }

.breadcrumb {
  font-family: 'DM Mono', monospace; font-size: .6rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .5rem;
}
.breadcrumb a { color: var(--text-dim); text-decoration: none; transition: color .3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-dim); }

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.05;
  margin-bottom: 1.5rem;
}
.page-title em { font-style: italic; color: var(--gold); display: block; }

.page-subtitle {
  font-size: 1rem; line-height: 1.8;
  color: var(--silver); max-width: 560px; font-weight: 300;
}

/* ── SECTIONS ── */
section { padding: 6rem 3rem; }

.section-tag {
  font-family: 'DM Mono', monospace; font-size: .65rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-dim);
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem;
}
.section-tag::before {
  content: ''; display: block; width: 1.5rem; height: 1px; background: currentColor;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: 'DM Mono', monospace; font-size: .7rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy); background: var(--gold);
  padding: .9rem 2rem; text-decoration: none;
  transition: background .3s, transform .2s; border: none; cursor: none;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline-tech {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: 'DM Mono', monospace; font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--tech); border: 1px solid rgba(42,109,217,.3);
  background: rgba(42,109,217,.05);
  padding: .8rem 1.5rem; text-decoration: none;
  transition: all .3s;
}
.btn-outline-tech:hover { background: rgba(42,109,217,.12); border-color: var(--tech); }

.btn-outline-gold {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: 'DM Mono', monospace; font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(200,169,110,.3);
  background: rgba(200,169,110,.05);
  padding: .8rem 1.5rem; text-decoration: none;
  transition: all .3s;
}
.btn-outline-gold:hover { background: rgba(200,169,110,.1); border-color: var(--gold); }

.arrow { transition: transform .3s; }
.btn-gold:hover .arrow,
.btn-outline-tech:hover .arrow,
.btn-outline-gold:hover .arrow { transform: translateX(5px); }

/* ── CARDS COMMON ── */
.card-grid { display: grid; gap: 1px; background: var(--navy-light); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--navy); padding: 2.5rem 2rem;
  position: relative; overflow: hidden; transition: background .4s;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--tech-glow); opacity: 0; transition: opacity .4s;
}
.card:hover { background: var(--navy-mid); }
.card:hover::before { opacity: 1; }
.card.gold-hover::before { background: var(--real-glow); }

.card-num {
  font-family: 'DM Mono', monospace; font-size: .6rem;
  color: var(--tech); letter-spacing: .15em; margin-bottom: 1rem; opacity: .7;
}
.card-num.gold { color: var(--gold); }
.card-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  font-weight: 400; margin-bottom: .75rem; color: var(--white);
}
.card-desc {
  font-size: .83rem; line-height: 1.75; color: var(--text-dim); font-weight: 300;
}

/* ── STAT CARDS ── */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--navy-light); }
.stat-card {
  background: var(--navy-light); padding: 2.5rem 2rem;
  position: relative; overflow: hidden; transition: background .3s;
}
.stat-card:hover { background: rgba(30,39,64,.8); }
.stat-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 2px; height: 100%; background: var(--gold);
  transform: scaleY(0); transform-origin: top; transition: transform .4s;
}
.stat-card:hover::after { transform: scaleY(1); }
.stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 3.5rem;
  font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: .5rem;
}
.stat-label { font-size: .8rem; color: var(--silver); font-weight: 300; line-height: 1.4; }

/* ── PROCESS STEPS ── */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.step {
  padding: 2.5rem 2rem; border-right: 1px solid var(--navy-light);
  position: relative;
}
.step:last-child { border-right: none; }
.step-num {
  font-family: 'Cormorant Garamond', serif; font-size: 4rem;
  font-weight: 300; color: rgba(200,169,110,.12); line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-size: .9rem; font-weight: 500; margin-bottom: .5rem; color: var(--white);
}
.step-desc { font-size: .82rem; line-height: 1.7; color: var(--text-dim); font-weight: 300; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy-light);
  padding: 5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem;
}
.cta-banner-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; margin-bottom: .5rem;
}
.cta-banner-text h2 em { font-style: italic; color: var(--gold); }
.cta-banner-text p { font-size: .9rem; color: var(--silver); font-weight: 300; }
.cta-banner-actions { display: flex; gap: 1rem; flex-shrink: 0; }

/* ── FORM ── */
.form-grid { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label {
  font-family: 'DM Mono', monospace; font-size: .6rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--text-dim);
}
.field input, .field textarea, .field select {
  background: var(--navy-light); border: 1px solid rgba(255,255,255,.06);
  color: var(--white); padding: .85rem 1rem;
  font-family: 'Outfit', sans-serif; font-size: .85rem; font-weight: 300;
  outline: none; transition: border-color .3s, background .3s; appearance: none;
}
.field select option { background: var(--navy); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: rgba(200,169,110,.4); background: rgba(30,39,64,.6);
}
.field textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
footer {
  background: var(--navy); padding: 3rem;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--navy-light);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  font-weight: 300; letter-spacing: .15em; color: var(--silver);
}
.footer-logo span { color: var(--gold); }
.footer-copy {
  font-family: 'DM Mono', monospace; font-size: .6rem;
  letter-spacing: .1em; color: var(--text-dim);
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-family: 'DM Mono', monospace; font-size: .6rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-dim); text-decoration: none; transition: color .3s;
}
.footer-links a:hover { color: var(--gold); }

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(25px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--navy-light); margin: 0 3rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .step { border-right: none; border-bottom: 1px solid var(--navy-light); }
  .step:nth-child(odd) { border-right: 1px solid var(--navy-light); }
  .card-grid-3 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }
  section { padding: 4rem 1.5rem; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .step { border-right: none; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions { flex-direction: column; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
}
