:root {
  --cyan: #009FE3;
  --navy: #253D6B;
  --light-blue: #BCE4FA;
  --pale-blue: #EEF8FD;
  --white: #FFFFFF;
  --off-white: #F8FBFD;
  --text: #203656;
  --muted: #52657C;
  --border: #DCEBF4;
  --shadow: 0 24px 70px rgba(37, 61, 107, 0.08);
  --radius-lg: 32px;
  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

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

.page-shell { overflow: hidden; }

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(37, 61, 107, 0.07);
  background: rgba(255, 255, 255, 0.96);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  text-decoration: none;
}

.brand-word {
  color: var(--cyan);
  font-size: 2rem;
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand-word strong {
  color: var(--navy);
  font-weight: 820;
}

.parent-brand {
  margin: 0;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  padding: 92px 0 104px;
  background:
    radial-gradient(circle at 85% 34%, rgba(188, 228, 250, .34), transparent 26%),
    linear-gradient(180deg, #FFFFFF 0%, #FBFDFF 100%);
}

.hero-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  right: -250px;
  top: 10%;
  border-radius: 50%;
  background: rgba(188, 228, 250, .20);
  filter: blur(12px);
  pointer-events: none;
}

.hero-network {
  position: absolute;
  z-index: 0;
  right: 2%;
  top: 11%;
  width: 42%;
  height: 72%;
  opacity: .55;
  pointer-events: none;
}

.hero-network .line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 159, 227, .32), transparent);
  transform-origin: left center;
}

.line-a { width: 78%; top: 30%; left: 12%; transform: rotate(-14deg); }
.line-b { width: 66%; top: 52%; left: 19%; transform: rotate(18deg); }
.line-c { width: 52%; top: 67%; left: 28%; transform: rotate(-9deg); }

.hero-network .point {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(0,159,227,.08);
  animation: nodePulse 5.5s ease-in-out infinite;
}

.point-a { left: 12%; top: 28%; }
.point-b { left: 47%; top: 44%; animation-delay: 1s; }
.point-c { right: 14%; top: 25%; animation-delay: 2s; }
.point-d { right: 24%; bottom: 20%; animation-delay: .7s; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, .72fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.hero-copy { max-width: 730px; }

.status-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid rgba(0, 159, 227, .24);
  border-radius: 999px;
  background: #F0F9FE;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 760;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(0, 159, 227, .12);
}

.hero-title {
  margin: 30px 0 24px;
  color: var(--navy);
  font-size: clamp(2.75rem, 5.2vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 760;
}

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

.hero-title strong {
  color: var(--cyan);
  font-weight: 790;
}

.hero-intro {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.42vw, 1.24rem);
  line-height: 1.68;
}

.hero-signature {
  margin: 26px 0 0;
  color: var(--navy);
  font-weight: 780;
}

.hero-statement {
  position: relative;
  padding: 38px 34px 36px;
  border: 1px solid rgba(37, 61, 107, .09);
  border-radius: 30px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-statement::before {
  content: "";
  position: absolute;
  top: 34px;
  left: -1px;
  width: 4px;
  height: 58px;
  border-radius: 0 99px 99px 0;
  background: linear-gradient(180deg, var(--cyan), var(--light-blue));
}

.statement-label {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: .76rem;
  font-weight: 820;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.statement-main {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.15vw, 2.05rem);
  font-weight: 780;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.statement-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 22px;
}

.statement-values span {
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--pale-blue);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 740;
}

