:root {
  --bg: #030b18;
  --bg-2: #081327;
  --panel: rgba(10, 20, 40, 0.56);
  --panel-2: rgba(255, 255, 255, 0.05);
  --line: rgba(255,255,255,0.09);
  --line-strong: rgba(125, 230, 255, 0.22);
  --text: #edf4ff;
  --muted: #95a7bf;
  --blue: #3a9dff;
  --cyan: #7fe8ff;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(57, 145, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #030b18, #07101f 34%, #030917 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; }

.page-bg,
.page-bg * {
  pointer-events: none;
}
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.aurora,
.radial-glow {
  position: absolute;
  filter: blur(50px);
  opacity: .7;
  animation: drift 16s ease-in-out infinite;
}
.aurora-a {
  width: 40vw; height: 40vw; left: -6vw; top: 4vh;
  background: radial-gradient(circle, rgba(58,157,255,.30), transparent 70%);
}
.aurora-b {
  width: 34vw; height: 34vw; right: -5vw; top: 24vh;
  background: radial-gradient(circle, rgba(127,232,255,.18), transparent 72%);
  animation-duration: 20s;
}
.aurora-c {
  width: 38vw; height: 38vw; left: 24vw; bottom: -10vh;
  background: radial-gradient(circle, rgba(21,94,255,.18), transparent 72%);
  animation-duration: 22s;
}
.glow-a {
  width: 320px; height: 320px; right: 10%; top: 10%;
  background: radial-gradient(circle, rgba(96, 211, 255, 0.18), transparent 70%);
}
.glow-b {
  width: 260px; height: 260px; left: 8%; bottom: 18%;
  background: radial-gradient(circle, rgba(44, 112, 255, 0.16), transparent 70%);
  animation-duration: 18s;
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 92%);
  opacity: .16;
}
.noise {
  position: absolute; inset: 0; opacity: .08;
  background-image: radial-gradient(circle, rgba(255,255,255,.5) .5px, transparent .7px);
  background-size: 12px 12px;
  mix-blend-mode: soft-light;
}

@keyframes drift {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(18px,-16px,0) scale(1.05); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.18); opacity: 1; }
}
@keyframes shimmer {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}
@keyframes floatY {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.container {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}
.section { padding: 76px 0 0; }
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.glass-soft {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
}
.card-glow {
  position: relative;
  overflow: hidden;
}
.card-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 32%, rgba(255,255,255,.10) 50%, transparent 68%);
  transform: translateX(-120%);
  animation: shimmer 8s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  padding-top: 16px;
}
.nav-shell {
  border-radius: 22px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 12px 24px rgba(0,0,0,.24);
}
.brand-copy { display: grid; min-width: 0; }
.brand-kicker {
  font-size: .78rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
}
.brand-title { font-size: 1rem; font-weight: 700; }
.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
}
.nav a { transition: color .25s ease, transform .25s ease; }
.nav a:hover { color: var(--text); transform: translateY(-1px); }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  cursor: pointer;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease, background .25s ease;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:disabled { cursor: not-allowed; opacity: .6; transform: none; }
.btn-primary {
  color: #06101e;
  background: linear-gradient(135deg, #7fe8ff 0%, #62b9ff 46%, #9de6ff 100%);
  box-shadow: 0 18px 40px rgba(76, 173, 255, .24);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: shimmer 4.8s ease-in-out infinite;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.btn-small { padding: 11px 16px; }
.btn-loader {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(6, 16, 30, .18);
  border-top-color: rgba(6, 16, 30, .95);
  animation: spin 1s linear infinite;
  display: none;
}
button.is-loading .btn-loader { display: inline-block; }
button.is-loading .btn-label { opacity: .88; }
@keyframes spin { to { transform: rotate(360deg); } }
.is-hidden { display: none !important; }

.hero {
  padding: 58px 0 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: 26px;
}
.hero-copy { padding: 30px 0; }
.eyebrow,
.section-label,
.mini-label {
  display: inline-block;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 800;
}
.hero h1 {
  margin: 14px 0 0;
  font-size: clamp(3.8rem, 10vw, 6.6rem);
  line-height: .94;
  letter-spacing: -0.06em;
}
.hero-text {
  margin: 22px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.14rem);
  line-height: 1.78;
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-points {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.hero-point {
  padding: 16px 18px;
  border-radius: 20px;
}
.hero-point strong {
  display: block;
  margin-bottom: 6px;
  font-size: .98rem;
}
.hero-point span { color: var(--muted); line-height: 1.6; }

.hero-card {
  border-radius: var(--radius-xl);
  padding: 22px;
  transform-style: preserve-3d;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tilt-card { animation: floatY 6s ease-in-out infinite; }
.hero-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(127,232,255,.55);
  animation: pulse 2s ease-in-out infinite;
}
.hero-logo-wrap {
  position: relative;
  margin: 22px 0 18px;
  min-height: 250px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.06);
}
.logo-ring {
  position: absolute;
  width: 70%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid rgba(127,232,255,.26);
  box-shadow: 0 0 0 26px rgba(58,157,255,.05), 0 0 64px rgba(58,157,255,.10);
}
.hero-logo-wrap::before,
.hero-logo-wrap::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127,232,255,.22), transparent);
}
.hero-logo-wrap::after {
  transform: rotate(90deg);
}
.hero-logo-wrap img {
  width: min(72%, 320px);
  filter: drop-shadow(0 0 30px rgba(58,157,255,.30));
}
.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.mini-panel {
  padding: 15px;
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .25s ease, border-color .25s ease;
}
.mini-panel:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}
.mini-panel span { color: var(--muted); font-size: .9rem; }
.mini-panel strong {
  display: block;
  margin-top: 6px;
  font-size: .98rem;
}
.hero-card-footer {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: .9rem;
}

