/* Basic, modern, accessible styles */
:root {
  --bg: #0b0f14;
  --card: #11161d;
  --text: #dbe7ff;
  --muted: #a4b5d6;
  --brand: #53b3ff;
  --brand-2: #73ffd5;
  --border: #1c2430;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, 'Helvetica Neue', Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
  color: var(--text);
  background: radial-gradient(1200px 600px at 80% -20%, rgba(83,179,255,.2), transparent), var(--bg);
  line-height: 1.6;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Splash animation */
.splash {
  position: fixed; inset: 0; display: grid; place-items: center;
  background: var(--bg); z-index: 9999; animation: splash-out 1.8s ease 1.2s forwards;
}
.splash-logo {
  width: clamp(120px, 20vw, 240px);
  opacity: 0; transform: scale(.9) rotate(0.5deg);
  animation: logo-in 1.2s ease forwards, logo-pulse 1.6s ease-in-out .9s 1 alternate;
  filter: drop-shadow(0 8px 30px rgba(83,179,255,.35));
}
@keyframes logo-in { to { opacity: 1; transform: scale(1) rotate(0deg);} }
@keyframes logo-pulse { from { filter: drop-shadow(0 8px 20px rgba(83,179,255,.25)); } to { filter: drop-shadow(0 12px 45px rgba(115,255,213,.45)); } }
@keyframes splash-out { to { opacity: 0; visibility: hidden; } }

.site-header {
  position: sticky; top: 0; display: flex; gap: 16px; align-items: center; justify-content: space-between;
  padding: 14px 20px; background: rgba(11,15,20,.7); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--text); }
.brand-logo { height: 28px; width: 28px; object-fit: contain; border-radius: 6px; }

.nav { display: flex; gap: 16px; align-items: center; }
.nav .btn { margin-left: 8px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 16px; border-radius: 999px; border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(83,179,255,.1), rgba(83,179,255,.05));
  color: var(--text); font-weight: 600;
}
.btn.primary {
  background: linear-gradient(180deg, rgba(83,179,255,.25), rgba(115,255,213,.2));
  border-color: rgba(83,179,255,.35);
}

.hero {
  padding: clamp(48px, 8vw, 120px) 20px 40px;
  background: radial-gradient(900px 400px at 20% -10%, rgba(115,255,213,.15), transparent);
}
.hero-inner { max-width: 1000px; margin: 0 auto; text-align: left; }
.hero h1 { font-size: clamp(28px, 5vw, 56px); line-height: 1.1; margin: 0 0 12px; }
.hero p { color: var(--muted); font-size: clamp(16px, 2.2vw, 20px); margin: 0 0 18px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.grid {
  display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  padding: 30px 20px; max-width: 1200px; margin: 0 auto;
}
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.card h2 { margin: 0 0 6px; }
.card .link { display: inline-block; margin-top: 6px; }

.panel { padding: 30px 20px; max-width: 1000px; margin: 0 auto; }
.panel h2 { margin-top: 0; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; padding: 0; list-style: none; }
.chip { padding: 8px 12px; border-radius: 999px; border: 1px solid var(--border); background: rgba(255,255,255,.03); }

.three-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; padding: 10px 20px 40px; max-width: 1200px; margin: 0 auto; }
.three-col h3 { margin-bottom: 8px; }

.cta-strip {
  padding: 40px 20px; text-align: center; border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(115,255,213,.08), rgba(83,179,255,.05));
}

.site-footer { padding: 20px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 16px; max-width: 1200px; margin: 0 auto; }
.footer-grid nav { display: flex; gap: 12px; }

.narrow { max-width: 760px; margin: 0 auto; padding: 30px 20px; }
.form { display: grid; gap: 14px; }
.form label { display: grid; gap: 6px; font-weight: 600; }
.form input, .form select, .form textarea {
  padding: 10px 12px; border-radius: 10px; border: 1px solid var(--border);
  background: rgba(255,255,255,.02); color: var(--text);
}
.form button { margin-top: 8px; }

.legal .disclaimer { color: var(--muted); font-size: 14px; margin-top: 24px; }
