:root {
  --brand-yellow: #FEC529;
  --brand-orange: #F89B1D;
  --brand-navy: #00072B;
  --brand-blue: #1FA5FD;
  --ink: #111827;
  --muted: #667085;
  --line: #E6EAF0;
  --paper: #FFFFFF;
  --soft: #F7F9FC;
  --success: #0E9F6E;
  --shadow: 0 18px 50px rgba(0, 7, 43, 0.12);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(14px);
}

.site-header > * {
  min-width: 0;
}

.brand img {
  width: auto;
  height: 54px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-navy);
}

.nav-links a {
  padding: 10px 0;
}

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

.header-cta,
.btn,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta {
  min-height: 44px;
  padding: 0 16px;
  background: var(--brand-yellow);
  color: var(--brand-navy);
  font-weight: 900;
  animation: ctaPulse 1.7s ease-in-out infinite;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.header-cta svg,
.btn svg,
.icon-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.icon-button {
  width: 44px;
  height: 44px;
  background: var(--brand-navy);
  color: #fff;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(82vh - var(--header-height));
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 54px 0 54px;
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(1.06) contrast(1.04);
}

.hero-overlay {
  background:
    radial-gradient(circle at 72% 72%, rgba(254, 197, 41, 0.26), transparent 34%),
    linear-gradient(90deg, rgba(0, 7, 43, 0.98) 0%, rgba(0, 7, 43, 0.82) 48%, rgba(0, 7, 43, 0.34) 100%),
    linear-gradient(0deg, rgba(0, 7, 43, 0.62), rgba(0, 7, 43, 0.16));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1160px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.86fr);
  gap: 42px;
  align-items: center;
  margin: 0 auto;
}

.hero-copy,
.hero-video-card {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand-yellow);
  font-size: 18px;
  line-height: 1.32;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow.dark {
  color: var(--brand-orange);
}

.hero .eyebrow {
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0;
  font-size: 50px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-lead {
  width: min(680px, 100%);
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

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

.btn {
  min-height: 52px;
  padding: 0 20px;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
}

.btn-primary {
  background: var(--brand-yellow);
  color: var(--brand-navy);
  box-shadow: 0 16px 38px rgba(254, 197, 41, 0.28);
  animation: ctaPulse 1.7s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(254, 197, 41, 0.28);
    filter: brightness(1);
  }

  50% {
    box-shadow: 0 18px 44px rgba(254, 197, 41, 0.58), 0 0 0 6px rgba(254, 197, 41, 0.16);
    filter: brightness(1.08);
  }
}

.btn-secondary {
  background: #fff;
  color: var(--brand-navy);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.light-button {
  background: var(--paper);
  color: var(--brand-navy);
}

.full-width {
  width: 100%;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(720px, 100%);
  margin-top: 28px;
}

.hero-proof div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-proof strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  color: var(--brand-yellow);
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.35;
}

.hero-video-card {
  padding: 14px;
  border: 1px solid rgba(254, 197, 41, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 7, 43, 0.34);
  backdrop-filter: blur(14px);
}

.hero-video-card .video-frame {
  border-width: 5px;
  box-shadow: 0 18px 48px rgba(0, 7, 43, 0.32);
}

.hero-video-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--brand-yellow);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-video-label span {
  white-space: nowrap;
}

.hero-video-label svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.hero-video-card p {
  margin: 13px 2px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}

.signal-strip {
  padding: 20px 0;
  background: var(--brand-yellow);
  color: var(--brand-navy);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.signal-grid div {
  padding: 14px 16px;
  border-left: 1px solid rgba(0, 7, 43, 0.18);
}

.signal-grid span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(0, 7, 43, 0.64);
}

.signal-grid strong {
  display: block;
  font-size: 16px;
  line-height: 1.35;
}

