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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #0f0f1a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

:root {
  --purple: #5B4EE8;
  --purple-dark: #4338CA;
  --blue: #2563EB;
  --grad: var(--purple);
  --grad-soft: #EEF2FF;
  --text: #0f0f1a;
  --muted: #6B7280;
  --border: #E5E7EB;
  --surface: #F9FAFB;
  --dark: #0D0D1A;
  --silver: #6B7280;
  --gold: #D97706;
  --diamond: #0EA5E9;
  --platinum: #7C3AED;
}

.brand { color: var(--purple); font-weight: inherit; letter-spacing: -0.01em; }

nav.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px;
  color: var(--text); text-decoration: none;
}
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 14px; font-weight: 500;
  color: var(--muted); transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { font-weight: 700; color: var(--purple); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn-ghost {
  font-size: 14px; font-weight: 500;
  color: var(--text); text-decoration: none;
  padding: 8px 16px; border-radius: 8px;
  border: 1.5px solid var(--border);
  transition: border-color .2s;
}
.btn-ghost:hover { border-color: #9CA3AF; }

.btn-grad {
  font-size: 14px; font-weight: 600;
  color: #fff; background: var(--purple);
  padding: 9px 20px; border-radius: 8px;
  text-decoration: none;
  transition: background .15s;
  display: inline-flex; align-items: center; gap: 7px;
}
.btn-grad:hover { background: var(--purple-dark); }

.btn-outline {
  font-size: 14px; font-weight: 600;
  color: var(--purple); text-decoration: none;
  padding: 11px 24px; border-radius: 9px;
  border: 1.5px solid #C7D2FE;
  transition: background .2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--grad-soft); }

.btn-white {
  background: #fff; color: var(--purple);
  font-size: 14px; font-weight: 700;
  padding: 13px 28px; border-radius: 8px;
  text-decoration: none;
  display: inline-block;
}
.btn-white:hover { background: #F3F4F6; }

.btn-outline-white {
  background: transparent; color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 12px 28px; border-radius: 10px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, .38);
  transition: border-color .2s;
  display: inline-block;
}
.btn-outline-white:hover { border-color: rgba(255, 255, 255, .8); }

.section-wrap { padding: 96px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.s-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
}
.s-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800; letter-spacing: -.8px;
  line-height: 1.15;
}
.s-sub {
  font-size: 15.5px; color: var(--muted);
  margin-top: 12px; max-width: 540px; line-height: 1.75;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: #EEF2FF;
  color: var(--purple);
  font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 6px;
  margin-bottom: 24px;
}

.reveal, .rd1, .rd2, .rd3, .rd4 { opacity: 1; transform: none; }

.cta-wrap { padding: 0 40px 96px; }
.cta-box {
  max-width: 1200px; margin: 0 auto;
  background: var(--dark);
  border-radius: 16px;
  padding: 72px 56px;
  text-align: center;
}
.cta-box h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800; color: #fff;
  letter-spacing: -.8px; margin-bottom: 12px;
}
.cta-box p {
  font-size: 16px; color: rgba(255, 255, 255, .7);
  margin-bottom: 36px;
}
.cta-btns {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap;
}

