:root {
  --bg: #f4f7fb;
  --bg-soft: #eef4fa;
  --panel: #ffffff;
  --text: #10233f;
  --text-strong: #07172d;
  --muted: #5f6f86;
  --soft: #6f8098;
  --line: rgba(16, 35, 63, 0.11);
  --line-strong: rgba(16, 35, 63, 0.18);
  --brand: #134ea6;
  --brand-deep: #0b2f6c;
  --brand-navy: #001e44;
  --accent: #cda458;
  --shadow: 0 18px 42px rgba(15, 35, 63, 0.09);
  --shadow-strong: 0 28px 72px rgba(15, 35, 63, 0.16);
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.narrow-container {
  max-width: 880px;
}

.center-text {
  text-align: center;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  background: var(--brand);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 36px rgba(15, 35, 63, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.nav-link {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  transition: color 160ms ease;
}

.nav-link:hover {
  color: var(--brand-deep);
}

.nav-cta {
  border: 1px solid rgba(205, 164, 88, 0.45);
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(205, 164, 88, 0.12);
  font-size: 0.9rem;
  font-weight: 850;
}

.page-main {
  min-height: calc(100vh - 68px);
}

.hero {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  padding: clamp(18px, 2.8vh, 32px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(19, 78, 166, 0.07), transparent 28rem),
    radial-gradient(circle at 90% 6%, rgba(205, 164, 88, 0.13), transparent 24rem),
    linear-gradient(180deg, #f7fbff 0%, #eef4fa 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.9fr);
  gap: clamp(42px, 5vw, 82px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 16px;
  color: var(--text-strong);
  font-size: clamp(3.05rem, 5.55vw, 5.45rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

h1 span {
  display: block;
  color: var(--brand-deep);
  margin-bottom: 4px;
}

h2 {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(1.9rem, 3vw, 3.15rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

h3 {
  margin: 0 0 7px;
  color: var(--text-strong);
  font-size: 1.14rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
}

.positioning-line {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 650;
}

.profit-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin: 16px 0;
}

.profit-points article,
.feature-card,
.metric-grid article,
.benefit-list article,
.next-steps article,
.rich-text-card,
.mission-card {
  border: 1px solid rgba(16, 35, 63, 0.09);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(15, 35, 63, 0.07);
}

.profit-points article {
  padding: 14px;
  border-radius: 17px;
}

.profit-points strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text-strong);
  font-size: 0.95rem;
}

.profit-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.38;
}

.dashboard-preview-card {
  max-width: 820px;
  margin-top: 16px;
  border: 1px solid rgba(16, 35, 63, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 56px rgba(15, 35, 63, 0.12);
  overflow: hidden;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding: 14px 18px 12px;
  border-bottom: 1px solid rgba(16, 35, 63, 0.08);
}

.preview-header h2 {
  font-size: clamp(1.2rem, 1.5vw, 1.65rem);
}

.preview-header span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--brand-deep);
  background: rgba(19, 78, 166, 0.08);
  border: 1px solid rgba(19, 78, 166, 0.12);
  font-size: 0.78rem;
  font-weight: 750;
  white-space: nowrap;
}

.small-eyebrow {
  margin-bottom: 5px;
  font-size: 0.64rem;
}

.dashboard-preview-card img {
  width: 100%;
  aspect-ratio: 16 / 5.8;
  object-fit: cover;
  object-position: top center;
  background: #edf3fa;
}

.form-panel {
  padding: 23px 25px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-strong);
}

.conversion-form-panel {
  padding: 30px 32px;
  border-radius: 32px;
  align-self: center;
}

.form-header {
  margin-bottom: 12px;
}

.conversion-form-panel .form-header {
  margin-bottom: 18px;
}

.form-header p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.conversion-form-panel .form-header h3 {
  font-size: 1.42rem;
  margin-bottom: 8px;
}

.conversion-form-panel .form-header p {
  font-size: 1rem;
  line-height: 1.5;
}

.form-kicker {
  margin: 0 0 7px;
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.partner-note {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 20px;
  padding: 16px;
  border: 1px solid rgba(19, 78, 166, 0.12);
  border-radius: 17px;
  background: linear-gradient(180deg, rgba(19, 78, 166, 0.055), rgba(255, 255, 255, 0.72));
}

.partner-note strong {
  flex-basis: 100%;
  color: var(--text-strong);
  font-size: 0.86rem;
}

.partner-note span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(19, 78, 166, 0.1);
  font-size: 0.72rem;
  font-weight: 750;
}

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

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--text-strong);
  font-size: 0.9rem;
  font-weight: 750;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  border-radius: 13px;
  border: 1px solid rgba(16, 35, 63, 0.14);
  background: #fbfcfe;
  padding: 11px 13px;
  color: var(--text);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.lead-form textarea {
  min-height: 128px;
  resize: vertical;
  line-height: 1.5;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(19, 78, 166, 0.35);
  box-shadow: 0 0 0 4px rgba(19, 78, 166, 0.08);
  background: #ffffff;
}

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

.hidden {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0f57bd, #0c3d89);
  box-shadow: 0 14px 28px rgba(19, 78, 166, 0.2);
}

.button-secondary {
  color: var(--brand-deep);
  background: #ffffff;
  border-color: rgba(19, 78, 166, 0.16);
  box-shadow: 0 10px 22px rgba(15, 35, 63, 0.08);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.75;
  transform: none;
}

.partner-lead-form .button {
  min-height: 52px;
  margin-top: 2px;
  font-size: 0.98rem;
}

.partner-form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
  text-align: center;
}

.form-status {
  grid-column: 1 / -1;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 0.9rem;
}

.form-status[data-type="info"] {
  color: #0b3b7a;
  background: rgba(19, 78, 166, 0.08);
  border: 1px solid rgba(19, 78, 166, 0.14);
}

.form-status[data-type="error"] {
  color: #8b1f1f;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.16);
}

.section {
  padding: clamp(64px, 8vw, 112px) 0;
}

.section-white {
  background: #ffffff;
}

.section-soft {
  background:
    radial-gradient(circle at 10% 10%, rgba(19, 78, 166, 0.06), transparent 28rem),
    linear-gradient(180deg, #f7fbff 0%, #eef4fa 100%);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.section-grid-reverse {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.section-copy p,
.section-heading p,
.rich-text-card p,
.mission-card p,
.feature-card p,
.metric-grid p,
.benefit-list p,
.final-cta-card p,
.faq-list p,
.next-steps p,
.footer-brand p,
.site-footer p {
  color: var(--muted);
}

.section-copy h2,
.section-heading h2 {
  margin-bottom: 18px;
}

.section-copy p:last-child,
.section-heading p:last-child {
  margin-bottom: 0;
}

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

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.feature-grid,
.metric-grid,
.benefit-list,
.next-steps {
  display: grid;
  gap: 16px;
}

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

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

.feature-card {
  padding: 22px;
  border-radius: 22px;
}

.feature-card strong,
.metric-grid strong,
.benefit-list strong,
.next-steps strong {
  display: block;
  color: var(--text-strong);
  line-height: 1.2;
}

.feature-card strong {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.feature-card p,
.metric-grid p,
.benefit-list p,
.next-steps p {
  margin: 0;
  font-size: 0.93rem;
}

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

.metric-grid article {
  padding: 24px;
  border-radius: 24px;
}

.metric-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.metric-grid strong {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.two-column-card,
.final-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(16, 35, 63, 0.09);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

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

.benefit-list article {
  padding: 20px;
  border-radius: 20px;
  box-shadow: none;
}

.benefit-list strong {
  margin-bottom: 7px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 96px;
}

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

.faq-list details {
  border: 1px solid rgba(16, 35, 63, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(15, 35, 63, 0.06);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  color: var(--text-strong);
  font-weight: 850;
}

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

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.final-cta {
  background:
    radial-gradient(circle at 85% 10%, rgba(205, 164, 88, 0.16), transparent 24rem),
    linear-gradient(135deg, #eef4fa 0%, #f8fbff 100%);
}

.final-cta-card {
  grid-template-columns: minmax(0, 1fr) auto;
}

.final-cta-card h2 {
  margin-bottom: 14px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.subpage-hero {
  padding: clamp(78px, 10vw, 136px) 0 clamp(54px, 8vw, 96px);
  background:
    radial-gradient(circle at 8% 10%, rgba(19, 78, 166, 0.07), transparent 28rem),
    radial-gradient(circle at 90% 6%, rgba(205, 164, 88, 0.13), transparent 24rem),
    linear-gradient(180deg, #f7fbff 0%, #eef4fa 100%);
}

.subpage-hero h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.subpage-hero .hero-lead {
  margin-left: auto;
  margin-right: auto;
}

.rich-text-card {
  padding: clamp(24px, 3vw, 36px);
  border-radius: 28px;
}

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

.rich-text-card h2 {
  margin: 28px 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.035em;
}

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

.mission-card {
  padding: clamp(28px, 4vw, 44px);
  border-radius: 30px;
}

.mission-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.dark-card {
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(19, 78, 166, 0.55), transparent 23rem),
    linear-gradient(135deg, #001e44 0%, #07172d 100%);
  border-color: rgba(255, 255, 255, 0.12);
}

.dark-card h2,
.dark-card .eyebrow {
  color: #ffffff;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.76);
}

.belief-grid {
  grid-template-columns: repeat(4, 1fr);
}

.privacy-hero {
  padding-bottom: 44px;
}

.privacy-content a {
  color: var(--brand-deep);
  font-weight: 750;
}

.thank-you-hero {
  min-height: calc(100vh - 68px);
}

.thank-you-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-panel h1 {
  max-width: 100%;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.thank-you-panel .hero-lead {
  margin-left: auto;
  margin-right: auto;
}

.next-steps {
  grid-template-columns: 1fr;
  margin: 24px 0;
  text-align: left;
}

.next-steps article {
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: none;
}

.centered-actions {
  justify-content: center;
}

.site-footer {
  padding: 54px 0 26px;
  color: var(--muted);
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.8fr));
  gap: 30px;
}

.footer-brand img {
  width: 210px;
  margin-bottom: 16px;
}

.site-footer strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text-strong);
}

.site-footer a {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: var(--brand-deep);
}

.site-footer p {
  max-width: 340px;
  margin-bottom: 0;
  font-size: 0.92rem;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

@media (max-width: 1180px) {
  .hero {
    overflow: visible;
    align-items: flex-start;
    padding: 42px 0 58px;
  }

  .hero-grid,
  .section-grid,
  .section-grid-reverse,
  .two-column-card,
  .final-cta-card,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .form-panel,
  .conversion-form-panel {
    max-width: 760px;
  }

  .sticky-copy {
    position: static;
  }

  .final-cta-card .cta-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 900px) {
  .nav-link {
    display: none;
  }

  .feature-grid,
  .compact-grid,
  .metric-grid,
  .benefit-list,
  .mission-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 26px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 70px;
  }

  .brand img {
    width: 184px;
  }

  .nav-cta {
    padding: 10px 13px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 52px;
  }

  h1,
  .subpage-hero h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.7rem);
  }

  .profit-points {
    grid-template-columns: 1fr;
  }

  .preview-header {
    flex-direction: column;
  }

  .lead-form,
  .partner-lead-form {
    grid-template-columns: 1fr;
  }

  .conversion-form-panel {
    padding: 24px;
  }

  .partner-lead-form textarea {
    min-height: 120px;
  }

  .section {
    padding: 56px 0;
  }

  .subpage-hero {
    padding: 60px 0 48px;
  }

  .two-column-card,
  .final-cta-card {
    padding: 24px;
    border-radius: 28px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .brand img {
    width: 170px;
  }

  .site-nav {
    gap: 10px;
  }

  .form-panel {
    padding: 22px;
  }

  .dashboard-preview-card {
    border-radius: 22px;
  }

  .preview-header {
    padding: 16px;
  }

  .button {
    width: 100%;
  }

  .cta-actions {
    width: 100%;
  }
}

@media (max-height: 820px) and (min-width: 1181px) {
  .site-header {
    height: 64px;
  }

  .page-main,
  .hero,
  .thank-you-hero {
    min-height: calc(100vh - 64px);
  }

  .hero {
    padding: 18px 0;
  }

  h1 {
    font-size: clamp(2.85rem, 4.8vw, 4.6rem);
    margin-bottom: 12px;
  }

  .hero-lead {
    margin-bottom: 10px;
  }

  .positioning-line {
    margin-bottom: 12px;
    font-size: 0.94rem;
  }

  .profit-points {
    margin: 12px 0;
  }

  .profit-points article {
    padding: 12px;
  }

  .dashboard-preview-card {
    margin-top: 12px;
  }

  .dashboard-preview-card img {
    aspect-ratio: 16 / 5.4;
  }

  .conversion-form-panel {
    padding: 24px 26px;
  }

  .conversion-form-panel .partner-note {
    margin-bottom: 14px;
    padding: 12px;
  }

  .partner-lead-form {
    gap: 10px 12px;
  }

  .partner-lead-form input,
  .partner-lead-form select {
    min-height: 40px;
    padding: 8px 11px;
  }

  .partner-lead-form textarea {
    min-height: 86px;
  }

  .partner-lead-form .button {
    min-height: 44px;
  }

  .partner-form-note {
    display: none;
  }
}