.section {
  padding: 86px 0;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.section-heading {
  max-width: 850px;
  text-align: center;
  margin-bottom: 38px;
}

.section-heading.align-left {
  text-align: left;
  margin: 0;
}

.section-heading h2,
.split-copy h2,
.proof-copy h2,
.founder-copy h2,
.visual-content h2,
.video-layout h2,
.apply-layout h2 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.proof-copy p,
.founder-copy p,
.visual-content p,
.video-layout p,
.apply-layout p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.value-card,
.testimonial-card,
.package-card,
.stack-grid article,
.finance-card,
.comparison,
.timeline-item,
.lead-form,
.faq-list details {
  border-radius: var(--radius);
}

.value-card {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.value-card svg {
  width: 36px;
  height: 36px;
  color: var(--brand-orange);
}

.value-card h3,
.stack-grid h3,
.timeline-item h3,
.package-card h3,
.testimonial-card h3,
.comparison h3 {
  margin: 18px 0 10px;
  color: var(--brand-navy);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 900;
}

.value-card p,
.stack-grid p,
.timeline-item p,
.package-card p,
.testimonial-card p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.contrast-section {
  background: var(--soft);
}

.contrast-section .split {
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

.contrast-section .split-copy {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.contrast-section .split-copy h2 {
  max-width: 880px;
  margin: 0 auto;
}

.contrast-section .split-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.split,
.proof-layout,
.founder-layout,
.video-layout,
.apply-layout,
.faq-layout,
.timeline-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 48px;
  align-items: center;
}

.comparison {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(0, 7, 43, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(254, 197, 41, 0.12)),
    var(--paper);
  box-shadow: var(--shadow);
}

.compare-column {
  position: relative;
  min-height: 100%;
  padding: 26px;
  border-radius: var(--radius);
}

.contrast-section .comparison {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
}

.contrast-section .comparison li {
  min-height: 54px;
  padding-top: 11px;
  padding-bottom: 11px;
}

.compare-column.muted {
  border: 1px solid #E1E6EF;
  background: rgba(255, 255, 255, 0.82);
}

.compare-column.highlight {
  background:
    radial-gradient(circle at 92% 12%, rgba(31, 165, 253, 0.2), transparent 32%),
    linear-gradient(160deg, #00072B 0%, #06124A 100%);
  box-shadow: 0 18px 42px rgba(0, 7, 43, 0.28);
}

.compare-head {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 7, 43, 0.1);
}

.compare-column.highlight .compare-head {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.compare-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  flex: 0 0 auto;
}

.compare-icon svg {
  width: 25px;
  height: 25px;
}

.compare-icon.risk {
  background: rgba(248, 155, 29, 0.14);
  color: var(--brand-orange);
}

.compare-icon.gain {
  background: var(--brand-yellow);
  color: var(--brand-navy);
}

.compare-head span {
  display: block;
  color: var(--brand-orange);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
  text-transform: uppercase;
}

.compare-head h3 {
  margin: 4px 0 0;
  font-size: 26px;
  line-height: 1.1;
}

.compare-column.highlight .compare-head span {
  color: var(--brand-yellow);
}

.compare-column.highlight .compare-head h3,
.compare-column.highlight li {
  color: #fff;
}

.compare-column.highlight li {
  background: rgba(255, 255, 255, 0.08);
}

.comparison ul,
.package-card ul,
.clean-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.comparison li {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  margin: 10px 0;
  padding: 13px 14px 13px 42px;
  border-radius: var(--radius);
  background: rgba(248, 155, 29, 0.08);
  color: var(--brand-navy);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 800;
}

.package-card li {
  position: relative;
  padding-left: 24px;
  margin: 14px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.comparison li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-orange);
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(248, 155, 29, 0.12);
}

.compare-column.highlight li::before {
  background: var(--brand-yellow);
  box-shadow: 0 0 0 5px rgba(254, 197, 41, 0.16);
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-orange);
}

.compare-vs {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--soft);
  border-radius: 50%;
  background: var(--brand-yellow);
  color: var(--brand-navy);
  font-size: 15px;
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 28px rgba(0, 7, 43, 0.18);
}

.dark-section {
  background: var(--brand-navy);
  color: #fff;
}

.section-heading.light h2,
.section-heading.light p:not(.eyebrow),
.dark-section .package-card h3,
.dark-section .package-card p,
.dark-section .package-card li {
  color: #fff;
}

