:root {
  --bg: #fbfbfd;
  --text: #0b1021;
  --muted: #5c6279;
  --ring: #e5e7ef;
  --primary: #5b3df5;
  --primary-600: #5637ff;
}

* { box-sizing: border-box; }
html, body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.card {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.left { max-width: 620px; }

.brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.app-icon { width: 32px; height: 32px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.brand-name { font-weight: 600; font-size: 18px; }

.headline {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
}
.rotating { color: var(--primary); }

.subcopy { color: var(--muted); margin: 0 0 20px 0; }

.waitlist {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  background: white;
  border: 1px solid var(--ring);
  border-radius: 12px;
  padding: 8px;
  width: min(560px, 100%);
  box-shadow: 0 6px 30px rgba(16, 24, 40, 0.08);
}

.email {
  border: none;
  outline: none;
  padding: 14px 14px 14px 14px;
  font-size: 16px;
  border-radius: 8px;
}

.submit {
  appearance: none;
  border: none;
  background: var(--primary);
  color: white;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
}
.submit:hover { background: var(--primary-600); }

.form-message { margin: 10px 2px 0; font-size: 14px; color: var(--muted); min-height: 20px; }

.socials {
  margin-top: 18px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: center;
}
.socials a { color: var(--muted); text-decoration: none; border-bottom: 1px solid transparent; }
.socials a:hover { color: var(--text); border-bottom-color: var(--ring); }

.right { display: grid; place-items: center; }
.phone { width: min(420px, 90%); height: auto; border-radius: 28px; box-shadow: 0 20px 60px rgba(16,24,40,.15); background: white; }

@media (max-width: 900px) {
  .page { padding: 20px; }
  .card { grid-template-columns: 1fr; gap: 28px; text-align: left; }
  .right { order: initial; }
  .headline { font-size: clamp(28px, 7vw, 44px); }
  .phone { width: min(320px, 85%); }
  .waitlist { grid-template-columns: 1fr; }
  .submit { width: 100%; }
}


