@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Public+Sans:wght@400;500;700&display=swap");

:root {
  --bg: #f3f8fc;
  --ink: #193246;
  --muted: #4c6577;
  --line: rgba(25, 50, 70, 0.18);
  --surface: #ffffff;
  --surface-2: #eaf3fa;
  --accent: #1f8f6e;
  --accent-2: #0a6a86;
  --shadow: 0 18px 35px rgba(15, 40, 65, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Public Sans", "Helvetica Neue", sans-serif;
  background: radial-gradient(circle at 90% 0%, #d7ebf8 0%, var(--bg) 38%, #eef5fa 100%);
  color: var(--ink);
  line-height: 1.65;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 9;
  background: rgba(243, 248, 252, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  padding: 16px clamp(20px, 6vw, 84px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo-pill {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
  font-size: 0.84rem;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

nav a:hover {
  color: var(--ink);
}

.cta {
  border: 1px solid rgba(10, 106, 134, 0.35);
  color: var(--accent-2);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 700;
}

main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 44px clamp(20px, 6vw, 84px) 90px;
}

.hero {
  background: linear-gradient(140deg, #ffffff 0%, #eef5fb 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(24px, 4vw, 46px);
  box-shadow: var(--shadow);
}

.tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.74rem;
  color: var(--accent-2);
  margin-bottom: 14px;
}

h1,
h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  margin-bottom: 12px;
}

.summary {
  color: var(--muted);
  max-width: 68ch;
}

.kpi-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.kpi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 4px;
}

.kpi strong {
  color: var(--accent);
}

.kpi span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  margin-top: 70px;
}

.section-head p,
.section p {
  color: var(--muted);
}

.cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.card h3 {
  margin-bottom: 7px;
  font-size: 1.04rem;
}

.notice {
  margin-top: 15px;
  background: var(--surface-2);
  border-left: 4px solid var(--accent-2);
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
  color: #294b62;
}

.timeline {
  margin-top: 10px;
  list-style: none;
  border-left: 2px solid rgba(25, 50, 70, 0.25);
  padding-left: 18px;
  display: grid;
  gap: 16px;
}

.timeline li {
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline span {
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
  color: var(--accent-2);
}

.ad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.ad {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(235, 245, 252, 0.95));
  border: 1px solid rgba(10, 106, 134, 0.36);
  border-radius: 12px;
  padding: 12px;
  display: grid;
  gap: 5px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.ad:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 106, 134, 0.62);
}

.ad small {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #607d91;
  font-size: 0.72rem;
}

.ad span {
  color: var(--muted);
}

.ad-link {
  font-style: normal;
  font-weight: 700;
  color: var(--accent-2);
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 18px clamp(20px, 6vw, 84px) 36px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.stagger {
  opacity: 0;
  transform: translateY(12px);
}

.reveal.in .stagger {
  opacity: 1;
  transform: translateY(0);
  transition: 0.48s ease;
  transition-delay: var(--delay, 0ms);
}

@media (max-width: 760px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}
