:root {
  --ink-900: #0b0f1a;
  --ink-850: #10162490;
  --ink-800: #141c2e;
  --fox-400: #fb923c;
  --fox-500: #f97316;
  --fox-600: #ea580c;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --fox-gradient: linear-gradient(135deg, #f97316 0%, #fb923c 45%, #38bdf8 130%);
}

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

html { height: 100%; scroll-behavior: smooth; }
body { height: 100%; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background-color: #080b12;
  color: var(--slate-200);
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(900px 520px at 100% 0%, rgba(249, 115, 22, 0.11), transparent 62%),
    radial-gradient(780px 460px at 0% 100%, rgba(14, 165, 233, 0.09), transparent 64%);
  background-attachment: fixed;
  min-height: 100%;
  overflow-x: hidden;
}

.glow { position: fixed; border-radius: 50%; filter: blur(120px); z-index: 0; pointer-events: none; }
.glow-a { top: -160px; right: -120px; width: 460px; height: 460px; background: rgba(249, 115, 22, 0.18); }
.glow-b { bottom: -200px; left: -140px; width: 480px; height: 480px; background: rgba(14, 165, 233, 0.14); }

/* ---- Page frame: flex column so header/main/footer fit one screen ---- */
body { display: flex; flex-direction: column; }

/* ---- Fixed navigation bar behind the separate title treatment ---- */
.site-header {
  position: fixed; top: 0; left: 0; z-index: 30;
  width: 100%;
  background: rgba(8, 11, 18, 0.76);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
}
.site-header-inner {
  position: relative;
  width: 100%; max-width: 1200px; min-height: 64px;
  margin: 0 auto; padding: 8px clamp(20px, 5vw, 56px);
  display: flex; align-items: center;
}
.brand-title {
  position: relative;
  display: flex; justify-content: center;
  margin-top: 8px;
  pointer-events: none;
}
.top-actions {
  position: fixed; top: 18px; right: clamp(20px, 5vw, 56px); z-index: 32;
  display: flex; align-items: center; gap: 10px;
}
.contact-button {
  padding: 8px 13px; border: 1px solid rgba(255,255,255,0.12); border-radius: 999px;
  color: rgba(226,232,240,0.82); background: rgba(8,11,18,0.48);
  font-size: 12px; font-weight: 700; text-decoration: none; backdrop-filter: blur(12px);
  transition: color .15s ease, border-color .15s ease, background .15s ease, filter .15s ease;
}
.contact-button:hover, .contact-button:focus-visible {
  color: var(--fox-400); border-color: rgba(249,115,22,0.45); background: rgba(249,115,22,0.08);
}
.top-signup {
  color: #fff; border-color: transparent;
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 8px 20px rgba(249,115,22,0.28);
}
.top-signup:hover, .top-signup:focus-visible {
  color: #fff; border-color: transparent;
  background: linear-gradient(135deg, #f97316, #ea580c); filter: brightness(1.08);
}
.brand {
  display: block;
  flex: none;
  line-height: 0;
  pointer-events: auto;
}
.brand-logo-crop {
  width: clamp(350px, 34vw, 460px);
  max-width: 100%;
  aspect-ratio: 1774 / 600;
  overflow: hidden;
}
.brand-full-logo {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  transform: translateY(-14.7%);
  mix-blend-mode: normal;
}

/* Construction illustration banner (bottom of page) */
.construction-banner {
  position: relative; z-index: 1;
  width: min(calc(100% - 40px), 900px);
  margin: 8px auto 20px;
  display: flex; justify-content: center;
}
.construction-banner-img {
  display: block;
  width: 100%; max-width: 620px; height: auto;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 26px 70px rgba(0,0,0,0.5),
    0 0 60px rgba(249,115,22,0.12),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.site-nav {
  width: 100%;
  display: flex; align-items: center; justify-content: flex-end; gap: 22px;
}
.header-status {
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(226,232,240,0.58);
  margin-right: 8px;
}
.site-nav a {
  color: rgba(226,232,240,0.78); font-size: 13px; font-weight: 700; text-decoration: none;
  transition: color .15s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--fox-400); }
.pitch, .contact-section { scroll-margin-top: 88px; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: 999px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--fox-400); background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.30);
}
.pill-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--fox-400);
  box-shadow: 0 0 0 0 rgba(251,146,60,0.6); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(251,146,60,0.55); }
  70% { box-shadow: 0 0 0 7px rgba(251,146,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(251,146,60,0); }
}

