:root {
  --ink: #101820;
  --ink-soft: #425466;
  --paper: #f7f9fb;
  --white: #ffffff;
  --navy: #071527;
  --navy-2: #102640;
  --steel: #7890aa;
  --line: #dbe4ee;
  --blue: #1769d1;
  --blue-2: #42a5f5;
  --green: #15a36f;
  --gold: #d59b2d;
  --red: #b94343;
  --shadow: 0 18px 50px rgba(7, 21, 39, 0.14);
  --mono: "IBM Plex Mono", monospace;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--blue);
  color: var(--white);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 21, 39, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1160px, calc(100% - 40px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  line-height: 1.05;
}

.brand strong,
.brand em {
  display: block;
  font-style: normal;
}

.brand em {
  color: var(--blue-2);
  font-weight: 800;
}

.brand-image {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--navy-2);
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: #dce8f5;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links .nav-cta {
  padding: 10px 14px;
  background: var(--blue);
  color: var(--white);
  border-radius: 4px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: 4px;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=2400&q=82");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 21, 39, 0.96) 0%, rgba(7, 21, 39, 0.82) 47%, rgba(7, 21, 39, 0.38) 100%),
    linear-gradient(rgba(66, 165, 245, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 165, 245, 0.12) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.7fr);
  gap: 44px;
  align-items: center;
  padding: 90px 0;
}

.eyebrow {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  font-weight: 600;
}

.hero .eyebrow,
.section-dark .eyebrow,
.subhero .eyebrow {
  color: #78c7ff;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 650px;
  color: #d4e2ef;
  font-size: 1.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(23, 105, 209, 0.28);
}

.btn-primary:hover {
  background: #0f5fbd;
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.07);
}

.btn-secondary.light {
  color: var(--white);
}

.btn-wide {
  width: 100%;
}

.hero-note {
  max-width: 620px;
  margin: 0;
  color: #aabbd0;
  font-size: 0.95rem;
}

.hero-panel,
.subhero-card,
.privacy-box {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(9, 25, 45, 0.78);
  color: var(--white);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel {
  padding: 30px;
  border-left: 5px solid var(--green);
}

.hero-panel h2 {
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}

.hero-panel p,
.subhero-card p {
  color: #d3e0ee;
}

.panel-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 8px;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: #bff4db;
}

.signal-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.signal-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.signal-list span {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(21, 163, 111, 0.14);
}

.section {
  padding: 88px 0;
}

.section-muted {
  background: var(--paper);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.band {
  padding: 0;
  background: var(--navy-2);
  color: var(--white);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.proof-strip article {
  min-height: 156px;
  padding: 28px;
  background: var(--navy-2);
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.proof-strip span {
  color: #c7d7e7;
}

.two-col {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 70px;
}

.rich-copy {
  font-size: 1.12rem;
  color: var(--ink-soft);
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

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

.info-card {
  min-height: 270px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  box-shadow: 0 12px 34px rgba(16, 24, 32, 0.08);
}

.info-card:nth-child(2) {
  border-top-color: var(--gold);
}

.info-card:nth-child(3) {
  border-top-color: var(--green);
}

.icon-box {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 32px;
  margin-bottom: 34px;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
}

.assurance-grid,
.form-grid,
.subhero-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 50px;
  align-items: center;
}

.image-card {
  min-height: 520px;
  background-image: linear-gradient(rgba(7, 21, 39, 0.04), rgba(7, 21, 39, 0.24)), url("https://images.unsplash.com/photo-1581092921461-eab62e97a780?auto=format&fit=crop&w=1400&q=82");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 20px;
}

.steps article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--navy);
  font-family: var(--mono);
  font-weight: 600;
}

.form-section {
  background:
    linear-gradient(rgba(7, 21, 39, 0.88), rgba(7, 21, 39, 0.9)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.form-intro p {
  color: #d8e4f0;
  font-size: 1.08rem;
}

.privacy-box {
  margin-top: 26px;
  padding: 22px;
  border-left: 5px solid var(--blue-2);
}

.privacy-box p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.contact-form {
  padding: 28px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 18px;
}

.form-row.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label,
legend {
  display: block;
  margin-bottom: 7px;
  font-weight: 800;
  color: var(--ink);
}

label span {
  color: var(--ink-soft);
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #bfccd9;
  border-radius: 4px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fbfdff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(23, 105, 209, 0.24);
  border-color: var(--blue);
}

fieldset {
  display: flex;
  gap: 20px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.choice,
.confirm {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  font-weight: 600;
}

.choice input,
.confirm input {
  width: auto;
  margin-top: 5px;
}

.confirm {
  margin: 10px 0 20px;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.form-status {
  min-height: 28px;
  margin: 14px 0 0;
  color: var(--green);
  font-weight: 800;
}

.subhero {
  padding: 96px 0;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(7, 21, 39, 0.96), rgba(7, 21, 39, 0.78)),
    url("https://images.unsplash.com/photo-1461749280684-dccba630e2f6?auto=format&fit=crop&w=2200&q=82");
  background-size: cover;
  background-position: center;
}

.subhero h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.subhero p {
  max-width: 720px;
  color: #d8e4ef;
  font-size: 1.18rem;
}

.subhero-card {
  padding: 28px;
  border-left: 5px solid var(--gold);
}

.resource-list {
  display: grid;
  gap: 16px;
}

.resource-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(16, 24, 32, 0.07);
}

.resource-card span {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.resource-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.resource-card a,
.link-columns a {
  font-weight: 800;
  color: var(--blue);
}

.link-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.link-columns article {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.07);
}

.link-columns a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.cta-slab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-slab p {
  max-width: 680px;
  color: #d3dfeb;
}

.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thankyou-container {
  max-width: 640px;
  text-align: center;
}

.thankyou-lede {
  color: #d4e2ef;
  font-size: 1.125rem;
  margin: 1.5rem 0 2rem;
}

.thankyou-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer {
  padding: 34px 0;
  color: #c6d4e2;
  background: #050f1c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  gap: 32px;
  align-items: start;
}

.footer strong {
  color: var(--white);
}

.footer a {
  display: block;
  color: #dce9f7;
  font-weight: 800;
  text-decoration: none;
}

.footer p {
  margin-bottom: 0;
}

@media (max-width: 880px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 20px;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.is-open {
    display: grid;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .two-col,
  .assurance-grid,
  .form-grid,
  .subhero-grid,
  .proof-strip,
  .card-grid,
  .link-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 70px 0;
  }

  .image-card {
    min-height: 360px;
  }

  .cta-slab {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container,
  .nav {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 64px 0;
  }

  .form-row.split {
    grid-template-columns: 1fr;
  }

  fieldset {
    display: grid;
  }
}
