:root {
  --bg: #070813;
  --bg-2: #0d1020;
  --panel: rgba(18, 14, 31, 0.78);
  --panel-2: rgba(13, 15, 27, 0.92);
  --line: rgba(179, 164, 226, 0.18);
  --line-strong: rgba(179, 164, 226, 0.34);
  --text: #f7f5ff;
  --muted: #aaa3b8;
  --soft: #756d82;
  --violet: #a985ff;
  --cyan: #55dce9;
  --teal: #3eb9c8;
  --white: #f3f1f7;
  --shadow: 0 36px 120px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, rgba(117, 63, 170, 0.28), transparent 30%),
    radial-gradient(circle at 94% 22%, rgba(47, 114, 140, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(19, 10, 31, 0.96), rgba(4, 8, 16, 0.96)),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.42));
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

button:focus {
  outline: none;
}

button:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(85, 220, 233, 0.78);
  outline-offset: 3px;
}

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 88px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 0 48px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 19, 0.72);
  backdrop-filter: blur(18px);
}

.brand-link,
.site-nav button,
.demo-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.brand-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  font-size: 25px;
  font-weight: 760;
}

.brand-glyph {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(135deg, var(--violet), var(--cyan)) border-box;
  border: 2px solid transparent;
  position: relative;
}

.brand-glyph::before,
.brand-glyph::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 21px;
  border: 3px solid transparent;
  border-bottom-color: var(--cyan);
  border-left-color: var(--violet);
  border-radius: 0 0 10px 10px;
}

.brand-glyph::before {
  left: 8px;
}

.brand-glyph::after {
  right: 8px;
  transform: rotate(180deg);
  border-left-color: var(--cyan);
  border-bottom-color: var(--violet);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 54px);
  color: var(--muted);
  font-size: 21px;
  white-space: nowrap;
}

.site-nav button {
  color: var(--muted);
  padding: 10px 0;
}

.site-nav button:hover {
  color: var(--text);
}

.demo-button {
  justify-self: end;
  color: #161520;
  background: var(--white);
  border-radius: 999px;
  padding: 16px 28px;
  font-size: 20px;
  font-weight: 650;
}

.view {
  animation: viewIn 180ms ease-out;
}

@keyframes viewIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section {
  min-height: calc(100vh - 88px);
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 112px) clamp(28px, 5vw, 72px) clamp(56px, 7vw, 100px);
}

.network-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(108, 74, 180, 0.08), transparent 46%),
    linear-gradient(300deg, rgba(70, 179, 199, 0.1), transparent 42%);
}

.network-field::before {
  content: "";
  position: absolute;
  inset: 16% 12% 8% 18%;
  opacity: 0.35;
  background:
    linear-gradient(28deg, transparent 0 46%, rgba(85, 220, 233, 0.24) 46.2% 46.5%, transparent 46.7%),
    linear-gradient(145deg, transparent 0 52%, rgba(169, 133, 255, 0.2) 52.2% 52.5%, transparent 52.7%),
    linear-gradient(92deg, transparent 0 60%, rgba(85, 220, 233, 0.18) 60.2% 60.5%, transparent 60.7%);
}

.node {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(85, 220, 233, 0.48);
  opacity: 0.78;
}

.n1 { top: 18%; left: 39%; }
.n2 { top: 28%; left: 50%; }
.n3 { top: 36%; left: 74%; width: 10px; height: 10px; }
.n4 { top: 52%; left: 68%; }
.n5 { top: 63%; left: 90%; width: 10px; height: 10px; }
.n6 { top: 78%; left: 52%; }
.n7 { top: 83%; left: 74%; }
.n8 { top: 42%; left: 94%; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.announce-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  padding: 10px 18px;
  font-size: 19px;
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.03);
}

.announce-pill span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--violet);
  box-shadow: 0 0 16px rgba(169, 133, 255, 0.8);
}

.hero-content h1 {
  margin: 58px 0 0;
  max-width: 1000px;
  color: var(--text);
  font-size: clamp(72px, 8.2vw, 122px);
  line-height: 0.98;
  font-weight: 520;
  letter-spacing: 0;
}

