:root {
  --bg: #020d18;
  --bg-2: #061321;
  --panel: rgba(8, 18, 31, 0.9);
  --panel-strong: #0b1724;
  --ink: #fff7e6;
  --muted: #b8ac91;
  --line: rgba(227, 192, 109, 0.2);
  --gold: #bf994c;
  --gold-light: #e3c06d;
  --bronze: #654c21;
  --enamel: #03101d;
  --signal: #d5a84e;
  --coral: #b85c49;
  --white: #ffffff;
  --danger: #d77a66;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(227, 192, 109, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(227, 192, 109, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, var(--bg), #061321 44%, #090b0d);
  background-size: 42px 42px, 42px 42px, auto;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: block;
  padding: 12px 16px;
  background: rgba(7, 16, 20, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-seal {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
  overflow: visible;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  white-space: normal;
}

nav a {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid rgba(227, 192, 109, 0.24);
  background: rgba(255, 247, 230, 0.05);
  color: var(--ink);
  text-decoration: none;
  text-align: center;
}

nav a:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

nav a:focus,
nav a:hover {
  border-color: var(--line);
  color: var(--gold-light);
}

.hero {
  display: grid;
  gap: 30px;
  min-height: calc(100vh - 96px);
  padding: 44px 16px 60px;
  background:
    linear-gradient(180deg, rgba(2, 13, 24, 0.2), rgba(2, 13, 24, 0.94)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1500&q=80") center / cover;
}

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

.hero-brand-seal {
  width: 118px;
  height: 118px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.42));
}

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

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 43px;
  line-height: 0.98;
}

