:root {
  --ink: #101828;
  --deep: #12333a;
  --teal: #167f8c;
  --cyan: #2ba7b7;
  --red: #bd2f2a;
  --gold: #e4b24c;
  --paper: #f7f9f8;
  --logo-bg: #f6f6f4;
  --mist: #e9efef;
  --white: #ffffff;
  --muted: #5d6b6f;
  --line: #d8e1e2;
  --shadow: 0 22px 60px rgba(16, 24, 40, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  background: var(--paper);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: var(--logo-bg);
  border-bottom: 0;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 8px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand img {
  background: transparent;
  height: 78px;
  width: auto;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

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

.nav-toggle {
  display: none;
}

.hero {
  min-height: calc(88vh - 77px);
  overflow: hidden;
  position: relative;
}

.hero-bg,
.hero-shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 33, 38, 0.92), rgba(18, 51, 58, 0.72) 46%, rgba(18, 51, 58, 0.28)),
    linear-gradient(0deg, rgba(16, 24, 40, 0.4), rgba(16, 24, 40, 0));
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  margin: 0 auto;
  max-width: 1240px;
  min-height: calc(88vh - 77px);
  padding: clamp(38px, 6vw, 78px) clamp(18px, 4vw, 40px);
  position: relative;
  z-index: 1;
}

.hero-copy {
  color: var(--white);
  max-width: 720px;
}

.eyebrow {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark .eyebrow,
.final-cta .eyebrow {
  color: #76d6df;
}

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

h1 {
  font-size: 4.8rem;
  line-height: 0.96;
  margin-bottom: 22px;
  max-width: 820px;
}

h2 {
  font-size: 3.3rem;
  line-height: 1.02;
  margin-bottom: 18px;
}

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

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.22rem;
  max-width: 660px;
}

.hero-proof {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  max-width: 740px;
}

.hero-proof div {
  border-left: 4px solid var(--gold);
  padding-left: 14px;
}

.hero-proof strong {
  display: block;
  font-size: 1.85rem;
  line-height: 1;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-size: 0.9rem;
}

.lead-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 13px;
  padding: clamp(18px, 3vw, 30px);
}

.lead-form h2 {
  font-size: 2rem;
  margin-bottom: 4px;
}

.form-kicker {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
}

label {
  color: var(--ink);
  display: grid;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 6px;
}

input,
select {
  appearance: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

input:focus,
select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(43, 167, 183, 0.18);
}

.button {
  align-items: center;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  text-decoration: none;
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-secondary {
  background: var(--teal);
  color: var(--white);
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
}

.form-status.success {
  color: #176a42;
  font-weight: 800;
}

.form-status.error {
  color: var(--red);
  font-weight: 800;
}

.form-complete {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  padding: 28px;
}

.form-complete h3 {
  color: var(--teal);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.form-complete p {
  color: var(--muted);
  margin-bottom: 0;
}

.section {
  padding: clamp(62px, 9vw, 118px) clamp(18px, 4vw, 40px);
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.split {
  display: grid;
  gap: clamp(26px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.intro {
  background: var(--white);
}

.intro-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.feature,
.steps article,
.person,
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.feature span,
.steps span {
  color: var(--red);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.feature p,
.steps p,
.person p,
.faq p {
  color: var(--muted);
  margin-bottom: 0;
}

.image-band {
  display: grid;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.image-band > img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.image-band::after {
  background: linear-gradient(90deg, rgba(16, 24, 40, 0.82), rgba(16, 24, 40, 0.25));
  content: "";
  inset: 0;
  position: absolute;
}

.band-copy {
  align-self: center;
  color: var(--white);
  max-width: 720px;
  padding: clamp(48px, 8vw, 110px) clamp(18px, 7vw, 96px);
  position: relative;
  z-index: 1;
}

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

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

.risk-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.risk-list li {
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 16px 18px;
}

.analysis {
  background: var(--white);
}

.analysis-layout {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
}

.mini-timeline {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 18px;
}

.mini-timeline p {
  color: var(--muted);
  margin-bottom: 10px;
}

.analysis-form {
  box-shadow: none;
}

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

.team {
  background: var(--mist);
}

.team-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, 1fr);
}

.person {
  padding: 0;
  overflow: hidden;
}

.person img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.person h3,
.person p {
  margin-left: 18px;
  margin-right: 18px;
}

.person h3 {
  margin-top: 18px;
}

.person p:last-child {
  margin-bottom: 20px;
}

.role {
  color: var(--teal) !important;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.partner {
  background: var(--white);
}

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

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  padding-top: 12px;
}

.final-cta {
  align-items: center;
  color: var(--white);
  display: grid;
  min-height: 460px;
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 7vw, 96px);
  position: relative;
}

.final-cta img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.final-cta::after {
  background: linear-gradient(90deg, rgba(18, 51, 58, 0.9), rgba(18, 51, 58, 0.46));
  content: "";
  inset: 0;
  position: absolute;
}

.final-cta > div {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.site-footer {
  background: var(--logo-bg);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  padding: 34px clamp(18px, 4vw, 56px);
}

.site-footer img {
  max-width: 260px;
}

.site-footer a {
  color: var(--teal);
  display: block;
  margin-bottom: 8px;
}

.legal {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero-inner,
  .split,
  .analysis-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: start;
  }

  .feature-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .lead-form h2 {
    font-size: 1.65rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    background: var(--deep);
    border: 0;
    border-radius: 6px;
    color: var(--white);
    display: block;
    font-weight: 800;
    padding: 10px 12px;
  }

  .site-nav {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 12px;
    left: 0;
    padding: 18px;
    position: absolute;
    right: 0;
    top: 94px;
  }

  .site-nav.open {
    display: flex;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    min-height: 0;
    padding-bottom: 34px;
  }

  .hero-proof,
  .feature-grid,
  .steps,
  .team-grid,
  .form-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-shade {
    background: rgba(12, 33, 38, 0.84);
  }

  .site-footer {
    display: block;
  }
}