.hero-content h1 span {
  color: transparent;
  background: linear-gradient(92deg, var(--violet), #8fb9ff 46%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
}

.hero-content p {
  max-width: 960px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 52px;
}

.light-button,
.dark-button {
  min-height: 58px;
  border-radius: 999px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
}

.light-button {
  border: 1px solid transparent;
  color: #15131f;
  background: var(--white);
}

.dark-button {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.light-button.small,
.dark-button.small {
  min-height: 46px;
  padding: 0 22px;
  font-size: 16px;
}

.light-button.wide {
  width: 100%;
}

.light-button:disabled {
  cursor: not-allowed;
  color: #dbd7e5;
  background: rgba(255, 255, 255, 0.12);
}

.surface-section {
  min-height: 100vh;
  padding: 104px clamp(28px, 5vw, 72px) 82px;
  position: relative;
}

.surface-kicker {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 64px;
  color: var(--soft);
  font-size: 19px;
  letter-spacing: 0.08em;
}

.surface-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
}

.surface-card {
  min-height: 690px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(13, 9, 23, 0.86);
  padding: clamp(32px, 4vw, 66px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sdlc-card {
  border-color: rgba(169, 133, 255, 0.64);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(85, 220, 233, 0.2);
}

.insights-card {
  border-color: rgba(255, 255, 255, 0.1);
}

.card-arrow {
  position: absolute;
  right: 52px;
  top: 56px;
  color: var(--soft);
  font-size: 32px;
}

.card-index {
  margin: 0 0 42px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-index.violet {
  color: var(--violet);
}

.card-index.cyan {
  color: var(--cyan);
}

.surface-card h2 {
  margin: 0;
  max-width: 760px;
  color: var(--text);
  font-size: clamp(48px, 5vw, 78px);
  line-height: 1.04;
  font-weight: 500;
}

.surface-card > p:not(.card-index) {
  max-width: 780px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.45;
}

.role-stack {
  position: relative;
  width: min(560px, 100%);
  height: 250px;
  margin-top: 54px;
}

.role-stack span,
.role-stack strong,
.role-stack em {
  position: absolute;
  min-width: 170px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 13px 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
  font-size: 19px;
  font-style: normal;
}

.role-stack span:nth-child(1) { top: 0; left: 52px; }
.role-stack span:nth-child(2) { top: 62px; left: 52px; }
.role-stack span:nth-child(3) { top: 124px; left: 52px; }
.role-stack span:nth-child(4) { top: 186px; left: 52px; }
.role-stack strong {
  right: 0;
  top: 92px;
  color: var(--text);
  border-color: rgba(169, 133, 255, 0.7);
}
.role-stack strong::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 14px;
  border-radius: 99px;
  background: var(--teal);
}
.role-stack em {
  right: 0;
  top: 174px;
}

.floating-stack {
  position: relative;
  height: 250px;
  margin-top: 90px;
}

.floating-stack span {
  position: absolute;
  left: 16%;
  right: 8%;
  height: 74px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--line-strong);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  transform: rotate(-7deg);
  font-size: 21px;
  font-weight: 720;
}

.floating-stack span:nth-child(1) {
  top: 14px;
  background: rgba(159, 100, 40, 0.33);
}

.floating-stack span:nth-child(2) {
  top: 60px;
  border-color: rgba(85, 220, 233, 0.45);
  background: rgba(54, 96, 95, 0.42);
}

.floating-stack span:nth-child(3) {
  top: 106px;
  border-color: rgba(169, 133, 255, 0.62);
  background: rgba(70, 48, 116, 0.62);
}

.surface-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.tag-row {
  position: absolute;
  left: clamp(32px, 4vw, 66px);
  right: clamp(32px, 4vw, 66px);
  bottom: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  z-index: 2;
}

.tag-row span,
.tag-row button {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  padding: 10px 18px;
  font-size: 16px;
}

.tag-row button {
  min-height: 42px;
  color: var(--text);
  cursor: pointer;
}

.workflow-shell {
  padding: 42px clamp(28px, 5vw, 72px) 80px;
}

.workflow-header,
.coming-panel,
.launch-panel,
.status-panel,
.pipeline-panel,
.log-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.workflow-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 28px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--cyan);
  font-weight: 850;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-header h1,
.coming-panel h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(36px, 5vw, 78px);
  line-height: 1;
  font-weight: 520;
}