h2 {
  margin-bottom: 14px;
  font-size: 31px;
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

.lead,
.section-heading p,
.filter-lane p,
.independence p,
.dbga p,
.apply-copy p,
article p,
footer {
  color: var(--muted);
}

.lead {
  max-width: 760px;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.button,
button {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(227, 192, 109, 0.58);
  padding: 13px 16px;
  background: rgba(2, 13, 24, 0.72);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.primary,
button {
  border-color: rgba(227, 192, 109, 0.92);
  background: linear-gradient(135deg, #e3c06d, #bf994c 52%, #654c21);
  color: #020d18;
  box-shadow: 0 16px 38px rgba(191, 153, 76, 0.22);
}

.secondary {
  border-color: rgba(191, 153, 76, 0.62);
}

.command-center,
article,
.warning,
form {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.command-center {
  display: grid;
  gap: 14px;
  padding: 16px;
  overflow: hidden;
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
}

.console-top strong {
  color: var(--gold-light);
  font-size: 12px;
  text-transform: uppercase;
}

.agent-state {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: rgba(191, 153, 76, 0.1);
  border: 1px solid rgba(227, 192, 109, 0.32);
}

.agent-state small {
  display: block;
  color: var(--muted);
}

.pulse {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--gold-light);
  box-shadow: 0 0 0 6px rgba(227, 192, 109, 0.12), 0 0 28px rgba(227, 192, 109, 0.5);
}

.screen-grid {
  display: grid;
  gap: 12px;
}

.screen-panel {
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.screen-panel small {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.screen-panel strong {
  display: block;
  margin-bottom: 8px;
}

.screen-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.progress-lines {
  display: grid;
  gap: 8px;
}

.progress-lines span {
  display: block;
  height: 8px;
  background: linear-gradient(90deg, var(--gold-light), rgba(227, 192, 109, 0.08));
}

.progress-lines span:nth-child(2) {
  width: 72%;
  background: linear-gradient(90deg, var(--gold), rgba(191, 153, 76, 0.08));
}

.progress-lines span:nth-child(3) {
  width: 54%;
  background: linear-gradient(90deg, var(--bronze), rgba(101, 76, 33, 0.08));
}

.objection-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.objection-strip span {
  padding: 10px;
  background: rgba(191, 153, 76, 0.1);
  border: 1px solid rgba(227, 192, 109, 0.22);
  color: #f3d58f;
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 62px 16px;
  scroll-margin-top: 220px;
}

#apply,
#application-form {
  scroll-margin-top: 220px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 26px;
}

.stat-wall,
.feature-grid,
.reality-grid,
.pipeline,
.training-stack {
  display: grid;
  gap: 14px;
}

article {
  padding: 20px;
}

.stat-wall article {
  position: relative;
  overflow: hidden;
}

.stat-wall article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--bronze));
}

.stat-wall small,
.feature-code,
.pipe-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-wall strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.filter-lane,
.training,
.independence,
.dbga,
.apply {
  display: grid;
  gap: 26px;
}

.filter-lane {
  background: linear-gradient(180deg, rgba(11, 23, 36, 0.9), rgba(2, 13, 24, 0.96));
}

.pipe-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.pipe-card strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
}

.pipe-card.reject {
  border-left: 4px solid var(--coral);
}

.pipe-card.accept {
  border-left: 4px solid var(--gold-light);
  background: rgba(191, 153, 76, 0.1);
}

.platform {
  background:
    linear-gradient(90deg, rgba(191, 153, 76, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(191, 153, 76, 0.045) 1px, transparent 1px),
    #061321;
  background-size: 34px 34px, 34px 34px, auto;
}

.feature-grid article {
  min-height: 220px;
}

.feature-code {
  color: var(--gold-light);
}

.training {
  background:
    linear-gradient(135deg, rgba(227, 192, 109, 0.1), rgba(101, 76, 33, 0.08)),
    #020d18;
}

.trainer-intro {
  max-width: 760px;
}

.training-stack article {
  border-color: rgba(227, 192, 109, 0.22);
}

.reality article {
  border-color: rgba(227, 192, 109, 0.28);
}

.reality article:nth-child(2) {
  border-color: rgba(215, 122, 102, 0.34);
}

.reality article:nth-child(3) {
  border-color: rgba(227, 192, 109, 0.34);
}

.independence {
  background: #0e171d;
}

.faq {
  background:
    linear-gradient(180deg, rgba(191, 153, 76, 0.08), rgba(2, 13, 24, 0.18)),
    #061321;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: rgba(8, 18, 31, 0.86);
  border: 1px solid rgba(227, 192, 109, 0.22);
}

.faq-list details[open] {
  border-color: rgba(227, 192, 109, 0.44);
  background: rgba(8, 18, 31, 0.96);
}

.faq-list summary {
  min-height: 58px;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::marker {
  color: var(--gold-light);
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px 34px;
  color: var(--muted);
}

.dbga {
  background: linear-gradient(135deg, rgba(191, 153, 76, 0.18), rgba(101, 76, 33, 0.16)), #020d18;
}

.ghost-light {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.apply {
  background: #020d18;
}

.warning {
  margin-top: 18px;
  padding: 16px;
  border-color: rgba(215, 122, 102, 0.36);
  border-left: 5px solid var(--danger);
}

.warning strong {
  color: var(--danger);
}

.warning p {
  margin: 6px 0 0;
}

form {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.priority-field {
  padding: 14px;
  background: rgba(227, 192, 109, 0.1);
  border: 1px solid rgba(227, 192, 109, 0.34);
}

label,
legend {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(227, 192, 109, 0.24);
  padding: 10px 12px;
  background: rgba(2, 13, 24, 0.82);
  color: var(--ink);
  font: inherit;
}

.option-group {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.option-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
}

.option-grid label {
  position: relative;
  display: block;
  color: var(--ink);
  cursor: pointer;
}

.option-grid input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.option-grid span {
  display: flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid rgba(227, 192, 109, 0.24);
  padding: 12px 14px;
  background: rgba(2, 13, 24, 0.82);
  color: var(--ink);
}

.option-grid input:checked + span {
  border-color: rgba(227, 192, 109, 0.86);
  background: linear-gradient(135deg, rgba(227, 192, 109, 0.24), rgba(191, 153, 76, 0.14));
  color: var(--gold-light);
}

.option-grid input:focus-visible + span {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.check-row {
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  font-weight: 700;
}

.check-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.tcpa-consent {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: rgba(191, 153, 76, 0.08);
  border: 1px solid rgba(227, 192, 109, 0.24);
}

.tcpa-consent .check-row {
  color: var(--ink);
}

.consent-links {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.consent-links a,
.legal-links a {
  color: var(--gold-light);
  font-weight: 800;
}

footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: #050b0e;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.footer-seal {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

footer p {
  margin: 0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 10px;
}

.legal-page {
  padding: 42px 16px 58px;
}

.legal-wrap {
  max-width: 940px;
  margin: 0 auto;
}

.legal-wrap h1 {
  font-size: clamp(34px, 9vw, 62px);
}

.legal-updated {
  margin: 0 0 24px;
  color: var(--muted);
}

.legal-panel {
  display: grid;
  gap: 22px;
  padding: 20px;
  background: rgba(8, 18, 31, 0.84);
  border: 1px solid rgba(227, 192, 109, 0.22);
}

.legal-panel section {
  display: grid;
  gap: 8px;
}

.legal-panel h2 {
  margin: 0;
  font-size: 24px;
}

.legal-panel p,
.legal-panel li {
  margin: 0;
  color: var(--muted);
}

.legal-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

@media (min-width: 560px) {
  .objection-strip,
  .pipeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .call-window-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-actions {
    flex-direction: row;
  }

  .button,
  button {
    width: auto;
  }

  .stat-wall,
  .feature-grid,
  .reality-grid,
  .training-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screen-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1020px) {
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 68px;
  }

  nav {
    display: flex;
    gap: 12px;
    margin-top: 0;
    overflow-x: visible;
    font-size: 13px;
  }

  nav a {
    padding: 8px 12px;
    grid-column: auto;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(430px, 560px);
    gap: 56px;
    align-items: center;
    min-height: calc(100vh - 75px);
    padding: 82px 68px;
  }

  h1 {
    font-size: 78px;
    line-height: 0.96;
  }

  .hero-brand-seal {
    width: 148px;
    height: 148px;
  }

  h2 {
    font-size: 52px;
  }

  .lead {
    font-size: 20px;
  }

  .section {
    padding: 86px 68px;
    scroll-margin-top: 92px;
  }

  #apply,
  #application-form {
    scroll-margin-top: 92px;
  }

  .stat-wall,
  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .filter-lane,
  .training,
  .independence,
  .dbga,
  .apply {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 580px);
    gap: 54px;
    align-items: start;
  }

  .pipeline {
    grid-template-columns: 1fr;
  }

  .reality-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  form {
    padding: 24px;
  }

  footer {
    padding: 28px 68px;
  }
}
