:root{
  --bg:#06080d;
  --bg-soft:#0c1119;
  --panel:#0f1722;
  --panel-2:#121c28;
  --line:rgba(255,255,255,.08);
  --text:#f4f7fb;
  --muted:#a6b3c5;
  --blue:#4c8dff;
  --cyan:#3dc6d3;
  --shadow:0 30px 80px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html,body{
  margin:0;
  min-height:100%;
  background:
    radial-gradient(circle at top left, rgba(76,141,255,.18), transparent 25%),
    radial-gradient(circle at top right, rgba(61,198,211,.14), transparent 28%),
    linear-gradient(180deg, #06080d 0%, #0a0f17 55%, #06080d 100%);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","Helvetica Neue",Arial,sans-serif;
}
body{
  padding:28px;
}
.page-shell{
  max-width:1240px;
  margin:0 auto;
}
.top-controls{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-bottom:28px;
}
.brand{
  display:flex;
  align-items:center;
  gap:18px;
}
.brand img{
  width:126px;
  height:auto;
  display:block;
}
.eyebrow,.section-tag,.hero-tag{
  margin:0;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#8ea0b9;
  font-weight:700;
}
.brand-copy h1{
  margin:6px 0 4px;
  font-size:22px;
  letter-spacing:-.04em;
  line-height:1.16;
}
.subtitle{
  margin:0;
  color:var(--muted);
  font-size:11px;
  line-height:1.55;
}
.top-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.top-links.inline-links{
  gap:10px;
}
.top-links a,.btn,.lang-select{
  text-decoration:none;
  border-radius:999px;
  padding:12px 16px;
  font-size:14px;
  font-weight:700;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1.2;
  border:none;
  cursor:pointer;
  transition:opacity .18s ease, transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn:disabled{
  cursor:wait;
  opacity:.78;
}
.btn:not(:disabled):hover,
.top-links a:hover,
.portal-nav a:hover,
.client-copy-btn:hover,
.lang-tab:hover,
.signup-step:hover{
  transform:translateY(-1px);
  filter:brightness(1.03);
}
.btn:not(:disabled):active,
.top-links a:active,
.portal-nav a:active,
.client-copy-btn:active,
.lang-tab:active,
.signup-step:active,
.btn.is-pressed,
.top-links a.is-pressed,
.portal-nav a.is-pressed,
.client-copy-btn.is-pressed,
.lang-tab.is-pressed,
.signup-step.is-pressed{
  transform:translateY(1px) scale(.985);
  filter:brightness(.96);
  box-shadow:inset 0 2px 10px rgba(0,0,0,.22);
}
.btn:focus-visible,
.top-links a:focus-visible,
.portal-nav a:focus-visible,
.client-copy-btn:focus-visible,
.lang-tab:focus-visible,
.signup-step:focus-visible{
  outline:2px solid rgba(76,141,255,.7);
  outline-offset:2px;
}
.btn.is-busy::after{
  content:"";
  width:14px;
  height:14px;
  margin-left:10px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.3);
  border-top-color:#fff;
  animation:btn-spin .8s linear infinite;
}
.top-links a{
  color:#dce7f7;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.lang-select{
  color:#eef4ff;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  outline:none;
}
.hero{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}
.hero-copy,.hero-card,.panel,.flow-panel,.pricing-panel{
  background:linear-gradient(180deg, rgba(18,28,40,.92), rgba(10,15,23,.95));
  border:1px solid var(--line);
  border-radius:30px;
  box-shadow:var(--shadow);
}
.hero-copy{
  padding:34px;
}
.hero-copy h2{
  margin:10px 0 16px;
  font-size:19px;
  line-height:1.42;
  letter-spacing:-.03em;
  max-width:620px;
}
.hero-text{
  max-width:700px;
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.9;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}
.btn.primary{
  background:linear-gradient(135deg, var(--blue), #3467ff);
  color:#fff;
}
.btn.secondary{
  color:#eef4ff;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.aics-toast-root{
  position:fixed;
  inset:0;
  display:grid;
  place-items:center;
  pointer-events:none;
  z-index:9999;
  padding:24px;
}
.aics-toast{
  min-width:min(320px, calc(100vw - 48px));
  max-width:min(560px, calc(100vw - 48px));
  padding:18px 26px;
  border-radius:22px;
  border:1px solid rgba(76,141,255,.45);
  background:rgba(12,17,25,.94);
  color:#f7fbff;
  font-size:18px;
  font-weight:800;
  letter-spacing:.01em;
  text-align:center;
  box-shadow:0 28px 80px rgba(0,0,0,.42);
  opacity:0;
  transform:translateY(12px) scale(.96);
  transition:opacity .18s ease, transform .18s ease;
  backdrop-filter:blur(14px);
}
.aics-toast.is-visible{
  opacity:1;
  transform:translateY(0) scale(1);
}
.aics-toast.is-error{
  border-color:rgba(255,120,120,.45);
}
@keyframes btn-spin{
  from{transform:rotate(0)}
  to{transform:rotate(360deg)}
}
.hero-card{
  padding:22px;
}
.hero-card-top{
  display:flex;
  align-items:center;
  gap:10px;
  color:#d9e4f5;
  font-size:13px;
  margin-bottom:16px;
}
.status-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#37d67a;
  box-shadow:0 0 18px rgba(55,214,122,.6);
}
.hero-stack,.pricing-grid{
  display:grid;
  gap:14px;
}
.info-card,.price-card,.story-card,.rail-item,.contact-panel{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:22px;
}
.info-card{
  padding:18px;
}
.info-label{
  margin:0 0 8px;
  color:#8ea0b9;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.info-value{
  margin:0;
  font-size:17px;
  line-height:1.8;
}
.story-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  margin-top:22px;
}
.story-card,.experience-panel,.pricing-panel,.contact-panel{
  padding:26px;
}
.story-card h3,.flow-head h3{
  margin:8px 0 0;
  font-size:19px;
  letter-spacing:-.04em;
  line-height:1.42;
}
.story-card p,.contact-panel p{
  margin:16px 0 0;
  color:#c9d6e9;
  line-height:1.9;
  font-size:13px;
}
.contact-panel .contact-actions{
  width:100%;
  margin-top:30px;
  text-align:center;
}
.contact-panel .contact-apply-btn{
  display:inline-flex;
  min-width:220px;
  padding:14px 28px;
  margin:0 auto;
  box-shadow:0 16px 36px rgba(76,141,255,.22);
}
.legal-consent-box{
  margin-top:18px;
  padding:18px 20px;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,255,255,.03);
  display:grid;
  gap:10px;
}
.legal-consent-label{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:#eef4ff;
  line-height:1.7;
  font-weight:700;
}
.legal-consent-label input{
  margin-top:3px;
  transform:scale(1.15);
}
.legal-consent-links a{
  color:#9fc4ff;
  text-decoration:none;
}
.legal-consent-links a:hover{
  text-decoration:underline;
}
.legal-consent-note{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-size:13px;
}
.legal-doc-shell{
  display:grid;
  gap:22px;
}
.legal-doc-hero,
.legal-doc-section{
  background:linear-gradient(180deg, rgba(18,28,40,.92), rgba(10,15,23,.95));
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
}
.legal-doc-hero{
  padding:28px 30px;
}
.legal-doc-hero h2{
  margin:8px 0 12px;
  font-size:19px;
  letter-spacing:-.04em;
  line-height:1.38;
}
.legal-doc-hero p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-size:13px;
}
.legal-doc-section{
  padding:26px 28px;
}
.legal-doc-section h3{
  margin:0 0 10px;
  font-size:16px;
  line-height:1.5;
}
.legal-doc-section p{
  margin:0;
  color:#dce7f7;
  line-height:1.9;
  font-size:13px;
}
.legal-doc-item + .legal-doc-item{
  margin-top:22px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.06);
}
.experience-panel,.pricing-panel,.contact-panel{
  margin-top:22px;
  background:linear-gradient(180deg, rgba(18,28,40,.92), rgba(10,15,23,.95));
  border:1px solid var(--line);
  border-radius:30px;
  box-shadow:var(--shadow);
}
.experience-panel{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:start;
}
.experience-copy p{
  margin:16px 0 0;
  color:#c9d6e9;
  line-height:1.9;
  font-size:13px;
}
.experience-rail{
  display:grid;
  gap:12px;
}
.rail-item{
  padding:18px;
  display:grid;
  grid-template-columns:64px 1fr;
  gap:14px;
  align-items:center;
}
.rail-item span{
  display:inline-flex;
  width:52px;
  height:52px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(76,141,255,.22), rgba(61,198,211,.2));
  color:#fff;
  font-weight:800;
  font-size:15px;
}
.rail-item p{
  margin:0;
  color:#dbe5f5;
  line-height:1.85;
  font-size:15px;
}
.pricing-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
  margin-top:18px;
}
.price-card{
  padding:24px;
}
.price-card.featured{
  border-color:rgba(76,141,255,.45);
  box-shadow:0 18px 42px rgba(76,141,255,.12);
}
.price-name{
  margin:0;
  color:#9fb0c7;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.16em;
}
.price-amount{
  margin:0;
  font-size:30px;
  font-weight:800;
  letter-spacing:-.06em;
}
.price-copy{
  margin:0;
  color:#dce6f6;
  font-size:13px;
  line-height:1.7;
}
.contact-panel h3{
  margin:8px 0 0;
  font-size:19px;
  letter-spacing:-.04em;
  line-height:1.42;
}
.floating-chat{
  background:#ffffff;
  border:2px solid #d9e3ee;
  border-radius:26px;
  box-shadow:0 26px 70px rgba(15,23,42,.18);
  padding:18px 18px 16px;
  display:grid;
  grid-template-rows:auto 1fr auto;
  position:fixed;
  right:28px;
  bottom:28px;
  width:min(420px, calc(100vw - 28px));
  height:min(660px, calc(100vh - 40px));
  z-index:30;
}
.floating-chat-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:6px 2px 14px;
  border-bottom:1px solid #e7edf4;
}
.floating-chat-brand{
  display:flex;
  align-items:center;
  gap:8px;
}
.floating-chat-brand > div{
  min-width:0;
}
.floating-chat-brand img{
  width:72px;
  height:auto;
  display:block;
}
.floating-chat-title{
  margin:0;
  color:#172133;
  font-size:13px;
  font-weight:800;
  letter-spacing:-.03em;
  line-height:1.18;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.floating-chat-subtitle{
  margin:4px 0 0;
  color:#7f8ea3;
  font-size:10px;
  font-weight:600;
}
.floating-chat-tools{
  display:flex;
  align-items:center;
  gap:10px;
}
.chat-tool,
.chat-close{
  width:36px;
  height:36px;
  border-radius:10px;
  border:none;
  background:#ffffff;
  color:#75859a;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}
.contact-chat-feed{
  overflow:auto;
  padding:16px 4px 14px 0;
  display:grid;
  gap:12px;
  align-content:start;
}
.demo-bubble{
  max-width:88%;
  padding:14px 16px;
  border-radius:18px;
  line-height:1.7;
  font-size:15px;
}
.demo-bubble.assistant{
  justify-self:start;
  background:#ffffff;
  border:1px solid #d8e2ee;
  color:#182334;
}
.demo-bubble.user{
  justify-self:end;
  background:#edf4ff;
  border:1px solid #d7e3f3;
  color:#162131;
}
.demo-bubble.typing{
  display:flex;
  align-items:center;
  gap:12px;
  max-width:72%;
}
.typing-spinner{
  width:18px;
  height:18px;
  border-radius:999px;
  border:2px solid #d7e3f3;
  border-top-color:#14bcc6;
  animation:spin 0.8s linear infinite;
  flex:0 0 auto;
}
.typing-copy{
  display:grid;
  gap:2px;
}
.typing-title{
  color:#172133;
  font-size:14px;
  font-weight:700;
}
.typing-subtitle{
  color:#7f8ea3;
  font-size:12px;
}
.contact-composer{
  padding-top:14px;
  border-top:1px solid #e7edf4;
}
.contact-input{
  width:100%;
  min-height:82px;
  border-radius:18px;
  border:2px solid #10bac6;
  background:#ffffff;
  color:#152031;
  padding:16px 18px;
  resize:vertical;
  font:inherit;
  line-height:1.65;
  outline:none;
}
.contact-input::placeholder{
  color:#9aa8ba;
}
.contact-composer-row{
  margin-top:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
.human-offer-row{
  display:flex;
  justify-content:flex-start;
  align-items:center;
  gap:10px;
  margin-top:-2px;
  flex-wrap:wrap;
}
.human-offer-link{
  color:#1f66ff;
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  border-bottom:1px solid rgba(31,102,255,.24);
  padding-bottom:2px;
}
.human-offer-link:hover{
  color:#0e4fd0;
  border-bottom-color:rgba(14,79,208,.42);
}
.chat-launcher{
  position:fixed;
  right:28px;
  bottom:28px;
  z-index:25;
  display:inline-flex;
  align-items:center;
  gap:12px;
  border:2px solid #14bcc6;
  border-radius:999px;
  padding:14px 24px;
  background:#ffffff;
  color:#172133;
  font-size:16px;
  font-weight:800;
  box-shadow:0 16px 38px rgba(11,31,52,.12);
  cursor:pointer;
}
.chat-launcher:hover{
  transform:translateY(-1px);
}
.chat-launcher-icon{
  font-size:20px;
  line-height:1;
}
.btn.primary.is-sending{
  opacity:.92;
  filter:saturate(.92);
}
.hidden{
  display:none !important;
}
@keyframes spin{
  from{transform:rotate(0deg)}
  to{transform:rotate(360deg)}
}
.app-shell{
  max-width:1240px;
  margin:0 auto;
}
.app-hero,
.app-panel,
.app-table,
.app-stat,
.app-form-card{
  background:linear-gradient(180deg, rgba(18,28,40,.92), rgba(10,15,23,.95));
  border:1px solid var(--line);
  border-radius:30px;
  box-shadow:var(--shadow);
}
.app-hero{
  padding:30px;
  margin-bottom:22px;
}
.app-hero h2{
  margin:8px 0 14px;
  font-size:19px;
  letter-spacing:-.04em;
  line-height:1.42;
}
.app-hero p{
  margin:0;
  color:#c9d6e9;
  line-height:1.9;
  max-width:760px;
  font-size:13px;
}
.app-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
}
.app-stack{
  display:grid;
  gap:22px;
}
.app-panel,
.app-form-card,
.app-table{
  padding:24px;
}
.app-panel h3,
.app-form-card h3,
.app-table h3{
  margin:0;
  font-size:17px;
  letter-spacing:-.03em;
  line-height:1.42;
}
.app-lead{
  margin:10px 0 0;
  color:#9fb0c7;
  line-height:1.8;
  font-size:13px;
}
.app-card-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}
.app-link-card,
.app-stat,
.customer-card{
  display:block;
  text-decoration:none;
  color:inherit;
  padding:20px;
  border-radius:24px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
}
.app-link-card h4,
.customer-card h4{
  margin:0;
  font-size:15px;
  letter-spacing:-.03em;
}
.app-link-card p,
.customer-card p{
  margin:10px 0 0;
  color:#b8c7db;
  line-height:1.8;
  font-size:14px;
}
.app-stat-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.app-stat strong{
  display:block;
  font-size:34px;
  letter-spacing:-.05em;
}
.app-stat span{
  display:block;
  margin-top:8px;
  color:#9fb0c7;
  font-size:13px;
}
.app-field-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.app-field{
  display:grid;
  gap:8px;
}
.app-field label{
  color:#dce6f6;
  font-size:14px;
  font-weight:700;
}
.app-input,
.app-textarea,
.app-select{
  width:100%;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:#fff;
  border-radius:18px;
  padding:14px 16px;
  font:inherit;
  outline:none;
}
.app-textarea{
  min-height:140px;
  resize:vertical;
  line-height:1.8;
}
.app-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
.signup-pane[data-step="4"] .app-actions{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}
.signup-pane[data-step="4"] .app-actions .btn,
.signup-pane[data-step="4"] .app-actions a.btn{
  width:100%;
  min-height:48px;
}
.signup-pane[data-step="4"] .app-actions [data-step-back="3"]{
  grid-column:1 / 2;
}
.signup-pane[data-step="4"] .app-actions #startCheckoutBtn{
  grid-column:2 / 3;
}
.signup-pane[data-step="4"] .app-actions #syncBillingBtn,
.signup-pane[data-step="4"] .app-actions #dashboardLink{
  grid-column:span 1;
}
.app-note{
  margin-top:14px;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(76,141,255,.1);
  border:1px solid rgba(76,141,255,.22);
  color:#dbe8ff;
  line-height:1.8;
}
.support-toggle{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:18px;
  color:#dce6f6;
  font-size:14px;
  line-height:1.6;
}
.support-toggle input{
  width:18px;
  height:18px;
}
.lang-check-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.lang-check-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,.03);
  color:#dce6f6;
}
.lang-check-item input{
  width:16px;
  height:16px;
}
.lang-tab-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:14px 0 18px;
}
.lang-tab{
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:#dce6f6;
  padding:10px 14px;
  font:inherit;
  font-weight:700;
  cursor:pointer;
}
.lang-tab.is-active{
  border-color:rgba(76,141,255,.55);
  background:rgba(76,141,255,.18);
}
.faq-editor-list{
  display:grid;
  gap:14px;
  margin-top:14px;
}
.faq-editor-item{
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:16px;
  background:rgba(255,255,255,.02);
}
.faq-remove-btn{
  min-width:120px;
}
.app-table table{
  width:100%;
  border-collapse:collapse;
  margin-top:18px;
}
.app-table th,
.app-table td{
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  text-align:left;
  vertical-align:top;
}
.app-table th{
  color:#91a2b8;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.status-chip{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
}
.status-chip.green{background:rgba(55,214,122,.16);color:#9af1ba}
.status-chip.blue{background:rgba(76,141,255,.16);color:#bdd3ff}
.status-chip.amber{background:rgba(239,176,53,.16);color:#ffd990}
.mini-link{
  color:#8bc7ff;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
}
.signup-layout{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:22px;
}
.signup-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin-bottom:18px;
}
.signup-step{
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(255,255,255,.03);
  color:#dce7f7;
  padding:14px;
  text-align:left;
  cursor:pointer;
}
.signup-step span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  font-size:12px;
  font-weight:800;
  margin-bottom:10px;
}
.signup-step strong{
  display:block;
  font-size:13px;
}
.signup-step.is-active{
  border-color:rgba(76,141,255,.45);
  background:rgba(76,141,255,.12);
}
.plan-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.plan-card{
  display:block;
  border:1px solid var(--line);
  border-radius:24px;
  background:rgba(255,255,255,.03);
  padding:18px;
  cursor:pointer;
}
.plan-card.is-selected{
  border-color:rgba(61,198,211,.55);
  box-shadow:0 0 0 1px rgba(61,198,211,.2) inset;
}
.plan-card input{
  display:none;
}
.plan-label-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
}
.plan-label-row strong{
  font-size:18px;
}
.plan-label-row span{
  color:#8bc7ff;
  font-size:14px;
  font-weight:700;
}
.plan-card p{
  margin:12px 0 0;
  color:#c9d6e9;
  line-height:1.7;
}
.ready-summary,.signup-status-list{
  display:grid;
  gap:12px;
}
.ready-row,.signup-status-list div{
  display:flex;
  justify-content:space-between;
  gap:14px;
  border-bottom:1px solid var(--line);
  padding-bottom:12px;
}
.ready-row span,.signup-status-list span{
  color:#8ea0b9;
  font-size:13px;
}
.ready-row strong,.signup-status-list strong{
  text-align:right;
  max-width:58%;
}
.ready-summary--launch .ready-row{
  align-items:flex-start;
  margin-top:30px;
}
.ready-summary--launch .ready-row strong{
  max-width:72%;
  overflow-wrap:anywhere;
  word-break:break-word;
  white-space:normal;
  text-align:left;
}
.launch-url-display{
  margin-top:18px;
}
.launch-inline-row{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:8px;
  padding-top:18px;
  border-top:1px solid var(--line);
  flex-wrap:wrap;
}
.launch-inline-row span{
  color:#8ea0b9;
  font-size:13px;
  flex:0 0 auto;
}
.launch-inline-link{
  color:#f5f7fb;
  font-weight:800;
  font-size:18px;
  line-height:1.4;
  text-decoration:none;
  overflow-wrap:anywhere;
  word-break:break-word;
}
.launch-code-group{
  margin-top:18px;
}
.launch-code-group h4{
  margin:0 0 8px;
  font-size:14px;
}
.launch-code-plain{
  margin:0;
  color:#dce7f7;
  line-height:1.7;
  white-space:pre-wrap !important;
  overflow-wrap:anywhere;
  word-break:break-word;
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  font-size:13px;
  background:transparent;
  border:none;
  padding:0;
  display:block;
  max-width:100%;
}
.copy-icon-btn{
  margin-top:10px;
  width:52px;
  height:52px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}