.statement-text {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.65;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 820;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.about-section {
  padding: 108px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: clamp(46px, 8vw, 110px);
  align-items: start;
}

.section-heading h2,
.prepare-heading h2,
.closing-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.about-copy {
  padding-top: 5px;
  border-top: 1px solid var(--border);
}

.about-copy p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-copy p:first-child {
  color: var(--text);
  font-size: 1.14rem;
}

.prepare-section {
  padding: 104px 0 110px;
  background: linear-gradient(180deg, #F8FCFF 0%, #FFFFFF 100%);
  border-top: 1px solid rgba(37, 61, 107, .06);
  border-bottom: 1px solid rgba(37, 61, 107, .06);
}

.prepare-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.prepare-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.topic-list {
  border-top: 1px solid var(--border);
}

.topic-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.topic-number {
  margin: 3px 0 0;
  color: var(--cyan);
  font-size: .82rem;
  font-weight: 820;
  letter-spacing: .08em;
}

.topic-item h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.topic-item p:not(.topic-number) {
  max-width: 780px;
  margin: 8px 0 0;
  color: var(--muted);
}

.closing-section {
  padding: 108px 0;
}

.closing-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 44px;
  align-items: center;
  padding: 58px 64px;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(135deg, #EAF7FE 0%, #F7FCFF 48%, #EFF9FE 100%);
  border: 1px solid rgba(0, 159, 227, .14);
}

.closing-copy > p:not(.eyebrow):not(.soon) {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
}

.soon {
  margin: 22px 0 0;
  color: var(--navy);
  font-weight: 800;
}

.closing-status {
  position: relative;
  height: 142px;
  display: grid;
  place-items: center;
}

.closing-status-line {
  position: absolute;
  width: 180px;
  height: 1px;
  background: rgba(0, 159, 227, .32);
  transform: rotate(-16deg);
}

.closing-status-dot {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(0,159,227,.09);
}

.closing-status-text {
  position: relative;
  z-index: 1;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  color: var(--navy);
  font-size: .9rem;
  font-weight: 820;
  letter-spacing: .02em;
}

.site-footer {
  border-top: 1px solid rgba(37,61,107,.08);
  background: var(--off-white);
}

.footer-inner {
  min-height: 156px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-block: 34px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.footer-brand {
  margin-bottom: 4px !important;
  color: var(--navy) !important;
  font-size: 1.25rem !important;
  font-weight: 800;
}

.footer-meta { text-align: right; }

@keyframes nodePulse {
  0%, 100% { transform: scale(1); opacity: .72; }
  50% { transform: scale(1.18); opacity: 1; }
}

@media (max-width: 930px) {
  .hero {
    min-height: auto;
    padding: 72px 0 84px;
  }

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

  .hero-copy { max-width: 780px; }
  .hero-statement { max-width: 700px; }
  .hero-network { width: 68%; right: -15%; opacity: .35; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .closing-card {
    grid-template-columns: 1fr 170px;
    padding: 48px;
  }
}

@media (max-width: 650px) {
  body { font-size: 17px; }
  .container { width: min(calc(100% - 28px), var(--container)); }

  .header-inner { min-height: 88px; }
  .brand-word { font-size: 1.72rem; }
  .parent-brand { font-size: .76rem; }

  .hero { padding: 52px 0 68px; }
  .hero-network { display: none; }
  .status-badge { font-size: .72rem; padding: 9px 12px; }
  .hero-title { margin-top: 24px; font-size: clamp(2.45rem, 13vw, 3.85rem); }
  .hero-intro { font-size: 1.03rem; }

  .hero-statement {
    padding: 29px 24px 27px;
    border-radius: 24px;
  }

  .statement-values { margin: 20px 0 18px; }

  .about-section,
  .prepare-section,
  .closing-section { padding: 72px 0; }

  .section-heading h2,
  .prepare-heading h2,
  .closing-card h2 { font-size: 2rem; }

  .prepare-heading { margin-bottom: 36px; }

  .topic-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    padding: 26px 0;
  }

  .topic-item h3 { font-size: 1.2rem; }

  .closing-card {
    grid-template-columns: 1fr;
    padding: 34px 26px;
    border-radius: 26px;
  }

  .closing-status { display: none; }

  .footer-inner {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta { text-align: left; }
}

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

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #314A66;
    --border: #9AB9CC;
  }

  .status-badge,
  .hero-statement,
  .closing-card { border-width: 2px; }
}
