:root {
  --bg: #071629;
  --panel: #0d213b;
  --panel-2: #102947;
  --text: #f4f7fb;
  --muted: #bfd0e5;
  --gold: #f0b44c;
  --gold-dark: #d7982d;
  --line: rgba(255,255,255,.14);
  --white: #ffffff;
  --dark-text: #142033;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

main { overflow: hidden; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px 42px;
}

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: .95;
  margin: 0 0 22px;
  letter-spacing: -0.04em;
}

.subhead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 660px;
  margin: 0 0 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  font-size: 14px;
}

.video-card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}

.video-wrap {
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  max-height: 640px;
  margin: 0 auto;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-note {
  color: var(--muted);
  margin: 14px 4px 4px;
  line-height: 1.45;
}

.story-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.story-grid article {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}

.story-grid h2 {
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 14px;
}

.story-grid p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.form-section {
  background: var(--white);
  color: var(--dark-text);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  max-width: 1180px;
  margin: 0 auto 70px;
  padding: 34px;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
}

.form-copy h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  margin: 0 0 16px;
  letter-spacing: -0.04em;
}

.form-copy p, .form-copy li {
  color: #4c5c72;
  line-height: 1.55;
  font-size: 17px;
}

.form-copy ul {
  padding-left: 20px;
  margin-top: 20px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  background: #f2f5f9;
  border-radius: 22px;
  padding: 22px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 700;
  font-size: 14px;
}

.full { grid-column: 1 / -1; }

input, select, textarea {
  width: 100%;
  border: 1px solid #d5deea;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: #122033;
  background: white;
}

textarea { resize: vertical; }

button {
  grid-column: 1 / -1;
  border: 0;
  border-radius: 16px;
  padding: 16px 20px;
  font: inherit;
  font-weight: 800;
  color: #101622;
  background: var(--gold);
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}

button:hover { background: var(--gold-dark); transform: translateY(-1px); }
button:disabled { opacity: .7; cursor: wait; transform: none; }

.form-message {
  grid-column: 1 / -1;
  margin: 0;
  font-weight: 700;
}

.fine-print {
  grid-column: 1 / -1;
  margin: 0;
  color: #617086;
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .hero, .form-section { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .lead-form { grid-template-columns: 1fr; }
  .hero { padding-top: 38px; }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 0 0 20px;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #101622;
  background: var(--gold);
  font-weight: 800;
  border-radius: 999px;
  padding: 14px 20px;
  box-shadow: 0 18px 40px rgba(240, 180, 76, .22);
}

.primary-link:hover { background: var(--gold-dark); }

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

.who-section {
  max-width: 1180px;
  margin: 0 auto 56px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: center;
}

.who-section h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.04em;
}

.bullet-card {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}

.bullet-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.consent-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 12px;
  color: #4c5c72;
  font-weight: 600;
  line-height: 1.45;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 36px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.site-footer p { margin: 0; }
.site-footer nav { display: flex; gap: 16px; flex-wrap: wrap; }
.site-footer a { color: var(--gold); text-decoration: none; font-weight: 700; }

.simple-page {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 36px 24px;
}

.thank-you-card {
  max-width: 780px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 42px;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}

.thank-you-card h1 {
  font-size: clamp(38px, 6vw, 68px);
  margin-bottom: 20px;
}

.thank-you-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  color: var(--text);
}

.legal-page h1 {
  font-size: clamp(36px, 5vw, 64px);
}

.legal-page h2 {
  margin-top: 28px;
  font-size: 24px;
}

.legal-page p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.legal-page a, .back-link { color: var(--gold); font-weight: 800; }
.back-link { display: inline-block; margin-bottom: 24px; text-decoration: none; }

@media (max-width: 900px) {
  .who-section { grid-template-columns: 1fr; }
  .site-footer { display: block; }
  .site-footer nav { margin-top: 14px; }
}
