:root {
  --bg: #0e1116;
  --surface: #161a22;
  --surface-raised: #1c212b;
  --border: #262c38;
  --text: #edeff3;
  --muted: #8791a8;
  --signal: #35d07f;
  --signal-dim: #1f7a4d;
  --incoming: #232838;
  --outgoing: #1f7a4d;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 20% 20%, rgba(53,208,127,0.06), transparent 40%),
                     radial-gradient(circle at 80% 0%, rgba(53,208,127,0.04), transparent 35%);
  z-index: 0;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.brand-mark { color: var(--signal); letter-spacing: 2px; font-size: 0.9rem; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 32px 48px;
  position: relative;
  z-index: 1;
}
.hero .eyebrow { color: var(--signal); margin-bottom: 18px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 55ch;
}

.workspace {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  position: relative;
  z-index: 1;
}
@media (max-width: 840px) {
  .workspace { grid-template-columns: 1fr; }
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.panel h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--bg);
  background: var(--signal);
  padding: 3px 7px;
  border-radius: 5px;
}

textarea {
  width: 100%;
  min-height: 140px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  padding: 14px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  resize: vertical;
}
textarea:focus, input:focus, select:focus { outline: 2px solid var(--signal); outline-offset: 1px; }

.btn-primary, .btn-secondary, .btn-ghost {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 9px;
  padding: 11px 18px;
  cursor: pointer;
  border: none;
  margin-top: 14px;
}
.btn-primary { background: var(--signal); color: #06110b; width: 100%; }
.btn-primary:hover { background: #47dd8f; }
.btn-primary:disabled { opacity: 0.6; cursor: wait; }
.btn-secondary { background: var(--surface-raised); color: var(--text); border: 1px solid var(--border); width: 100%; }
.btn-ghost { background: transparent; color: var(--muted); border: 1px solid var(--border); width: 100%; }
.btn-ghost:hover { color: var(--text); }

.hint { font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted); min-height: 1.2em; margin-top: 8px; }

.config-preview { margin-top: 24px; border-top: 1px solid var(--border); padding-top: 20px; }
.hidden { display: none !important; }

.admin-shell { max-width: 1440px; }
.admin-summary { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; margin: 0 0 28px; }
.admin-stat { padding: 22px; border: 1px solid var(--border); border-radius: 18px; background: rgba(255,255,255,.035); }
.admin-stat strong { display: block; font: 600 clamp(1.7rem, 3vw, 2.5rem)/1 var(--font-display); color: var(--text); }
.admin-stat span { display: block; margin-top: 8px; color: var(--muted); font-size: .86rem; }
.admin-table-heading { display: flex; align-items: end; justify-content: space-between; gap: 22px; margin-bottom: 20px; }
.admin-table-heading h2 { margin-bottom: 0; }
.admin-table-heading input { width: min(100%, 340px); }
.admin-table td { min-width: 125px; vertical-align: middle; }
.admin-table td:first-child { min-width: 235px; }
.admin-table td small { display: block; margin-top: 5px; color: var(--muted); }
.admin-status, .admin-readiness { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,.07); text-transform: capitalize; font-size: .78rem; }
.status-active, .status-trialing, .admin-readiness.is-ready { color: #b6f5cf; background: rgba(55,205,125,.13); }
.status-past_due, .status-cancelled { color: #ffc4bd; background: rgba(255,106,89,.12); }
.usage-track { display: block; width: 110px; height: 5px; margin-top: 8px; overflow: hidden; border-radius: 10px; background: rgba(255,255,255,.09); }
.usage-track i { display: block; height: 100%; border-radius: inherit; background: var(--accent); }
@media (max-width: 900px) { .admin-summary { grid-template-columns: repeat(2, 1fr); } .admin-table-heading { align-items: stretch; flex-direction: column; } }
@media (max-width: 520px) { .admin-summary { grid-template-columns: 1fr; } }
.config-preview h3 { font-family: var(--font-display); font-size: 0.9rem; margin: 0 0 12px; color: var(--signal); }
#config-fields { font-size: 0.88rem; }
#config-fields .row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed var(--border); gap: 12px; }
#config-fields .label { color: var(--muted); font-family: var(--font-mono); font-size: 0.78rem; }
.save-result { margin-top: 12px; font-family: var(--font-mono); font-size: 0.8rem; color: var(--signal); word-break: break-all; }

.app-select-label { font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
select#app-select {
  display: block; width: 100%; margin: 8px 0 20px;
  background: var(--bg); border: 1px solid var(--border); color: var(--text);
  border-radius: 8px; padding: 9px 10px; font-family: var(--font-body); font-size: 0.9rem;
}

.phone {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  background: #05070a;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.phone-statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 16px 4px; font-family: var(--font-mono); font-size: 0.68rem; color: #cfd6e4;
}
.carrier { color: var(--muted); margin-left: 4px; }
.phone-header {
  text-align: center; font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
  padding: 6px 0 10px; border-bottom: 1px solid #1a1f29; color: var(--text);
}
.phone-thread {
  height: 360px; overflow-y: auto; padding: 14px 12px; display: flex; flex-direction: column; gap: 8px;
  background: linear-gradient(180deg, #0a0d13, #05070a);
}
.bubble {
  max-width: 78%; padding: 9px 13px; border-radius: 16px; font-size: 0.86rem; line-height: 1.35;
}
.bubble.in { align-self: flex-start; background: var(--incoming); color: var(--text); border-bottom-left-radius: 4px; }
.bubble.out { align-self: flex-end; background: var(--outgoing); color: #eafff3; border-bottom-right-radius: 4px; }
.bubble.typing { font-family: var(--font-mono); color: var(--muted); background: var(--incoming); }

.phone-input {
  display: flex; gap: 8px; padding: 10px; border-top: 1px solid #1a1f29; background: #05070a;
}
.phone-input input {
  flex: 1; background: #12161d; border: 1px solid var(--border); color: var(--text);
  border-radius: 20px; padding: 9px 14px; font-size: 0.86rem;
}
.phone-input button {
  background: var(--signal); border: none; border-radius: 50%; width: 34px; height: 34px; cursor: pointer; color: #06110b;
}

.footnote {
  text-align: center; color: var(--muted); font-size: 0.82rem; padding: 0 32px 50px; position: relative; z-index: 1;
}
.footnote code { font-family: var(--font-mono); background: var(--surface-raised); padding: 1px 6px; border-radius: 4px; }
.sms-opt-in { max-width: 760px; margin: 0 auto 48px; padding: 28px 32px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); position: relative; z-index: 1; }
.sms-opt-in h2 { font-family: var(--font-display); margin: 8px 0 12px; }
.sms-opt-in p { color: var(--muted); }
.sms-opt-in a { color: var(--signal); }
.sms-opt-in .sms-disclosure { font-size: .82rem; }
.sms-opt-in .sms-optional-notice { padding: 12px 14px; border-left: 3px solid var(--signal); background: rgba(53, 208, 127, .08); color: var(--text); }
.sms-opt-in strong { color: var(--text); }
.sms-opt-in-form { margin-top: 22px; }
.sms-opt-in-form > label:first-child { display: block; margin-bottom: 8px; color: var(--text); font-weight: 600; }
.sms-opt-in-form input[type="tel"] { width: 100%; background: var(--bg); border: 1px solid var(--border); color: var(--text); border-radius: 9px; padding: 12px 14px; font: inherit; }
.sms-opt-in-form input[type="tel"]:focus { outline: 2px solid rgba(53, 208, 127, .4); border-color: var(--signal); }
.field-help { margin: 7px 0 0; font-size: .78rem; }
.consent-row { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 12px; margin: 18px 0; color: var(--muted); font-size: .82rem; line-height: 1.55; cursor: pointer; }
.consent-row input { width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--signal); }
.sms-choice-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.sms-skip-btn { margin: 0; }
.sms-join-btn { margin-top: 0; }
.sms-opt-in-result { min-height: 1.4em; margin: 12px 0 0; font-family: var(--font-mono); font-size: .8rem; }
.sms-opt-in-result.success { color: var(--signal); }
.sms-opt-in-result.error { color: #ff8b8b; }
.legal-links { display: flex; justify-content: center; gap: 12px; }
.legal-links a, .legal-page a { color: var(--signal); }
.legal-page { max-width: 760px; margin: 0 auto; padding: 64px 28px 90px; position: relative; z-index: 1; }
.legal-page h1, .legal-page h2 { font-family: var(--font-display); }
.legal-page h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 8px; }
.legal-page h2 { font-size: 1.15rem; margin-top: 34px; }
.legal-page p, .legal-page li { color: #b8c0d0; }
.legal-page .effective { color: var(--muted); font-family: var(--font-mono); font-size: .8rem; }
.legal-page strong { color: var(--text); }
.topbar-actions, .dashboard-nav { display: flex; align-items: center; gap: 14px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-actions .btn-primary, .hero-actions .btn-ghost { width: auto; margin: 0; text-decoration: none; display: inline-flex; align-items: center; }
.hero-price { color: var(--muted); font-family: var(--font-mono); font-size: .78rem; margin-top: 12px; }
.value-strip { max-width: 1180px; margin: -20px auto 38px; padding: 0 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; position: relative; z-index: 1; }
.value-strip div { display: grid; gap: 7px; padding: 18px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); }
.value-strip strong { color: var(--signal); font-family: var(--font-display); }
.value-strip span { color: var(--muted); font-size: .84rem; line-height: 1.5; }
.account-shell { max-width: 980px; margin: 60px auto 100px; padding: 0 28px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; position: relative; z-index: 1; }
.account-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 32px; }
.account-card h1, .account-card h2, .dashboard-shell h1, .dashboard-shell h2 { font-family: var(--font-display); }
.muted-card { background: var(--surface-raised); }
.stack-form { display: grid; gap: 16px; margin-top: 24px; }
.stack-form label { display: grid; gap: 7px; color: var(--text); font-size: .88rem; font-weight: 600; }
.stack-form input { width: 100%; background: var(--bg); border: 1px solid var(--border); color: var(--text); border-radius: 9px; padding: 12px 14px; font: inherit; }
.stack-form .account-consent { display: grid; grid-template-columns: 20px 1fr; color: var(--muted); font-size: .8rem; font-weight: 400; line-height: 1.5; }
.stack-form .account-consent input { width: 18px; height: 18px; padding: 0; }
.stack-form .account-consent a, .billing-fine-print a { color: var(--signal); }
.account-footer { padding: 0 28px 50px; position: relative; z-index: 1; }
.form-result { min-height: 1.3em; color: var(--muted); font-family: var(--font-mono); font-size: .8rem; }
.form-result.error { color: #ff8b8b; }
.dashboard-shell { max-width: 1180px; margin: 46px auto 100px; padding: 0 28px; position: relative; z-index: 1; }
.dashboard-hero { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.dashboard-hero h1 { margin: 5px 0 0; }
.subscription-chip { border: 1px solid var(--signal); border-radius: 999px; padding: 10px 16px; display: grid; text-align: right; }
.subscription-chip span { color: var(--signal); text-transform: uppercase; font-family: var(--font-mono); font-size: .78rem; }
.subscription-chip small { color: var(--muted); }
.billing-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.dashboard-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; }
.launch-checklist { margin-bottom: 22px; padding: 24px 26px; border: 1px solid var(--border); border-radius: 16px; background: var(--surface); }
.launch-checklist h2 { margin: 5px 0 18px; }
.launch-checklist ol { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; list-style: none; counter-reset: launch-step; }
.launch-checklist li { counter-increment: launch-step; display: grid; gap: 6px; padding: 14px; border: 1px solid var(--border); border-radius: 10px; }
.launch-checklist li::before { content: "0" counter(launch-step); color: var(--signal); font-family: var(--font-mono); font-size: .74rem; }
.launch-checklist li strong { font-size: .86rem; }
.launch-checklist li span { color: var(--muted); font-size: .76rem; line-height: 1.4; }
.billing-fine-print { color: var(--muted); font-size: .78rem; line-height: 1.5; margin-top: 18px; }
.owner-test-messages { min-height: 120px; max-height: 260px; overflow-y: auto; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: rgba(0,0,0,.12); }
.owner-test-messages p { margin: 0 0 10px; line-height: 1.45; }
.owner-test-compose { display: flex; gap: 10px; margin-top: 12px; }
.owner-test-compose input { flex: 1; }
.owner-list { display: grid; gap: 12px; }
.owner-list-item { display: grid; gap: 5px; padding: 14px; border: 1px solid var(--border); border-radius: 10px; }
.owner-list-item code { color: var(--muted); font-size: .74rem; overflow-wrap: anywhere; }
.dashboard-bookings { margin-top: 22px; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 11px 10px; text-align: left; border-bottom: 1px solid var(--border); font-size: .84rem; }
th { color: var(--muted); font-family: var(--font-mono); }
@media (max-width: 900px) { .launch-checklist ol { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .account-shell, .dashboard-grid, .value-strip { grid-template-columns: 1fr; } .dashboard-hero { align-items: flex-start; gap: 18px; flex-direction: column; } .topbar-actions .eyebrow { display: none; } .launch-checklist ol { grid-template-columns: 1fr; } }

/* Premium product refresh */
:root {
  --bg: #070a0f;
  --surface: rgba(17, 23, 32, 0.82);
  --surface-raised: #141b25;
  --border: rgba(255,255,255,.09);
  --text: #f5f7fa;
  --muted: #929cad;
  --signal: #78f0b0;
  --signal-strong: #38d989;
  --signal-dim: #176a46;
  --violet: #8a7dff;
  --incoming: #1b2330;
  --outgoing: #1f8b5d;
}

body { background: #070a0f; letter-spacing: -.01em; }
.noise {
  opacity: 1;
  background:
    radial-gradient(circle at 72% 11%, rgba(121, 94, 255, .15), transparent 28%),
    radial-gradient(circle at 20% 28%, rgba(55, 218, 139, .10), transparent 30%),
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: auto, auto, 64px 64px, 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.topbar { max-width: 1240px; margin: 0 auto; padding: 22px 30px; border: 0; }
.brand { color: var(--text); text-decoration: none; font-size: 1.2rem; letter-spacing: -.03em; }
.brand-mark { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; color: #07110c; background: linear-gradient(145deg, #96f7c2, #38d989); box-shadow: 0 0 32px rgba(56,217,137,.2); font-size: .68rem; letter-spacing: -.02em; }
.topbar-nav { display: flex; gap: 30px; margin-left: auto; margin-right: 34px; }
.topbar-nav a { color: #aab2c0; text-decoration: none; font-size: .86rem; font-weight: 500; }
.topbar-nav a:hover { color: var(--text); }
.status-pill { display: inline-flex; align-items: center; gap: 7px; color: #b8c1cf; font-family: var(--font-mono); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.status-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 12px var(--signal); }
.topbar-actions .btn-ghost { margin: 0; width: auto; padding: 10px 15px; color: var(--text); background: rgba(255,255,255,.035); }

.hero { max-width: 1240px; min-height: 660px; padding: 86px 30px 104px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr); gap: 72px; align-items: center; }
.hero-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: #b4bdca; font-size: .82rem; font-weight: 600; }
.hero-kicker span { width: 26px; height: 1px; background: var(--signal); box-shadow: 0 0 10px var(--signal); }
.hero h1 { font-size: clamp(3.2rem, 6.2vw, 5.7rem); line-height: .97; letter-spacing: -.065em; margin-bottom: 28px; }
.hero h1 span { color: transparent; background: linear-gradient(110deg, #ffffff 5%, #8d98aa 95%); -webkit-background-clip: text; background-clip: text; }
.lede { max-width: 58ch; color: #a4adbc; font-size: 1.08rem; line-height: 1.75; }
.hero-actions { margin-top: 30px; }
.hero-actions .btn-primary, .hero-actions .btn-ghost { min-height: 52px; padding: 0 22px; border-radius: 14px; }
.btn-primary { background: linear-gradient(135deg, #83f1b6, #36d486); box-shadow: 0 12px 34px rgba(56,217,137,.18); }
.btn-primary:hover { background: linear-gradient(135deg, #9cf6c4, #4de195); transform: translateY(-1px); }
.btn-secondary, .btn-ghost { border-color: var(--border); background: rgba(255,255,255,.035); }
.btn-primary, .btn-secondary, .btn-ghost { transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.hero-price { margin-top: 16px; color: #6f7989; font-size: .7rem; }

.hero-showcase { position: relative; min-height: 480px; display: grid; place-items: center; }
.showcase-glow { position: absolute; inset: 5% 2%; border-radius: 50%; background: radial-gradient(circle, rgba(106,78,255,.28), rgba(52,213,134,.12) 42%, transparent 70%); filter: blur(36px); }
.showcase-window { position: relative; z-index: 1; width: min(100%, 440px); overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 26px; background: linear-gradient(155deg, rgba(27,34,46,.96), rgba(9,13,19,.98)); box-shadow: 0 40px 90px rgba(0,0,0,.55), inset 0 1px rgba(255,255,255,.06); transform: rotate(1.5deg); }
.showcase-bar { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.025); }
.showcase-bar > div { display: flex; align-items: center; gap: 11px; }
.showcase-bar strong, .showcase-bar small { display: block; }
.showcase-bar strong { font-size: .88rem; }
.showcase-bar small { color: var(--muted); font-size: .68rem; margin-top: 2px; }
.showcase-avatar { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: linear-gradient(145deg, #715cff, #9a8cff); font-size: .72rem; font-weight: 700; }
.online-dot { color: var(--signal); font-family: var(--font-mono); font-size: .66rem; text-transform: uppercase; }
.showcase-thread { min-height: 330px; padding: 26px 20px; display: flex; flex-direction: column; gap: 13px; }
.showcase-message { max-width: 78%; margin: 0; padding: 12px 15px; border-radius: 17px; font-size: .83rem; line-height: 1.5; }
.showcase-message.customer { align-self: flex-end; background: linear-gradient(135deg, #38d989, #239b68); color: #05130c; border-bottom-right-radius: 5px; }
.showcase-message.assistant { align-self: flex-start; background: #1b2431; color: #dce1e8; border: 1px solid rgba(255,255,255,.05); border-bottom-left-radius: 5px; }
.booking-confirmation { display: flex; gap: 12px; align-items: center; margin-top: 5px; padding: 14px; border: 1px solid rgba(120,240,176,.2); border-radius: 15px; background: rgba(56,217,137,.08); }
.booking-confirmation strong, .booking-confirmation small { display: block; }
.booking-confirmation strong { color: #dff9eb; font-size: .78rem; }
.booking-confirmation small { color: #8eaa9b; font-size: .67rem; margin-top: 3px; }
.confirm-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--signal); color: #06110b; font-weight: 800; }
.showcase-compose { display: flex; justify-content: space-between; align-items: center; margin: 0 16px 16px; padding: 10px 11px 10px 15px; border: 1px solid var(--border); border-radius: 999px; color: #6f7989; background: #0b1017; font-size: .76rem; }
.showcase-compose b { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: #06110b; background: var(--signal); }
.showcase-stat { position: absolute; z-index: 2; display: grid; gap: 2px; min-width: 125px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; background: rgba(14,19,27,.88); backdrop-filter: blur(16px); box-shadow: 0 18px 40px rgba(0,0,0,.35); }
.showcase-stat strong { font-family: var(--font-display); font-size: 1rem; }
.showcase-stat span { color: var(--muted); font-size: .66rem; }
.stat-one { left: -15px; top: 80px; transform: rotate(-4deg); }
.stat-two { right: -10px; bottom: 66px; transform: rotate(4deg); }

.value-strip { max-width: 1180px; margin: -44px auto 100px; gap: 1px; padding: 0; overflow: hidden; border: 1px solid var(--border); border-radius: 18px; background: var(--border); }
.value-strip div { border: 0; border-radius: 0; padding: 25px 28px; background: #0e131b; }
.value-strip strong { color: var(--text); font-size: .92rem; }
.value-strip span { color: #7e8898; }
.workspace { max-width: 1180px; grid-template-columns: 1.08fr .92fr; gap: 22px; padding-bottom: 110px; }
.section-heading { grid-column: 1 / -1; max-width: 700px; margin: 0 auto 34px; text-align: center; }
.section-heading h2 { margin: 10px 0 12px; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.08; letter-spacing: -.045em; }
.section-heading p:last-child { color: var(--muted); }
.panel, .account-card, .launch-checklist { border-color: var(--border); background: linear-gradient(155deg, rgba(20,27,37,.94), rgba(12,17,24,.94)); box-shadow: inset 0 1px rgba(255,255,255,.035), 0 22px 60px rgba(0,0,0,.16); }
.panel { border-radius: 22px; padding: 30px; }
.step { border-radius: 999px; padding: 5px 9px; }
textarea, .stack-form input, .owner-test-compose input, select#app-select, .sms-opt-in-form input[type="tel"] { border-color: var(--border); background: rgba(5,8,12,.66); border-radius: 13px; }
.phone { border-color: rgba(255,255,255,.12); box-shadow: 0 28px 80px rgba(0,0,0,.55), 0 0 0 6px rgba(255,255,255,.02); }
.sms-opt-in { max-width: 820px; border-radius: 24px; background: linear-gradient(150deg, rgba(20,27,37,.94), rgba(12,17,24,.94)); box-shadow: 0 30px 80px rgba(0,0,0,.2); }
.account-shell { margin-top: 72px; }
.account-card { border-radius: 24px; padding: 38px; }
.account-card:first-child { position: relative; overflow: hidden; }
.account-card:first-child::before { content: ""; position: absolute; width: 280px; height: 280px; right: -140px; top: -150px; border-radius: 50%; background: rgba(56,217,137,.13); filter: blur(35px); }
.dashboard-shell { max-width: 1240px; }
.dashboard-hero { padding: 24px 0 10px; }
.dashboard-hero h1 { font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -.045em; }
.subscription-chip { border-color: rgba(120,240,176,.35); background: rgba(56,217,137,.06); }
.launch-checklist { border-radius: 22px; }
.launch-checklist li { border-color: var(--border); border-radius: 14px; background: rgba(255,255,255,.018); }
.owner-list-item { display: flex; justify-content: space-between; align-items: center; gap: 14px; border-radius: 14px; background: rgba(255,255,255,.018); }
.owner-list-item code { display: block; margin-top: 5px; }
.conversation-list { display: grid; gap: 9px; }
.conversation-list details { border: 1px solid var(--border); border-radius: 12px; background: rgba(255,255,255,.018); }
.conversation-list summary { display: flex; justify-content: space-between; gap: 12px; padding: 13px; cursor: pointer; }
.conversation-list summary span { color: var(--muted); font-size: .7rem; }
.conversation-thread { max-height: 320px; overflow: auto; padding: 0 14px 12px; }
.conversation-thread p { margin: 7px 0; padding: 9px 11px; border-radius: 9px; background: rgba(255,255,255,.025); font-size: .78rem; }
.onboarding-link { display: inline-block; margin-top: 14px; text-decoration: none; }
.onboarding-shell { width: min(100% - 36px, 980px); margin: 70px auto 100px; }
.onboarding-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 28px; }
.onboarding-heading h1 { margin: 8px 0; font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 4rem); }
.readiness-card { min-width: 190px; padding: 18px; border: 1px solid rgba(120,240,176,.28); border-radius: 16px; background: rgba(56,217,137,.06); }
.readiness-card strong, .readiness-card span { display: block; }
.readiness-card span { margin-top: 4px; color: var(--muted); font-size: .75rem; }
.onboarding-form { display: grid; gap: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid label, .hours-row label { display: grid; gap: 7px; color: var(--muted); font-size: .78rem; }
.form-grid input, .form-grid select, .hours-row input { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 11px; color: var(--text); background: rgba(5,8,12,.66); }
.full-field { grid-column: 1 / -1; }
.hours-grid { display: grid; gap: 9px; }
.hours-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 12px; align-items: end; padding: 10px 12px; border: 1px solid var(--border); border-radius: 12px; }
.hours-row > label:first-child { display: flex; align-items: center; gap: 9px; color: var(--text); }
.hours-row > label:first-child input { width: auto; }
.onboarding-review ul { padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; list-style: none; }
.onboarding-review li { padding: 9px 11px; border-radius: 10px; background: rgba(255,255,255,.025); }
.onboarding-review li.ready { color: var(--signal); }
.onboarding-review li.pending { color: var(--muted); }

@media (max-width: 1040px) {
  .topbar-nav { display: none; }
  .hero { grid-template-columns: 1fr 420px; gap: 30px; }
  .stat-one { left: 0; }
  .stat-two { right: 0; }
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 58px; text-align: center; }
  .hero-copy { display: grid; justify-items: center; }
  .hero-showcase { width: min(100%, 520px); margin: 0 auto; }
  .workspace { grid-template-columns: 1fr; }
  .section-heading { grid-column: auto; }
}
@media (max-width: 640px) {
  .topbar { padding: 18px 20px; }
  .topbar-actions .status-pill { display: none; }
  .hero { padding: 52px 20px 90px; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  .hero-showcase { min-height: 430px; }
  .showcase-stat { display: none; }
  .value-strip { margin: -30px 20px 78px; }
  .workspace { padding-left: 20px; padding-right: 20px; }
  .panel, .account-card { padding: 24px; }
  .account-shell { padding: 0 18px; }
  .onboarding-heading { align-items: stretch; flex-direction: column; }
  .form-grid, .onboarding-review ul { grid-template-columns: 1fr; }
  .hours-row { grid-template-columns: 1fr 1fr; }
  .hours-row > label:first-child { grid-column: 1 / -1; }
}
