:root {
  --bg: #f6f9fc;
  --panel: #ffffff;
  --muted: #7c8fac;
  --text: #2a3547;
  --accent: #49beff;
  --primary: #5d87ff;
  --primary-strong: #3f6de6;
  --success: #13deb9;
  --card: #ffffff;
  --border: rgba(42, 53, 71, 0.08);
  --shadow: 0 12px 40px rgba(15, 32, 67, 0.12);
  --radius: 18px;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Sora", sans-serif;
  background: linear-gradient(145deg, #fdfdff, #f6f9fc 45%, #eef4ff);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo-img {
  width: 44px;
  height: 44px;
}

.nav__links .active {
  color: var(--text);
  font-weight: 700;
}

.nav__name {
  font-weight: 700;
}

.nav__tagline {
  font-size: 13px;
  color: var(--muted);
  margin-top: -2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
}

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

.nav__links .active {
  color: var(--text);
  font-weight: 700;
}

.nav__actions {
  display: flex;
  gap: 10px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition), color var(--transition),
    border-color var(--transition);
  font-size: 15px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: 0 15px 30px rgba(93, 135, 255, 0.25);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 36px rgba(93, 93, 245, 0.45);
}

.btn--ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(13, 26, 51, 0.03);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  padding: 80px 36px 40px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(93, 135, 255, 0.18),
      transparent 40%
    ),
    radial-gradient(circle at 80% 10%, rgba(73, 190, 255, 0.2), transparent 40%);
  filter: blur(24px);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__copy h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin: 12px 0 16px;
}

.lead {
  color: var(--muted);
  max-width: 720px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  margin: 18px 0;
  flex-wrap: wrap;
}

.hero__pillars {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 15px;
}

.hero__card {
  display: flex;
  justify-content: center;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow);
}

.card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.card__title {
  font-weight: 700;
}

.card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ecf2ff;
}

.card__route {
  font-weight: 600;
  margin: 0 0 4px;
}

.card__meta {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.chip {
  background: rgba(19, 222, 185, 0.14);
  color: #0f735f;
  border: 1px solid rgba(19, 222, 185, 0.35);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  cursor: pointer;
}

.card__footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.stat {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f6f9fc;
}

.stat__value {
  font-size: 20px;
  font-weight: 700;
}

.stat__label {
  color: var(--muted);
  font-size: 13px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(93, 135, 255, 0.12);
  color: #1f3e8b;
  border: 1px solid rgba(93, 135, 255, 0.28);
  font-weight: 600;
  font-size: 13px;
}

.pill--accent {
  background: rgba(19, 222, 185, 0.14);
  color: #0f735f;
  border: 1px solid rgba(19, 222, 185, 0.32);
}

.section {
  padding: 70px 36px;
  max-width: 1200px;
  margin: 0 auto;
}

.section--alt {
  background: radial-gradient(
      circle at 20% 50%,
      rgba(93, 135, 255, 0.08),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(73, 190, 255, 0.08),
      transparent 40%
    );
  border-radius: 28px;
  border: 1px solid var(--border);
}

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

.section__header {
  margin-bottom: 22px;
}

.section__header h2 {
  margin: 8px 0;
  font-size: clamp(26px, 3vw, 38px);
}

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

.grid--three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

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

.tile,
.feature,
.card--light {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.tile h3,
.feature h3 {
  margin: 10px 0 8px;
}

.tile p,
.feature p {
  color: var(--muted);
}

.icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(93, 135, 255, 0.14);
  color: #1f3e8b;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.feature__icon {
  font-size: 24px;
  margin-bottom: 4px;
}

.card--light {
  background: #f6f9fc;
}

.section__copy h2 {
  margin: 8px 0 12px;
}

.list {
  list-style: none;
  padding: 0;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.list strong {
  color: var(--text);
}

.section__panel {
  display: flex;
  justify-content: flex-end;
}

.panel {
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.panel__title {
  margin: 0 0 10px;
  font-weight: 700;
}

.panel__rows {
  display: grid;
  gap: 12px;
}

.panel__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #f6f9fc;
}

.panel__label {
  margin: 0;
  font-weight: 600;
}

.panel__meta {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.panel__footer {
  margin-top: 12px;
  color: var(--muted);
}

.panel__cta {
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.faq-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.faq-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

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

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.dot--green {
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(19, 222, 185, 0.15);
}

.dot--amber {
  background: #ffae1f;
  box-shadow: 0 0 0 6px rgba(255, 174, 31, 0.18);
}

.dot--blue {
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(93, 135, 255, 0.15);
}

.cta {
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(93, 135, 255, 0.18),
    rgba(73, 190, 255, 0.15)
  );
  border: 1px solid var(--border);
  border-radius: 24px;
}

.cta__content h2 {
  margin: 8px 0 12px;
  font-size: clamp(26px, 3vw, 36px);
}

.footer {
  max-width: 1200px;
  margin: 40px auto 20px;
  padding: 24px 36px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--muted);
}

.footer__brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__links {
  display: flex;
  gap: 16px;
}

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

.footer__note {
  margin: 0;
  font-size: 14px;
}

.section--contact {
  max-width: 900px;
}

.section--policy {
  max-width: 1100px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 15px;
  background: #fdfdff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(93, 135, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(93, 135, 255, 0.15);
}

.contact-submit {
  width: fit-content;
  padding: 12px 20px;
}

.contact-status {
  margin: 0;
  color: var(--success);
  font-weight: 600;
  min-height: 20px;
}

.policy-stack {
  display: grid;
  gap: 16px;
}

.policy-stack h3 {
  margin: 12px 0 4px;
  font-size: 18px;
}

.policy-stack p {
  margin: 0;
  color: var(--muted);
}

.policy-stack ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0;
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }

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

  .nav__actions {
    order: 2;
  }

  .hero {
    padding-top: 50px;
  }
}

@media (max-width: 640px) {
  .nav__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero__card {
    order: -1;
  }

  .card__row {
    grid-template-columns: 1fr;
  }

  .card__footer {
    grid-template-columns: 1fr;
  }

  .panel__row {
    grid-template-columns: auto 1fr;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