.copy-icon-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(92,139,255,.65);
  background:rgba(92,139,255,.08);
}
.copy-icon{
  position:relative;
  width:24px;
  height:24px;
  display:inline-block;
}
.copy-icon span{
  position:absolute;
  width:16px;
  height:16px;
  border:2px solid #dce7f7;
  border-radius:4px;
  background:transparent;
}
.copy-icon span:first-child{
  left:2px;
  top:6px;
  opacity:.82;
}
.copy-icon span:last-child{
  left:7px;
  top:1px;
}
.portal-nav{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin-bottom:22px;
}
.portal-nav a{
  display:block;
  padding:16px 18px;
  border-radius:22px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  color:#e7effc;
  text-decoration:none;
  font-weight:800;
}
.portal-nav a.is-active{
  border-color:rgba(76,141,255,.45);
  background:rgba(76,141,255,.12);
}
.metric-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.metric-card{
  padding:18px;
  border-radius:22px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.metric-card strong{
  display:block;
  font-size:20px;
  letter-spacing:-.05em;
}
.metric-card span{
  display:block;
  margin-top:8px;
  color:#9fb0c7;
  font-size:12px;
}
.metric-card small{
  display:block;
  margin-top:10px;
  color:#7f93ad;
  line-height:1.6;
  font-size:12px;
}
.split-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.section-toolbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
.table-shell{
  margin-top:18px;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  background:rgba(255,255,255,.02);
}
.table-shell table{
  width:100%;
  border-collapse:collapse;
}
.table-shell th,
.table-shell td{
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
  text-align:left;
  vertical-align:top;
}
.table-shell th{
  color:#91a2b8;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.table-shell tr:last-child td{
  border-bottom:none;
}
.table-shell tr[data-signup-id],
.table-shell tr[data-admin-id]{
  cursor:pointer;
}
.table-shell tr.is-selected td{
  background:rgba(76,141,255,.12);
}
.table-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.btn.ghost{
  background:transparent;
  border:1px solid var(--line);
  color:#dce7f7;
}
.status-chip.red{background:rgba(255,93,93,.14);color:#ffc0c0}
.status-chip.slate{background:rgba(160,176,196,.16);color:#dfe8f8}
.mono{
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
  font-size:13px;
}
.empty-state{
  padding:18px;
  border-radius:20px;
  border:1px dashed rgba(255,255,255,.12);
  color:#93a4bc;
  line-height:1.8;
  margin-top:18px;
}
.timeline{
  display:grid;
  gap:12px;
  margin-top:18px;
}
.timeline-item{
  padding:16px 18px;
  border-radius:20px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.timeline-item strong{
  display:block;
  font-size:15px;
}
.timeline-item span{
  display:block;
  margin-top:4px;
  color:#7f93ad;
  font-size:12px;
}
.timeline-item p{
  margin:10px 0 0;
  color:#dce7f7;
  line-height:1.8;
}
.inline-note{
  margin-top:10px;
  color:#8ea0b9;
  line-height:1.7;
  font-size:13px;
}
.public-chat-shell{
  max-width:1280px;
  margin:0 auto;
}
.public-chat-topbar{
  margin-bottom:22px;
}
.public-chat-layout{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);
  gap:22px;
}
.public-chat-panel,
.public-chat-side{
  display:grid;
  gap:22px;
}
.public-chat-panel{
  min-height:calc(100vh - 180px);
  background:linear-gradient(180deg, rgba(18,28,40,.92), rgba(10,15,23,.95));
  border:1px solid var(--line);
  border-radius:30px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.public-chat-feed{
  padding:24px;
  display:grid;
  align-content:start;
  gap:14px;
  min-height:420px;
  max-height:calc(100vh - 360px);
  overflow:auto;
}
.public-chat-composer{
  border-top:1px solid var(--line);
  padding:20px 24px 24px;
  background:rgba(255,255,255,.02);
}
.public-chat-actions{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}
.public-chat-input{
  min-height:120px;
}
.public-chat-bubble{
  max-width:min(82%, 760px);
  padding:16px 18px;
  border-radius:22px;
  line-height:1.8;
  white-space:normal;
  word-break:break-word;
}
.public-chat-bubble.assistant{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  color:#e6eefb;
}
.public-chat-bubble.user{
  margin-left:auto;
  background:linear-gradient(135deg, rgba(76,141,255,.95), rgba(52,103,255,.88));
  color:#fff;
}
.public-chat-bubble.typing{
  color:#9fb0c7;
  font-style:italic;
}
.public-chat-status{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:120px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  font-size:13px;
  font-weight:800;
}
.support-thread-list{
  display:grid;
  gap:12px;
  margin-top:18px;
}
.support-thread-item{
  width:100%;
  text-align:left;
  border-radius:20px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:#e6eefb;
  padding:16px 18px;
  cursor:pointer;
}
.support-thread-item.is-selected{
  border-color:rgba(76,141,255,.58);
  background:rgba(76,141,255,.12);
}
.support-thread-item strong{
  display:block;
  font-size:15px;
}
.support-thread-item span{
  display:block;
  margin-top:6px;
  color:#9bb0c7;
  font-size:12px;
}
.support-thread-item p{
  margin:10px 0 0;
  color:#dce7f7;
  line-height:1.7;
}
.client-support-feed{
  margin-top:18px;
  min-height:340px;
  max-height:520px;
  overflow:auto;
  display:grid;
  gap:14px;
  padding:6px 2px;
}
.client-support-composer{
  margin-top:18px;
  border-top:1px solid var(--line);
  padding-top:18px;
}
.support-live{
  border-style:solid;
}
.support-system{
  opacity:.88;
}
.public-chat-status.state-active{
  color:#aaf2bf;
  border-color:rgba(55,214,122,.34);
  background:rgba(55,214,122,.12);
}
.public-chat-status.state-pending{
  color:#ffe2a2;
  border-color:rgba(239,176,53,.34);
  background:rgba(239,176,53,.12);
}
.public-chat-status.state-disabled{
  color:#ffd0d0;
  border-color:rgba(255,93,93,.34);
  background:rgba(255,93,93,.12);
}
@media (max-width:1100px){
  .hero,.story-grid,.pricing-grid,.experience-panel,.app-grid,.signup-layout,.portal-nav,.metric-grid,.split-grid{
    grid-template-columns:1fr;
  }
  .public-chat-layout{
    grid-template-columns:1fr;
  }
  .public-chat-panel{
    min-height:auto;
  }
  .public-chat-feed{
    max-height:none;
  }
}
@media (max-width:720px){
  body{
    padding:16px;
  }
  .topbar{
    flex-direction:column;
    align-items:flex-start;
  }
  .top-controls{
    width:100%;
    justify-content:space-between;
  }
  .brand{
    align-items:flex-start;
  }
  .brand img{
    width:110px;
  }
  .brand-copy h1{
    font-size:20px;
  }
  .hero-copy h2{
    font-size:18px;
  }
  .pricing-grid{
    grid-template-columns:1fr;
  }
  .app-card-grid,
  .app-stat-grid,
  .app-field-grid,
  .lang-check-grid,
  .signup-steps,
  .plan-grid,
  .portal-nav,
  .metric-grid,
  .split-grid{
    grid-template-columns:1fr;
  }
  .signup-pane[data-step="4"] .app-actions{
    grid-template-columns:1fr;
  }
  .signup-pane[data-step="4"] .app-actions [data-step-back="3"],
  .signup-pane[data-step="4"] .app-actions #startCheckoutBtn,
  .signup-pane[data-step="4"] .app-actions #syncBillingBtn,
  .signup-pane[data-step="4"] .app-actions #dashboardLink{
    grid-column:auto;
  }
  .contact-composer-row{
    flex-direction:column;
    align-items:flex-start;
  }
  .contact-support-row{
    width:100%;
    justify-content:flex-start;
  }
  .floating-chat{
    right:12px;
    bottom:12px;
    width:calc(100vw - 24px);
    height:calc(100vh - 24px);
    border-radius:24px;
    padding:16px;
  }
  .chat-launcher{
    right:12px;
    bottom:12px;
    padding:12px 20px;
    font-size:15px;
  }
  .rail-item{
    grid-template-columns:48px 1fr;
  }
  .rail-item span{
    width:48px;
    height:48px;
  }
}