/* ---- Main: centered, fills remaining height ---- */
.wrap {
  position: relative; z-index: 1; flex: 1;
  width: 100%; max-width: 1080px; margin: 0 auto;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(22px, 3vw, 40px) clamp(20px, 5vw, 44px) 32px;
}
.layout {
  width: 100%;
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(36px, 6vw, 72px); align-items: center;
}

/* LEFT column */
.eyebrow { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em; color: var(--fox-400); margin-bottom: 14px; }
.headline { max-width: 560px; font-size: clamp(34px, 4vw, 52px); font-weight: 900; line-height: 1.04; letter-spacing: -0.04em; }
.headline .edge { color: var(--fox-500); }
.headline .grad { background: var(--fox-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.subheadline {
  margin-top: 14px; font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--fox-400);
}
.lede { margin-top: 9px; font-size: clamp(15px, 1.5vw, 17px); color: var(--slate-400); max-width: 520px; line-height: 1.6; }
.launch-countdown {
  max-width: 520px; margin-top: 20px; padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border: 1px solid rgba(249,115,22,0.2); border-radius: 12px;
  background: linear-gradient(100deg, rgba(249,115,22,0.1), rgba(14,165,233,0.05));
}
.launch-kicker { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: var(--fox-400); }
.launch-copy h2 { margin-top: 3px; font-size: 15px; letter-spacing: -0.01em; }
.countdown-grid { display: grid; grid-template-columns: repeat(4, minmax(34px, 1fr)); gap: 8px; text-align: center; }
.countdown-grid div { display: grid; gap: 2px; }
.countdown-grid strong { font-size: 17px; line-height: 1; font-variant-numeric: tabular-nums; }
.countdown-grid span { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate-400); }
.launch-panel { display: block; max-width: none; margin: 0; }
.launch-stack { display: grid; gap: 7px; }
.launch-eyebrow { margin: 0; text-align: center; }
.launch-title {
  text-align: center; font-size: 13px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--fox-400);
}
.launch-panel .countdown-grid { margin-top: 12px; }

.features { list-style: none; max-width: 540px; margin-top: 26px; display: grid; gap: 14px; }
.features li { display: flex; gap: 13px; align-items: flex-start; }
.features .ico {
  flex: none; width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 10px; color: var(--fox-400);
  background: rgba(249,115,22,0.09);
  border: 1px solid rgba(249,115,22,0.18);
}
.features .ico svg { width: 21px; height: 21px; }
.features div { display: flex; flex-direction: column; gap: 2px; }
.features strong { font-size: 14px; font-weight: 750; color: #f8fafc; }
.features span:last-child { font-size: 13px; color: var(--slate-400); line-height: 1.45; }

/* RIGHT column: signup card as the focal CTA */
.cta { display: flex; flex-direction: column; gap: 14px; }

.signup-card {
  position: relative; overflow: hidden;
  padding: clamp(24px, 2.6vw, 32px);
  background: linear-gradient(150deg, rgba(22,30,48,0.94), rgba(10,14,24,0.98));
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 18px; backdrop-filter: blur(12px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.05);
}
.signup-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--fox-400), transparent); z-index: 2;
}

