:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-muted: #eef3ff;
  --text: #101828;
  --text-soft: #475467;
  --line: #dbe3f0;
  --primary: #0a4db3;
  --primary-dark: #07357c;
  --accent: #f5b700;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  --radius: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(245, 247, 251, 0.9);
  border-bottom: 1px solid rgba(219, 227, 240, 0.7);
}

.header-inner,
.footer-inner,
.cta-inner,
.hero-grid,
.stats-grid,
.card-grid,
.support-grid,
.two-column {
  display: grid;
  gap: 1.5rem;
}

.header-inner {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
}

.brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
  font-size: 0.95rem;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: var(--text-soft);
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-weight: 500;
}

.site-nav a,
.info-card a,
.support-card a {
  transition: color 0.2s ease;
}

.site-nav a:hover,
.info-card a:hover,
.support-card a:hover {
  color: var(--primary);
}

.header-actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 28px rgba(10, 77, 179, 0.22);
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--line);
}

.button-tertiary {
  background: rgba(10, 77, 179, 0.08);
  color: var(--primary);
}

.button-light {
  background: #fff;
  color: var(--primary-dark);
}

.button-block {
  width: 100%;
}

.hero {
  padding: 5rem 0 3rem;
  background:
    radial-gradient(circle at top left, rgba(31, 106, 229, 0.14), transparent 28rem),
    radial-gradient(circle at bottom right, rgba(245, 183, 0, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff, #f5f7fb);
}

.hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.two-column h2,
.cta-inner h2,
.portal-card h2 {
  margin: 0;
  line-height: 1.1;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(2.7rem, 6vw, 4.7rem);
}

.hero-text,
.section-heading p,
.section-copy,
.support-grid p,
.portal-card p,
.info-card p,
.timeline-step p,
.benefits-list p,
.stats-grid span,
.hero-highlights span,
.footer-inner p {
  color: var(--text-soft);
}

.hero-text {
  max-width: 62ch;
  margin: 1.25rem 0 2rem;
  font-size: 1.06rem;
}

.hero-highlights {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-highlights div,
.stats-grid article,
.info-card,
.timeline-step,
.support-card,
.benefits-list article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-highlights div {
  padding: 1rem 1.1rem;
}

.hero-highlights strong,
.stats-grid strong {
  display: block;
  margin-bottom: 0.25rem;
}

.hero-card {
  display: grid;
  gap: 1.2rem;
  justify-items: center;
}

.hero-slideshow {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 16 / 11;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #dfe9ff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.4);
}

.slide-dots span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.slide-dots span.is-active {
  background: #fff;
}

.portal-card {
  width: min(100%, 430px);
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #0f172a, #122547);
  color: #fff;
  box-shadow: 0 28px 55px rgba(15, 23, 42, 0.28);
}

.card-label {
  margin: 0 0 0.6rem;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.9rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(245, 183, 0, 0.14);
}

.stats {
  padding: 0 0 2rem;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stats-grid article {
  padding: 1.4rem;
}

.section {
  padding: 4.5rem 0;
}

.page-hero {
  padding: 4rem 0 2rem;
  background:
    radial-gradient(circle at top left, rgba(31, 106, 229, 0.1), transparent 24rem),
    linear-gradient(180deg, #ffffff, #f5f7fb);
}

.page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
}

.page-hero p {
  max-width: 64ch;
  margin: 0;
  color: var(--text-soft);
}

.page-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
}

.detail-grid,
.highlight-stack {
  display: grid;
  gap: 1.2rem;
}

.detail-grid {
  grid-template-columns: repeat(2, 1fr);
}

.detail-card,
.side-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.detail-card {
  padding: 1.5rem;
}

.detail-card h3,
.side-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
}

.detail-card p,
.side-card p,
.side-card li {
  color: var(--text-soft);
}

.detail-card ul,
.side-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.side-card {
  padding: 1.6rem;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--text-soft);
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.nav-current {
  color: var(--primary);
}

.section-alt {
  background: linear-gradient(180deg, rgba(238, 243, 255, 0.55), rgba(245, 247, 251, 0.2));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.two-column h2,
.cta-inner h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.timeline-step,
.benefits-list article {
  padding: 1.6rem;
}

.pill {
  display: inline-block;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 700;
}

.info-card h3,
.timeline-step h3,
.benefits-list h3 {
  margin: 1rem 0 0.65rem;
  font-size: 1.2rem;
}

.info-card a {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.timeline-step span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

.two-column {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.benefits-list {
  display: grid;
  gap: 1rem;
}

.support-grid {
  grid-template-columns: 1fr 0.9fr;
  align-items: start;
}

.support-card {
  padding: 1.7rem;
  display: grid;
  gap: 1rem;
}

.support-card strong {
  display: block;
  margin-bottom: 0.3rem;
}

.support-card p {
  margin: 0;
}

.cta-band {
  padding: 1rem 0 4rem;
}

.cta-inner {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary), #1f6ae5);
  color: #fff;
  border-radius: 30px;
  box-shadow: 0 26px 48px rgba(10, 77, 179, 0.26);
}

.cta-inner .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-inner {
  grid-template-columns: repeat(2, 1fr);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.footer-inner p:last-child {
  text-align: right;
}

@media (max-width: 1080px) {
  .header-inner,
  .hero-grid,
  .support-grid,
  .two-column,
  .cta-inner,
  .page-layout {
    grid-template-columns: 1fr;
  }

  .site-nav,
  .header-actions {
    justify-content: flex-start;
  }

  .card-grid,
  .timeline,
  .stats-grid,
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner p:last-child {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 3.5rem;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .card-grid,
  .timeline,
  .stats-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .portal-card,
  .hero h1 {
    max-width: none;
  }

  .section,
  .cta-band {
    padding: 3.2rem 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
