:root {
  --bg: #f5f5f7;
  --paper: #ffffff;
  --ink: #1d1d1f;
  --ink-2: #3a3a3c;
  --muted: #6e6e73;
  --subtle: #86868b;
  --line: #d2d2d7;
  --line-soft: #e8e8ed;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --teal: #0f766e;
  --green: #17833d;
  --amber: #a05a00;
  --red: #d92d20;
  --shadow: 0 28px 80px rgba(0, 0, 0, .10);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
p { margin: 0; }
h1, h2, h3 { margin: 0; letter-spacing: 0; }
site-header, site-footer { display: block; }
.site { min-height: 100vh; }
.shell { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 52px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  background: rgba(250, 250, 252, .82);
  backdrop-filter: saturate(180%) blur(20px);
}
.nav { height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto; font-size: 15px; font-weight: 750; }
.brand-mark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.nav-group { display: flex; align-items: stretch; justify-content: center; height: 52px; gap: 30px; }
.nav-group a { position: relative; display: inline-flex; align-items: center; color: #424245; font-size: 12px; }
.nav-group a:hover { color: #000; }
.nav-group a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--ink);
}
.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 14px; flex: 0 0 auto; }
.nav-login { color: #424245; font-size: 12px; }
.nav-cta { min-height: 32px !important; padding-inline: 14px !important; font-size: 12px; }
.menu-toggle { display: none; width: 36px; height: 36px; border: 0; background: transparent; color: var(--ink); font-size: 22px; cursor: pointer; }
.mobile-nav {
  position: absolute;
  inset: 52px 0 auto;
  padding: 16px 24px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 250, 252, .98);
}
.mobile-nav a { display: block; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-weight: 650; }
.mobile-nav a:last-child { color: var(--blue); border: 0; }

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 650;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { background: #f0f0f2; }
.btn:active { transform: scale(.98); }
.btn.primary { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn.primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); }
.btn.teal { background: var(--teal); border-color: var(--teal); color: #fff; }
.btn.large { min-height: 50px; padding-inline: 24px; font-size: 17px; }
.btn.wide { width: 100%; }
.btn:disabled { opacity: .42; cursor: not-allowed; transform: none; }
.text-link { display: inline-flex; align-items: center; gap: 5px; color: var(--blue); font-size: 17px; font-weight: 550; }
.text-link span { font-size: 25px; line-height: 1; }
.text-link.small { font-size: 14px; }
.text-link.small span { font-size: 20px; }
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.inline-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 20px; }
.kicker { color: var(--muted); font-size: 17px; font-weight: 650; }