.signup-kicker { margin-bottom: 8px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em; color: var(--fox-400); }
.signup-head h3 { font-size: clamp(24px, 2.5vw, 30px); font-weight: 900; line-height: 1.06; letter-spacing: -0.035em; }
.signup-sub { margin-top: 10px; color: var(--slate-400); font-size: 14px; line-height: 1.55; }
.signup-sub strong { color: var(--fox-400); font-weight: 700; }
.signup-trust { margin-top: 11px; text-align: center; font-size: 12px; color: #64748b; }

form { margin-top: 20px; display: grid; gap: 12px; }
.field { display: grid; gap: 4px; }
.field label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-400); }
.field input {
  width: 100%; padding: 11px 14px; font-size: 15px; color: #f8fafc;
  background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.11);
  border-radius: 9px; outline: none; transition: border-color .15s, box-shadow .15s;
}
.field input::placeholder { color: #64748b; }
.field input:focus { border-color: var(--fox-500); box-shadow: 0 0 0 3px rgba(249,115,22,0.18); }

/* Phone: country dial-code select + number input */
.phone-row { display: flex; gap: 8px; }
.phone-row select {
  flex: none; width: 100px; padding: 11px 8px; font-size: 14px; color: #f8fafc;
  background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.11);
  border-radius: 9px; outline: none; cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}