.model-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.model-strip span,
.pill,
.status-badge {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 999px;
  color: var(--muted);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.status-badge {
  color: var(--cyan);
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(340px, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.finance-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(460px, 1.25fr);
  gap: 22px;
  align-items: stretch;
}

.launch-panel,
.status-panel,
.pipeline-panel,
.log-panel {
  padding: 24px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field span,
.toggle span:last-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 740;
}

.field input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(4, 5, 14, 0.78);
  color: var(--text);
  padding: 10px 14px;
  outline: none;
}

.field input::placeholder {
  color: #766f82;
}

.field input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(85, 220, 233, 0.12);
}

.upload-zone {
  position: relative;
  margin-bottom: 14px;
}

.upload-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-zone label {
  min-height: 168px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 24px;
  border: 1px dashed rgba(85, 220, 233, 0.48);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(169, 133, 255, 0.12), rgba(85, 220, 233, 0.07)),
    rgba(4, 5, 14, 0.62);
  color: var(--text);
  text-align: center;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.upload-zone label:hover,
.upload-zone.dragging label {
  border-color: var(--cyan);
  background:
    linear-gradient(135deg, rgba(169, 133, 255, 0.18), rgba(85, 220, 233, 0.13)),
    rgba(4, 5, 14, 0.72);
  transform: translateY(-1px);
}

.upload-zone input:focus-visible + label {
  outline: 2px solid rgba(85, 220, 233, 0.78);
  outline-offset: 3px;
}

.upload-zone strong {
  font-size: 19px;
}

.upload-zone em {
  max-width: 320px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}

.upload-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(85, 220, 233, 0.45);
  border-radius: 16px;
  color: var(--cyan);
  background: rgba(85, 220, 233, 0.08);
}

.selected-files {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 16px;
  padding: 11px 13px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  line-height: 1.35;
}

.selected-files strong {
  color: var(--text);
}

.field.compact {
  max-width: 160px;
  margin-bottom: 0;
}

.control-row {
  display: flex;
  align-items: end;
  gap: 18px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
}

.toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-track {
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: #4f4861;
  position: relative;
  transition: background 160ms ease;
}

.toggle-track::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 3px;
  left: 3px;
  border-radius: 50%;
  background: #edeaf4;
  transition: transform 160ms ease;
}

.toggle input:checked + .toggle-track {
  background: linear-gradient(135deg, var(--violet), var(--cyan));
}

.toggle input:checked + .toggle-track::after {
  transform: translateX(20px);
}

.form-note {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.progress-shell {
  width: 100%;
  height: 11px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  overflow: hidden;
}

.progress-value {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  border-radius: 999px;
  transition: width 260ms ease;
}

.stage-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 14px 0 18px;
  color: var(--muted);
}

