:root {
  --blue: #0b63f6;
  --blue-dark: #08245f;
  --green: #13a538;
  --orange: #ff7a00;
  --text: #0f172a;
  --muted: #64748b;
  --panel: rgba(255, 255, 255, 0.88);
  --line: rgba(37, 99, 235, 0.12);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 14%, rgba(14, 165, 233, 0.18), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(34, 197, 94, 0.15), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f0f9ff 44%, #fff 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.68) 46%, rgba(219,234,254,0.62) 100%),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    linear-gradient(var(--line) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }

.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 26px 0 56px; }

.site-header {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-card {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.logo-card img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.logo-card.small { width: 96px; border-radius: 26px; }
.logo-card.large { width: min(520px, 100%); border-radius: 42px; padding: 18px; }
.logo-card.large img { padding: 0; }

.main-nav { display: flex; align-items: center; gap: 30px; font-size: 0.92rem; font-weight: 800; color: #334155; }
.main-nav a:not(.btn):hover { color: var(--blue); }
.menu-toggle { display: none; border: 1px solid #dbeafe; background: white; border-radius: 999px; width: 44px; height: 44px; color: var(--blue-dark); box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 16px 32px rgba(11, 99, 246, 0.22); }
.btn-primary:hover { background: #0754d4; }
.btn-light { background: #fff; color: var(--blue); box-shadow: 0 14px 30px rgba(0,0,0,0.12); }

.hero { position: relative; }
.hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.hero-copy { text-align: left; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  border: 1px solid #dbeafe;
  background: rgba(255,255,255,0.82);
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.hero h1 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(4.2rem, 9vw, 8rem);
  line-height: .88;
  letter-spacing: -.06em;
  font-weight: 1000;
}
.hero h1 span { display: block; background: linear-gradient(90deg, #0b63f6, #13a538); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero h2 { margin: 26px 0 0; font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1.1; color: var(--blue-dark); }
.hero h2 strong { color: var(--green); }
.hero p { color: var(--muted); font-size: 1.13rem; line-height: 1.8; max-width: 650px; }

.benefits { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.benefits span {
  background: rgba(255,255,255,0.86);
  border: 1px solid #dbeafe;
  border-radius: 999px;
  padding: 9px 14px;
  color: #334155;
  font-weight: 800;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.06);
}

.notify-form {
  margin-top: 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  max-width: 680px;
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 30px;
  padding: 10px;
  box-shadow: var(--shadow);
}
.mail-icon { color: var(--blue); font-size: 1.25rem; padding-left: 12px; }
.notify-form input { width: 100%; min-height: 52px; border: 0; outline: 0; color: #334155; font-weight: 700; }
.form-message { min-height: 24px; margin-top: 10px; font-size: .92rem !important; color: #64748b !important; }
.form-message.success { color: var(--green) !important; }
.form-message.error { color: #dc2626 !important; }

.map-pin { position: absolute; width: 36px; height: 36px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 16px 30px rgba(0,0,0,0.18); opacity: .94; }
.map-pin::after { content: ""; position: absolute; inset: 10px; border-radius: 50%; background: white; }
.pin-blue { right: 22%; top: 23%; background: #0b63f6; }
.pin-green { right: 9%; top: 15%; background: #22c55e; }
.pin-orange { right: 6%; top: 40%; background: #f97316; }
.pin-purple { right: 13%; bottom: 26%; background: #7c3aed; }

.countdown-card, .category-panel, .final-cta {
  border: 1px solid #dbeafe;
  background: rgba(255,255,255,0.86);
  border-radius: 40px;
  padding: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.section-kicker { margin: 0 0 8px; text-align: center; color: var(--blue); font-weight: 1000; text-transform: uppercase; letter-spacing: .28em; font-size: .82rem; }
.section-kicker.left { text-align: left; }
.countdown-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.countdown-grid div { background: #fff; border: 1px solid #e0f2fe; border-radius: 26px; padding: 24px; text-align: center; box-shadow: 0 12px 32px rgba(15,23,42,.06); }
.countdown-grid strong { display: block; color: var(--blue); font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1; }
.countdown-grid span { display: block; margin-top: 10px; color: #475569; font-weight: 800; }

.category-panel { margin-top: 44px; }
.section-title { text-align: center; max-width: 720px; margin: 0 auto; }
.section-title h2, .split-section h2, .final-cta h2 { margin: 0; color: var(--blue-dark); font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.05; letter-spacing: -.04em; font-weight: 1000; }
.section-title p, .split-section p, .final-cta p { color: var(--muted); line-height: 1.7; }
.category-grid { margin-top: 30px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.category { border: 1px solid #eef2ff; background: #fff; border-radius: 28px; padding: 18px 12px; text-align: center; box-shadow: 0 12px 32px rgba(15,23,42,.06); transition: transform .2s ease, box-shadow .2s ease; }
.category:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(15,23,42,.10); }
.category span { display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 12px; border-radius: 22px; color: #fff; font-size: 2rem; }
.category h3 { margin: 0; font-size: .95rem; color: #0f172a; }
.category.blue span { background: linear-gradient(135deg, #38bdf8, #0b63f6); }
.category.purple span { background: linear-gradient(135deg, #8b5cf6, #5b21b6); }
.category.red span { background: linear-gradient(135deg, #fb7185, #e11d48); }
.category.orange span { background: linear-gradient(135deg, #fb923c, #f97316); }
.category.yellow span { background: linear-gradient(135deg, #fde047, #f59e0b); }
.category.green span { background: linear-gradient(135deg, #22c55e, #15803d); }

.split-section { display: grid; grid-template-columns: .88fr 1.12fr; gap: 56px; align-items: center; padding: 74px 0; }
.split-section h2 span { color: var(--green); display: block; }
.check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.check-list li { font-weight: 800; color: #334155; }
.check-list li::before { content: "✓"; margin-right: 8px; color: var(--blue); font-weight: 1000; }
.illustration-card { position: relative; min-height: 300px; border: 1px solid #dbeafe; border-radius: 40px; background: linear-gradient(135deg, #eff6ff, #fff); box-shadow: var(--shadow); overflow: hidden; }
.illustration-card::before { content: ""; position: absolute; inset: 58% 10% 0; background: linear-gradient(180deg, #bfdbfe, #60a5fa); border-radius: 999px 999px 0 0; opacity: .42; }
.big-pin { position: absolute; left: 50%; top: 48px; width: 90px; height: 90px; background: var(--blue); border-radius: 50% 50% 50% 0; transform: translateX(-50%) rotate(-45deg); box-shadow: 0 18px 50px rgba(11,99,246,.28); }
.big-pin::after { content: ""; position: absolute; inset: 26px; background: white; border-radius: 50%; }
.mini-icons { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-around; padding: 40px; }
.mini-icons span { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: #fff; box-shadow: 0 12px 30px rgba(15,23,42,.10); font-size: 1.7rem; }

.final-cta { margin-bottom: 40px; display: flex; align-items: center; justify-content: space-between; gap: 30px; color: white; background: linear-gradient(135deg, #0b63f6, #13a538); }
.final-cta h2 { color: white; }
.final-cta p { color: rgba(255,255,255,.88); }
.site-footer { padding: 24px; color: #64748b; text-align: center; border-top: 1px solid #dbeafe; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.reveal { animation: reveal .72s ease both; }
.delay-1 { animation-delay: .14s; }
@keyframes reveal { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 920px) {
  .main-nav { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .main-nav.open { display: grid; position: absolute; top: 118px; left: 20px; right: 20px; z-index: 20; background: white; padding: 18px; border-radius: 26px; box-shadow: var(--shadow); }
  .hero-grid, .split-section { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { text-align: center; }
  .benefits { justify-content: center; }
  .section-kicker.left { text-align: center; }
  .check-list { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .final-cta { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .container, .site-header { width: min(100% - 28px, 1120px); }
  .section-pad { padding-top: 10px; }
  .logo-card.small { width: 78px; border-radius: 22px; }
  .hero h1 { font-size: 4rem; }
  .notify-form { grid-template-columns: auto 1fr; border-radius: 24px; }
  .notify-form .btn { grid-column: 1 / -1; width: 100%; border-radius: 20px; }
  .countdown-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .countdown-card, .category-panel, .final-cta { padding: 24px; border-radius: 30px; }
}
