:root {
  --bg: #050505;
  --surface: #0e0e0c;
  --surface-2: #15130f;
  --text: #f7f2ea;
  --muted: #b8b0a3;
  --bronze: #c28b4a;
  --bronze-2: #7a5832;
  --border: rgba(194, 139, 74, 0.28);
  --shadow: rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--bronze);
  color: var(--bronze);
  font-size: 11px;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

nav a:hover,
.lane-grid a:hover {
  color: var(--bronze);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--bronze);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.header-cta {
  color: var(--bronze);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 58px 0 72px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 94px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-subhead {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 20px;
}

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

.button.primary {
  background: var(--bronze);
  color: #050505;
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(247, 242, 234, 0.25);
}

.proof-line {
  color: var(--muted);
  font-size: 14px;
}

.hero-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(194, 139, 74, 0.13), rgba(5, 5, 5, 0.08)),
    var(--surface);
  box-shadow: 0 28px 80px var(--shadow);
}

.scanline {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194, 139, 74, 0.11) 1px, transparent 1px);
  background-size: 100% 30px, 42px 100%;
  opacity: 0.42;
}

.portrait-wrap {
  position: absolute;
  inset: 0;
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
  filter: contrast(1.08) saturate(0.86);
}

.signal-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 18px;
  border: 1px solid var(--border);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(14px);
}

.signal-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--bronze);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-card strong {
  font-size: 20px;
  line-height: 1.1;
}

.signal-bar,
.section,
.system-section,
.lead-magnet,
.final-cta,
footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.signal-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.signal-bar article {
  padding: 28px 26px;
  border-right: 1px solid var(--border);
}

.signal-bar article:last-child {
  border-right: 0;
}

.signal-bar span,
.process-grid span {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 900;
}

.signal-bar h2,
.lane-grid h3,
.process-grid h3 {
  margin: 8px 0 8px;
  font-size: 22px;
  letter-spacing: 0;
}

.signal-bar p,
.lane-grid p,
.process-grid p,
.system-section p,
.lead-magnet p,
.final-cta p,
footer p,
footer small {
  color: var(--muted);
}

.section,
.system-section,
.lead-magnet,
.final-cta {
  padding: 96px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.section-heading h2,
.system-section h2,
.lead-magnet h2,
.final-cta h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

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

.lane-grid article,
.process-grid article,
.pipeline div {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.lane-grid a {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.system-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 52px;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pipeline {
  display: grid;
  gap: 14px;
}

.pipeline div {
  min-height: 0;
  background: linear-gradient(90deg, rgba(194, 139, 74, 0.16), rgba(14, 14, 12, 0.92));
}

.pipeline span {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
}

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

.lead-magnet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lead-magnet div {
  max-width: 740px;
}

.final-cta {
  text-align: center;
}

.final-cta .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

footer {
  display: grid;
  gap: 12px;
  padding: 44px 0 56px;
  border-top: 1px solid var(--border);
}

footer strong {
  color: var(--bronze);
}

footer span {
  color: var(--text);
}

footer small {
  max-width: 780px;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero,
  .system-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 42px;
  }

  .hero-panel {
    min-height: 460px;
  }

  .signal-bar,
  .lane-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .signal-bar article {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .signal-bar article:last-child {
    border-bottom: 0;
  }

  .lane-grid article,
  .process-grid article {
    min-height: 0;
  }

  .lead-magnet {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .signal-bar,
  .section,
  .system-section,
  .lead-magnet,
  .final-cta,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-subhead {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    min-height: 380px;
  }

  .section,
  .system-section,
  .lead-magnet,
  .final-cta {
    padding: 68px 0;
  }
}
