:root {
  --bg: #edf4f9;
  --bg-strong: #e5eef6;
  --panel: #ffffff;
  --panel-soft: #f4f8fc;
  --text: #16314a;
  --muted: #6e859d;
  --line: #d8e4ee;
  --brand: #17314c;
  --brand-soft: #214565;
  --accent: #1777d8;
  --accent-strong: #0d63bb;
  --success: #198d66;
  --warning: #b87300;
  --danger: #c34562;
  --shadow: 0 20px 48px rgba(18, 49, 74, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(23, 119, 216, 0.08), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(25, 141, 102, 0.04), transparent 18%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-strong) 100%);
  color: var(--text);
  font-family: "Segoe UI Variable Text", Aptos, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

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

.landing-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(237, 244, 249, 0.84);
  border-bottom: 1px solid rgba(216, 228, 238, 0.9);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 84px;
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.landing-logo {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(180deg, var(--brand), var(--brand-soft));
  color: #fff;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.landing-brand strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1.1;
}

.landing-brand small {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.landing-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-weight: 600;
}

.landing-nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
}

.hero-section {
  padding: 58px 0 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.82fr);
  gap: 34px;
  align-items: start;
}

.eyebrow,
.section-label,
.panel-kicker {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 16px 0 18px;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-text {
  max-width: 700px;
  font-size: 1.16rem;
  color: var(--muted);
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(18, 49, 74, 0.06);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(18, 49, 74, 0.08);
}

.btn-primary {
  background: linear-gradient(180deg, #2690f5 0%, #1777d8 100%);
  border-color: #1777d8;
  color: #fff;
}

.btn-secondary,
.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-badges span,
.pill,
.status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-panel,
.info-card,
.module-card,
.timeline-card,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 22px;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 20px;
}

.panel-top h2 {
  margin: 8px 0 0;
  font-size: 1.5rem;
}

.panel-tag {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.hero-stat {
  min-height: 126px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
}

.hero-stat.warning {
  background: linear-gradient(180deg, #fff7e8 0%, #fffdf8 100%);
  border-color: #f0debe;
}

.hero-stat.danger {
  background: linear-gradient(180deg, #fff0f4 0%, #fffafb 100%);
  border-color: #efcad3;
}

.hero-stat span,
.hero-stat small {
  color: var(--muted);
}

.hero-stat strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 2.2rem;
  line-height: 1;
}

.mini-table {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.mini-head,
.mini-line {
  display: grid;
  grid-template-columns: 86px 1fr 110px;
  gap: 12px;
  align-items: center;
}

.mini-head {
  padding-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-line {
  padding: 10px 0;
  border-top: 1px solid #e9f0f6;
}

.pill {
  justify-content: center;
  background: #eef4fa;
}

.status.good {
  color: var(--success);
  background: #e8f7f0;
  border-color: #cfe9dd;
}

.status.warn {
  color: var(--warning);
  background: #fff4df;
  border-color: #f2dfbb;
}

.status.neutral {
  color: var(--muted);
  background: #f1f6fb;
}

.section {
  padding: 42px 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.26);
  border-top: 1px solid rgba(216, 228, 238, 0.78);
  border-bottom: 1px solid rgba(216, 228, 238, 0.78);
}

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

.section-heading h2 {
  margin: 10px 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

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

.card-grid {
  display: grid;
  gap: 18px;
}

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

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

.info-card,
.module-card,
.timeline-card {
  padding: 22px;
}

.info-card h3,
.module-card h3,
.timeline-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.module-card ul,
.info-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.module-card li,
.info-card li {
  margin: 8px 0;
}

.timeline-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #e8f1fb;
  color: var(--accent);
  font-weight: 900;
}

.timeline-card p,
.info-card p,
.module-card p,
.cta-panel p {
  color: var(--muted);
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: center;
  padding: 28px;
}

.cta-panel h2 {
  margin: 10px 0 10px;
  font-size: 2.2rem;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

@media (max-width: 1100px) {
  .hero-grid,
  .card-grid.three,
  .card-grid.two,
  .timeline-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    align-items: start;
  }
}

@media (max-width: 900px) {
  .header-row {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 16px 0;
  }

  .landing-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero-section {
    padding-top: 34px;
  }

  .hero-stats,
  .mini-head,
  .mini-line {
    grid-template-columns: 1fr;
  }

  .mini-head {
    display: none;
  }

  .mini-line {
    gap: 8px;
    padding: 12px 0;
  }

  .hero-copy h1 {
    font-size: 3.1rem;
  }
}