.section-heading { max-width: 780px; margin-bottom: 30px; }
.section-heading.compact { margin-bottom: 22px; }
.section-heading h2 {
  margin: 12px 0 10px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
}
.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.process-shell {
  border-radius: var(--radius-xl);
  padding: 28px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.timeline-item {
  position: relative;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.timeline-item:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.timeline-index {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(14,165,255,.24), rgba(11,103,255,.24));
  color: var(--cyan);
  font-weight: 800;
}
.timeline-item h3 { margin: 0 0 10px; font-size: 1.06rem; }
.timeline-item p { margin: 0; color: var(--muted); line-height: 1.68; }

.form-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.form-sidebar,
.form-shell {
  border-radius: 30px;
}
.form-sidebar {
  padding: 20px;
  position: sticky;
  top: 96px;
}
.form-shell { padding: 24px; }
.progress-card,
.info-card {
  border-radius: 22px;
  padding: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
}
.progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
  margin: 12px 0;
}
.progress-fill {
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width .35s ease;
}
.step-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}
.step-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  color: var(--muted);
  font-weight: 700;
  transition: .25s ease;
}
.step-chip span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.step-chip.active,
.step-chip.done {
  color: var(--text);
  background: rgba(14,165,255,.10);
  border-color: rgba(124,232,255,.16);
}
.step-chip.active span,
.step-chip.done span { background: var(--cyan); }
.info-stack { display: grid; gap: 12px; }
.info-card h3 { margin: 0 0 8px; font-size: 1rem; }
.info-card p { margin: 0; color: var(--muted); line-height: 1.65; }

.step-heading { margin-bottom: 18px; }
.step-heading span {
  display: inline-block;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--cyan);
  font-weight: 800;
  margin-bottom: 8px;
}
.step-heading h3 { margin: 0; font-size: clamp(1.3rem, 2vw, 1.8rem); }

