*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:      #09090B;
  --sub:      #52525B;
  --muted:    #A1A1AA;
  --border:   #E4E4E7;
  --bg:       #FFFFFF;
  --surface:  #FAFAFA;
  --green:    #16A34A;
  --green-bg: #F0FDF4;
  --green-dk: #15803D;
}

html, body { height: 100%; }

body { font-family: 'Inter', system-ui, sans-serif; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; display: flex; flex-direction: column; min-height: 100vh; }

a { color: inherit; text-decoration: none; }

.topbar { padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-link img { height: 32px; display: block; }
.back-link { font-size: .82rem; font-weight: 500; color: var(--sub); display: inline-flex; align-items: center; gap: 5px; transition: color .15s; }
.back-link:hover { color: var(--ink); }
.back-link::before { content: '←'; }

main { flex: 1; display: grid; grid-template-columns: 1fr 460px; max-width: 1000px; margin: 0 auto; width: 100%; padding: 72px 32px; gap: 80px; align-items: start; }

.pitch { padding-top: 8px; }

.eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }

.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.8); }
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 20px; }
h1 em { font-style: normal; color: var(--green); }

.sub { font-size: 1rem; color: var(--sub); line-height: 1.7; margin-bottom: 40px; max-width: 420px; }

.features { display: flex; flex-direction: column; gap: 22px; }
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--green-bg); border: 1px solid #BBF7D0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.feature-text strong { display: block; font-size: .9rem; font-weight: 700; margin-bottom: 3px; }
.feature-text p { font-size: .82rem; color: var(--sub); line-height: 1.6; }

.regular-note { margin-top: 40px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 16px 20px; font-size: .78rem; color: var(--sub); line-height: 1.65; display: flex; gap: 10px; align-items: flex-start; }
.regular-note strong { color: var(--ink); }

.waitlist-box { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 40px 36px; box-shadow: 0 4px 24px rgba(0,0,0,.07); position: sticky; top: 80px; }
.waitlist-box h2 { font-size: 1.4rem; font-weight: 800; letter-spacing: -.5px; margin-bottom: 6px; }
.waitlist-box .sub-line { font-size: .84rem; color: var(--sub); margin-bottom: 28px; line-height: 1.55; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
label { font-size: .78rem; font-weight: 600; color: var(--sub); letter-spacing: .2px; }
input, select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-family: inherit; font-size: .88rem; color: var(--ink); background: var(--bg); outline: none; transition: border-color .15s; }
input:focus, select:focus { border-color: var(--green); }
input::placeholder { color: var(--muted); }

.btn-submit { width: 100%; padding: 13px; background: var(--ink); color: #fff; font-family: inherit; font-size: .92rem; font-weight: 700; border: none; border-radius: 9px; cursor: pointer; transition: all .18s; margin-top: 6px; }
.btn-submit:hover { background: #27272A; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,.22); }
.btn-submit:disabled { background: var(--muted); cursor: not-allowed; transform: none; box-shadow: none; }

.form-fine { font-size: .72rem; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; }

.success-state { display: none; text-align: center; padding: 20px 0; }
.success-state .tick { width: 56px; height: 56px; border-radius: 50%; background: var(--green-bg); border: 1.5px solid #BBF7D0; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 16px; }
.success-state h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.success-state p  { font-size: .84rem; color: var(--sub); line-height: 1.6; }

footer { padding: 20px 32px; border-top: 1px solid var(--border); background: var(--surface); }
.footer-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.disclaimer { font-size: .72rem; color: var(--muted); line-height: 1.7; }
.disclaimer strong { color: var(--sub); font-weight: 600; }

@media (max-width: 760px) {
  main { grid-template-columns: 1fr; padding: 48px 24px; gap: 48px; }
  .waitlist-box { position: static; padding: 32px 24px; }
  .topbar { padding: 16px 20px; }
  footer  { padding: 16px 20px; }
}