.section-heading.light p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stack-grid article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.stack-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--brand-yellow);
  color: var(--brand-navy);
  font-weight: 900;
}

.stack-grid h3 {
  color: #fff;
}

.stack-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.timeline-layout {
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  position: relative;
  padding: 24px 24px 24px 110px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(0, 7, 43, 0.08);
}

.timeline-item span {
  position: absolute;
  left: 24px;
  top: 24px;
  display: inline-flex;
  width: 62px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--brand-yellow);
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 900;
}

.timeline-item h3 {
  margin-top: 0;
}

.proof-section {
  background: var(--soft);
}

.proof-media,
.founder-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-media {
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.proof-main-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.proof-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.proof-mini-grid img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.proof-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.proof-list div,
.video-points div,
.apply-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.proof-list svg,
.video-points svg,
.apply-note svg,
.clean-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--brand-orange);
}

.proof-list span {
  color: var(--brand-navy);
  font-weight: 700;
  line-height: 1.45;
}

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

.video-layout {
  align-items: center;
}

.video-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.video-points div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.video-points span {
  color: var(--brand-navy);
  font-weight: 800;
  line-height: 1.45;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: var(--radius);
  background: var(--brand-navy);
  box-shadow: var(--shadow);
}

.video-frame::before {
  content: "";
  display: block;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.founder-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  gap: 42px;
}

.founder-media {
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  align-self: center;
}

.founder-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: calc(var(--radius) - 2px);
}

.investment-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(254, 197, 41, 0.24), transparent 30%),
    linear-gradient(180deg, #fff 0%, #F7F9FC 100%);
}

.finance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.finance-card {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(0, 7, 43, 0.08);
}

.finance-card.featured {
  border-color: rgba(248, 155, 29, 0.5);
  background: linear-gradient(180deg, rgba(254, 197, 41, 0.16), #fff);
}

.finance-card svg {
  width: 36px;
  height: 36px;
  color: var(--brand-navy);
}

.finance-card span {
  display: block;
  margin-top: 18px;
  color: var(--brand-orange);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
  text-transform: uppercase;
}

.finance-card strong {
  display: block;
  margin-top: 10px;
  color: var(--brand-navy);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.finance-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.investment-note,
.qualify-strip {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: var(--radius);
}

.investment-note {
  border: 1px solid rgba(248, 155, 29, 0.28);
  background: rgba(254, 197, 41, 0.14);
}

.investment-note svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--brand-orange);
}

.investment-note p {
  margin: 0;
  color: var(--brand-navy);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 800;
}

.qualify-strip {
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(0, 7, 43, 0.1);
  background: var(--brand-navy);
  color: #fff;
}

.qualify-strip span {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-yellow);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
  text-transform: uppercase;
}

.qualify-strip strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 900;
}

.clean-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 14px 0;
  color: var(--brand-navy);
  font-weight: 700;
  line-height: 1.5;
}

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

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.package-card.featured {
  border-color: var(--brand-yellow);
  background: linear-gradient(180deg, rgba(254, 197, 41, 0.14), rgba(255, 255, 255, 0.05));
}

.package-label {
  width: fit-content;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(254, 197, 41, 0.16);
  color: var(--brand-yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card h3 {
  font-size: 28px;
}

.package-card ul {
  flex: 1;
  margin-bottom: 26px;
}

.package-card li::before {
  background: var(--brand-yellow);
}

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

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(0, 7, 43, 0.08);
}

.testimonial-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--soft);
}

.testimonial-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(0, 7, 43, 0), rgba(0, 7, 43, 0.38));
  content: "";
}

.testimonial-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 24px 26px;
}

.avatar {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand-navy);
  color: var(--brand-yellow);
  padding: 0 18px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.testimonial-card h3 {
  margin-top: 16px;
  font-size: 20px;
}

.testimonial-card span {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--brand-orange);
  font-size: 14px;
  font-weight: 900;
}

.visual-band {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 96px 0;
  color: #fff;
}

.visual-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(1.05) contrast(1.03);
}

.visual-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 7, 43, 0.95), rgba(0, 7, 43, 0.58), rgba(0, 7, 43, 0.2));
}

.visual-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1160px) / 2));
}