.phone-row select:focus { border-color: var(--fox-500); box-shadow: 0 0 0 3px rgba(249,115,22,0.18); }
.phone-row select option { background: #10162a; color: #f8fafc; }
.phone-row input { flex: 1; min-width: 0; }

.btn-primary {
  margin-top: 4px; padding: 13px 20px; font-size: 15px; font-weight: 800;
  color: #fff; border: none; border-radius: 11px; cursor: pointer;
  background: linear-gradient(135deg, #f97316, #ea580c); box-shadow: 0 10px 24px rgba(249,115,22,0.26);
  transition: filter .15s, transform .05s;
}
.btn-primary:hover { filter: brightness(1.08); }
.btn-primary:active { transform: translateY(1px); }
.btn-primary:disabled { opacity: 0.7; cursor: default; }
.landing-cta { display: inline-flex; align-items: center; justify-content: center; margin-top: 20px; text-decoration: none; }

.form-msg { min-height: 18px; text-align: center; font-size: 13.5px; font-weight: 600; }
.form-msg.ok { color: #34d399; }
.form-msg.err { color: #f87171; }

.site-footer {
  position: relative; z-index: 1; text-align: center;
  padding: 10px 20px 14px; color: #64748b; font-size: 12.5px;
  display: flex; flex-direction: column; gap: 3px;
}
.contact-section {
  position: relative; z-index: 1; width: min(calc(100% - 40px), 900px); margin: 0 auto 20px;
  padding: 28px 32px; text-align: center; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; background: rgba(15,22,37,0.48);
}
.contact-kicker { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em; color: var(--fox-400); }
.contact-section h2 { margin-top: 8px; font-size: clamp(20px, 2.5vw, 28px); letter-spacing: -0.03em; }
.contact-section h2 + p { margin-top: 8px; color: var(--slate-400); font-size: 14px; }
.contact-section a { color: var(--fox-400); font-weight: 700; }
.contact-details {
  list-style: none; margin: 16px auto 0; padding: 0;
  display: grid; gap: 10px; width: fit-content; text-align: left;
}
.contact-details li {
  display: grid; grid-template-columns: 64px auto; align-items: baseline; gap: 12px;
}
.contact-label {
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--slate-400);
}
.contact-details a, .contact-value {
  font-size: 15px; font-weight: 700; white-space: nowrap; word-break: keep-all;
}
.contact-phone { display: inline-flex; align-items: baseline; gap: 8px; white-space: nowrap; }
.contact-hours { color: var(--slate-400); font-size: 11px; font-weight: 600; letter-spacing: 0.01em; }
.contact-hours-compact { display: none; }
.contact-value { color: var(--slate-400); }
.foot-note { font-size: 11.5px; color: #4b5563; }

/* ---- Dedicated waitlist flow ---- */
.waitlist-page { min-height: 100%; }
.waitlist-wrap {
  position: relative; z-index: auto; flex: 1; width: min(100% - 40px, 520px);
  margin: 0 auto; padding: 32px 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.waitlist-brand { margin-bottom: 20px; }
.waitlist-brand .brand-logo-crop { width: min(78vw, 360px); }
.waitlist-card {
  width: 100%; padding: clamp(24px, 5vw, 36px); position: relative; z-index: 1; overflow: hidden;
  background: linear-gradient(150deg, rgba(22,30,48,0.96), rgba(10,14,24,0.99));
  border: 1px solid rgba(255,255,255,0.11); border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.05);
}
.waitlist-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 2px; background: linear-gradient(90deg, transparent, var(--fox-400), transparent); }
.waitlist-progress { display: flex; gap: 12px; margin-bottom: 24px; font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #64748b; }
.waitlist-progress span { display: inline-flex; align-items: center; gap: 6px; }
.waitlist-progress span::before { content: ""; width: 7px; height: 7px; border: 1px solid currentColor; border-radius: 50%; }
.waitlist-progress .is-active, .waitlist-progress .is-complete { color: var(--fox-400); }
.waitlist-progress .is-active::before, .waitlist-progress .is-complete::before { background: currentColor; box-shadow: 0 0 10px rgba(251,146,60,.55); }
.waitlist-head h1 { max-width: 430px; font-size: clamp(27px, 5vw, 36px); font-weight: 900; line-height: 1.06; letter-spacing: -0.04em; }
.waitlist-head > p:last-child { margin-top: 10px; color: var(--slate-400); font-size: 14px; line-height: 1.55; }
.waitlist-form { margin-top: 22px; }
.waitlist-form[hidden], .waitlist-success[hidden] { display: none; }
.verification-copy { color: var(--slate-400); font-size: 14px; line-height: 1.55; }
.verification-copy strong { color: var(--slate-200); font-weight: 700; word-break: break-word; }
.code-input { text-align: center; letter-spacing: .35em; font-size: 22px !important; font-variant-numeric: tabular-nums; }
.waitlist-actions { display: flex; justify-content: center; gap: 18px; margin-top: 2px; }
.text-button { padding: 0; border: 0; background: none; color: var(--fox-400); font: inherit; font-size: 13px; font-weight: 700; text-decoration: none; cursor: pointer; }
.text-button:hover, .text-button:focus-visible { color: #fed7aa; text-decoration: underline; }
.waitlist-success { padding: 18px 0 4px; text-align: center; }
.success-mark { width: 44px; height: 44px; margin: 0 auto 14px; display: grid; place-items: center; border-radius: 50%; color: #d1fae5; background: rgba(52,211,153,.15); border: 1px solid rgba(52,211,153,.35); font-size: 24px; font-weight: 800; }
.waitlist-success h2 { font-size: 26px; letter-spacing: -.035em; }
.waitlist-success p { margin: 8px auto 18px; max-width: 340px; color: var(--slate-400); font-size: 14px; line-height: 1.55; }

/* Short viewports (typical laptops): compress so it fits without scrolling. */
@media (min-width: 901px) and (max-height: 1120px) {
  .brand-logo-crop { width: clamp(320px, 30vw, 420px); }
  .features { margin-top: 18px; gap: 10px; }
  .subheadline { margin-top: 10px; }
  .lede { margin-top: 7px; }
  .launch-countdown { margin-top: 14px; padding: 11px 14px; }
  form { margin-top: 16px; gap: 9px; }
  .field input, .phone-row select { padding-top: 9px; padding-bottom: 9px; }
  .btn-primary { padding-top: 11px; padding-bottom: 11px; }
  .site-footer { padding: 6px 20px; }
}

/* Very short viewports (e.g. 768px-tall laptops): compress a touch more. */
@media (min-width: 901px) and (max-height: 800px) {
  .brand-logo-crop { width: clamp(290px, 27vw, 380px); }
  .features { margin-top: 12px; gap: 7px; }
  .lede { margin-top: 6px; }
  form { margin-top: 8px; gap: 6px; }
  .site-footer { padding: 2px 20px 4px; }
}

@media (max-width: 900px) {
  html, body { height: auto; }
  body { background-attachment: scroll; }
  .site-header-inner { min-height: 60px; padding: 7px 20px; }
  .brand-title { margin-top: 7px; }
  .wrap { justify-content: flex-start; padding: 22px 20px 28px; }
  .brand-logo-crop { width: min(78vw, 360px); }
  .construction-banner-img { max-width: 100%; }
  .header-status { display: none; }
  .layout { grid-template-columns: 1fr; gap: 24px; }
  .cta { order: 0; align-items: center; }
  .signup-card { width: 100%; max-width: 560px; }
  .pitch { width: 100%; max-width: 640px; margin: 0 auto; }
  .contact-section { width: min(calc(100% - 40px), 560px); margin-bottom: 16px; }
}

@media (max-width: 600px) {
  .wrap { padding: 10px 16px 12px; }
  .site-header-inner { min-height: 56px; padding: 6px 16px; }
  .site-header-inner { min-height: 48px; }
  .brand-title { margin-top: 50px; }
  .construction-banner-img { border-radius: 16px; }
  .top-actions { top: 10px; right: 16px; gap: 8px; }
  .layout { gap: 22px; }
  .signup-card { padding: 16px; border-radius: 18px; }
  .signup-head h3 { font-size: 20px; }
  .signup-sub { font-size: 13.5px; }
  form { margin-top: 12px; gap: 9px; }
  .field input, .phone-row select {
    min-height: 46px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
  }
  .phone-row { gap: 7px; }
  .phone-row select { width: 92px; padding-left: 7px; padding-right: 7px; }
  .btn-primary {
    width: 100%;
    min-height: 46px;
    padding: 11px 8px;
    font-size: clamp(12.5px, 3.7vw, 14px);
    white-space: nowrap;
  }
  .landing-cta { margin-top: 16px; }
  .waitlist-wrap { width: calc(100% - 32px); padding: 16px 0 20px; justify-content: flex-start; }
  .waitlist-brand { margin-bottom: 14px; }
  .waitlist-card { padding: 22px 18px; }
  .waitlist-progress { gap: 9px; margin-bottom: 20px; font-size: 9px; }
  .waitlist-actions { gap: 16px; }
  .signup-trust { margin-top: 9px; font-size: 11px; line-height: 1.4; }
  .eyebrow { margin-bottom: 10px; font-size: 10px; }
  .headline { font-size: clamp(28px, 9vw, 34px); }
  .subheadline { margin-top: 10px; }
  .lede { font-size: 14px; }
  .launch-countdown { margin-top: 18px; padding: 14px; gap: 12px; }
  .countdown-grid { gap: 6px; }
  .countdown-grid strong { font-size: 16px; }
  .launch-countdown { display: block; }
  .launch-copy { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
  .launch-copy h2 { margin-top: 0; font-size: 14px; white-space: nowrap; }
  .countdown-grid { margin-top: 12px; }
  .features { margin-top: 15px; gap: 9px; }
  .features .ico { width: 36px; height: 36px; border-radius: 10px; }
  .features .ico svg { width: 19px; height: 19px; }
  .features strong { font-size: 14px; }
  .features span:last-child { font-size: 12.5px; }
  .site-footer { padding: 8px 16px 12px; }
  .contact-section { width: calc(100% - 32px); padding: 24px 18px; }
  .contact-details li { grid-template-columns: 52px auto; gap: 8px; }
  .contact-phone { gap: 6px; }
  .contact-hours-full { display: none; }
  .contact-hours-compact { display: inline; }
}

@media (max-width: 340px) {
  .contact-details li { grid-template-columns: 44px auto; gap: 6px; }
  .contact-phone { gap: 5px; }
  .contact-phone a { font-size: 14px; }
  .contact-hours { font-size: 10px; }
}