.stage-line strong {
  color: var(--text);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric {
  min-height: 84px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}

.metric strong {
  color: var(--text);
  font-size: 20px;
}

.download-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.pipeline-panel,
.log-panel {
  margin-top: 22px;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.pipeline-step {
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  display: grid;
  align-content: space-between;
  background: rgba(255, 255, 255, 0.035);
  position: relative;
  overflow: hidden;
}

.pipeline-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
}

.pipeline-step span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.pipeline-step strong {
  color: var(--text);
  font-size: 14px;
  line-height: 1.25;
}

.pipeline-step.done,
.pipeline-step.active {
  border-color: rgba(85, 220, 233, 0.52);
  background: rgba(85, 220, 233, 0.08);
}

.log-list {
  display: grid;
  gap: 8px;
  max-height: 340px;
  overflow: auto;
}

.finance-insights {
  min-height: 360px;
  max-height: 560px;
  overflow: auto;
  color: var(--muted);
  line-height: 1.55;
}

.finance-insights h3 {
  margin: 20px 0 8px;
  color: var(--text);
  font-size: 18px;
}

.finance-insights h3:first-child {
  margin-top: 0;
}

.finance-insights ul {
  margin: 0 0 16px 20px;
  padding: 0;
}

.finance-insights li {
  margin: 7px 0;
}

.finance-chat-panel {
  display: grid;
  gap: 14px;
}

.chat-list {
  display: grid;
  gap: 10px;
  max-height: 380px;
  overflow: auto;
}

.chat-message {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  padding: 13px 15px;
}

.chat-message.user {
  border-color: rgba(169, 133, 255, 0.45);
  background: rgba(169, 133, 255, 0.08);
}

.chat-message.assistant {
  border-color: rgba(85, 220, 233, 0.34);
  background: rgba(85, 220, 233, 0.06);
}

.chat-message span {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.chat-message div {
  color: var(--muted);
  line-height: 1.45;
}

.chat-message h3 {
  margin: 10px 0 6px;
  color: var(--text);
  font-size: 15px;
}

.chat-message ul {
  margin: 0 0 10px 18px;
  padding: 0;
}

.chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.chat-form input {
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(4, 5, 14, 0.78);
  color: var(--text);
  padding: 0 18px;
  outline: none;
}

.chat-form input:disabled {
  color: var(--soft);
  opacity: 0.7;
}

.log-item,
.empty-log {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  padding: 12px 14px;
}

.log-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
}

.log-message {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.log-item.error {
  border-color: rgba(255, 111, 90, 0.5);
  background: rgba(255, 111, 90, 0.1);
}

.log-item.warning {
  border-color: rgba(255, 191, 96, 0.5);
  background: rgba(255, 191, 96, 0.1);
}

.log-item.success {
  border-color: rgba(85, 220, 233, 0.52);
  background: rgba(85, 220, 233, 0.08);
}

.icon-button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.coming-view {
  min-height: calc(100vh - 88px);
  padding: 42px clamp(28px, 5vw, 72px) 80px;
}

.coming-panel {
  min-height: 560px;
  display: grid;
  align-content: center;
  padding: clamp(32px, 6vw, 86px);
}

.coming-panel p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 28px;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr;
    height: auto;
    gap: 16px;
    padding: 18px 24px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    gap: 28px;
    font-size: 18px;
  }

  .demo-button {
    justify-self: start;
    font-size: 17px;
    padding: 12px 20px;
  }

  .surface-grid,
  .work-grid,
  .finance-grid {
    grid-template-columns: 1fr;
  }

  .hero-footer,
  .surface-kicker {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .hero-section {
    min-height: auto;
    padding: 44px 20px 28px;
  }

  .announce-pill {
    font-size: 14px;
  }

  .hero-content h1 {
    margin-top: 42px;
    font-size: 56px;
  }

  .hero-content p {
    margin-top: 34px;
    font-size: 21px;
  }

  .hero-actions,
  .surface-actions {
    flex-direction: column;
  }

  .light-button,
  .dark-button {
    width: 100%;
  }

  .hero-footer {
    position: static;
    margin-top: 58px;
  }

  .surface-section {
    padding: 58px 20px;
  }

  .surface-card {
    min-height: 680px;
    padding: 28px;
    border-radius: 24px;
  }

  .surface-card h2 {
    font-size: 42px;
  }

  .surface-card > p:not(.card-index) {
    font-size: 20px;
  }

  .role-stack {
    transform: scale(0.82);
    transform-origin: left top;
  }

  .floating-stack span {
    left: 0;
    right: 0;
  }

  .tag-row {
    left: 28px;
    right: 28px;
  }

  .workflow-shell,
  .coming-view {
    padding: 24px 20px 56px;
  }

  .workflow-header {
    flex-direction: column;
  }

  .metrics,
  .pipeline,
  .chat-form {
    grid-template-columns: 1fr;
  }
}
