:root {
  --ink: #121212;
  --blue: #0768DB;
  --blue-soft: #EAF4FF;
  --paper: #FFFFFF;
  --canvas: #D9EBF3;
  --line: #D9DEE5;
  --muted: #60656D;
  --soft: #F4F6F7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--canvas);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }

.page-shell {
  min-height: 100svh;
  padding: clamp(18px, 4vw, 48px);
  display: grid;
  place-items: center;
}

.waitlist-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(1180px, 100%);
  min-height: calc(100svh - clamp(36px, 8vw, 96px));
  padding: 34px clamp(22px, 6vw, 76px) 28px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 28px;
  background: var(--paper);
}

.brand-row,
.footer-row {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-logo { width: clamp(150px, 17vw, 205px); height: auto; display: block; }
.status-pill {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 650;
}

.hero {
  position: relative;
  z-index: 3;
  width: min(980px, 100%);
  margin: clamp(72px, 10vw, 128px) auto 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
}

h1 {
  margin: 0;
  font-size: clamp(42px, 6.2vw, 80px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 720;
}
.headline-line { display: block; white-space: nowrap; }

.hero-copy {
  width: min(680px, 100%);
  margin: 28px auto 0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.48;
  letter-spacing: -.015em;
  color: #2d3034;
}

.waitlist-form {
  width: min(640px, 100%);
  margin: 34px auto 0;
  padding: 6px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  border: 1px solid #D8DCE1;
  border-radius: 999px;
  background: #F4F6F6;
}

.waitlist-form input[type="email"] {
  min-width: 0;
  width: 100%;
  padding: 16px 20px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
}
.waitlist-form input::placeholder { color: #777C82; }
.waitlist-form:focus-within { box-shadow: 0 0 0 3px rgba(7,104,219,.14); border-color: rgba(7,104,219,.45); }

.waitlist-form button {
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.waitlist-form button:hover { transform: translateY(-1px); background: var(--ink); }
.waitlist-form button:disabled { opacity: .65; cursor: wait; transform: none; }

.form-message { min-height: 22px; margin: 12px 0 0; font-size: 14px; font-weight: 650; }
.form-message.success { color: #137333; }
.form-message.error { color: #A32121; }
.consent {
  margin: 2px 0 0;
  font-size: 12px;
  color: #7C8187;
}
.form-message:empty {
  display: none;
}
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.founder-strip {
  position: relative;
  z-index: 3;
  width: min(850px, 100%);
  margin: 18px auto 0;
  padding: 22px 26px;
  display: flex;
  justify-content: center;
  text-align: center;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.founder-strip > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.founder-label {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.founder-strip strong {
  font-size: clamp(27px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -.045em;
}
.founder-strip span:not(.founder-label) { color: var(--muted); font-size: 14px; }
.founder-note { white-space: nowrap; padding: 9px 13px; border-radius: 999px; background: var(--blue); color: #fff; font-size: 12px; font-weight: 800; }
.founder-details {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.value-grid {
  position: relative;
  z-index: 3;
  width: min(930px, 100%);
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-grid article { min-height: 220px; padding: 28px 28px 32px; }
.value-grid article + article { border-left: 1px solid var(--line); }
.value-number { display: inline-block; margin-bottom: 52px; color: var(--blue); font-size: 12px; font-weight: 800; }
.value-grid h2 { margin: 0 0 10px; font-size: 22px; letter-spacing: -.035em; }
.value-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.pricing-line {
  position: relative;
  z-index: 3;
  width: min(780px, 100%);
  margin: 30px auto 0;
  text-align: center;
}
.pricing-line p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 14px; }
.pricing-line strong { color: var(--ink); }

.footer-row {
  margin-top: 70px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #7B8086;
  font-size: 12px;
}

.shape { position: absolute; z-index: 1; pointer-events: none; }
.shape-blue { width: 250px; height: 250px; top: -126px; left: 50%; transform: translateX(-50%); border-radius: 50%; background: var(--blue); opacity: .92; }
.shape-soft { width: 220px; height: 220px; left: -130px; top: 260px; border-radius: 50%; background: #D8EEF9; }
.shape-outline { width: 260px; height: 260px; right: -130px; top: 360px; border: 42px solid #BFD8F5; border-radius: 50%; }
.shape-dot { width: 34px; height: 34px; left: 14%; top: 405px; border-radius: 50%; background: var(--ink); }

@media (max-width: 760px) {
  .page-shell { padding: 10px; display: block; }

  .waitlist-card {
    min-height: calc(100svh - 20px);
    padding: 24px 20px 24px;
    border-radius: 22px;
  }

  .brand-row {
    justify-content: flex-end;
    min-height: 44px;
    position: relative;
  }

  .brand-logo {
    position: absolute;
    top: 80px;
    left: 50%;
    width: clamp(185px, 54vw, 235px);
    transform: translateX(-50%);
    z-index: 4;
  }

  .status-pill {
    font-size: 11px;
    padding: 7px 10px;
  }

  .hero {
    margin-top: 138px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  h1 {
    font-size: clamp(32px, 8.5vw, 42px);
    line-height: 1.03 !important;
    letter-spacing: -0.055em;
  }

  .headline-line {
    white-space: nowrap;
  }

  .hero-copy {
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.42;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
    margin-top: 24px;
    border-radius: 24px;
    padding: 6px;
  }

  .waitlist-form input[type="email"] {
    padding: 12px 15px;
    text-align: center;
  }

  .waitlist-form button {
    width: 100%;
    min-height: 48px;
  }

 .founder-strip {
  margin-top: 24px;
  padding: 18px 0;
  text-align: center;
  align-items: center;
}

  .founder-strip > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-label {
  width: 100%;
  margin: 0 0 8px;
  text-align: center;
}

 .founder-strip strong {
  display: block;
  font-size: 36px;
  line-height: 1;
  text-align: center;
}

.founder-details {
  display: block;
  margin-top: 6px;
  text-align: center;
}

  .founder-note {
    align-self: flex-start;
  }

 .value-grid {
  grid-template-columns: 1fr;
  margin-top: 0;
  border-top: 0;
}

  .value-grid article {
  min-height: 0;
  padding: 28px 8px;
  text-align: center;
}

  .value-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .value-grid article:first-child {
  padding-top: 32px;
}

  .value-number {
  display: block;
  margin-bottom: 16px;
  text-align: center;
}

  .value-grid h2 {
  text-align: center;
}

  .value-grid p {
  max-width: 340px;
  margin: 0 auto;
  text-align: center;
}

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .shape-blue {
    width: 150px;
    height: 150px;
    top: -88px;
  }

  .shape-soft {
    width: 130px;
    height: 130px;
    left: -100px;
    top: 260px;
  }

  .shape-outline {
    width: 160px;
    height: 160px;
    right: -115px;
    top: 400px;
    border-width: 28px;
  }

  .shape-dot {
    display: none;
  }

  /* ONLY privacy/message spacing changes */

  .form-message:empty {
    display: none;
  }

  .consent {
    margin: 6px auto 0;
    max-width: 340px;
    font-size: 10px;
    line-height: 1.25;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