.visual-content h2,
.visual-content p {
  color: #fff;
}

.visual-content p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
}

.faq-section {
  background: var(--soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.faq-layout .section-heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.faq-hint {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 700;
}

.faq-list {
  display: grid;
  width: min(920px, 100%);
  gap: 14px;
  margin: 0 auto;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(0, 7, 43, 0.06);
}

.faq-list details[open] {
  border-color: rgba(248, 155, 29, 0.42);
  box-shadow: 0 16px 40px rgba(0, 7, 43, 0.09);
}

.faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  color: var(--brand-navy);
  font-size: 19px;
  line-height: 1.35;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "+";
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-yellow);
  color: var(--brand-navy);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(254, 197, 41, 0.26);
}

.faq-list details[open] summary {
  background: linear-gradient(90deg, rgba(254, 197, 41, 0.12), rgba(255, 255, 255, 0));
}

.faq-list details[open] summary::before {
  content: "-";
  padding-bottom: 3px;
  background: var(--brand-navy);
  color: var(--brand-yellow);
}

.faq-list p {
  margin: 0;
  padding: 0 72px 24px 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.apply-section {
  background: linear-gradient(180deg, #fff, #FFF8DF);
}

.apply-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.apply-note {
  margin-top: 28px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--brand-navy);
  color: #fff;
}

.apply-note svg {
  color: var(--brand-yellow);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid #CDD5DF;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(248, 155, 29, 0.16);
}

.form-check {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--success);
  font-weight: 900;
}