.home-hero { min-height: calc(100vh - 52px); padding: 82px 0 64px; overflow: hidden; background: #fbfbfd; }
.hero-copy { text-align: center; }
.hero-copy h1 {
  margin: 14px auto 20px;
  max-width: 900px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 1.02;
  font-weight: 760;
}
.hero-lead { max-width: 790px; margin: 0 auto; color: var(--muted); font-size: clamp(18px, 2.2vw, 24px); line-height: 1.5; }
.hero-actions { justify-content: center; margin-top: 30px; }
.microcopy { margin-top: 16px; color: var(--subtle); font-size: 13px; }
.product-stage { margin-top: 62px; }
.product-window {
  width: min(980px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.window-bar { height: 52px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid var(--line-soft); color: var(--muted); font-size: 13px; }
.window-title { display: flex; align-items: center; gap: 9px; color: var(--ink); font-weight: 650; }
.status-dot { width: 8px; height: 8px; display: inline-block; border-radius: 50%; background: var(--subtle); }
.status-dot.success { background: var(--green); box-shadow: 0 0 0 4px rgba(23, 131, 61, .10); }
.demo-layout { display: grid; grid-template-columns: .88fr 1.12fr; min-height: 390px; }
.demo-source { padding: 32px; border-right: 1px solid var(--line-soft); background: #fafafa; }
.field-label { display: block; margin-bottom: 10px; color: var(--muted); font-size: 12px; font-weight: 650; }
.source-switch { display: grid; grid-template-columns: 1fr 1fr; height: 38px; padding: 3px; border-radius: 7px; background: #e8e8ed; font-size: 13px; }
.source-switch b, .source-switch span { display: grid; place-items: center; border-radius: 5px; }
.source-switch b { background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, .10); }
.source-switch span { color: var(--muted); }
.demo-input { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 18px 0; padding: 0 14px; border: 1px solid var(--line); border-radius: 7px; background: #fff; font-size: 13px; }
.demo-input span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.demo-input i { color: var(--green); font-style: normal; font-size: 12px; font-weight: 650; }
.stack-line { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line-soft); color: var(--muted); font-size: 13px; }
.stack-line b { color: var(--ink); }
.demo-button { height: 44px; display: grid; place-items: center; margin-top: 22px; border-radius: 999px; background: var(--blue); color: #fff; font-weight: 650; }
.demo-progress { padding: 32px 38px; }
.progress-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.progress-heading span { font-size: 18px; font-weight: 650; }
.progress-heading b { color: var(--blue); font-size: 18px; }
.progress-track, .progress { height: 8px; overflow: hidden; border-radius: 999px; background: #e8e8ed; }
.progress-track i { display: block; width: 86%; height: 100%; background: var(--blue); }
.build-timeline { margin: 26px 0; padding: 0; list-style: none; }
.build-timeline li { position: relative; min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-left: 28px; border-left: 1px solid var(--line); color: var(--muted); }
.build-timeline li::before { content: ""; position: absolute; left: -5px; top: 20px; width: 9px; height: 9px; border-radius: 50%; background: #c7c7cc; }
.build-timeline li.done::before { background: var(--green); }
.build-timeline li.active::before { background: var(--blue); box-shadow: 0 0 0 5px rgba(0, 113, 227, .12); }
.build-timeline li span { color: var(--ink); font-weight: 600; }
.build-timeline li b { font-size: 12px; }
.delivery-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 18px; border-top: 1px solid var(--line-soft); color: var(--muted); font-size: 13px; }
.delivery-row b { color: var(--ink); }

.story-band { padding: 108px 0; }
.story-band.white { background: #fff; }
.story-band.soft { background: var(--bg); }
.story-intro { margin-bottom: 48px; }
.story-intro.centered { text-align: center; }
.story-intro h2, .split-heading h2 {
  margin-top: 12px;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.06;
  font-weight: 740;
}
.story-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.story-card { min-height: 430px; padding: 42px; border-radius: 8px; overflow: hidden; background: var(--bg); }
.story-card.large-card { grid-row: span 2; min-height: 876px; }
.story-card.dark-card { background: #1d1d1f; color: #fff; }
.story-card.blue-card { background: #eaf4ff; }
.story-number { display: block; margin-bottom: 72px; color: var(--subtle); font-size: 13px; font-weight: 700; }
.story-card h3 { margin-bottom: 14px; font-size: clamp(30px, 3vw, 44px); line-height: 1.08; }
.story-card p { max-width: 530px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.dark-card p, .dark-card .story-number { color: #a1a1a6; }
.repo-visual { display: grid; gap: 12px; margin-top: 80px; }
.repo-visual span { height: 92px; display: flex; align-items: center; padding: 0 26px; border: 1px solid var(--line); border-radius: 8px; background: #fff; font-size: 25px; font-weight: 700; box-shadow: 0 12px 30px rgba(0, 0, 0, .05); }
.repo-visual span:nth-child(2) { margin-left: 56px; }
.repo-visual span:nth-child(3) { margin-left: 112px; }
.scan-list { display: grid; gap: 10px; margin-top: 58px; }
.scan-list span { display: flex; align-items: center; justify-content: space-between; min-height: 48px; padding: 0 15px; border-bottom: 1px solid #3a3a3c; color: #f5f5f7; }
.scan-list span::after { content: "通过"; color: #51d36b; font-size: 12px; font-weight: 650; }
.delivery-options { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 52px; }
.delivery-options span { min-height: 42px; display: inline-flex; align-items: center; padding: 0 16px; border: 1px solid rgba(0, 113, 227, .18); border-radius: 999px; background: #fff; color: var(--blue); font-weight: 650; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; margin-bottom: 48px; }
.split-heading > p { color: var(--muted); font-size: 18px; line-height: 1.65; }
.status-showcase { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 42px; padding: 46px; border-radius: 8px; background: #fff; }
.status-divider { background: var(--line-soft); }
.status-copy h3 { margin: 24px 0 10px; font-size: 28px; }
.status-copy p { color: var(--muted); line-height: 1.65; }
.status-pill { display: inline-flex; align-items: center; min-height: 30px; padding: 0 11px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.status-pill.running { background: #eaf4ff; color: #0059b2; }
.status-pill.failed { background: #fff0ee; color: #b42318; }
.security-band { background: #101010; color: #fff; }
.split-heading.light .kicker, .split-heading.light > p { color: #a1a1a6; }
.security-rail { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid #343436; border-bottom: 1px solid #343436; }
.security-rail article { min-height: 245px; padding: 28px 22px; border-right: 1px solid #343436; }
.security-rail article:last-child { border-right: 0; }
.security-rail b { color: #86868b; font-size: 13px; }
.security-rail h3 { margin: 42px 0 12px; font-size: 21px; }
.security-rail p { color: #a1a1a6; font-size: 14px; line-height: 1.6; }
.safety-link { margin-top: 26px; color: #2997ff; font-weight: 600; }
.safety-link span { font-size: 21px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 48px; }
.price-card { min-height: 480px; display: flex; flex-direction: column; justify-content: space-between; padding: 34px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.price-card.featured { border: 2px solid var(--blue); box-shadow: 0 24px 60px rgba(0, 113, 227, .12); }
.plan-name { color: var(--muted); font-size: 14px; font-weight: 650; }
.price-card h3 { margin: 20px 0 8px; font-size: 46px; }
.price-card h3 span { color: var(--muted); font-size: 17px; font-weight: 500; }
.price-card p { color: var(--muted); line-height: 1.55; }
.price-card ul { margin: 28px 0 34px; padding: 0; list-style: none; }
.price-card li { padding: 12px 0; border-bottom: 1px solid var(--line-soft); color: #424245; }
.final-cta { padding: 124px 0; background: #fbfbfd; text-align: center; }
.final-inner h2 { margin: 12px 0 34px; font-size: clamp(42px, 6vw, 74px); line-height: 1.05; }

.workspace { padding: 56px 0 90px; background: var(--bg); }
.workspace-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.workspace-head h1 { margin: 8px 0 10px; font-size: clamp(38px, 5vw, 58px); line-height: 1.04; }
.workspace-head > div > p:last-child { color: var(--muted); font-size: 17px; }
.workspace-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 18px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.workspace-step { min-height: 82px; display: flex; align-items: center; gap: 12px; padding: 15px 18px; border-right: 1px solid var(--line-soft); color: var(--muted); }
.workspace-step:last-child { border-right: 0; }
.workspace-step i { width: 29px; height: 29px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: #e8e8ed; color: #6e6e73; font-style: normal; font-size: 13px; font-weight: 700; }
.workspace-step span { display: grid; gap: 3px; }
.workspace-step b { color: #424245; font-size: 14px; }
.workspace-step small { font-size: 12px; }
.workspace-step.active { background: #f0f7ff; color: #0059b2; }
.workspace-step.active i { background: var(--blue); color: #fff; }
.workspace-step.active b { color: #0059b2; }
.workspace-step.done i { background: var(--green); color: #fff; }
.workspace-grid { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 18px; align-items: start; }
.workspace-main { display: grid; gap: 18px; }
.workspace-aside { position: sticky; top: 70px; display: grid; gap: 14px; }
.panel { overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.panel-head { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 0 24px; border-bottom: 1px solid var(--line-soft); }
.panel-head > div { display: flex; align-items: center; gap: 12px; }
.panel-head h2 { font-size: 21px; }
.panel-head h3 { font-size: 17px; }
.section-index { color: var(--subtle); font-size: 12px; font-weight: 700; }
.panel-body { padding: 24px; }
.panel-intro { margin-bottom: 22px; color: var(--muted); line-height: 1.6; }
.tag { min-height: 26px; display: inline-flex; align-items: center; padding: 0 9px; border-radius: 999px; background: #f0f0f2; color: #6e6e73; font-size: 11px; font-weight: 700; white-space: nowrap; }
.tag.ok { background: #eaf8ee; color: #116b31; }
.tag.warn { background: #fff6e8; color: #8a4b00; }
.tag.danger { background: #fff0ee; color: #b42318; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
label { display: block; margin-bottom: 8px; color: #424245; font-size: 13px; font-weight: 650; }
input, textarea, select {
  width: 100%;
  min-height: 46px;
  padding: 10px 13px;
  border: 1px solid #c7c7cc;
  border-radius: 7px;
  outline: none;
  background: #fff;
  color: var(--ink);
}
input:focus, textarea:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0, 113, 227, .12); }
textarea { min-height: 122px; resize: vertical; }
.help { margin-top: 8px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.account-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 22px; border: 1px solid var(--line-soft); border-radius: 7px; }
.account-strip span { padding: 13px; border-right: 1px solid var(--line-soft); color: var(--muted); font-size: 12px; text-align: center; }
.account-strip span:last-child { border-right: 0; }
.account-strip b { color: var(--ink); }
.account-foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 14px; color: var(--muted); font-size: 12px; }
.link-button { margin-left: 12px; padding: 0; border: 0; background: transparent; color: var(--blue); cursor: pointer; }
.segmented { width: max-content; display: grid; grid-template-columns: repeat(2, minmax(160px, 1fr)); gap: 4px; margin-bottom: 24px; padding: 4px; border-radius: 8px; background: #e8e8ed; }
.segmented button { min-height: 38px; padding: 0 14px; border: 0; border-radius: 6px; background: transparent; color: var(--muted); font-weight: 650; cursor: pointer; }
.segmented button.active { background: #fff; color: var(--ink); box-shadow: 0 1px 3px rgba(0, 0, 0, .12); }
.input-with-action { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.input-with-action .btn { border-radius: 7px; }
.upload-box { min-height: 150px; display: flex; align-items: center; justify-content: center; gap: 18px; padding: 24px; border: 1px dashed #a1a1a6; border-radius: 8px; background: #fafafa; }
.upload-box input { width: auto; max-width: 240px; min-height: 0; padding: 0; border: 0; background: transparent; }
.upload-box div { display: grid; gap: 6px; }
.upload-box span { color: var(--muted); font-size: 12px; }
.privacy-note { display: flex; gap: 10px; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line-soft); color: var(--muted); font-size: 12px; }
.privacy-note b { color: var(--ink); }
details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }
.summary-action { color: var(--blue); font-size: 13px; font-weight: 600; }
.summary-action i { font-style: normal; font-size: 18px; }
details[open] .summary-action i { display: inline-block; transform: rotate(180deg); }
.auth-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 20px; }
.result-panel { scroll-margin-top: 72px; }
.result-top { min-height: 72px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 0 20px; border-bottom: 1px solid var(--line-soft); }
.status-orb { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(0, 113, 227, .10); }
.result-top > div { display: grid; gap: 3px; min-width: 0; }
.result-top b { overflow: hidden; text-overflow: ellipsis; font-size: 12px; white-space: nowrap; }
.result-label { color: var(--muted); font-size: 11px; }
.result-body { padding: 22px; }
.progress-copy { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 12px; font-size: 14px; }
.progress-copy b { color: var(--blue); }
.progress i { display: block; width: 0; height: 100%; background: var(--blue); transition: width .3s ease; }
.result-meta { display: flex; justify-content: space-between; margin: 16px 0; color: var(--muted); font-size: 12px; }
.result-meta b { color: var(--ink); }
.architecture-summary { padding: 14px 0; border-top: 1px solid var(--line); }
.architecture-summary > div:first-child { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; font-size: 12px; color: var(--muted); }
.architecture-summary > div:first-child b { color: var(--ink); }
.service-list { display: grid; gap: 6px; }
.service-item { display: flex; align-items: center; justify-content: space-between; min-width: 0; padding: 9px 10px; border: 1px solid var(--line); border-radius: 6px; background: #fff; }
.service-item b { overflow: hidden; font-size: 13px; text-overflow: ellipsis; }
.service-item small { color: var(--muted); font-size: 11px; }
.service-item.public { border-color: #b9d8ff; background: #f5f9ff; }
.notice { padding: 13px 14px; border: 1px solid var(--line-soft); border-radius: 7px; background: #fafafa; color: var(--muted); font-size: 13px; line-height: 1.55; }
.notice.ok { border-color: #b9e6c5; background: #f0fbf3; color: #116b31; }
.notice.warn { border-color: #f3d7a6; background: #fff8ec; color: #7a4500; }
.notice.danger { border-color: #f1b5ae; background: #fff1ef; color: #a61b11; }
.delivery-actions { display: grid; gap: 9px; margin-top: 16px; }
.hosting-control { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.hosting-control-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.hosting-control-head > div { display: grid; gap: 4px; }
.hosting-control-head b { font-size: 14px; }
.hosting-control-head span:not(.tag) { color: var(--muted); font-size: 11px; }
.hosting-control > p { margin-top: 11px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.environment-control { margin: 16px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.environment-control > summary { min-height: 46px; display: flex; align-items: center; justify-content: space-between; gap: 12px; cursor: pointer; list-style: none; font-size: 12px; font-weight: 700; }
.environment-control > summary::-webkit-details-marker { display: none; }
.environment-body { padding: 0 0 16px; }
.environment-body > p { margin-bottom: 12px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.environment-keys { display: grid; gap: 6px; margin-bottom: 12px; }
.environment-keys > span { color: var(--muted); font-size: 11px; }
.environment-keys > div { min-height: 36px; display: grid; grid-template-columns: minmax(0, 1fr) auto 28px; align-items: center; gap: 10px; padding: 0 7px 0 11px; border: 1px solid var(--line-soft); border-radius: 6px; background: #fafafa; }
.environment-keys code { overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.environment-keys div > span { color: var(--green); font-size: 9px; }
.environment-remove { width: 26px; height: 26px; border: 0; border-radius: 5px; background: transparent; color: var(--muted); cursor: pointer; font-size: 18px; line-height: 1; }
.environment-remove:hover { background: #ececef; color: var(--red); }
.environment-form { display: grid; grid-template-columns: 1fr 1.35fr auto; gap: 8px; align-items: end; }
.environment-form label { display: none; }
.environment-form input { min-width: 0; height: 38px; padding: 0 10px; border: 1px solid var(--line); border-radius: 6px; font: 11px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.environment-form .btn { min-height: 38px; padding: 0 14px; }
.environment-body .notice { margin-top: 10px; padding: 10px 12px; font-size: 10px; }
.danger-button { border-color: #efb5ae; color: #a61b11; }
.danger-button:hover { border-color: #d89b94; background: #fff1ef; }
.log-summary { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 18px; font-size: 13px; font-weight: 650; }
.log { min-height: 250px; max-height: 390px; overflow: auto; margin: 0; padding: 15px; border-radius: 7px; background: #1d1d1f; color: #e8e8ed; white-space: pre-wrap; font: 12px/1.65 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.aside-help { padding: 18px; border: 1px solid var(--line); border-radius: 8px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.aside-help b { color: var(--ink); }
.aside-help p { margin: 7px 0; }
.aside-help a { color: var(--blue); }

.hero { padding: 82px 0 52px; background: #fbfbfd; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); gap: 52px; align-items: center; }
.eyebrow { color: var(--muted); font-size: 14px; font-weight: 650; }
.hero h1 { margin: 12px 0 18px; font-size: clamp(42px, 5.4vw, 68px); line-height: 1.05; }
.lead { max-width: 720px; color: var(--muted); font-size: 19px; line-height: 1.65; }
.surface { border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.surface.lift { box-shadow: var(--shadow); }
.terminal-card { overflow: hidden; }
.terminal-head { min-height: 52px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid var(--line-soft); color: var(--muted); font-size: 12px; }
.traffic { display: flex; gap: 7px; }
.traffic i { width: 9px; height: 9px; border-radius: 50%; background: #c7c7cc; }
.pipeline { display: grid; gap: 10px; padding: 16px; }
.pipe-row { min-height: 68px; display: grid; grid-template-columns: 36px 1fr auto; gap: 12px; align-items: center; padding: 12px; border: 1px solid var(--line-soft); border-radius: 7px; }
.pipe-row i { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 6px; background: var(--bg); font-style: normal; font-weight: 700; }
.pipe-row small { color: var(--muted); }
.metric-band { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-soft); }
.metric { padding: 16px; border-right: 1px solid var(--line-soft); }
.metric:last-child { border-right: 0; }
.metric b { display: block; font-size: 22px; }
.metric span { color: var(--muted); font-size: 12px; }
.section { padding: 78px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 26px; }
.section-head h2 { font-size: clamp(30px, 4vw, 48px); }
.section-head p { max-width: 560px; color: var(--muted); line-height: 1.65; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.card, .route, .layer { padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.card { min-height: 180px; }
.card-icon { width: 36px; height: 36px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 7px; background: var(--bg); font-weight: 700; }
.card b { display: block; margin-bottom: 9px; font-size: 18px; }
.card p, .card span, .route span, .layer span { color: var(--muted); line-height: 1.65; }
.route { min-height: 125px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.route b { display: block; margin-bottom: 8px; color: var(--ink); font-size: 18px; }
.route .arrow { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--blue); color: #fff; }
.layer { min-height: 150px; }
.layer em { display: block; margin-bottom: 18px; color: var(--blue); font-style: normal; font-weight: 700; }
.price { margin: 14px 0; font-size: 38px; font-weight: 750; }
.clean { padding-left: 18px; color: var(--muted); line-height: 1.9; }

.app-shell { min-height: 100vh; display: grid; grid-template-columns: 250px 1fr; }
.sidebar { position: sticky; top: 0; height: 100vh; padding: 18px; border-right: 1px solid var(--line); background: #fff; }
.side-brand { display: flex; align-items: center; gap: 10px; height: 44px; margin-bottom: 20px; font-weight: 700; }
.side-nav { display: grid; gap: 4px; }
.side-nav a { min-height: 42px; display: flex; align-items: center; justify-content: space-between; padding: 0 12px; border-radius: 7px; color: var(--muted); font-size: 13px; }
.side-nav a.active, .side-nav a:hover { background: var(--bg); color: var(--ink); }
.side-foot { position: absolute; right: 18px; bottom: 18px; left: 18px; display: grid; gap: 8px; }
.main { min-width: 0; }
.main-head { height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 26px; border-bottom: 1px solid var(--line); background: rgba(250, 250, 252, .9); }
.main-body { padding: 24px 26px 70px; }
.page-title { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.page-title p { margin-top: 6px; color: var(--muted); }
.console-grid { display: grid; grid-template-columns: minmax(340px, 420px) minmax(0, 1fr); gap: 16px; align-items: start; }
.stack { display: grid; gap: 16px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.stat { padding: 14px; border: 1px solid var(--line); border-radius: 7px; background: #fff; }
.stat b { display: block; font-size: 20px; }
.stat span { color: var(--muted); font-size: 12px; }
.table-wrap { overflow: auto; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th, td { padding: 11px 10px; border-bottom: 1px solid var(--line-soft); text-align: left; vertical-align: top; }
th { background: var(--bg); color: var(--muted); }

.site-footer { padding: 52px 0 24px; border-top: 1px solid var(--line); background: #f5f5f7; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; }
.footer-brand { margin-bottom: 12px; }
.footer-grid p { max-width: 420px; color: var(--muted); font-size: 13px; }
.footer-links { display: flex; align-items: flex-start; flex-wrap: wrap; gap: 24px; color: #424245; font-size: 13px; }
.footer-links a:hover { text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--subtle); font-size: 11px; }

@media (max-width: 980px) {
  .nav-group { gap: 18px; }
  .nav-login { display: none; }
  .demo-layout, .story-grid, .split-heading, .pricing-grid, .hero-grid, .grid-3, .console-grid, .workspace-grid { grid-template-columns: 1fr; }
  .demo-source { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .story-card.large-card { grid-row: auto; min-height: 620px; }
  .security-rail { grid-template-columns: repeat(2, 1fr); }
  .security-rail article { border-bottom: 1px solid #343436; }
  .workspace-aside { position: static; }
  .app-shell { grid-template-columns: 1fr; }
  .sidebar { position: static; height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .side-foot { position: static; margin-top: 18px; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 32px, 1120px); }
  .nav-group, .nav-cta, .nav-login { display: none; }
  .menu-toggle { display: block; }
  .home-hero { min-height: auto; padding: 58px 0 42px; }
  .hero-copy h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-copy h1 br { display: none; }
  .hero-lead { font-size: 18px; }
  .hero-actions { flex-direction: column; }
  .product-stage { margin-top: 44px; }
  .window-meta { display: none; }
  .demo-source, .demo-progress { padding: 24px 20px; }
  .story-band { padding: 76px 0; }
  .story-intro h2 br, .split-heading h2 br { display: none; }
  .story-card { min-height: 390px; padding: 28px 24px; }
  .story-card.large-card { min-height: 560px; }
  .story-number { margin-bottom: 48px; }
  .repo-visual { margin-top: 54px; }
  .repo-visual span { height: 72px; font-size: 20px; }
  .repo-visual span:nth-child(2) { margin-left: 24px; }
  .repo-visual span:nth-child(3) { margin-left: 48px; }
  .status-showcase { grid-template-columns: 1fr; padding: 28px 22px; }
  .status-divider { width: 100%; height: 1px; }
  .security-rail { grid-template-columns: 1fr; }
  .security-rail article { min-height: 190px; border-right: 0; }
  .security-rail h3 { margin-top: 28px; }
  .workspace { padding-top: 38px; }
  .workspace-head { align-items: flex-start; flex-direction: column; }
  .workspace-steps { grid-template-columns: repeat(2, 1fr); }
  .workspace-step:nth-child(2) { border-right: 0; }
  .workspace-step:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .form-grid, .auth-choice, .account-grid { grid-template-columns: 1fr; }
  .account-strip { grid-template-columns: 1fr; }
  .account-strip span { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .account-strip span:last-child { border-bottom: 0; }
  .account-foot, .footer-grid, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .segmented { width: 100%; grid-template-columns: 1fr 1fr; }
  .input-with-action { grid-template-columns: 1fr; }
  .upload-box { align-items: flex-start; flex-direction: column; }
  .grid-2, .grid-4, .stat-grid { grid-template-columns: 1fr; }
  .section-head { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* 2026 commercial home experience */
.home-site { overflow-x: clip; background: #ffffff; }
.home-site .topbar { background: rgba(255, 255, 255, .94); backdrop-filter: saturate(140%) blur(12px); }
.future-hero {
  position: relative;
  height: calc(100svh - 150px);
  min-height: 690px;
  max-height: 820px;
  overflow: hidden;
  isolation: isolate;
  background: #f5f5f7;
}
.deployment-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  outline: 0;
}
.future-hero.webgl-fallback::after {
  content: "";
  position: absolute;
  top: 19%;
  right: 2%;
  z-index: 0;
  width: min(52%, 720px);
  aspect-ratio: 1120 / 482;
  background: url('/static/assets/build-console.png?v=20260715-3') center / contain no-repeat;
  filter: drop-shadow(0 28px 40px rgba(17, 17, 20, .13));
  transform: perspective(1100px) rotateY(-8deg) rotateX(2deg);
  transform-origin: center;
}
.future-hero.webgl-fallback .deployment-canvas { display: none; }
.scene-wash {
  position: absolute;
  inset: 0 52% 0 0;
  z-index: 1;
  background: rgba(245, 245, 247, .78);
  pointer-events: none;
}
.future-hero-inner { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.future-hero-copy { width: min(610px, 52%); padding-bottom: 48px; }
.hero-overline {
  color: #5f6368;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 720;
}
.future-hero h1 {
  margin: 18px 0 24px;
  max-width: 700px;
  color: #111114;
  font-size: 68px;
  line-height: 1.02;
  font-weight: 760;
}
.future-hero h1 span { display: block; white-space: nowrap; }
.future-lead {
  max-width: 590px;
  color: #5f6368;
  font-size: 20px;
  line-height: 1.65;
}
.future-actions { margin-top: 30px; }
.future-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0071e3;
  font-size: 16px;
  font-weight: 650;
}
.future-link span { font-size: 25px; line-height: 1; transform: translateY(-1px); }
.future-link:hover { color: #005bb5; }
.future-note { margin-top: 17px; color: #7d7d83; font-size: 12px; line-height: 1.5; }
.scene-label {
  position: absolute;
  z-index: 3;
  min-width: 152px;
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 3px 10px;
  padding: 12px 14px;
  border: 1px solid rgba(17, 17, 20, .10);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .08);
  pointer-events: none;
}
.scene-label i { width: 8px; height: 8px; margin-top: 5px; border-radius: 50%; background: #0071e3; }
.scene-label span { color: #1d1d1f; font-size: 12px; font-weight: 760; }
.scene-label b { grid-column: 2; color: #6e6e73; font-size: 10px; font-weight: 560; }
.scene-label.is-active {
  border-color: rgba(0, 113, 227, .42);
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(0, 80, 160, .16);
}
.scene-label-source { right: 38%; top: 25%; }
.scene-label-build { right: 20%; top: 49%; }
.scene-label-build i { background: #ff5a36; }
.scene-label-ship { right: 7%; top: 29%; }
.scene-label-ship i { background: #30a957; }
.hero-proof {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 64px;
  border-top: 1px solid rgba(17, 17, 20, .09);
  background: rgba(255, 255, 255, .84);
}
.hero-proof-inner { height: 64px; display: flex; align-items: center; gap: 15px; }
.hero-proof span { margin-right: auto; color: #7d7d83; font-size: 11px; font-weight: 700; }
.hero-proof b { color: #333338; font-size: 12px; }
.hero-proof i { width: min(170px, 15vw); height: 1px; background: #b9b9c0; }

.product-proof { padding: 54px 0 132px; background: #ffffff; }
.proof-heading { display: grid; grid-template-columns: 1.15fr .85fr; column-gap: 72px; align-items: end; margin-bottom: 62px; }
.proof-heading .hero-overline { grid-column: 1 / -1; margin-bottom: 15px; }
.proof-heading h2,
.pipeline-intro h2,
.delivery-heading h2,
.clarity-copy h2,
.security-heading h2,
.pricing-heading h2,
.commercial-cta h2 {
  font-size: 58px;
  line-height: 1.06;
  font-weight: 750;
}
.proof-heading > p:last-child { color: #6e6e73; font-size: 17px; line-height: 1.7; }
.source-console { overflow: hidden; border: 1px solid #d8d8dd; border-radius: 8px; background: #ffffff; box-shadow: 0 30px 80px rgba(0, 0, 0, .09); }
.console-head { height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; border-bottom: 1px solid #e8e8ed; color: #737378; font-size: 12px; }
.console-head > div { display: flex; align-items: center; gap: 10px; }
.console-head b { color: #1d1d1f; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #30a957; box-shadow: 0 0 0 4px rgba(48, 169, 87, .12); }
.source-console-grid { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 410px; }
.source-main { padding: 42px; border-right: 1px solid #e8e8ed; background: #fbfbfd; }
.source-tabs { width: 310px; display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin: 10px 0 30px; padding: 3px; border-radius: 8px; background: #e8e8ed; }
.source-tabs button { min-height: 38px; border: 0; border-radius: 6px; background: transparent; color: #6e6e73; cursor: pointer; font-size: 13px; font-weight: 650; }
.source-tabs button.active { background: #ffffff; color: #1d1d1f; box-shadow: 0 1px 3px rgba(0, 0, 0, .12); }
.source-address { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 18px; border: 1px solid #c7c7cc; border-radius: 8px; background: #ffffff; }
.source-address span { overflow: hidden; color: #333338; font: 14px/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-overflow: ellipsis; white-space: nowrap; }
.source-address b { color: #17833d; font-size: 12px; }
.source-demo-panel p { margin-top: 14px; color: #7d7d83; font-size: 12px; line-height: 1.6; }
.zip-drop { min-height: 126px; display: grid; place-content: center; gap: 6px; border: 1px dashed #a8a8ae; border-radius: 8px; background: #ffffff; text-align: center; }
.zip-drop b { font-size: 15px; }
.zip-drop span { color: #6e6e73; font-size: 12px; }
.source-recognition { display: flex; flex-direction: column; padding: 42px 36px; }
.recognition-label { color: #6e6e73; font-size: 12px; font-weight: 700; }
.source-recognition dl { margin: 22px 0 auto; }
.source-recognition dl > div { min-height: 49px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #e8e8ed; }
.source-recognition dt { color: #6e6e73; font-size: 12px; }
.source-recognition dd { margin: 0; color: #1d1d1f; font-size: 13px; font-weight: 700; }

.pipeline-story { padding: 126px 0 132px; overflow: hidden; background: #101012; color: #f5f5f7; }
.pipeline-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px 72px; align-items: end; }
.pipeline-intro .hero-overline { grid-column: 1 / -1; }
.light-overline { color: #a1a1a6; }
.pipeline-intro > p:last-child { color: #a1a1a6; font-size: 17px; line-height: 1.7; }
.pipeline-board { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 480px; margin-top: 64px; overflow: hidden; border: 1px solid #343438; border-radius: 8px; background: #18181b; }
.pipeline-side { display: flex; flex-direction: column; padding: 42px; border-right: 1px solid #343438; }
.pipeline-index { color: #77777e; font: 11px/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.pipeline-side h3 { margin: 72px 0 15px; font-size: 34px; line-height: 1.12; }
.pipeline-side p { color: #a1a1a6; font-size: 14px; line-height: 1.6; }
.build-progress { height: 5px; margin-top: auto; overflow: hidden; background: #343438; }
.build-progress i { display: block; width: 0; height: 100%; background: #5ac8fa; }
.build-percent { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 14px; }
.build-percent b { color: #5ac8fa; font-size: 20px; }
.build-percent span { color: #77777e; font-size: 10px; }
.pipeline-steps { margin: 0; padding: 0; list-style: none; }
.pipeline-steps li { min-height: 120px; display: grid; grid-template-columns: 38px 1fr auto; gap: 18px; align-items: center; padding: 22px 32px; border-bottom: 1px solid #343438; color: #77777e; }
.pipeline-steps li:last-child { border-bottom: 0; }
.pipeline-steps li > i { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #444449; border-radius: 50%; font-style: normal; font-size: 11px; }
.pipeline-steps li span { display: grid; gap: 7px; }
.pipeline-steps li b { color: #a1a1a6; font-size: 16px; }
.pipeline-steps li small { font-size: 11px; }
.pipeline-steps li em { font-style: normal; font-size: 11px; font-weight: 700; }
.pipeline-steps li.complete i { border-color: #30a957; background: #30a957; color: #ffffff; }
.pipeline-steps li.complete b { color: #f5f5f7; }
.pipeline-steps li.complete em { color: #54d47d; }
.pipeline-steps li.active { background: #202024; }
.pipeline-steps li.active i { border-color: #5ac8fa; color: #5ac8fa; box-shadow: 0 0 0 5px rgba(90, 200, 250, .08); }
.pipeline-steps li.active b { color: #ffffff; }
.pipeline-steps li.active em { color: #5ac8fa; }
.delivery-heading { margin-top: 132px; }
.delivery-heading h2 { margin-top: 15px; }
.delivery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 56px; border-top: 1px solid #343438; border-bottom: 1px solid #343438; }
.delivery-path { min-height: 340px; display: flex; flex-direction: column; padding: 30px 28px; border-right: 1px solid #343438; }
.delivery-path:last-child { border-right: 0; }
.delivery-path > span { color: #77777e; font-size: 11px; font-weight: 750; }
.delivery-path h3 { margin: 68px 0 16px; font-size: 27px; }
.delivery-path p { color: #a1a1a6; font-size: 14px; line-height: 1.7; }
.delivery-path > b { margin-top: auto; color: #5ac8fa; font-size: 12px; }
.featured-path { background: #18181b; }
.featured-path > b { color: #ff7a59; }

.status-clarity { padding: 132px 0; background: #f5f5f7; }
.clarity-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 84px; align-items: center; }
.clarity-copy h2 { margin: 15px 0 26px; }
.clarity-copy > p:not(.hero-overline) { margin-bottom: 26px; color: #6e6e73; font-size: 17px; line-height: 1.75; }
.outcome-panel { overflow: hidden; border: 1px solid #d8d8dd; border-radius: 8px; background: #ffffff; box-shadow: 0 24px 70px rgba(0, 0, 0, .08); }
.outcome-head { height: 62px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; border-bottom: 1px solid #e8e8ed; font-size: 12px; }
.failed-mark { min-height: 28px; display: inline-flex; align-items: center; padding: 0 10px; border-radius: 999px; background: #fff0ee; color: #b42318; font-weight: 750; }
.outcome-body { padding: 36px; }
.outcome-code { color: #a05a00; font: 11px/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.outcome-body h3 { margin: 18px 0 12px; font-size: 30px; }
.outcome-body > p { color: #6e6e73; font-size: 14px; line-height: 1.7; }
.next-action { display: grid; gap: 7px; margin-top: 30px; padding-top: 22px; border-top: 1px solid #e8e8ed; }
.next-action span { color: #7d7d83; font-size: 10px; font-weight: 720; }
.next-action b { color: #1d1d1f; font-size: 14px; }

.security-system { padding: 132px 0; background: #0b0b0d; color: #ffffff; }
.security-heading { max-width: 850px; }
.security-heading h2 { margin: 15px 0 24px; }
.security-heading > p:last-child { max-width: 660px; color: #a1a1a6; font-size: 17px; line-height: 1.7; }
.security-stack { margin-top: 64px; border-top: 1px solid #343438; }
.security-stack article { min-height: 120px; display: grid; grid-template-columns: 68px 1fr auto; gap: 32px; align-items: center; border-bottom: 1px solid #343438; }
.security-stack article > b { color: #6d6d73; font-size: 12px; }
.security-stack article div { display: grid; grid-template-columns: 240px 1fr; gap: 42px; align-items: center; }
.security-stack h3 { font-size: 22px; }
.security-stack p { color: #a1a1a6; font-size: 13px; line-height: 1.6; }
.security-stack article > span { color: #5ac8fa; font-size: 11px; font-weight: 700; }
.security-stack article:nth-child(2) > span,
.security-stack article:nth-child(5) > span { color: #ff7a59; }
.security-stack article:nth-child(3) > span { color: #54d47d; }
.security-foot { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 28px; color: #77777e; font-size: 11px; }
.future-link.on-dark { color: #5ac8fa; }

.commercial-pricing { padding: 132px 0; background: #ffffff; }
.pricing-heading { text-align: center; }
.pricing-heading h2 { margin-top: 15px; }
.pricing-table { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 60px; }
.commercial-plan { min-height: 510px; display: flex; flex-direction: column; justify-content: space-between; padding: 34px; border: 1px solid #d8d8dd; border-radius: 8px; background: #ffffff; }
.commercial-plan.plan-focus { border: 2px solid #0071e3; box-shadow: 0 24px 60px rgba(0, 113, 227, .12); }
.commercial-plan > div > span { color: #6e6e73; font-size: 13px; font-weight: 700; }
.commercial-plan h3 { margin: 22px 0 12px; font-size: 48px; }
.commercial-plan h3 small { color: #6e6e73; font-size: 15px; font-weight: 550; }
.commercial-plan p { color: #6e6e73; font-size: 14px; line-height: 1.65; }
.commercial-plan ul { margin: 32px 0; padding: 0; list-style: none; }
.commercial-plan li { padding: 13px 0; border-bottom: 1px solid #e8e8ed; color: #424245; font-size: 13px; }

.commercial-cta { position: relative; min-height: 610px; display: grid; place-items: center; overflow: hidden; background: #111114; color: #ffffff; text-align: center; }
.commercial-cta .shell { position: relative; z-index: 2; }
.commercial-cta h2 { margin: 15px 0 20px; }
.commercial-cta p:not(.hero-overline) { margin-bottom: 30px; color: #a1a1a6; font-size: 17px; }
.cta-scene { position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; justify-content: center; gap: 26px; opacity: .22; transform: perspective(900px) rotateX(62deg) rotateZ(-24deg); }
.cta-scene i { width: 220px; height: 320px; border: 1px solid #5ac8fa; border-radius: 8px; background: #18181b; box-shadow: 0 0 0 1px rgba(255, 255, 255, .03); }
.cta-scene i:nth-child(2) { transform: translateY(-54px); border-color: #ff7a59; }
.cta-scene i:nth-child(3) { transform: translateY(-108px); border-color: #54d47d; }

.reveal-block { will-change: transform, opacity; }

@media (max-width: 1100px) {
  .future-hero-copy { width: 54%; }
  .future-hero h1 { font-size: 48px; }
  .scene-label-source { right: 33%; }
  .scene-label-build { right: 16%; }
  .scene-label-ship { right: 3%; }
  .proof-heading h2,
  .pipeline-intro h2,
  .delivery-heading h2,
  .clarity-copy h2,
  .security-heading h2,
  .pricing-heading h2,
  .commercial-cta h2 { font-size: 50px; }
}

@media (max-width: 900px) {
  .future-hero { height: calc(100svh - 138px); min-height: 670px; }
  .scene-wash { inset: 0 30% 0 0; background: rgba(245, 245, 247, .84); }
  .future-hero-copy { width: 67%; }
  .future-hero h1 { font-size: 50px; }
  .future-lead { font-size: 18px; }
  .scene-label { display: none; }
  .proof-heading,
  .pipeline-intro,
  .source-console-grid,
  .pipeline-board,
  .clarity-grid { grid-template-columns: 1fr; }
  .proof-heading { row-gap: 24px; }
  .source-main { border-right: 0; border-bottom: 1px solid #e8e8ed; }
  .pipeline-side { min-height: 360px; border-right: 0; border-bottom: 1px solid #343438; }
  .delivery-grid,
  .pricing-table { grid-template-columns: 1fr; }
  .delivery-path { min-height: 280px; border-right: 0; border-bottom: 1px solid #343438; }
  .delivery-path:last-child { border-bottom: 0; }
  .clarity-grid { gap: 54px; }
  .security-stack article div { grid-template-columns: 190px 1fr; }
}

@media (max-width: 650px) {
  .future-hero { height: calc(100svh - 154px); min-height: 680px; max-height: 720px; }
  .future-hero-inner { align-items: flex-start; padding-top: 62px; }
  .future-hero-copy { width: 100%; padding: 0 0 88px; }
  .future-hero h1 { margin: 14px 0 18px; font-size: 40px; line-height: 1.08; }
  .future-hero h1 span { white-space: nowrap; }
  .future-lead { max-width: 100%; font-size: 16px; line-height: 1.6; }
  .future-actions { align-items: flex-start; flex-direction: column; gap: 14px; margin-top: 23px; }
  .future-note { max-width: 300px; }
  .scene-wash { inset: 0; background: rgba(245, 245, 247, .76); }
  .deployment-canvas { top: 39%; height: 61%; opacity: .64; }
  .hero-proof-inner { justify-content: space-between; gap: 9px; }
  .hero-proof span,
  .hero-proof i { display: none; }
  .hero-proof b { font-size: 10px; }
  .product-proof { padding: 80px 0 88px; }
  .pipeline-story,
  .status-clarity,
  .security-system,
  .commercial-pricing { padding: 88px 0; }
  .proof-heading,
  .pipeline-intro { margin-bottom: 42px; }
  .proof-heading h2,
  .pipeline-intro h2,
  .delivery-heading h2,
  .clarity-copy h2,
  .security-heading h2,
  .pricing-heading h2,
  .commercial-cta h2 { font-size: 38px; }
  .proof-heading > p:last-child,
  .pipeline-intro > p:last-child,
  .clarity-copy > p:not(.hero-overline),
  .security-heading > p:last-child { font-size: 15px; }
  .source-main,
  .source-recognition,
  .pipeline-side,
  .outcome-body,
  .commercial-plan { padding: 24px 20px; }
  .source-tabs { width: 100%; }
  .source-address { align-items: flex-start; flex-direction: column; justify-content: center; gap: 6px; }
  .source-address span { width: 100%; }
  .pipeline-board { margin-top: 42px; }
  .pipeline-side { min-height: 310px; }
  .pipeline-side h3 { margin-top: 46px; font-size: 28px; }
  .build-percent { align-items: flex-start; flex-direction: column; gap: 7px; }
  .pipeline-steps li { min-height: 108px; grid-template-columns: 32px 1fr; gap: 13px; padding: 18px; }
  .pipeline-steps li > em { grid-column: 2; }
  .pipeline-steps li small { line-height: 1.5; }
  .delivery-heading { margin-top: 88px; }
  .delivery-path { min-height: 280px; padding: 25px 20px; }
  .delivery-path h3 { margin-top: 52px; }
  .outcome-body h3 { font-size: 25px; }
  .security-stack article { grid-template-columns: 34px 1fr; gap: 12px; padding: 22px 0; }
  .security-stack article div { grid-template-columns: 1fr; gap: 9px; }
  .security-stack article > span { grid-column: 2; }
  .security-foot { align-items: flex-start; flex-direction: column; }
  .commercial-plan { min-height: 470px; }
  .commercial-cta { min-height: 540px; }
  .cta-scene { gap: 14px; transform: perspective(700px) rotateX(64deg) rotateZ(-24deg) scale(.72); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-block { will-change: auto; }
  .deployment-canvas { opacity: .76; }
}

/* Simplified customer home */
.simple-home .future-hero-copy { width: min(620px, 53%); }
.simple-home .future-hero h1 { letter-spacing: 0; }
.simple-home .future-lead { max-width: 600px; }
.simple-proof { height: 64px; }
.simple-proof-inner {
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1.2fr auto 1.15fr;
  gap: 20px;
  align-items: center;
}
.simple-proof span { margin: 0; color: #6e6e73; font-size: 12px; font-weight: 560; }
.simple-proof span b { margin-right: 7px; color: #1d1d1f; font-size: 12px; }
.simple-proof i { width: auto; height: auto; color: #9b9ba1; background: transparent; font-style: normal; }

.beginner-flow { padding: 132px 0; background: #ffffff; }
.beginner-flow-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 92px; align-items: center; }
.beginner-flow h2,
.outcomes-heading h2,
.answers-heading h2,
.simple-final-cta h2 {
  margin: 15px 0 24px;
  font-size: 58px;
  line-height: 1.06;
  letter-spacing: 0;
}
.section-lead { max-width: 500px; color: #6e6e73; font-size: 17px; line-height: 1.7; }
.plain-steps { margin: 44px 0 0; padding: 0; list-style: none; border-top: 1px solid #dedee3; }
.plain-steps li {
  min-height: 112px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #dedee3;
}
.plain-steps li > b { color: #8a8a90; font: 11px/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.plain-steps h3 { margin-bottom: 8px; color: #1d1d1f; font-size: 19px; }
.plain-steps p { color: #6e6e73; font-size: 13px; line-height: 1.55; }
.flow-product {
  position: relative;
  overflow: hidden;
  border: 1px solid #2f2f34;
  border-radius: 8px;
  background: #111114;
  box-shadow: 0 32px 90px rgba(17, 17, 20, .17);
  transform: perspective(1200px) rotateY(-3deg);
  transform-origin: center right;
}
.flow-product img { width: 100%; height: auto; display: block; }
.flow-product-caption {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-top: 1px solid #2f2f34;
  color: #b8b8bd;
  font-size: 12px;
}
.flow-product-caption i { width: 7px; height: 7px; border-radius: 50%; background: #30a957; box-shadow: 0 0 0 4px rgba(48, 169, 87, .12); }

.simple-outcomes { padding: 132px 0 104px; background: #101012; color: #f5f5f7; }
.outcomes-heading { display: grid; grid-template-columns: 1.2fr .8fr; column-gap: 90px; align-items: end; }
.outcomes-heading .hero-overline { grid-column: 1 / -1; }
.outcomes-heading h2 { max-width: 720px; }
.outcomes-heading > p:last-child { padding-bottom: 28px; color: #a1a1a6; font-size: 17px; line-height: 1.7; }
.outcome-rows { margin-top: 56px; border-top: 1px solid #343438; }
.outcome-row {
  min-height: 150px;
  display: grid;
  grid-template-columns: 70px 1fr 150px;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid #343438;
}
.outcome-number { color: #717178; font: 11px/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.outcome-row h3 { margin-bottom: 10px; font-size: 24px; }
.outcome-row p { max-width: 720px; color: #a1a1a6; font-size: 14px; line-height: 1.65; }
.outcome-row > b { justify-self: end; color: #5ac8fa; font-size: 12px; }
.outcome-row:nth-child(2) > b { color: #54d47d; }
.outcome-row:nth-child(3) > b { color: #ff8a68; }
.outcome-row.primary-outcome { padding-left: 20px; box-shadow: inset 3px 0 #ff7a59; background: #18181b; }
.outcomes-action { display: flex; justify-content: flex-end; margin-top: 28px; }

.beginner-answers { padding: 132px 0 72px; background: #f5f5f7; }
.answers-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.answers-heading { position: sticky; top: 112px; align-self: start; }
.answers-heading h2 { max-width: 470px; }
.answer-list { border-top: 1px solid #cfcfd4; }
.answer-list details { border-bottom: 1px solid #cfcfd4; }
.answer-list summary {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #1d1d1f;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  list-style: none;
}
.answer-list summary::-webkit-details-marker { display: none; }
.answer-list summary::after { content: "+"; color: #6e6e73; font-size: 26px; font-weight: 400; }
.answer-list details[open] summary::after { content: "−"; }
.answer-list details p { max-width: 690px; padding: 0 50px 34px 0; color: #6e6e73; font-size: 15px; line-height: 1.75; }
.answer-list summary:focus-visible { outline: 2px solid #0071e3; outline-offset: 4px; }
.trust-line {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 74px;
  border-top: 1px solid #cfcfd4;
  color: #6e6e73;
  font-size: 12px;
}
.trust-line span:first-child { margin-right: auto; }
.trust-line span i { width: 7px; height: 7px; display: inline-block; margin-right: 9px; border-radius: 50%; background: #30a957; }
.trust-line a { color: #0071e3; font-weight: 650; }

.simple-final-cta { min-height: 560px; display: grid; place-items: center; background: #111114; color: #ffffff; text-align: center; }
.simple-final-cta h2 { margin-bottom: 16px; }
.simple-final-cta p:not(.hero-overline) { margin-bottom: 30px; color: #a1a1a6; font-size: 17px; }

@media (max-width: 1100px) {
  .simple-home .future-hero-copy { width: 54%; }
  .beginner-flow-grid { gap: 44px; }
  .beginner-flow h2,
  .outcomes-heading h2,
  .answers-heading h2,
  .simple-final-cta h2 { font-size: 48px; }
  .outcomes-heading { column-gap: 48px; }
  .answers-grid { gap: 60px; }
}

@media (max-width: 900px) {
  .simple-proof-inner { grid-template-columns: 1fr auto 1fr auto 1fr; gap: 10px; }
  .simple-proof span { font-size: 10px; }
  .simple-proof span b { display: block; margin: 0 0 2px; font-size: 10px; }
  .beginner-flow-grid,
  .outcomes-heading,
  .answers-grid { grid-template-columns: 1fr; }
  .beginner-flow-grid { gap: 64px; }
  .outcomes-heading { gap: 0; }
  .outcomes-heading > p:last-child { padding-bottom: 0; }
  .answers-heading { position: static; }
}

/* Long-term hosting offer */
.hosting-hero { min-height: 610px; display: flex; align-items: center; }
.hosting-hero .hero-copy { width: 100%; }
.hosting-hero h1 { max-width: 940px; font-size: 72px; letter-spacing: 0; }
.hosting-hero .actions { justify-content: center; margin-top: 30px; }
.hosting-featured { border-color: #ff7a59; box-shadow: 0 24px 60px rgba(255, 122, 89, .13); }
.hosting-offer {
  min-height: 310px;
  display: grid;
  grid-template-columns: 1.05fr .95fr auto;
  gap: 68px;
  align-items: center;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}
.hosting-offer h2 { margin: 12px 0; font-size: 58px; letter-spacing: 0; }
.hosting-offer h2 span { color: var(--muted); font-size: 18px; font-weight: 500; }
.hosting-offer p { color: var(--muted); line-height: 1.65; }
.hosting-offer ul { margin: 0; padding: 0; list-style: none; }
.hosting-offer li { padding: 11px 0; border-bottom: 1px solid var(--line-soft); color: #424245; }
.hosting-boundary { min-height: 78px; display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: 12px; }
.hosting-boundary b { margin-right: auto; color: var(--ink); }

@media (max-width: 1100px) {
  .hosting-hero h1 { font-size: 60px; }
  .hosting-offer { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hosting-offer .btn { grid-column: 1 / -1; justify-self: start; }
}

/* Account authentication and entitlement system */
.account-shortcut { display: inline-flex; align-items: center; gap: 7px; max-width: 132px; }
.account-shortcut { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.account-dot { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: #30a957; box-shadow: 0 0 0 4px rgba(48, 169, 87, .10); }

.auth-main { min-height: calc(100vh - 52px); display: grid; align-items: center; padding: 72px 0 96px; background: #f5f5f7; }
.auth-layout { display: grid; grid-template-columns: minmax(0, 1fr) 480px; gap: 96px; align-items: center; }
.auth-context { padding: 34px 0; }
.auth-context h1 { max-width: 620px; margin: 16px 0 22px; font-size: 62px; line-height: 1.02; }
.auth-context > p:not(.kicker) { max-width: 580px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.auth-proof-list { margin-top: 54px; border-top: 1px solid var(--line); }
.auth-proof-list > div { min-height: 78px; display: grid; grid-template-columns: 48px 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.auth-proof-list > div > span { color: var(--blue); font-size: 12px; font-weight: 750; }
.auth-proof-list p { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.auth-proof-list b { font-size: 15px; }
.auth-proof-list small { color: var(--muted); font-size: 12px; }
.auth-surface { padding: 36px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 24px 70px rgba(0, 0, 0, .08); }
.auth-tabs { margin-bottom: 34px; }
.auth-heading h2 { margin: 8px 0 10px; font-size: 30px; }
.auth-heading > p:last-child { color: var(--muted); line-height: 1.6; }
.auth-surface form { display: grid; gap: 17px; margin-top: 28px; }
.auth-surface form > div:not(.auth-message) { display: grid; gap: 8px; }
.label-note { color: var(--muted); font-size: 11px; font-weight: 500; }
.auth-message { min-height: 22px; padding: 0 2px; font-size: 12px; line-height: 1.55; }
.auth-message.pending { color: var(--blue); }
.auth-message.success { color: var(--green); }
.auth-message.error { color: var(--red); }
.auth-help-actions { display: flex !important; justify-content: space-between; gap: 16px; margin-top: 2px; }
.text-button { padding: 4px 0; border: 0; background: transparent; color: var(--muted); cursor: pointer; font: inherit; font-size: 12px; }
.text-button:hover { color: var(--blue); }
.account-data-controls { display: grid; grid-template-columns: 1fr 430px; gap: 72px; align-items: start; margin-top: 28px; padding: 34px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.account-data-controls h2 { margin: 8px 0 10px; font-size: 26px; }
.account-data-controls p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.account-data-actions { display: grid; gap: 12px; }
.account-danger-zone { border-top: 1px solid var(--line-soft); padding-top: 14px; }
.account-danger-zone summary { color: var(--red); cursor: pointer; font-size: 13px; font-weight: 700; }
.account-danger-zone form { display: grid; gap: 10px; padding-top: 16px; }
.account-danger-zone label { font-size: 12px; font-weight: 700; }
.btn.danger { justify-self: start; border-color: var(--red); color: var(--red); background: #fff; }
.btn.danger:hover { background: #fff4f3; }
.auth-legal { margin-top: 22px; color: var(--muted); font-size: 11px; line-height: 1.65; }
.auth-legal a { color: var(--blue); }
.password-field { position: relative; }
.password-field input { padding-right: 66px; }
.password-field button {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 58px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
}
.optional-register-field { border-top: 1px solid var(--line-soft); }
.optional-register-field summary { padding: 13px 0 4px; color: var(--blue); font-size: 12px; font-weight: 650; }
.optional-register-field > div { margin-top: 10px; }

.account-main { padding: 74px 0 110px; background: #f5f5f7; }
.account-page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; margin-bottom: 42px; }
.account-page-head h1 { max-width: 760px; margin: 12px 0 16px; font-size: 48px; line-height: 1.08; }
.account-page-head p:not(.kicker) { max-width: 720px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.account-head-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.account-identity-band { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 24px 30px; border: 1px solid var(--line); border-bottom: 0; border-radius: 8px 8px 0 0; background: #fff; }
.account-person { display: flex; align-items: center; gap: 16px; }
.account-avatar, .workspace-avatar { display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: #1d1d1f; color: #fff; font-weight: 800; }
.account-avatar { width: 54px; height: 54px; font-size: 19px; }
.account-person h2 { margin-bottom: 5px; font-size: 20px; }
.account-person p { color: var(--muted); font-size: 13px; }
.entitlement-badge { display: inline-flex; align-items: center; min-height: 30px; padding: 0 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 11px; font-weight: 700; }
.entitlement-badge.active { border-color: rgba(23, 131, 61, .24); background: rgba(23, 131, 61, .08); color: var(--green); }
.account-metrics { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 34px; border: 1px solid var(--line); border-radius: 0 0 8px 8px; background: #fff; }
.account-metrics > div { min-height: 116px; display: flex; flex-direction: column; justify-content: center; padding: 22px 28px; border-right: 1px solid var(--line-soft); }
.account-metrics > div:last-child { border-right: 0; }
.account-metrics span { color: var(--muted); font-size: 11px; }
.account-metrics b { margin: 8px 0 5px; font-size: 20px; }
.account-metrics small { color: var(--subtle); font-size: 11px; line-height: 1.45; }
.account-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.account-tool { min-height: 300px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.account-tool-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.account-tool h2 { max-width: 360px; margin-top: 9px; font-size: 26px; }
.account-tool > p { max-width: 470px; margin: 22px 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.account-tool > .btn { align-self: flex-start; margin-top: auto; }
.points-chip { min-height: 28px; display: inline-flex; align-items: center; padding: 0 10px; border-radius: 999px; background: #f0f7ff; color: var(--blue); font-size: 11px; font-weight: 750; white-space: nowrap; }
.copy-field { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; padding: 0 8px 0 16px; border: 1px solid var(--line); border-radius: 7px; background: #fafafa; }
.copy-field code { font-size: 18px; font-weight: 750; letter-spacing: 2px; }
.icon-command { min-height: 36px; padding: 0 12px; border: 0; border-radius: 6px; background: #fff; color: var(--blue); cursor: pointer; font-size: 12px; font-weight: 700; }
.invite-tool .inline-actions { justify-content: space-between; margin-top: 12px; color: var(--muted); font-size: 12px; }
.tool-message { min-height: 20px; margin-top: 12px; color: var(--muted); font-size: 12px; }
.tool-message.success { color: var(--green); }
.tool-message.error { color: var(--red); }
.tool-message.pending { color: var(--blue); }

.redeem-section { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; min-height: 285px; padding: 42px; border-radius: 8px; background: #111114; color: #fff; }
.redeem-copy h2 { margin: 10px 0 16px; font-size: 34px; }
.redeem-copy > p:last-child { color: #a1a1a6; font-size: 13px; line-height: 1.7; }
.redeem-form label { color: #d8d8dc; }
.redeem-form input { border-color: #3b3b40; background: #202024; color: #fff; }
.redeem-form .tool-message { color: #a1a1a6; }
.redeem-form .tool-message.success { color: #63d98b; }
.redeem-form .tool-message.error { color: #ff8b83; }

.duration-section { padding: 74px 0 18px; }
.duration-heading { display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: end; margin-bottom: 30px; }
.duration-heading h2 { max-width: 650px; margin-top: 10px; font-size: 38px; }
.duration-heading > p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.duration-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.duration-grid article { min-height: 430px; display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.duration-grid article.featured { border-color: #1d1d1f; background: #1d1d1f; color: #fff; }
.duration-grid span { color: var(--muted); font-size: 11px; }
.duration-grid .featured span { color: #a1a1a6; }
.duration-grid h3 { margin: 34px 0 12px; font-size: 28px; }
.duration-grid p { color: var(--muted); font-size: 12px; line-height: 1.6; }
.duration-grid .featured p { color: #c7c7cc; }
.duration-grid ul { display: grid; gap: 10px; margin: 22px 0; padding: 20px 0 0; border-top: 1px solid var(--line-soft); list-style: none; }
.duration-grid li { position: relative; padding-left: 16px; color: #424245; font-size: 11px; line-height: 1.5; }
.duration-grid li::before { content: ""; position: absolute; left: 0; top: 6px; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.duration-grid article > small { display: block; margin-top: auto; padding-top: 18px; color: var(--subtle); font-size: 10px; line-height: 1.6; }
.duration-grid .featured ul { border-color: #3a3a3f; }
.duration-grid .featured li { color: #ededf0; }
.duration-grid .featured li::before { background: #63d98b; }
.duration-grid .featured > small { color: #a1a1a6; }
.channel-action { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 14px; padding: 22px 26px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.channel-action b { display: block; margin-bottom: 6px; }
.channel-action p { color: var(--muted); font-size: 12px; }
.btn.disabled { opacity: .45; pointer-events: none; }
.account-rules { margin-top: 58px; border-top: 1px solid var(--line); }
.account-rules h2 { padding: 28px 0 16px; font-size: 20px; }
.account-rules > div { min-height: 60px; display: grid; grid-template-columns: 120px 1fr; align-items: center; border-top: 1px solid var(--line-soft); }
.account-rules span { font-size: 12px; font-weight: 750; }
.account-rules p { color: var(--muted); font-size: 12px; line-height: 1.6; }

.points-redeem-section { margin-top: 54px; padding: 42px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.points-redeem-heading { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; padding-bottom: 30px; border-bottom: 1px solid var(--line-soft); }
.points-redeem-heading h2 { margin: 10px 0 12px; font-size: 34px; }
.points-redeem-heading > div:first-child > p:last-child { color: var(--muted); font-size: 13px; line-height: 1.65; }
.points-balance { min-width: 190px; padding-left: 28px; border-left: 1px solid var(--line); }
.points-balance span, .points-balance small { display: block; color: var(--muted); font-size: 11px; }
.points-balance b { display: block; margin: 8px 0 6px; font-size: 19px; }
.points-balance i { color: var(--blue); font-size: 30px; font-style: normal; }
.points-option-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.points-option-grid article { min-height: 250px; display: flex; flex-direction: column; gap: 24px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: #fafafa; }
.points-option-grid article > div:last-child { display: grid; gap: 14px; margin-top: auto; }
.points-option-grid span { color: var(--muted); font-size: 11px; }
.points-option-grid h3 { margin: 26px 0 8px; font-size: 26px; }
.points-option-grid p { max-width: 300px; color: var(--muted); font-size: 11px; line-height: 1.6; }
.points-option-grid article > div:last-child > b { font-size: 15px; white-space: nowrap; }
.points-redemption-note { min-height: 56px; display: flex; align-items: center; gap: 28px; margin-top: 14px; padding: 0 4px; color: var(--muted); font-size: 11px; }
.points-redemption-note span:first-child { margin-right: auto; color: var(--ink); font-weight: 700; }
.points-redeem-section > .tool-message { margin-top: 0; }
.beta-account-note {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 18px;
  padding: 18px 24px;
  border: 1px solid #c9dfef;
  border-radius: 8px;
  background: #f2f8fc;
}
.beta-account-note b { display: block; margin-bottom: 5px; font-size: 13px; }
.beta-account-note p { color: var(--muted); font-size: 12px; line-height: 1.55; }

.workspace-account-row { display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; align-items: center; gap: 13px; }
.workspace-avatar { width: 42px; height: 42px; font-size: 14px; }
.workspace-account-row > div { min-width: 0; }
.workspace-account-row b, .workspace-account-row span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.workspace-account-row b { margin-bottom: 4px; font-size: 14px; }
.workspace-account-row span { color: var(--muted); font-size: 11px; }
.compact-account-panel > summary { border-bottom: 0; }
.compact-account-panel[open] > summary { border-bottom: 1px solid var(--line-soft); }
.aside-help a { display: block; width: max-content; margin-top: 5px; }

/* Customer project center */
.projects-main { min-height: calc(100vh - 52px); padding: 72px 0 110px; background: var(--bg); }
.projects-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 56px; margin-bottom: 38px; }
.projects-head h1 { max-width: 760px; margin: 12px 0 15px; font-size: 52px; line-height: 1.06; }
.projects-head p:not(.kicker) { max-width: 710px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.projects-overview { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 18px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.projects-overview > div { min-height: 98px; display: flex; flex-direction: column; justify-content: center; padding: 20px 26px; border-right: 1px solid var(--line-soft); }
.projects-overview > div:last-child { border-right: 0; }
.projects-overview span { color: var(--muted); font-size: 11px; }
.projects-overview b { margin-top: 8px; font-size: 26px; }
.projects-surface { overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.projects-toolbar { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 18px 24px; border-bottom: 1px solid var(--line-soft); }
.projects-toolbar h2 { margin-bottom: 6px; font-size: 20px; }
.projects-toolbar p { color: var(--muted); font-size: 12px; }
.project-filters { display: flex; align-items: center; gap: 4px; padding: 4px; border-radius: 7px; background: #ededf0; }
.project-filters button { min-height: 34px; padding: 0 13px; border: 0; border-radius: 5px; background: transparent; color: var(--muted); cursor: pointer; font-size: 12px; font-weight: 650; }
.project-filters button.active { background: #fff; color: var(--ink); box-shadow: 0 1px 3px rgba(0, 0, 0, .1); }
.project-list { display: grid; }
.project-row { min-height: 132px; display: grid; grid-template-columns: minmax(230px, 1.2fr) minmax(190px, .8fr) 135px auto; gap: 24px; align-items: center; padding: 22px 24px; border-bottom: 1px solid var(--line-soft); }
.project-row:last-child { border-bottom: 0; }
.project-identity { min-width: 0; display: flex; align-items: center; gap: 14px; }
.project-source-mark { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 7px; background: #fafafa; color: var(--muted); font: 9px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-weight: 750; }
.project-identity > div { min-width: 0; }
.project-identity h3 { overflow: hidden; margin-bottom: 6px; font-size: 17px; text-overflow: ellipsis; white-space: nowrap; }
.project-identity p { overflow: hidden; color: var(--muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.project-state { min-width: 0; display: grid; gap: 6px; }
.project-state b { font-size: 12px; }
.project-state small { overflow: hidden; color: var(--red); font-size: 10px; line-height: 1.45; text-overflow: ellipsis; white-space: nowrap; }
.project-status { width: max-content; display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 11px; font-weight: 700; }
.project-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--subtle); }
.project-status.running { color: #0059b2; }
.project-status.running i { background: var(--blue); box-shadow: 0 0 0 4px rgba(0, 113, 227, .1); }
.project-status.success { color: var(--green); }
.project-status.success i { background: var(--green); }
.project-status.danger { color: var(--red); }
.project-status.danger i { background: var(--red); }
.project-time { display: grid; gap: 5px; }
.project-time span, .project-time small { color: var(--muted); font-size: 10px; }
.project-time b { font-size: 11px; }
.project-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; }
.project-command { color: var(--blue); font-size: 11px; font-weight: 650; white-space: nowrap; }
.project-command.primary-command { color: var(--green); }
.project-empty { min-height: 420px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 50px; text-align: center; }
.empty-mark { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 50%; background: #eaf4ff; color: var(--blue); font-size: 28px; }
.project-empty h2 { margin-bottom: 10px; font-size: 24px; }
.project-empty p { max-width: 480px; margin-bottom: 24px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.filter-empty { min-height: 180px; display: grid; place-items: center; color: var(--muted); font-size: 13px; }
.filter-empty.error { color: var(--red); }

@media (max-width: 1000px) {
  .project-row { grid-template-columns: 1fr 1fr auto; }
  .project-time { display: none; }
}

.admin-form-stack { display: grid; gap: 10px; }
.admin-form-stack .btn { justify-self: start; margin-top: 8px; }
.code-output { min-height: 112px; margin-top: 8px; }
.admin-channel-form { display: grid; grid-template-columns: 1.4fr .6fr; gap: 16px; align-items: end; }
.admin-channel-form > div { display: grid; gap: 7px; }
.admin-channel-form .wide-field { grid-column: 1 / -1; }
.admin-channel-form .btn { justify-self: start; }

.entitlement-offer h2 { font-size: 42px; line-height: 1.1; }

@media (max-width: 1080px) {
  .auth-layout { grid-template-columns: minmax(0, 1fr) 440px; gap: 54px; }
  .auth-context h1 { font-size: 50px; }
  .account-metrics > div { padding-inline: 18px; }
  .duration-heading { grid-template-columns: 1fr 340px; gap: 48px; }
}

/* Commercial customer experience */
body.site { min-width: 1080px; }
.shell { width: min(1180px, calc(100% - 64px)); }
.topbar {
  height: 60px;
  border-color: #e7e8eb;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: none;
}
.nav { height: 60px; }
.brand { font-size: 14px; letter-spacing: 0; }
.brand-mark { width: 26px; height: 26px; border-radius: 6px; background: #111827; }
.nav-group { height: 60px; gap: 38px; }
.nav-group a, .nav-login { color: #4b5563; font-size: 13px; }
.nav-group a[aria-current="page"]::after { height: 2px; background: #111827; }
.nav-actions { min-width: 196px; gap: 18px; }
.nav-cta { min-height: 34px !important; padding-inline: 15px !important; }
.btn { border-radius: 7px; box-shadow: none; }
.btn.primary { background: #1167d8; border-color: #1167d8; }
.btn.primary:hover { background: #0d59bd; border-color: #0d59bd; }
.quiet-button { border-color: #cfd3da; background: transparent; }
.product-label {
  color: #536071;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}
.product-label.light { color: #9aa5b5; }

.commercial-hero {
  min-height: calc(100vh - 120px);
  overflow: hidden;
  padding: 58px 0 0;
  border-bottom: 1px solid #e5e7eb;
  background: #f7f8fa;
}
.commercial-hero-copy { text-align: center; }
.commercial-hero-copy h1 {
  margin: 16px 0 22px;
  color: #101318;
  font-size: 68px;
  line-height: 1.03;
  font-weight: 760;
}
.commercial-lead {
  max-width: 720px;
  margin: 0 auto;
  color: #5d6470;
  font-size: 19px;
  line-height: 1.65;
}
.commercial-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.hero-assurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  color: #6b7280;
  font-size: 12px;
}
.hero-assurance span { display: inline-flex; align-items: center; gap: 8px; }
.hero-assurance span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #21a366;
}
.product-stage {
  overflow: hidden;
  margin-top: 42px;
  border: 1px solid #d9dde4;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #fff;
  box-shadow: 0 24px 72px rgba(25, 36, 56, .12);
}
.product-stage-bar {
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid #e6e8ec;
  background: #f6f7f9;
  color: #687180;
  font-size: 11px;
}
.product-stage-bar > b { justify-self: end; color: #33825a; font-size: 10px; }
.stage-window { display: flex; gap: 6px; }
.stage-window i { width: 8px; height: 8px; border: 1px solid #bbc0c9; border-radius: 50%; background: #fff; }
.source-command {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 14px;
  width: calc(100% - 64px);
  min-height: 66px;
  margin: 22px auto 0;
  padding: 10px 12px;
  border: 1px solid #d9dde4;
  border-radius: 7px;
}
.source-badge {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #111827;
  color: #fff;
  font: 700 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}
.source-command small, .source-command b { display: block; }
.source-command small { margin-bottom: 4px; color: #8a919c; font-size: 10px; }
.source-command b { color: #232832; font: 600 13px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace; }
.source-command button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: #1167d8;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.build-pipeline {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 24px 34px;
}
.pipeline-step { display: flex; align-items: center; gap: 10px; color: #8a919d; white-space: nowrap; }
.pipeline-step > i {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid #cfd3da;
  border-radius: 50%;
  color: #7a828f;
  font-size: 10px;
  font-style: normal;
  font-weight: 750;
}
.pipeline-step b, .pipeline-step small { display: block; }
.pipeline-step b { margin-bottom: 4px; font-size: 11px; }
.pipeline-step small { color: #9aa1ab; font-size: 9px; }
.pipeline-step.is-done, .pipeline-step.is-active { color: #1f2937; }
.pipeline-step.is-done > i { border-color: #21a366; background: #21a366; color: #fff; }
.pipeline-step.is-active > i { border-color: #1167d8; color: #1167d8; }
.pipeline-line { height: 2px; overflow: hidden; background: #e3e6ea; }
.pipeline-line i { display: block; width: 100%; height: 100%; background: #21a366; }
.pipeline-line.is-active i { transform: scaleX(.15); background: #1167d8; }
.stage-result {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 34px;
  border-top: 1px solid #e6e8ec;
  background: #fbfcfd;
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #21a366; box-shadow: 0 0 0 4px rgba(33, 163, 102, .12); }
.stage-result small, .stage-result b { display: block; }
.stage-result small { margin-bottom: 4px; color: #8a919c; font-size: 9px; }
.stage-result b { color: #28303c; font: 600 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.result-status { color: #237a50; font-size: 11px; font-weight: 750; }

.commercial-flow { padding: 110px 0; background: #fff; }
.section-heading { text-align: center; }
.section-heading h2 {
  margin: 14px 0 0;
  color: #111318;
  font-size: 46px;
  line-height: 1.12;
}
.section-heading > p:last-child { max-width: 700px; margin: 18px auto 0; color: #66707e; line-height: 1.7; }
.flow-steps { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 56px; border-top: 1px solid #d9dde4; }
.flow-steps article { min-height: 190px; padding: 30px 32px; border-right: 1px solid #e4e7eb; }
.flow-steps article:last-child { border-right: 0; }
.flow-steps span { color: #1167d8; font: 700 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.flow-steps h3 { margin: 26px 0 12px; font-size: 21px; }
.flow-steps p { color: #697381; font-size: 14px; line-height: 1.7; }

.commercial-capability { padding: 112px 0; background: #111720; color: #fff; }
.capability-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 94px; align-items: center; }
.capability-copy h2 { margin: 16px 0 22px; max-width: 510px; font-size: 45px; line-height: 1.14; }
.capability-copy > p:not(.product-label) { max-width: 520px; color: #aeb7c4; font-size: 16px; line-height: 1.8; }
.capability-copy .text-link { margin-top: 26px; color: #64a9ff; font-size: 14px; }
.architecture-board { padding: 22px; border: 1px solid #303a48; border-radius: 8px; background: #171f2a; }
.architecture-title { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid #303a48; }
.architecture-title span { color: #8793a3; font-size: 11px; }
.architecture-title b { font-size: 11px; }
.architecture-service {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 12px;
  border: 1px solid #303a48;
  border-radius: 7px;
  background: #111720;
}
.architecture-service > span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 6px; background: #273140; color: #aeb9c8; font-size: 9px; font-weight: 800; }
.architecture-service b, .architecture-service small { display: block; }
.architecture-service b { margin-bottom: 5px; font-size: 12px; }
.architecture-service small { color: #8490a0; font-size: 10px; }
.architecture-service > i { color: #59c58a; font-size: 10px; font-style: normal; font-weight: 700; }
.public-service { margin-top: 18px; border-color: #2f6fbf; }
.public-service > span { background: #145dad; color: #fff; }
.service-connector { width: 1px; height: 18px; margin: 0 auto; background: #425064; }
.private-services { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.architecture-note { margin-top: 16px; color: #7e8a9b; font-size: 10px; text-align: center; }

.commercial-trust { padding: 106px 0; background: #f7f8fa; }
.trust-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.trust-heading h2 { margin-top: 14px; font-size: 42px; }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 48px; border: 1px solid #dce0e6; border-radius: 8px; background: #fff; }
.trust-grid article { min-height: 170px; padding: 24px 22px; border-right: 1px solid #e4e7eb; }
.trust-grid article:last-child { border-right: 0; }
.trust-grid b { color: #1167d8; font: 700 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; }
.trust-grid span { display: block; margin: 28px 0 10px; color: #1f2630; font-size: 14px; font-weight: 750; }
.trust-grid p { color: #737d8b; font-size: 12px; line-height: 1.6; }
.commercial-final { padding: 112px 0; background: #0d1117; color: #fff; text-align: center; }
.commercial-final h2 { max-width: 850px; margin: 16px auto 20px; font-size: 50px; line-height: 1.12; }
.commercial-final p:not(.product-label) { max-width: 690px; margin: 0 auto 30px; color: #aeb7c4; font-size: 16px; line-height: 1.7; }

/* Commercial hosting */
.hosting-product-hero { padding: 96px 0 104px; border-bottom: 1px solid #e2e5e9; background: #f7f8fa; text-align: center; }
.hosting-product-hero h1 { margin: 16px 0 24px; color: #111318; font-size: 66px; line-height: 1.06; }
.hosting-product-hero > .shell > p:not(.product-label) { max-width: 720px; margin: 0 auto; color: #626c79; font-size: 18px; line-height: 1.7; }
.hosting-control-preview { padding: 112px 0; background: #fff; }
.hosting-control-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.hosting-value h2 { margin: 15px 0 20px; font-size: 44px; line-height: 1.14; }
.hosting-value > p:not(.product-label) { color: #66707e; font-size: 15px; line-height: 1.75; }
.hosting-value ul { padding: 0; margin: 32px 0 0; border-top: 1px solid #e1e4e8; list-style: none; }
.hosting-value li { display: flex; justify-content: space-between; gap: 24px; padding: 17px 0; border-bottom: 1px solid #e1e4e8; font-size: 12px; }
.hosting-value li span { color: #7a8492; }
.hosting-value li b { color: #242b35; }
.hosting-status-panel { overflow: hidden; border: 1px solid #d9dde4; border-radius: 8px; background: #fff; box-shadow: 0 24px 64px rgba(24, 35, 54, .1); }
.hosting-status-head { min-height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; border-bottom: 1px solid #e4e7eb; background: #f8f9fa; }
.hosting-status-head > div { display: flex; align-items: center; gap: 12px; }
.hosting-status-head b { font-size: 14px; }
.hosting-status-head small { color: #808896; font-size: 10px; }
.hosting-url { display: grid; grid-template-columns: 1fr auto; gap: 7px; padding: 24px 22px; border-bottom: 1px solid #e4e7eb; }
.hosting-url span { grid-column: 1 / -1; color: #818a97; font-size: 10px; }
.hosting-url b { color: #27303c; font: 600 13px/36px ui-monospace, SFMono-Regular, Menlo, monospace; }
.hosting-url button, .hosting-actions button {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid #d3d7de;
  border-radius: 6px;
  background: #fff;
  color: #303844;
  font-size: 11px;
  font-weight: 650;
}
.hosting-stats { display: grid; grid-template-columns: repeat(3, 1fr); padding: 22px; }
.hosting-stats div { padding: 0 18px; border-right: 1px solid #e4e7eb; }
.hosting-stats div:first-child { padding-left: 0; }
.hosting-stats div:last-child { border: 0; }
.hosting-stats span, .hosting-stats b { display: block; }
.hosting-stats span { margin-bottom: 8px; color: #818a97; font-size: 9px; }
.hosting-stats b { font-size: 12px; }
.hosting-actions { display: flex; justify-content: flex-end; gap: 8px; padding: 14px 22px; border-top: 1px solid #e4e7eb; background: #f8f9fa; }
.hosting-support { padding: 110px 0; background: #f7f8fa; }
.support-table { margin-top: 50px; border: 1px solid #d9dde4; border-radius: 8px; background: #fff; }
.support-row { min-height: 72px; display: grid; grid-template-columns: 240px 1fr auto; align-items: center; gap: 28px; padding: 0 24px; border-bottom: 1px solid #e4e7eb; }
.support-row:last-child { border: 0; }
.support-row b { font-size: 14px; }
.support-row span { color: #6e7886; font-size: 13px; }
.support-row i { color: #237a50; font-size: 11px; font-style: normal; font-weight: 750; }
.support-boundary { display: grid; grid-template-columns: auto 1fr 1fr 1fr; gap: 22px; margin-top: 18px; padding: 20px 24px; border: 1px solid #e0d2ad; border-radius: 7px; background: #fffcf2; }
.support-boundary b { color: #765b13; font-size: 11px; }
.support-boundary span { color: #766c50; font-size: 10px; line-height: 1.5; }
.hosting-safety { padding: 112px 0; background: #111720; color: #fff; }
.hosting-safety-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.hosting-safety h2 { max-width: 480px; margin-top: 16px; font-size: 44px; line-height: 1.16; }
.safety-list { border-top: 1px solid #344050; }
.safety-list article { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid #344050; }
.safety-list article > span { color: #64a9ff; font: 700 10px/1.5 ui-monospace, SFMono-Regular, Menlo, monospace; }
.safety-list b { font-size: 14px; }
.safety-list p { margin-top: 8px; color: #9da8b7; font-size: 12px; line-height: 1.65; }
.hosting-start { padding: 92px 0; background: #fff; }
.hosting-start > .shell { display: flex; align-items: flex-end; justify-content: space-between; gap: 70px; }
.hosting-start h2 { margin: 14px 0 14px; font-size: 38px; }
.hosting-start p:not(.product-label) { max-width: 720px; color: #687280; font-size: 14px; line-height: 1.7; }
.hosting-start > .shell > div:last-child { display: flex; align-items: center; gap: 20px; flex: 0 0 auto; }
.hosting-start .text-link { font-size: 13px; }

/* Commercial product surfaces */
.workspace, .projects-main, .account-main { background: #f5f6f8; }
.workspace { padding-top: 52px; }
.workspace-head { align-items: center; margin-bottom: 26px; }
.workspace-head h1 { margin: 7px 0 8px; font-size: 38px; }
.workspace-head > div > p:last-child { font-size: 14px; }
.panel, .projects-overview, .projects-surface, .account-identity-band, .account-metrics,
.account-tool, .points-redeem-section, .account-rules, .account-data-controls,
.auth-surface { border-radius: 8px; box-shadow: none; }
.panel { border-color: #daddE3; }
.workspace-steps { border-color: #daddE3; border-radius: 8px; background: #fff; }
.projects-main, .account-main { padding-top: 58px; }
.projects-head h1, .account-page-head h1 { font-size: 42px; }
.projects-head, .account-page-head { margin-bottom: 30px; }
.auth-main { background: #f5f6f8; }
.auth-layout { gap: 84px; }
.auth-context h1 { font-size: 50px; line-height: 1.08; }
.auth-main { padding: 52px 0 70px; }
.auth-surface { padding: 28px 36px; border: 1px solid #daddE3; }
.auth-tabs { margin-bottom: 22px; }
.auth-surface form { gap: 12px; margin-top: 20px; }
.auth-surface form > div:not(.auth-message) { gap: 6px; }
.auth-message { min-height: 18px; }
.optional-register-field summary { padding-top: 8px; }
.auth-legal { margin-top: 14px; }
.auth-recovery-note { margin-top: 8px; color: #7a5b13; font-size: 11px; line-height: 1.6; }
.site-footer { background: #f3f4f6; }
