:root {
  --blue: #084fb4;
  --blue-dark: #003b82;
  --blue-soft: #eaf3ff;
  --navy: #102a4d;
  --text: #52677f;
  --border: #d9e6f5;
  --surface: #ffffff;
  --background: #f5f8fc;
  --yellow: #fbbf24;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--blue);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 230, 245, 0.9);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.site-header-inner,
.page-shell,
.site-footer-inner {
  width: min(1160px, calc(100% - 36px));
  margin-inline: auto;
}

.site-header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

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

.site-nav a {
  color: #3d5772;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.header-cta {
  padding: 10px 15px;
  border-radius: 10px;
  background: var(--blue);
  color: #ffffff !important;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 28px;
  color: #6b7f94;
  font-size: 12px;
}

.breadcrumbs a {
  color: var(--blue);
  text-decoration: none;
}

.landing-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  margin-top: 24px;
  padding: clamp(42px, 6vw, 72px);
  overflow: hidden;
  border: 1px solid #bdd6f5;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(251, 191, 36, 0.24), transparent 24%),
    linear-gradient(135deg, #ffffff, #edf5ff);
  box-shadow: 0 26px 70px rgba(8, 79, 180, 0.1);
}

.landing-hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -120px;
  bottom: -160px;
  border: 50px solid rgba(8, 79, 180, 0.06);
  border-radius: 50%;
}

.eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: -0.047em;
  line-height: 1;
}

.lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--text);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid #abc9ed;
  border-radius: 11px;
  background: #ffffff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.button-primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 12px 25px rgba(8, 79, 180, 0.22);
}

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

.hero-panel {
  position: relative;
  z-index: 1;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 60px rgba(5, 46, 100, 0.16);
  transform: rotate(1.5deg);
}

.hero-panel > span {
  color: #6b7f94;
  font-size: 12px;
  font-weight: 800;
}

.hero-panel > strong {
  display: block;
  margin-top: 9px;
  font-size: 24px;
  line-height: 1.25;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.hero-stat {
  padding: 18px;
  border-radius: 15px;
  background: var(--blue-soft);
}

.hero-stat strong,
.hero-stat span {
  display: block;
}

.hero-stat strong {
  color: var(--blue);
  font-size: 21px;
}

.hero-stat span {
  margin-top: 5px;
  color: #60768d;
  font-size: 11px;
  line-height: 1.4;
}

.content-section {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(36px, 8vw, 96px);
  padding: clamp(64px, 9vw, 110px) clamp(10px, 3vw, 30px);
}

.content-section h2,
.feature-section h2,
.faq-section h2,
.cta-section h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 3.6vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.prose p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}

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

.feature-section,
.faq-section {
  padding: clamp(40px, 6vw, 70px);
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #ffffff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.feature-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, #fcfdff, #f3f7fc);
}

.feature-card .number {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.feature-card h3 {
  margin: 24px 0 11px;
  font-size: 19px;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.outcome-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  margin-top: 20px;
  padding: clamp(42px, 6vw, 72px);
  border-radius: 26px;
  background: #0c3564;
  color: #ffffff;
}

.outcome-section h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 3.5vw, 46px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

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

.outcome-list li {
  padding: 19px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

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

.outcome-list strong {
  font-size: 15px;
}

.outcome-list span {
  margin-top: 6px;
  color: #c7d8e9;
  font-size: 13px;
  line-height: 1.55;
}

.related-section {
  padding: 82px 10px;
}

.related-section h2 {
  margin-bottom: 28px;
  font-size: 28px;
}

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

.related-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: #ffffff;
  text-decoration: none;
}

.related-card span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.related-card strong {
  display: block;
  margin-top: 9px;
  font-size: 18px;
}

.faq-section {
  margin-bottom: 20px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fbfdff;
}

.faq-list summary {
  padding: 19px;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 19px 19px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin: 20px 0 80px;
  padding: clamp(40px, 6vw, 64px);
  border-radius: 26px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #ffffff;
}

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

.cta-section p {
  margin: 14px 0 0;
  color: #d8e7f8;
  line-height: 1.6;
}

.cta-section .actions {
  flex: 0 0 auto;
  margin-top: 0;
}

.cta-section .button-primary {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--blue);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.site-footer-inner {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #6b7f94;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-nav a:not(.header-cta) {
    display: none;
  }

  .landing-hero,
  .content-section,
  .outcome-section {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    transform: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

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

@media (max-width: 620px) {
  .site-header-inner,
  .page-shell,
  .site-footer-inner {
    width: min(100% - 22px, 1160px);
  }

  .brand span {
    display: none;
  }

  .landing-hero,
  .feature-section,
  .faq-section,
  .outcome-section,
  .cta-section {
    padding: 28px 20px;
    border-radius: 20px;
  }

  h1 {
    font-size: clamp(36px, 12vw, 50px);
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stats,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .site-footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 28px;
  }
}