.mobile-sticky-cta {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 12px;
  z-index: 60;
  display: none;
  width: min(340px, calc(100vw - 24px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(0, 7, 43, 0.94);
  box-shadow: 0 20px 48px rgba(0, 7, 43, 0.28);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.mobile-sticky-cta a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: calc(var(--radius) - 2px);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  min-width: 0;
}

.mobile-sticky-cta a:first-child {
  background: var(--brand-yellow);
  color: var(--brand-navy);
  animation: ctaPulse 1.7s ease-in-out infinite;
}

.mobile-sticky-cta a:nth-child(2) {
  background: #0E9F6E;
}

.mobile-sticky-cta a:last-child {
  background: rgba(255, 255, 255, 0.13);
}

.mobile-sticky-cta svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.site-footer {
  padding: 70px 0 40px;
  background:
    radial-gradient(circle at 18% 0%, rgba(31, 165, 253, 0.18), transparent 32%),
    linear-gradient(180deg, #00072B 0%, #02051E 100%);
  color: rgba(255, 255, 255, 0.76);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.44fr);
  gap: 26px;
  align-items: start;
}

.footer-brand-panel,
.footer-network-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

.footer-brand-panel {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.footer-brand-panel img {
  width: 190px;
  height: auto;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
}

.footer-kicker {
  margin: 0 0 10px;
  color: var(--brand-yellow);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-brand-panel h2,
.footer-section-title h3 {
  margin: 0;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
}

.footer-brand-panel h2 {
  font-size: 28px;
  line-height: 1.18;
}

.footer-strengths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.footer-strengths div {
  min-height: 100px;
  padding: 14px;
  border: 1px solid rgba(254, 197, 41, 0.18);
  border-radius: var(--radius);
  background: rgba(254, 197, 41, 0.1);
}

.footer-strengths strong {
  display: block;
  color: var(--brand-yellow);
  font-size: 26px;
  line-height: 1;
}

.footer-strengths span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.footer-contact {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 800;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--brand-yellow);
}

.footer-network-panel {
  padding: 28px;
}

.footer-section-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-section-title h3 {
  font-size: 24px;
  line-height: 1.22;
}

.branch-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.branch-list li {
  min-height: 118px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.branch-list strong,
.branch-list span {
  display: block;
}

.branch-list strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
}

.branch-list span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.thank-you-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 12%, rgba(31, 165, 253, 0.2), transparent 32%),
    linear-gradient(160deg, #00072B 0%, #06124A 100%);
}

.thank-you-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 42px 20px;
}

.thank-you-card {
  width: min(920px, 100%);
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.thank-you-card > img {
  width: 190px;
  height: auto;
  margin-bottom: 28px;
}

.thank-you-card h1 {
  margin: 0;
  color: var(--brand-navy);
  font-size: 42px;
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: 0;
}

.thank-you-card p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.thank-you-video {
  margin-top: 8px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: calc(var(--header-height) + 10px);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 14px;
  }

  .header-cta {
    justify-self: end;
  }

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

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-video-card {
    width: min(720px, 100%);
  }

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

  .split,
  .proof-layout,
  .founder-layout,
  .video-layout,
  .apply-layout,
  .faq-layout,
  .timeline-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 0 14px;
    gap: 10px;
  }

  .brand img {
    width: auto;
    height: 44px;
  }

  .header-cta {
    display: none;
  }

  .header-cta svg {
    display: none;
  }

  .icon-button {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: calc(100vh - var(--header-height));
    padding: 34px 0 34px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(0, 7, 43, 0.96), rgba(0, 7, 43, 0.74));
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .hero .eyebrow {
    font-size: 16px;
  }

  .eyebrow {
    font-size: 16px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof {
    display: none;
  }

  .hero-video-card {
    padding: 10px;
  }

  .hero-video-card .video-frame {
    border-width: 4px;
  }

  .hero-video-label {
    font-size: 12px;
  }

  .hero-video-label span {
    white-space: normal;
  }

  .hero-video-card p {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .hero-proof div {
    min-height: 88px;
  }

  .signal-grid,
  .value-equation,
  .stack-grid,
  .finance-grid,
  .package-grid,
  .testimonial-grid,
  .comparison {
    grid-template-columns: 1fr;
  }

  .comparison {
    gap: 12px;
    padding: 12px;
  }

  .compare-column {
    padding: 20px;
  }

  .compare-vs {
    position: static;
    width: 48px;
    height: 48px;
    margin: -2px auto;
    transform: none;
  }

  .compare-head h3 {
    font-size: 24px;
  }

  .comparison li {
    min-height: auto;
    font-size: 14px;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading h2,
  .split-copy h2,
  .proof-copy h2,
  .founder-copy h2,
  .visual-content h2,
  .video-layout h2,
  .apply-layout h2 {
    font-size: 31px;
    line-height: 1.2;
  }

  .section-heading p:not(.eyebrow),
  .split-copy p,
  .proof-copy p,
  .founder-copy p,
  .visual-content p,
  .video-layout p,
  .apply-layout p,
  .faq-hint {
    font-size: 16px;
  }

  .faq-layout {
    gap: 24px;
  }

  .faq-list summary {
    min-height: 66px;
    padding: 16px;
    font-size: 16px;
  }

  .faq-list summary::before {
    width: 32px;
    height: 32px;
    font-size: 22px;
  }

  .faq-list p {
    padding: 0 16px 20px;
    font-size: 15px;
  }

  .timeline-item {
    padding: 24px;
  }

  .timeline-item span {
    position: static;
    margin-bottom: 14px;
  }

  .video-frame {
    border-width: 5px;
  }

  .finance-card {
    min-height: auto;
    padding: 24px;
  }

  .finance-card strong {
    font-size: 36px;
  }

  .qualify-strip {
    display: grid;
    gap: 18px;
  }

  .visual-band {
    min-height: 620px;
  }

  .visual-band::after {
    background: rgba(0, 7, 43, 0.82);
  }

  .footer-layout,
  .branch-list,
  .footer-strengths {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 54px 0 34px;
  }

  .footer-brand-panel,
  .footer-network-panel {
    padding: 22px;
  }

  .footer-brand-panel h2 {
    font-size: 24px;
  }

  .footer-section-title {
    display: flex;
  }

  .branch-list li,
  .footer-strengths div {
    min-height: auto;
  }

  .thank-you-main {
    padding: 24px 14px;
  }

  .thank-you-card {
    padding: 24px;
  }

  .thank-you-card h1 {
    font-size: 31px;
    line-height: 1.2;
  }

  .thank-you-actions {
    display: grid;
  }

  body:not(.thank-you-page) {
    padding-bottom: 76px;
  }

  .mobile-sticky-cta {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
