@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #f8f9fb;
  --card: #ffffff;
  --ink: #0f172a;
  --muted: #5b6477;
  --accent: #1d4ed8;
  --accent-soft: #dbe6ff;
  --accent-dark: #0b214f;
  --line: rgba(15, 23, 42, 0.1);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  --radius: 18px;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

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

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

.bg-orbit {
  position: fixed;
  top: -120px;
  right: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.25), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

.bg-orbit--two {
  top: 40%;
  left: -180px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent 70%);
}

.site-header {
  padding: 32px 0 12px;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-weight: 600;
}

.brand-text small {
  color: var(--muted);
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 24px;
  font-weight: 500;
  color: var(--muted);
}

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

.hero {
  padding: 80px 0 40px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 18px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.countdown {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 16px 18px;
  margin-bottom: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.countdown-label {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--accent-dark);
}

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

.countdown-item {
  background: var(--accent-soft);
  border-radius: 14px;
  padding: 10px 12px;
  text-align: center;
}

.countdown-item strong {
  display: block;
  font-size: 1.3rem;
}

.countdown-item span {
  font-size: 0.85rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.countdown-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 35px rgba(29, 78, 216, 0.25);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(15, 23, 42, 0.15);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-notes {
  display: grid;
  gap: 10px;
}

.note {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.hero-card {
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.hero-card__badge {
  display: inline-block;
  padding: 6px 12px;
  background: #eef2ff;
  color: var(--accent-dark);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-card__flow {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.flow-node {
  background: #f8fafc;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px dashed rgba(15, 23, 42, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.flow-node span {
  color: var(--muted);
  font-weight: 500;
}

.timeline {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

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

.timeline-list {
  list-style: none;
  display: grid;
  gap: 24px;
  position: relative;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(29, 78, 216, 0.25),
    rgba(29, 78, 216, 0.25) 8px,
    transparent 8px,
    transparent 16px
  );
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding-left: 60px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(29, 78, 216, 0.15);
}

.timeline-date {
  font-weight: 600;
  color: var(--accent-dark);
}

.timeline-card {
  background: var(--card);
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.benefits {
  padding: 60px 0;
}

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

.benefit-card {
  background: var(--card);
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
}

.benefit-card h3 {
  margin-bottom: 10px;
}

.faq {
  padding: 60px 0 90px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 18px 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::marker {
  display: none;
}

.faq-item p {
  margin-top: 10px;
  color: var(--muted);
}

.site-footer {
  padding: 40px 0 60px;
  background: #eef2f7;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-meta {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

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

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

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

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-list::before {
    left: 12px;
  }

  .timeline-item::before {
    left: 5px;
  }

  .timeline-item {
    padding-left: 36px;
  }

}

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

  .btn {
    transition: none;
  }
}
