:root {
  color-scheme: light;
  --primary: rgb(25, 118, 210);
  --primary-rgb: 25, 118, 210;
  --primary-dark: #135aa4;
  --sun: #f2b94b;
  --ink: rgba(5, 5, 20, .9);
  --ink-soft: rgba(var(--ink), .75);
  --mist: #f8faff;
  --paper: #f9fbff;
  --ring: rgba(25, 118, 210, 0.2);
  --shadow: 0 18px 45px rgba(12, 27, 42, 0.16);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Roboto", "Sora", "Segoe UI", sans-serif;
  color: var(--ink);
  background-color: var(--mist);
  min-height: 100vh;
}

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

img {
  max-width: 100%;
  display: block;
}

.page {
  overflow: hidden;
  position: relative;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

header {
  padding: 32px 0 18px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  width: 200px;
  height: 35px;
  background: url("../assets/logo-horizontal.svg") no-repeat center;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.nav-links a {
  padding: 6px 10px;
}

.hero {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(25, 118, 210, 0.12);
  border-radius: 999px;
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 22px 0 18px;
}

.hero p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-card {
  background: white;
  border-radius: 26px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.hero-card .stat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.stat-icon {
  min-width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(25, 118, 210, 0.12);
  display: grid;
  place-items: center;
  color: var(--primary-dark);
}

.stat h3 {
  margin: 0 0 2px;
  font-size: 1rem;
}

.stat p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

section {
  padding: 40px 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin: 0 0 18px;
}

.lead {
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 34px;
  align-items: center;
}

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

.card {
  background: white;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 35px rgba(12, 27, 42, 0.1);
  border: 1px solid rgba(25, 118, 210, 0.08);
}

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(25, 118, 210, 0.12);
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  background: white;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(25, 118, 210, 0.1);
}

.step span {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--primary);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.step h4 {
  margin: 0 0 2px;
  font-size: 1rem;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.6;
}

.highlight {
  background-color: rgba(var(--primary-rgb), 0.75);
  border-radius: 26px;
  padding: 28px;
  color: var(--paper);
}

footer {
  padding: 30px 0 50px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 20px 0;
  }
  
  .container.nav {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }

}
