:root {
  --bg: #ffffff;
  --bg-soft: #f6f9fc;
  --ink: #061b31;
  --text: #64748d;
  --label: #273951;
  --border: #e5edf5;
  --purple: #533afd;
  --purple-hover: #4434d4;
  --purple-soft: #eef0ff;
  --dark: #1c1e54;
  --ruby: #ea2261;
  --magenta: #f96bee;
  --success: #15be53;
  --shadow: rgba(50, 50, 93, 0.25) 0px 30px 45px -30px, rgba(0, 0, 0, 0.1) 0px 18px 36px -18px;
  --shadow-soft: rgba(23, 23, 23, 0.08) 0px 15px 35px 0px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-feature-settings: "ss01";
  line-height: 1.45;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.section { padding: 92px 0; }
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 100;
  background: var(--purple);
  color: white;
  padding: 10px 14px;
  border-radius: 4px;
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 237, 245, 0.82);
}
.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.2px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--ruby) 58%, var(--magenta));
  box-shadow: var(--shadow-soft);
  font-family: 'Source Code Pro', ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
}
.brand-text { font-size: 18px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
}
.site-nav a { transition: color .18s ease, background .18s ease; }
.site-nav a:hover { color: var(--purple); }
.nav-cta {
  background: var(--purple);
  color: white !important;
  padding: 9px 16px;
  border-radius: 4px;
}
.nav-cta:hover { background: var(--purple-hover); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: white;
  padding: 10px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  width: 100%;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 84px;
  background:
    radial-gradient(circle at 18% 10%, rgba(83, 58, 253, 0.11), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(249, 107, 238, 0.16), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -34% auto;
  width: 52vw;
  height: 52vw;
  background: conic-gradient(from 220deg, rgba(83,58,253,.14), rgba(234,34,97,.08), transparent, rgba(83,58,253,.12));
  filter: blur(4px);
  transform: rotate(-10deg);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  align-items: center;
  gap: 58px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--purple);
  font-family: 'Source Code Pro', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.eyebrow.light { color: #b9b9f9; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -0.72px;
  line-height: 1.08;
}
h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 72px);
  letter-spacing: -1.6px;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 18px;
}
h3 {
  font-size: 25px;
  letter-spacing: -0.26px;
  margin-bottom: 12px;
}
.hero-lead {
  max-width: 640px;
  font-size: 21px;
  line-height: 1.38;
  color: var(--text);
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 500;
  color: var(--purple);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--purple);
  color: white;
  box-shadow: rgba(83, 58, 253, 0.28) 0 14px 28px -16px;
}
.btn-primary:hover { background: var(--purple-hover); }
.btn-ghost {
  background: white;
  border-color: #b9b9f9;
}
.btn-ghost:hover { background: rgba(83, 58, 253, 0.05); }
.trust-list {
  display: flex;
  gap: 14px 20px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--label);
  font-size: 15px;
}
.trust-list li {
  position: relative;
  padding-left: 22px;
}
.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(21, 190, 83, .14);
}
.hero-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.panel-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--label);
}
.panel-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffd7ef;
}
.panel-topbar span:nth-child(2) { background: #b9b9f9; }
.panel-topbar span:nth-child(3) { background: #15be53; }
.panel-topbar strong {
  margin-left: 8px;
  font-weight: 500;
}
.status-card {
  margin: 18px;
  padding: 24px;
  border: 1px solid #d6d9fc;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(83,58,253,.1), rgba(249,107,238,.09));
}
.status-label {
  margin-bottom: 6px;
  color: var(--purple);
  font-family: 'Source Code Pro', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
}
.status-card h2 {
  font-size: 30px;
  margin-bottom: 10px;
}
.status-card p:last-child { margin-bottom: 0; }
.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
}
.mini-card {
  background: white;
  padding: 18px;
}
.mini-card strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 6px;
}
.mini-card p {
  margin-bottom: 0;
  font-size: 14px;
}
.mini-icon {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--purple);
  font-family: 'Source Code Pro', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}
.section-heading.narrow {
  max-width: 680px;
  text-align: center;
  margin-inline: auto;
}
.section-heading p,
.process-grid > div > p,
.cta-card p {
  font-size: 18px;
}
.cards {
  display: grid;
  gap: 18px;
}
.three-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  box-shadow: rgba(23,23,23,.06) 0 3px 6px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #d6d9fc;
}
.card-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(21,190,83,0.35);
  background: rgba(21,190,83,0.12);
  color: #108c3d;
  font-family: 'Source Code Pro', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
}
.card p:last-child, .package-card li:last-child { margin-bottom: 0; }

.dark-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(249, 107, 238, 0.18), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(83, 58, 253, 0.22), transparent 32%),
    var(--dark);
  color: rgba(255,255,255,.72);
}
.dark-section h2 { color: white; }
.process-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}
.steps {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.steps span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(255,255,255,.12);
  color: white;
  font-family: 'Source Code Pro', ui-monospace, monospace;
  font-weight: 700;
}
.steps strong { color: white; font-weight: 500; }
.steps p { margin: 5px 0 0; }

.packages { background: var(--bg-soft); }
.package-card ul {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.package-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}
.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
}
.package-card.featured {
  border-color: #b9b9f9;
  box-shadow: var(--shadow);
}
.badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--purple-soft);
  color: var(--purple);
  font-family: 'Source Code Pro', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 58px;
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 12px;
}
details {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  box-shadow: rgba(23,23,23,.04) 0 3px 6px;
}
summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 500;
}
details p {
  padding: 0 20px 20px;
  margin: 0;
}

.cta-section { padding-top: 28px; }
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border-radius: 8px;
  border: 1px solid #d6d9fc;
  background: linear-gradient(135deg, #ffffff, #f8f9ff);
  box-shadow: var(--shadow);
}
.cta-card p { margin-bottom: 0; }
.cta-card .btn { flex: 0 0 auto; }

.site-footer {
  padding: 56px 0 26px;
  background: #061b31;
  color: rgba(255,255,255,.68);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 34px;
}
.footer-brand { color: white; margin-bottom: 14px; }
.site-footer strong {
  display: block;
  color: white;
  font-weight: 500;
  margin-bottom: 12px;
}
.site-footer a {
  display: block;
  margin-bottom: 8px;
}
.site-footer a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 14px;
}

.legal-page {
  background: #f6f9fc;
}
.legal-hero {
  padding: 74px 0 28px;
}
.legal-card {
  max-width: 860px;
  margin: 0 auto 80px;
  padding: 42px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.legal-card h1 { font-size: clamp(36px, 5vw, 54px); }
.legal-card h2 { font-size: 28px; margin-top: 34px; }
.legal-card p, .legal-card li { font-size: 17px; }
.legal-note {
  padding: 14px 16px;
  border: 1px solid #ffd7ef;
  border-radius: 6px;
  background: #fff7fb;
  color: var(--label);
}

@media (max-width: 980px) {
  .section { padding: 70px 0; }
  .hero-grid, .process-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 560px; }
  .three-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  body.nav-open .site-nav { display: flex; }
  .site-nav a { padding: 10px 0; }
  .nav-cta { text-align: center; padding: 12px 16px !important; }
  .nav-toggle { display: block; }
  h1 { font-size: clamp(39px, 12vw, 54px); }
  .hero { padding-top: 58px; }
  .hero-lead { font-size: 18px; }
  .three-cols { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr; }
  .cta-card, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .legal-card { padding: 26px; margin-bottom: 56px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
