:root {
  --navy: #102a43;
  --navy-dark: #071c2d;
  --navy-2: #163854;
  --teal: #006870;
  --gold: #e8b836;
  --gold-light: #fff2bf;
  --red: #c8102e;
  --blue: #0057b8;
  --ink: #172331;
  --muted: #5b6876;
  --line: #d8e0e8;
  --paper: #f6f8fb;
  --white: #ffffff;
  --radius: 8px;
  --radius-sm: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7f9fb;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(16, 42, 67, 0.12);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 34px rgba(16, 42, 67, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 340px;
  color: var(--navy);
  text-decoration: none;
}

.logo-mark {
  display: inline-flex;
  flex: 0 0 auto;
  width: 104px;
  height: 64px;
}

.logo-mark.small {
  width: 78px;
  height: 50px;
}

.logo-mark img,
.logo-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 3px;
}

.brand-text strong {
  color: var(--navy);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 850;
  line-height: 1;
}

.brand-text span {
  color: var(--teal);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px 20px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
}

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

.nav-button {
  padding: 11px 16px;
  color: var(--navy);
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 18px rgba(184, 135, 22, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--red) 0 8px, transparent 8px),
    linear-gradient(90deg, transparent 0 calc(100% - 8px), var(--blue) calc(100% - 8px)),
    linear-gradient(180deg, #fbfcfd 0%, var(--paper) 100%);
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(232, 184, 54, 0.13), transparent 34%),
    repeating-linear-gradient(90deg, rgba(16, 42, 67, 0.035) 0 1px, transparent 1px 84px);
  pointer-events: none;
}

.hero-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: stretch;
  padding: clamp(54px, 7vw, 88px) 0 clamp(58px, 8vw, 96px);
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-kicker,
.card-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
}

.lead {
  max-width: 690px;
  color: #35475a;
  font-size: clamp(18px, 1.45vw, 21px);
}

.value-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(700px, 100%);
  margin-top: 32px;
  background: #ffffff;
  border: 1px solid rgba(16, 42, 67, 0.14);
  border-top: 7px solid;
  border-image: linear-gradient(90deg, var(--red) 0 50%, var(--blue) 50% 100%) 1;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(16, 42, 67, 0.1);
  overflow: hidden;
}

.value-line span {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 18px;
  color: var(--navy);
  border-right: 1px solid var(--line);
  font-size: 15px;
  font-weight: 850;
}

.hero-actions,
.cta-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(184, 135, 22, 0.22);
}

.button.secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--navy);
}

.button.light {
  color: var(--white);
  background: transparent;
  border-color: var(--white);
}

.opportunity-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 455px;
  padding: clamp(28px, 3.5vw, 42px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(18, 48, 74, 0.94), rgba(7, 28, 45, 0.99)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 24px),
    linear-gradient(130deg, var(--navy-2), var(--navy-dark));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 8px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 28px 60px rgba(16, 42, 67, 0.28);
  overflow: hidden;
}

.opportunity-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 6px solid var(--red);
  border-right: 6px solid var(--blue);
  opacity: 0.72;
  pointer-events: none;
}

.opportunity-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(232, 184, 54, 0.26);
  transform: rotate(35deg);
  pointer-events: none;
}

.opportunity-card > * {
  position: relative;
  z-index: 1;
}

.opportunity-card .card-kicker {
  color: var(--gold);
}

.opportunity-card h2 {
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 42px);
}

.opportunity-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.signal-list {
  display: grid;
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.status-band {
  width: min(1120px, calc(100% - 40px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(16, 42, 67, 0.12);
  box-shadow: 0 20px 44px rgba(16, 42, 67, 0.12);
  overflow: hidden;
}

.status-band div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.status-band div:last-child {
  border-right: 0;
}

.status-band span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-band strong {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.2;
}

.signal-list div {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.signal-list strong {
  color: var(--gold);
}

.signal-list span {
  color: rgba(255, 255, 255, 0.84);
}

.value-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 5vw, 72px);
  padding: clamp(86px, 8vw, 116px) clamp(20px, 5vw, 64px) clamp(64px, 7vw, 96px);
  background:
    linear-gradient(90deg, var(--red) 0 6px, transparent 6px),
    linear-gradient(90deg, transparent 0 calc(100% - 6px), var(--blue) calc(100% - 6px)),
    var(--navy);
}

.value-statement {
  align-self: center;
}

.value-statement .section-kicker {
  color: var(--gold);
}

.value-statement h2 {
  color: var(--white);
}

.value-statement p:not(.section-kicker) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.value-proof {
  display: grid;
  gap: 0;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.value-proof article {
  padding: 26px 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.value-proof article:last-child {
  border-bottom: 0;
}

.value-proof span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--gold);
  font-weight: 900;
}

.value-proof h3 {
  color: var(--white);
}

.value-proof p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0;
}

.two-column,
.about-section,
.status-section,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: start;
}