footer.site-footer {
  background: #0D0D1A;
  color: #fff;
  padding: 72px 40px 32px;
}
.foot-inner { max-width: 1200px; margin: 0 auto; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px; margin-bottom: 48px;
}
.foot-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 17px;
  color: #fff; text-decoration: none;
  margin-bottom: 14px;
}
.foot-logo img { width: 32px; height: 32px; border-radius: 7px; object-fit: cover; }
.foot-brand p { font-size: 13px; color: #9CA3AF; line-height: 1.75; }
.foot-socials { display: flex; gap: 10px; margin-top: 20px; }
.soc {
  width: 34px; height: 34px; border-radius: 8px;
  background: #1E1E2E; border: 1px solid #2D2D40;
  display: grid; place-items: center;
  text-decoration: none; color: #9CA3AF;
  transition: background .2s, color .2s, border-color .2s;
}
.soc svg { display: block; width: 16px; height: 16px; }
.soc:hover { background: #2D2D40; color: #fff; border-color: #3D3D50; }

.foot-col h4 { font-size: 13px; font-weight: 700; margin-bottom: 18px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.foot-col ul a {
  font-size: 13px; color: #9CA3AF; text-decoration: none;
  transition: color .2s;
}
.foot-col ul a:hover { color: #fff; }

.news-lbl { font-size: 13px; color: #9CA3AF; line-height: 1.65; margin-bottom: 14px; }
.news-form {
  display: flex;
  border-radius: 10px; overflow: hidden;
  border: 1px solid #2D2D40;
}
.news-form input {
  flex: 1; background: #1E1E2E; border: none; outline: none;
  color: #fff; font-size: 13px; font-family: inherit;
  padding: 11px 14px;
}
.news-form input::placeholder { color: #4B5563; }
.news-form button {
  background: var(--purple); border: none; cursor: pointer;
  padding: 11px 14px; color: #fff; font-size: 15px;
  transition: background .15s;
}
.news-form button:hover { background: var(--purple-dark); }

.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid #1E1E2E;
}
.foot-bottom p { font-size: 12px; color: #6B7280; }
.foot-links { display: flex; gap: 24px; }
.foot-links a {
  font-size: 12px; color: #6B7280; text-decoration: none;
  transition: color .2s;
}
.foot-links a:hover { color: #9CA3AF; }

@media (max-width: 960px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  nav.site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .section-wrap { padding-left: 20px; padding-right: 20px; }
  .cta-wrap { padding-left: 20px; padding-right: 20px; }
  .cta-box { padding: 48px 24px; }
  footer.site-footer { padding: 56px 20px 24px; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 12px; }
}

/* Legal pages (privacy, terms, cookies) */
.legal-hero {
  background: #F8F9FF;
  padding: 72px 40px 56px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.legal-hero-inner { max-width: 760px; margin: 0 auto; }
.legal-hero h1 {
  font-size: clamp(32px, 4.6vw, 48px);
  font-weight: 800; letter-spacing: -1.2px;
  line-height: 1.1; margin-bottom: 14px;
}
.legal-hero h1 em { font-style: normal; color: var(--purple); }
.legal-hero p {
  font-size: 15px; color: var(--muted);
  max-width: 560px; margin: 0 auto;
  line-height: 1.7;
}
.legal-meta {
  display: inline-block;
  margin-top: 18px;
  font-size: 12.5px; color: var(--muted);
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.legal-meta strong { color: var(--text); font-weight: 700; }

.legal-main { padding: 64px 40px 96px; }
.legal-inner { max-width: 820px; margin: 0 auto; }
.legal-intro {
  font-size: 15.5px; color: var(--text);
  line-height: 1.8; margin-bottom: 12px;
}
.legal-intro + .legal-intro { margin-top: 14px; }

.legal-inner h2 {
  font-size: 22px; font-weight: 800;
  letter-spacing: -.4px;
  margin-top: 56px; margin-bottom: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--text);
}
.legal-inner h2:first-of-type { margin-top: 48px; }
.legal-inner h3 {
  font-size: 16px; font-weight: 700;
  margin-top: 28px; margin-bottom: 10px;
  color: var(--text);
}
.legal-inner p {
  font-size: 14.5px; color: #374151;
  line-height: 1.8; margin-bottom: 14px;
}
.legal-inner a {
  color: var(--purple); text-decoration: none;
  font-weight: 500; transition: color .15s;
}
.legal-inner a:hover { color: var(--purple-dark); text-decoration: underline; }
.legal-inner strong { color: var(--text); font-weight: 700; }
.legal-sub {
  margin-left: 22px;
  padding-left: 18px;
  border-left: 2px solid var(--border);
}
.legal-sub .legal-sub { margin-top: 10px; }
.legal-inner ul {
  list-style: none;
  margin: 8px 0 18px;
  padding: 0;
}
.legal-inner ul li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px; color: #374151;
  line-height: 1.8; margin-bottom: 8px;
}
.legal-inner ul li::before {
  content: ""; position: absolute;
  left: 4px; top: 13px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--purple);
}
.legal-note {
  font-style: italic; color: var(--muted);
  font-size: 14px; line-height: 1.7;
  padding: 18px 22px;
  background: #F8F9FF;
  border-left: 3px solid var(--purple);
  border-radius: 0 8px 8px 0;
  margin: 28px 0 0;
}
.legal-contact-card {
  margin-top: 36px;
  padding: 24px 26px;
  background: #F9FAFB;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.legal-contact-card p { margin-bottom: 6px; }
.legal-contact-card p:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
  .legal-hero, .legal-main { padding-left: 20px; padding-right: 20px; }
  .legal-sub { margin-left: 10px; padding-left: 14px; }
}
