
:root {
  --ink: #08080b;
  --panel: rgba(18, 18, 25, 0.72);
  --line: rgba(255, 255, 255, 0.11);
  --text: #f6f4fb;
  --muted: #a09da9;
  --violet: #a997ff;
  --violet-bright: #cfc6ff;
}

* { box-sizing: border-box; }
html { background: var(--ink); }
body { margin: 0; background: var(--ink); color: var(--text); font-family: Arial, Helvetica, sans-serif; }
button, input, select { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }

.site-shell {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(113, 91, 220, .12), transparent 35%),
    linear-gradient(135deg, #07070a 0%, #0b0a10 52%, #07070a 100%);
  isolation: isolate;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.ambient { position: absolute; border-radius: 999px; pointer-events: none; z-index: -1; filter: blur(25px); }
.ambient-one { width: 480px; height: 480px; right: -190px; top: 8%; border: 1px solid rgba(184,166,255,.18); box-shadow: inset 0 0 110px rgba(120,91,255,.15), 0 0 120px rgba(115,79,255,.09); }
.ambient-two { width: 230px; height: 230px; left: -150px; bottom: 6%; background: rgba(97,65,206,.12); filter: blur(70px); }

.topbar {
  width: min(1400px, calc(100% - 72px));
  margin: 0 auto;
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand-lockup { width: 190px; height: auto; display: block; }
.language-switch { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.09); border-radius: 999px; background: rgba(255,255,255,.025); }
.language-switch span { width: 1px; height: 13px; background: rgba(255,255,255,.16); }
.language-switch button { border: 0; background: transparent; color: #716e78; cursor: pointer; font-size: 11px; font-weight: 700; letter-spacing: .12em; padding: 4px; transition: color .2s ease; }
.language-switch button.active, .language-switch button:hover { color: #fff; }
.language-switch button:focus-visible, .submit-button:focus-visible, .success-state button:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; }

.hero-grid {
  width: min(1400px, calc(100% - 72px));
  margin: 0 auto;
  min-height: calc(100svh - 190px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, .72fr);
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
  padding: 72px 0 80px;
}

.hero-copy { padding-left: clamp(0px, 3vw, 48px); }
.eyebrow { margin: 0 0 28px; color: var(--violet-bright); font-size: 11px; font-weight: 700; letter-spacing: .23em; display: flex; align-items: center; gap: 12px; }
.eyebrow i { display: block; width: 26px; height: 1px; background: linear-gradient(90deg, var(--violet), transparent); box-shadow: 0 0 14px var(--violet); }
.hero-copy h1 { margin: 0; max-width: 760px; font-size: clamp(48px, 5.4vw, 86px); line-height: .99; letter-spacing: -.058em; font-weight: 500; }
.hero-copy h1 em { color: var(--violet-bright); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.intro { max-width: 665px; margin: 32px 0 0; color: #b3b0ba; font-size: clamp(16px, 1.25vw, 19px); line-height: 1.75; font-weight: 300; }

.product-row { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 12px; }
.product-chip { min-width: 245px; display: flex; align-items: center; gap: 13px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.015)); backdrop-filter: blur(12px); }
.chip-mark { width: 35px; height: 35px; border-radius: 50%; display: grid; place-items: center; color: #dcd5ff; border: 1px solid rgba(189,174,255,.28); background: radial-gradient(circle at 35% 25%, #444153, #17161d 55%); box-shadow: 0 0 18px rgba(129,99,255,.15); font-size: 12px; font-weight: 800; }
.product-chip > span:last-child { display: flex; flex-direction: column; gap: 3px; }
.product-chip strong { font-size: 13px; letter-spacing: .01em; }
.product-chip small { color: #817e88; font-size: 10px; }
.beta-note { margin: 27px 0 0; color: #73707b; display: flex; align-items: center; gap: 9px; font-size: 12px; }
.beta-note span { color: var(--violet); }

.form-card { position: relative; overflow: hidden; min-height: 650px; border: 1px solid rgba(255,255,255,.11); border-radius: 28px; padding: 34px; background: linear-gradient(145deg, rgba(28,27,36,.84), rgba(11,11,15,.82)); box-shadow: 0 32px 100px rgba(0,0,0,.45), inset 0 1px rgba(255,255,255,.05); backdrop-filter: blur(26px); }
.form-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: linear-gradient(135deg, rgba(193,181,255,.07), transparent 28%); }
.card-glow { position: absolute; width: 190px; height: 190px; right: -100px; top: -110px; border-radius: 50%; background: rgba(147,119,255,.22); filter: blur(55px); }
.form-heading { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 18px; padding-bottom: 25px; margin-bottom: 23px; border-bottom: 1px solid rgba(255,255,255,.08); }
.step { color: var(--violet); font-size: 10px; font-weight: 800; letter-spacing: .16em; padding-top: 4px; }
.form-heading h2, .success-state h2 { margin: 0; font-size: 26px; letter-spacing: -.035em; font-weight: 600; }
.form-heading p { margin: 8px 0 0; max-width: 390px; color: #8e8a95; font-size: 12px; line-height: 1.6; }
.founder-benefits { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 13px; }
.founder-benefits span { display: inline-flex; align-items: center; gap: 5px; padding: 6px 8px; border: 1px solid rgba(174,156,255,.16); border-radius: 999px; color: #aaa4bd; background: rgba(132,102,240,.06); font-size: 8px; line-height: 1; }
.founder-benefits span::before { content: "✦"; color: var(--violet); font-size: 7px; }

form { position: relative; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.field { margin-bottom: 15px; }
.field label, .interest-field legend { display: block; margin-bottom: 7px; color: #b6b3bd; font-size: 10px; font-weight: 700; letter-spacing: .055em; }
.field label span { color: #66636d; font-weight: 400; }
.referral-field small { display: block; min-height: 2.7em; margin-top: 7px; color: #777380; font-size: .7rem; line-height: 1.35; }
.referral-field small.captured { color: #b7a6ff; }
.referral-field small.required { color: #d9b777; }
.referral-field input[readonly] { border-color: rgba(145, 117, 255, .48); color: #cbbfff; background: rgba(118, 85, 255, .08); cursor: default; }
.field input, .field select { width: 100%; height: 46px; padding: 0 14px; color: #f4f1fa; background: rgba(4,4,7,.6); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; outline: none; font-size: 12px; transition: border-color .2s, box-shadow .2s; }
.field input::placeholder { color: #56535d; }
.field select { color-scheme: dark; cursor: pointer; }
.field input:focus, .field select:focus { border-color: rgba(173,153,255,.62); box-shadow: 0 0 0 3px rgba(129,99,255,.08); }

.interest-field { border: 0; margin: 1px 0 17px; padding: 0; }
.segmented { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.segmented label { cursor: pointer; }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented span { height: 39px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.09); border-radius: 9px; color: #77747e; background: rgba(5,5,8,.45); font-size: 11px; transition: .2s ease; }
.segmented input:checked + span { color: #e7e1ff; border-color: rgba(165,145,255,.5); background: rgba(119,88,230,.16); box-shadow: inset 0 0 18px rgba(130,102,240,.08); }
.segmented input:focus-visible + span { outline: 2px solid var(--violet); outline-offset: 2px; }
.consent { display: grid; grid-template-columns: 15px 1fr; gap: 9px; align-items: start; color: #74717b; font-size: 9px; line-height: 1.45; cursor: pointer; }
.consent input { width: 13px; height: 13px; margin: 0; accent-color: #8e76ed; }
.submit-button { width: 100%; height: 51px; border: 0; border-radius: 11px; margin-top: 18px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; color: #100d19; cursor: pointer; background: linear-gradient(100deg, #b8a8ff, #e0dbff 55%, #b39fff); box-shadow: 0 10px 35px rgba(128,96,255,.18); font-size: 12px; font-weight: 800; transition: transform .2s, box-shadow .2s; }
.submit-button:hover { transform: translateY(-2px); box-shadow: 0 14px 42px rgba(128,96,255,.28); }
.submit-button b { font-size: 19px; font-weight: 400; }
.submit-button:disabled { color: #77727f; cursor: not-allowed; background: linear-gradient(100deg, #2b2831, #393541 55%, #2a2730); box-shadow: none; opacity: .72; }
.submit-button:disabled:hover { transform: none; box-shadow: none; }
.privacy { margin: 12px 0 0; display: flex; align-items: center; justify-content: center; gap: 6px; color: #5f5c65; font-size: 8.5px; }
.privacy span { color: #8c7ccb; }
.honeypot { position: absolute; left: -9999px; }

.success-state { min-height: 580px; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px; }
.success-state { display: none; }
body.success .form-content { display: none; }
body.success .success-state { display: flex; }
.success-orb { width: 150px; height: 150px; margin-bottom: 30px; filter: drop-shadow(0 0 28px rgba(139,109,255,.25)); }
.success-orb img { width: 100%; height: 100%; object-fit: contain; }
.success-state .step { margin-bottom: 13px; }
.success-state h2 { font-size: 34px; }
.success-state > p:not(.step) { color: #928e99; max-width: 390px; line-height: 1.7; font-size: 13px; }
.success-state button { margin-top: 24px; border: 1px solid rgba(180,164,255,.35); border-radius: 999px; padding: 12px 18px; color: #cfc6ff; background: rgba(130,100,240,.09); cursor: pointer; font-size: 11px; }

footer { width: min(1400px, calc(100% - 72px)); min-height: 72px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid rgba(255,255,255,.07); color: #55525c; font-size: 9px; letter-spacing: .13em; }
footer p { margin: 0; letter-spacing: .02em; text-transform: none; }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr; max-width: 760px; gap: 55px; padding-top: 60px; }
  .hero-copy { padding-left: 0; }
  .form-card { min-height: auto; }
  .ambient-one { top: 35%; }
}

@media (max-width: 640px) {
  .topbar, .hero-grid, footer { width: min(100% - 34px, 560px); }
  .topbar { min-height: 88px; }
  .brand-lockup { width: 142px; }
  .hero-grid { padding: 48px 0 55px; gap: 43px; }
  .hero-copy h1 { font-size: clamp(42px, 13vw, 60px); }
  .intro { margin-top: 24px; font-size: 15px; }
  .product-row { margin-top: 32px; }
  .product-chip { min-width: 100%; }
  .form-card { padding: 24px 19px; border-radius: 22px; }
  .form-heading { grid-template-columns: 1fr; gap: 6px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .success-state { min-height: 520px; padding: 20px 5px; }
  footer { padding: 24px 0; min-height: 100px; flex-wrap: wrap; }
  footer p { order: 3; flex-basis: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
