
:root {
  --navy: #01265B;
  --blue: #1373FB;
  --ink: #122033;
  --muted: #607086;
  --line: #DCE4EE;
  --soft: #F5F8FC;
  --soft-blue: #EEF5FF;
  --white: #FFFFFF;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 18px 55px rgba(1, 38, 91, 0.10);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }

a {
  color: var(--navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--blue); }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: .8rem 1rem;
  background: var(--navy);
  color: white;
  border-radius: 10px;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,.93);
  border-bottom: 1px solid rgba(220,228,238,.85);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 78px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -0.035em;
  font-size: 1.24rem;
}

.brand img {
  width: 76px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: .94rem;
}

.nav a {
  text-decoration: none;
  color: #2C3A4C;
  font-weight: 560;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--blue); }

.status-strip {
  background: var(--navy);
  color: #DFEAFE;
  font-size: .86rem;
  text-align: center;
  padding: 8px 20px;
}
.status-strip strong { color: white; }

.mobile-nav { display: none; }

main { min-height: 70vh; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 86px;
  background:
    radial-gradient(circle at 83% 23%, rgba(19,115,251,.13), transparent 32%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%);
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  bottom: -170px;
  border-radius: 50%;
  border: 80px solid rgba(1,38,91,.035);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .77rem;
  font-weight: 760;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--blue);
}

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 0 0 .7em;
}

h1 { font-size: clamp(3rem, 7vw, 5.8rem); max-width: 880px; }
h2 { font-size: clamp(2.2rem, 4vw, 3.65rem); }
h3 { font-size: 1.35rem; letter-spacing: -0.025em; }

.lead {
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  color: #405067;
  max-width: 760px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}

.button-primary {
  background: var(--navy);
  color: white;
}
.button-primary:hover {
  background: var(--blue);
  color: white;
}

.button-secondary {
  border-color: var(--line);
  background: white;
  color: var(--navy);
}
.button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero-mark {
  position: relative;
  border-radius: 34px;
  padding: 58px 42px;
  min-height: 360px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255,255,255,.95), rgba(238,245,255,.96));
  box-shadow: var(--shadow);
  border: 1px solid #E4EBF5;
}

.hero-mark img { width: 360px; }

.hero-mark::before,
.hero-mark::after {
  content: "";
  position: absolute;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
}
.hero-mark::before { width: 90px; top: 26px; left: 26px; }
.hero-mark::after { width: 55px; bottom: 26px; right: 26px; opacity: .45; }

section { padding: 84px 0; }

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

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: white;
  box-shadow: 0 9px 30px rgba(1,38,91,.045);
}

.card .number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 22px;
}

.card p { color: var(--muted); margin-bottom: 0; }

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

.principle {
  padding: 28px;
  border-left: 3px solid var(--blue);
  background: white;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.principle strong {
  display: block;
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 7px;
}

.timeline {
  border-left: 2px solid var(--line);
  margin-left: 14px;
}

.timeline-item {
  position: relative;
  padding: 0 0 38px 38px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  left: -8px;
  top: 7px;
  box-shadow: 0 0 0 7px #EAF2FF;
}

.timeline-year {
  display: block;
  color: var(--blue);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.timeline h3 { margin-bottom: 7px; }
.timeline p { color: var(--muted); max-width: 760px; margin: 0; }

.notice {
  border: 1px solid #D6E5FA;
  border-radius: var(--radius);
  padding: 28px;
  background: #F8FBFF;
}

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

.flow {
  display: grid;
  grid-template-columns: 1fr 58px 1fr 58px 1fr;
  align-items: stretch;
  gap: 0;
}

.flow-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 28px;
}

.flow-step .flow-label {
  color: var(--blue);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.flow-step p { color: var(--muted); margin: 0; }

.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 2rem;
  font-weight: 300;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 55px;
}

.prose {
  font-size: 1.05rem;
}

.prose p,
.prose li { color: #45566B; }

.prose h2 { margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }

.prose ul { padding-left: 1.2rem; }

.aside-card {
  position: sticky;
  top: 118px;
  align-self: start;
  background: var(--navy);
  color: #DCE9FC;
  border-radius: var(--radius);
  padding: 28px;
}

.aside-card h3 { color: white; }
.aside-card p { color: #DCE9FC; }
.aside-card a { color: white; }

.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 740;
  color: var(--navy);
  font-size: 1.08rem;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--blue);
  font-size: 1.4rem;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); max-width: 880px; }

.page-hero {
  padding: 76px 0 64px;
  background:
    radial-gradient(circle at 92% 5%, rgba(19,115,251,.11), transparent 31%),
    white;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.7rem, 6vw, 4.8rem); }
.page-hero .lead { max-width: 820px; }

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-item {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid var(--line);
}

.contact-item .label {
  display: block;
  font-size: .78rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-item strong {
  font-size: 1.3rem;
  color: var(--navy);
}

.site-footer {
  margin-top: 30px;
  background: #061B36;
  color: #BFD0E6;
  padding: 52px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 760;
  font-size: 1.15rem;
}

.footer-brand img { width: 78px; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: flex-end;
  align-content: start;
}

.footer-nav a {
  color: #D8E4F4;
  text-decoration: none;
  font-size: .92rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .83rem;
}

.kicker {
  color: var(--blue);
  font-weight: 800;
}

.status-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  border: 1px solid #D5E4FA;
  border-radius: 18px;
  background: #F7FAFF;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 8px;
  flex: 0 0 auto;
}

.status-card p { margin: 0; color: #42546A; }
.status-card strong { color: var(--navy); }

.small {
  font-size: .88rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav { display: none; }
  .mobile-nav { display: block; }
  .mobile-nav summary {
    cursor: pointer;
    color: var(--navy);
    font-weight: 750;
  }
  .mobile-menu {
    position: absolute;
    right: 20px;
    top: 68px;
    min-width: 240px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .mobile-menu a {
    display: block;
    padding: 10px 12px;
    text-decoration: none;
    border-radius: 9px;
  }
  .hero-grid,
  .content-grid,
  .contact-panel,
  .footer-grid { grid-template-columns: 1fr; }
  .cards,
  .principle-grid { grid-template-columns: 1fr; }
  .flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .flow-arrow { transform: rotate(90deg); min-height: 34px; }
  .footer-nav { justify-content: flex-start; }
  .aside-card { position: static; }
}

@media (max-width: 640px) {
  .header-inner { padding: 0 18px; }
  .container { padding-left: 18px; padding-right: 18px; }
  .hero { padding: 70px 0 62px; }
  .hero-grid { gap: 38px; }
  .hero-mark { min-height: 260px; padding: 38px 28px; }
  section { padding: 62px 0; }
  .page-hero { padding: 58px 0 48px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact-notice { margin-top: 24px; }