.form-step { display: none; }
.form-step.active { display: block; animation: fadeUp .34s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.option-grid,
.switch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.option-card,
.switch-card {
  display: block;
  position: relative;
  padding: 18px;
  border-radius: 22px;
  cursor: pointer;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.option-card:hover,
.switch-card:hover {
  transform: translateY(-2px);
  border-color: rgba(124,232,255,.28);
  box-shadow: 0 18px 34px rgba(2, 8, 20, .20);
}
.option-card input,
.switch-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.option-card:has(input:checked),
.switch-card.selected {
  background: linear-gradient(180deg, rgba(14,165,255,.14), rgba(11,103,255,.10));
  border-color: rgba(124,232,255,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 20px 40px rgba(5,15,32,.26);
}
.option-title,
.switch-title {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
  font-weight: 800;
}
.option-card small,
.switch-card small {
  color: var(--muted);
  line-height: 1.55;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field-grid.single { grid-template-columns: 1fr; }
.field-group { display: grid; gap: 10px; }
.field-group label { font-weight: 700; }
.field-group input,
.field-group textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.09);
  outline: 0;
  background: rgba(1, 9, 20, .62);
  color: var(--text);
  padding: 15px 16px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.field-group textarea { min-height: 210px; resize: vertical; }
.field-group input:focus,
.field-group textarea:focus {
  border-color: rgba(124,232,255,.34);
  box-shadow: 0 0 0 4px rgba(14,165,255,.08);
}
.field-group input::placeholder,
.field-group textarea::placeholder { color: #7890ab; }
.field-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: .88rem;
}

.summary-card {
  border-radius: 24px;
  padding: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  margin-bottom: 18px;
}
.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.summary-row:last-child { border-bottom: 0; }
.summary-row span { color: var(--muted); }
.summary-row strong { text-align: right; }
.consent-list { display: grid; gap: 12px; }
.check-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
}
.check-row input { margin-top: 3px; accent-color: var(--blue); }
.form-error,
.form-status {
  min-height: 22px;
  margin-top: 12px;
  font-weight: 600;
}
.form-error { color: #ffd3d3; }
.form-status { color: var(--cyan); }
.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.faq-list { display: grid; gap: 14px; }
.faq-item {
  border-radius: 24px;
  padding: 6px 18px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 800;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cyan);
  font-size: 1.35rem;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
}

.site-footer { padding: 44px 0 36px; }
.footer-shell {
  border-radius: 28px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
}
.footer-brand strong,
.footer-brand span { display: block; }
.footer-brand span { margin-top: 4px; color: var(--muted); font-size: .92rem; }
.footer-copy { color: var(--muted); font-size: .92rem; }

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(2,10,22,.92);
  border: 1px solid rgba(124,232,255,.22);
  color: var(--text);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: .3s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }

.blip-notice {
  position: fixed;
  inset: auto auto 28px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 36;
  opacity: 0;
  transform: translateY(20px) scale(.96);
  pointer-events: none;
  transition: .35s ease;
}
.blip-notice.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.blip-core {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(127,232,255,.55);
  animation: pulse 1.8s ease-in-out infinite;
}
.blip-content {
  padding: 14px 16px;
  border-radius: 18px;
  display: grid;
  gap: 4px;
}
.blip-content strong { font-size: .98rem; }
.blip-content span { color: var(--muted); font-size: .92rem; }

.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background: rgba(2, 8, 20, .60);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: .3s ease;
}
.success-overlay.show { opacity: 1; pointer-events: auto; }
.success-card {
  width: min(calc(100% - 30px), 470px);
  border-radius: 30px;
  padding: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.success-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.3rem);
}
.success-card p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}
.success-ring {
  width: 94px;
  height: 94px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,255,.22), rgba(14,165,255,.05));
  border: 1px solid rgba(124,232,255,.24);
  position: relative;
}
.success-ring::before,
.success-ring::after {
  content: '';
  position: absolute;
  background: white;
  border-radius: 999px;
}
.success-ring::before { width: 14px; height: 4px; left: 30px; top: 48px; transform: rotate(45deg); }
.success-ring::after { width: 28px; height: 4px; left: 40px; top: 43px; transform: rotate(-45deg); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

@media (max-width: 1120px) {
  .hero-grid,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .form-layout { grid-template-columns: 1fr; }
  .form-sidebar { position: static; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hero-grid,
  .timeline,
  .hero-points,
  .option-grid,
  .switch-grid,
  .field-grid,
  .hero-panel-grid {
    grid-template-columns: 1fr;
  }
  .hero-card-footer,
  .footer-shell,
  .form-actions,
  .blip-notice {
    flex-direction: column;
    align-items: stretch;
  }
  .blip-notice {
    inset: auto 16px 16px 16px;
  }
}

@media (max-width: 640px) {
  .brand-kicker { display: none; }
  .hero { padding-top: 42px; }
  .section { padding-top: 34px; }
  .nav-shell,
  .form-shell,
  .form-sidebar,
  .process-shell,
  .success-card,
  .hero-card {
    border-radius: 24px;
  }
  .hero h1 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
