:root {
  --purple-900: #351277;
  --purple-700: #5b2bd7;
  --purple-600: #6d3cf2;
  --purple-100: #eee8ff;
  --purple-50: #f7f4ff;
  --ink: #211936;
  --ink-soft: #6e6680;
  --line: #e9e3f3;
  --paper: #ffffff;
  --page: #fbfaff;
  --mint: #188f58;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(960px, calc(100% - 36px)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  text-decoration: none;
}
.brand-mark {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple-700), #8658f7);
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-dot { color: var(--purple-600); }
.nav-links { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.nav-links a {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.nav-links a:hover { color: var(--purple-700); }
.hero { padding: 74px 0 32px; }
.eyebrow {
  margin-bottom: 12px;
  color: var(--purple-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.2; }
h1 { margin: 0; font-size: clamp(36px, 7vw, 60px); letter-spacing: -.045em; }
.lead { max-width: 730px; margin: 18px 0 0; color: var(--ink-soft); font-size: 17px; }
.notice {
  margin-top: 26px;
  padding: 16px 18px;
  border: 1px solid #d8ccff;
  border-radius: 16px;
  color: #4a248e;
  background: var(--purple-50);
  font-size: 14px;
}
.content { padding: 0 0 74px; }
.card {
  margin-top: 22px;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 0 18px 55px rgba(50,27,92,.08);
}
.card h2 { margin: 34px 0 10px; font-size: 22px; }
.card h2:first-child { margin-top: 0; }
.card h3 { margin: 24px 0 8px; font-size: 17px; }
.card p { margin: 9px 0; color: var(--ink-soft); }
.card li { margin-bottom: 8px; color: var(--ink-soft); }
.card ul, .card ol { padding-left: 22px; }
.card strong { color: var(--ink); }
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.info-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--purple-50);
}
.info-item small {
  display: block;
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.info-item a { color: var(--purple-700); font-weight: 800; text-decoration: none; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 20px;
  padding: 11px 18px;
  border-radius: 13px;
  color: #fff;
  background: var(--purple-700);
  font-weight: 800;
  text-decoration: none;
}
.button.secondary {
  margin-left: 8px;
  color: var(--purple-700);
  border: 1px solid #d8ccff;
  background: #fff;
}
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.payment-logos span,
.payment-logos a {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.payment-logos img { width: auto; height: auto; max-width: 118px; max-height: 32px; object-fit: contain; }
.payment-logos .wordmark { color: #24163f; font-size: 16px; font-weight: 800; letter-spacing: .2px; }
.form-note {
  padding: 18px;
  border-left: 4px solid var(--mint);
  border-radius: 0 13px 13px 0;
  background: #f0fbf6;
}
.footer {
  padding: 30px 0;
  color: #b7acc8;
  background: #24163f;
  font-size: 12px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}
.footer a { color: #fff; }
@media (max-width: 680px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .nav-links { gap: 12px; }
  .hero { padding-top: 48px; }
  .info-grid { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .button.secondary { margin-left: 0; }
  .footer-inner { flex-direction: column; }
}