.text-stack p,
.split-copy p,
.about-card p,
.status-card p,
.cta-section p {
  color: var(--muted);
  font-size: 18px;
}

.about-card {
  padding: 32px;
  background: var(--white);
  border-left: 8px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(16, 42, 67, 0.09);
}

.about-card p:last-child {
  margin-bottom: 0;
}

.structured-list {
  border-top: 5px solid var(--gold);
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(16, 42, 67, 0.08);
  overflow: hidden;
}

.structured-list div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.structured-list strong {
  color: var(--navy);
}

.structured-list span {
  color: var(--muted);
}

.status-card {
  padding: 30px;
  border-left: 8px solid var(--gold);
  background: var(--gold-light);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(16, 42, 67, 0.08);
}

.priority-title {
  margin: 24px 0 10px;
  color: var(--navy) !important;
  font-size: 14px !important;
  font-weight: 900;
  text-transform: uppercase;
}

.priority-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: #39495a;
  font-size: 16px;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 68px clamp(20px, 5vw, 64px);
  color: var(--white);
  background:
    linear-gradient(90deg, var(--red) 0 8px, transparent 8px),
    linear-gradient(90deg, transparent 0 calc(100% - 8px), var(--blue) calc(100% - 8px)),
    var(--teal);
}

.cta-section h2,
.cta-section .section-kicker,
.cta-section p {
  color: var(--white);
}

.cta-section div:first-child {
  max-width: 780px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 5vw, 64px);
  border-top: 6px solid;
  border-image: linear-gradient(90deg, var(--red) 0 50%, var(--blue) 50% 100%) 1;
  background: var(--white);
}

.site-footer a:last-child {
  color: var(--teal);
  font-weight: 900;
}

.form-hero {
  padding: 78px clamp(20px, 5vw, 64px) 58px;
  background:
    linear-gradient(90deg, var(--red) 0 8px, transparent 8px),
    linear-gradient(90deg, transparent 0 calc(100% - 8px), var(--blue) calc(100% - 8px)),
    var(--paper);
  border-bottom: 7px solid;
  border-image: linear-gradient(90deg, var(--red) 0 50%, var(--blue) 50% 100%) 1;
}

.form-hero div {
  width: min(960px, 100%);
}

.form-hero h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.form-section {
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 86px;
}

.interest-form {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border-top: 6px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 20px 46px rgba(16, 42, 67, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid #bcc9d7;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 16px;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(232, 184, 54, 0.45);
  border-color: var(--navy);
}

textarea {
  resize: vertical;
}

.form-note {
  max-width: 760px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 960px) {
  .site-header {
    position: static;
    display: grid;
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .brand {
    min-width: 0;
  }

  .hero-inner,
  .value-section,
  .two-column,
  .about-section,
  .status-section,
  .split,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .opportunity-card {
    min-height: auto;
  }

  .status-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    width: 100%;
    border-radius: 0;
  }

  .status-band div:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 14px;
  }

  .brand {
    align-items: flex-start;
  }

  .logo-mark {
    width: 70px;
    height: 46px;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .brand-text span {
    font-size: 10px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.04;
  }

  .lead {
    font-size: 17px;
  }

  .hero-inner {
    padding-top: 36px;
    padding-bottom: 44px;
  }

  .opportunity-card {
    padding: 24px;
  }

  .opportunity-card h2 {
    font-size: 28px;
  }

  .value-line,
  .form-grid,
  .status-band {
    grid-template-columns: 1fr;
  }

  .value-line span {
    min-height: 54px;
  }

  .signal-list div,
  .structured-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .status-band div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .button {
    width: 100%;
  }

  .section,
  .hero-inner,
  .form-section {
    width: min(100% - 32px, 1160px);
  }

  .interest-form {
    padding: 22px;
  }

  .site-footer {
    display: grid;
  }
}
