```css
:root{
  --card:#ffffff;
  --text:#0f172a;
  --muted:#374151;
  --border:#e5e7eb;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:var(--text);
  background:#000 url("assets/marble.jpg") center/cover no-repeat fixed;
}

.wrap{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.grid{
  width:min(1120px, 100%);
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:24px;
  align-items:stretch;
}

/* ---------- LEFT PANEL ---------- */

.left{
  padding:22px 10px;
  color:#0f172a;
}

.brand{
  display:flex;
  flex-direction:column;
  gap:0;
  margin-bottom:0;
}

.logo{
  width:685px;
  height:auto;
  display:block;
  margin-bottom:-12px;
}

h1{
  font-size:44px;
  line-height:1.05;
  margin:-64px 0 12px;
  letter-spacing:-.02em;
  color:#0f172a;
}

.left .sub{
  color:#1f2937;
  max-width:520px;
  font-size:15px;
  line-height:1.6;
}

.bullets{
  margin:16px 0 0;
  padding-left:16px;
  color:#1f2937;
  font-size:14px;
  line-height:1.75;
}

/* ---------- RIGHT CARD ---------- */

.right{
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(10px);
  border:1px solid rgba(15,23,42,.15);
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:20px;
}

h2{
  margin:6px 0 16px;
  font-size:20px;
  color:#0f172a;
}

label{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin:10px 0 6px;
}

input,select{
  width:100%;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:10px;
  font-size:14px;
  outline:none;
  background:#fff;
  color:#0f172a;
}

/* ---------- BUTTON ---------- */

button{
  width:100%;
  margin-top:14px;
  padding:12px 14px;
  border:0;
  border-radius:12px;
  cursor:pointer;
  background:#0b0b0d;
  color:#fff;
  font-weight:600;
  font-size:14px;
}

/* ---------- TOAST ---------- */

.toast{
  margin-top:12px;
  padding:10px 12px;
  border-radius:10px;
  font-size:13px;
  background:#111827;
  color:#fff;
}

.hidden{display:none !important}

/* ---------- THANK YOU VIEW ---------- */

#thankYouView .sub{
  color:#0f172a;
  font-size:15px;
  line-height:1.6;
}

.wrap.thankyou-active .left{
  transform: translateY(-32px);
  transition: transform .18s ease;
}

/* ---------- LEGAL BLOCK ---------- */

.legal-block{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid rgba(15,23,42,.15);
  font-size:12px;
  line-height:1.5;
  color:#374151;
}

.legal-title{
  font-weight:600;
  color:#111827;
  margin-bottom:4px;
}

.legal-text{
  color:#4b5563;
}

/* ---------- MOBILE ---------- */

@media (max-width: 768px){
  body{
    background-attachment: scroll;
  }

  .wrap{
    padding:14px;
    align-items:flex-start;
  }

  .grid{
    grid-template-columns:1fr;
    gap:14px;
    width:100%;
  }

  .left{
    padding:18px 16px;
  }

  /* make the logo smaller on mobile + shift left */
  .logo{
    width:min(240px, 92vw);
    margin-bottom:-8px;
    transform: translateX(-18px);
  }

  h1{
    font-size:38px;
    line-height:1.05;
    margin:10px 0 8px;
  }

  .left .sub{
    font-size:16px;
    line-height:1.4;
  }

  .bullets{
    font-size:16px;
    line-height:1.4;
    margin-top:10px;
  }

  .right{
    width:100%;
    max-width:100%;
    border-radius:18px;
    padding:16px;
  }
}
```
