:root {
  --bg: #050915;
  --bg-2: #07111f;
  --panel: #0a1426;
  --panel-2: #0e1b31;
  --text: #f7f9ff;
  --muted: #aeb9cc;
  --blue: #2f67ff;
  --blue-2: #6ea1ff;
  --green: #22c66b;
  --line: rgba(255, 255, 255, .14);
  --dark-line: rgba(9, 17, 31, .12);
  --white: #ffffff;
  --ink: #0a1020;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f7fb;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(22px, 4vw, 64px);
  color: var(--text);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 9px;
  color: #080d18;
  background: #fff;
  font-weight: 900;
  font-size: 16px;
}
.brand strong { display: block; font-size: 21px; line-height: 1; }
.brand small { display: block; margin-top: 4px; color: #d6def0; font-size: 13px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.header-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 25px;
  border-radius: 7px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
  box-shadow: 0 14px 38px rgba(47, 103, 255, .38);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(520px, 1.14fr);
  gap: 32px;
  min-height: 680px;
  overflow: hidden;
  padding: 118px clamp(22px, 4vw, 64px) 54px;
  color: var(--text);
  background: #030713;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(47, 103, 255, .08);
}
.hero-copy,
.hero-product {
  position: relative;
  z-index: 1;
}
.hero-copy {
  align-self: center;
  max-width: 650px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.eyebrow.center { text-align: center; }
h1, h2, h3, h4, p { margin-top: 0; }
h1 {
  margin-bottom: 25px;
  font-size: clamp(52px, 6vw, 86px);
  line-height: .96;
  letter-spacing: 0;
}
h1 span { color: var(--blue); }
.hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 32px;
  color: #d8e0ef;
  font-size: 18px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 900;
}
.primary-action {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 16px 42px rgba(47, 103, 255, .35);
}
.secondary-action {
  border: 1px solid rgba(255, 255, 255, .34);
  color: #fff;
  background: rgba(255, 255, 255, .04);
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}
.hero-points article {
  display: grid;
  gap: 7px;
  min-width: 0;
}
.hero-points span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid rgba(115, 160, 255, .75);
  border-radius: 50%;
  color: var(--blue-2);
  font-size: 10px;
}
.hero-points strong { color: #fff; font-size: 13px; }
.hero-points small { color: #bfcbdd; line-height: 1.45; }

.hero-product {
  display: grid;
  align-items: center;
  min-width: 0;
}
.interactive-preview {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 22px;
  background: #f5f7fb;
  box-shadow: 0 38px 110px rgba(0, 0, 0, .48);
  transform: none;
}
.preview-rail {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px 14px;
  border-right: 1px solid #dce2eb;
  background: #f8fafc;
  color: #101827;
}
.preview-logo {
  display: grid;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid #dce2eb;
}
.preview-logo span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, .12);
  font-size: 12px;
  font-weight: 950;
}
.preview-logo strong { font-size: 12px; }
.preview-logo small,
.preview-field small,
.next-card small {
  color: #64748b;
  font-size: 10px;
}
.preview-field {
  display: grid;
  gap: 5px;
}
.preview-field span {
  min-height: 30px;
  padding: 8px 9px;
  border: 1px solid #d6dde8;
  border-radius: 7px;
  background: #fff;
  font-size: 11px;
}
.preview-checks {
  display: grid;
  gap: 9px;
  font-size: 10px;
  color: #334155;
}
.preview-checks span {
  position: relative;
  padding-left: 16px;
}
.preview-checks span::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #2f67ff;
}
.preview-rail button,
.preview-header button,
.preview-row button,
.next-card button {
  min-height: 30px;
  border: 1px solid #d7dde7;
  border-radius: 7px;
  background: #fff;
  color: #111827;
  font-size: 10px;
  font-weight: 900;
}
.preview-rail button:last-child,
.next-card button {
  border-color: #111827;
  background: #111827;
  color: #fff;
}
.preview-workspace {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 18px;
  color: #111827;
}
.preview-header,
.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.preview-header h3 {
  margin: 0 0 2px;
  font-size: 20px;
  line-height: 1.05;
}
.preview-header p {
  margin: 0;
  color: #64748b;
  font-size: 11px;
}
.preview-header button {
  padding: 0 12px;
}
.preview-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  padding: 5px;
  border: 1px solid #d9e0eb;
  border-radius: 14px;
  background: #fff;
}
.preview-nav button {
  min-height: 36px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #111827;
  font-size: 11px;
  font-weight: 950;
  cursor: pointer;
}
.preview-nav button.is-active {
  background: #050914;
  color: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .24);
}
.preview-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 9px;
  border: 1px solid #d9e0eb;
  border-radius: 12px;
  background: #fff;
}
.preview-pills button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 12px;
  border: 1px solid #d9e0eb;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}
.preview-pills button.is-active {
  border-color: #050914;
  background: #050914;
  color: #fff;
}
.preview-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.preview-stats article,
.preview-panel {
  border: 1px solid #d9e0eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
}
.preview-stats article {
  padding: 14px;
}
.preview-stats strong {
  display: block;
  font-size: 22px;
  line-height: 1;
}
.preview-stats small {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-size: 11px;
}
.preview-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 12px;
}
.preview-panel {
  padding: 15px;
}
.panel-title strong,
.next-card strong {
  font-size: 13px;
}
.panel-title span {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #dcfce7;
  color: #047857;
  font-size: 10px;
  font-weight: 900;
}
.call-placeholder {
  display: grid;
  min-height: 104px;
  margin: 12px 0;
  place-items: center;
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  color: #64748b;
  font-size: 11px;
}
.mini-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.mini-form label,
.next-card div {
  display: grid;
  gap: 6px;
  min-height: 42px;
  padding: 8px;
  border: 1px solid #d9e0eb;
  border-radius: 7px;
  color: #111827;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}
.mini-form span {
  color: #64748b;
  font-size: 10px;
  font-weight: 500;
  text-transform: none;
}
.next-card {
  display: grid;
  align-content: start;
  gap: 8px;
}
.next-card > span {
  color: #111827;
  font-size: 13px;
  font-weight: 950;
}
.next-card div {
  background: #f8fafc;
}
.table-panel {
  grid-column: 1 / -1;
}
.preview-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(110px, .8fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #d9e0eb;
  border-radius: 10px;
  background: #f8fafc;
}
.preview-row strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.preview-row span {
  color: #64748b;
  font-size: 11px;
}
.product-screenshot {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 18px;
  background: #f8fafc;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .62);
  transform: rotate(1.4deg);
}
.app-preview {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 18px;
  background: #f8fafc;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .62);
  transform: rotate(1.4deg);
}
.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border-right: 1px solid #d8dee8;
  background: #eef2f7;
  color: #111827;
}
.mini-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
}
.mini-brand span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: #111827;
}
.preview-sidebar label {
  color: #64748b;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.mini-input,
.check-line {
  height: 34px;
  border: 1px solid #d7dde7;
  border-radius: 5px;
  background: #fff;
}
.mini-input.short { width: 80%; }
.check-line { height: 13px; border: 0; background: #dce5f2; }
.preview-sidebar button,
.preview-top button,
.send-button {
  min-height: 32px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: #060a12;
  font-size: 11px;
  font-weight: 900;
}
.preview-main {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  color: #111827;
}
.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.preview-top h3 { margin-bottom: 2px; font-size: 18px; }
.preview-top p { margin: 0; color: #64748b; font-size: 12px; }
.preview-top button { padding: 0 13px; background: #fff; color: #111827; border: 1px solid #d7dde7; }
.preview-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.preview-tabs span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid #d7dde7;
  border-radius: 5px;
  background: #fff;
  font-size: 10px;
  font-weight: 900;
}
.preview-tabs .active { color: #fff; background: #050914; border-color: #050914; }
.preview-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.preview-stats div,
.preview-grid section,
.preview-grid aside {
  border: 1px solid #d7dde7;
  border-radius: 8px;
  background: #fff;
}
.preview-stats div { padding: 13px; }
.preview-stats strong { display: block; font-size: 19px; }
.preview-stats small { color: #64748b; }
.preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 10px;
}
.preview-grid section,
.preview-grid aside { padding: 14px; }
.preview-grid h4 { margin-bottom: 10px; font-size: 13px; }
.call-box {
  display: grid;
  min-height: 90px;
  place-items: center;
  border: 1px dashed #c7d0dd;
  border-radius: 6px;
  color: #64748b;
  font-size: 12px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 12px 0;
}
.form-grid span,
.preview-grid aside div {
  display: block;
  height: 37px;
  border: 1px solid #d7dde7;
  border-radius: 5px;
  background: #f8fafc;
}
.send-button { width: 48%; }
.preview-grid aside strong { display: block; margin-bottom: 4px; font-size: 15px; }
.preview-grid aside p { color: #64748b; font-size: 12px; }
.preview-grid aside div { margin-top: 8px; height: 45px; }

.problem,
.workspace-strip,
.system-row,
.demo-panel,
.pricing {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
}
.problem { padding: 40px 0 30px; }
.problem h2 {
  margin: 0 auto 28px;
  max-width: 720px;
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}
.problem h2 span { color: var(--blue); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.list-card {
  padding: 22px;
  border: 1px solid #dce3ef;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(19, 33, 56, .05);
}
.list-card h3 { font-size: 15px; margin-bottom: 14px; }
.list-card ul,
.workspace-card ul,
.demo-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-card li,
.workspace-card li,
.demo-card li {
  position: relative;
  padding-left: 21px;
  color: #4b5565;
  font-size: 13px;
  line-height: 1.35;
}
.list-card li::before {
  content: "x";
  position: absolute;
  left: 0;
  color: #f04452;
  font-weight: 900;
}
.list-card.positive { border-color: rgba(47, 103, 255, .58); }
.list-card.positive li::before {
  content: "check";
  color: var(--blue);
  font-size: 10px;
}
.tool-orbit {
  position: relative;
  display: grid;
  min-height: 210px;
  place-items: center;
}
.tool-orbit::before,
.tool-orbit::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(47, 103, 255, .25);
  border-radius: 50%;
}
.tool-orbit::before { width: 185px; height: 185px; }
.tool-orbit::after { width: 116px; height: 116px; }
.tool-orbit span {
  position: absolute;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(47, 103, 255, .22);
  font-size: 11px;
  font-weight: 900;
}
.tool-orbit span:nth-child(1) { transform: translate(-70px, -70px); }
.tool-orbit span:nth-child(2) { transform: translate(0, 0); }
.tool-orbit span:nth-child(3) { transform: translate(82px, -24px); }
.tool-orbit span:nth-child(4) { transform: translate(-94px, 18px); background: #f5ba22; }
.tool-orbit span:nth-child(5) { transform: translate(-42px, 83px); }
.tool-orbit span:nth-child(6) { transform: translate(50px, 78px); background: #79a8ff; }

.workspace-strip {
  margin-top: 0;
  padding: 18px 16px 16px;
  border-radius: 12px;
  color: #fff;
  background: #050914;
  box-shadow: 0 18px 46px rgba(5, 9, 20, .22);
}
.section-title { text-align: center; }
.section-title h2 { margin-bottom: 6px; font-size: 24px; }
.section-title p { margin-bottom: 18px; color: #c4cfdf; }
.workspace-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.workspace-card {
  position: relative;
  display: grid;
  min-height: 332px;
  align-content: center;
  overflow: hidden;
  padding: 28px 48% 28px 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}
.admin-card { background: #081a18; }
.card-label {
  margin-bottom: 22px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.admin-card .card-label { color: #38df83; }
.workspace-card h3 { margin-bottom: 18px; font-size: 28px; line-height: 1.08; }
.workspace-card li { color: #eef4ff; }
.workspace-card li::before,
.demo-card li::before {
  content: "check";
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}
.admin-card li::before { color: var(--green); }
.workspace-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  margin-top: 22px;
  padding: 0 18px;
  border-radius: 6px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
}
.admin-card a { background: #17b861; }
.small-preview {
  position: absolute;
  top: 46px;
  right: 18px;
  width: 43%;
  height: 238px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .34);
}
.small-preview::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 6px;
  background:
    linear-gradient(#080d18 0 18px, transparent 18px 28px, #eef2f7 28px 72px, transparent 72px 86px, #eef2f7 86px 130px, transparent 130px),
    repeating-linear-gradient(0deg, transparent 0 40px, #dce3ef 40px 41px);
}
.admin-preview::before {
  background:
    linear-gradient(#fff 0 48px, transparent 48px 62px, #eef2f7 62px 150px, transparent 150px),
    repeating-linear-gradient(90deg, transparent 0 62px, #dce3ef 62px 63px);
}

.system-row {
  display: grid;
  grid-template-columns: 1fr 90px 250px;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 24px 36px;
  border-radius: 10px;
  color: #fff;
  background: #050914;
}
.system-row h2 { margin-bottom: 18px; font-size: 24px; }
.stack-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.stack-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #dbe6fb;
  font-size: 12px;
}
.system-row > strong {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border-radius: 16px;
  background: var(--blue);
  box-shadow: 0 0 38px rgba(47, 103, 255, .65);
  font-size: 32px;
}
.system-row p {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}

.demo-panel {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 18px;
  padding: 38px;
  border-radius: 10px;
  color: #fff;
  background: #07101f;
}
.demo-panel h2 {
  margin-bottom: 16px;
  color: #dfe7f7;
  font-size: 34px;
  line-height: 1.14;
}
.demo-panel p {
  max-width: 420px;
  color: #c1ccdd;
  line-height: 1.55;
}
.demo-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 255px;
  min-height: 230px;
  overflow: hidden;
  border-radius: 9px;
  background: #dfe8f6;
}
.demo-card::before {
  content: "";
  margin: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #d8dee8;
}
.demo-play-button {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  left: 42%;
  top: 50%;
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 18px 40px rgba(47, 103, 255, .36);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transform: translate(-50%, -50%);
}
.demo-card aside {
  display: grid;
  align-content: center;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
}
.demo-card h3 { margin-bottom: 16px; }
.demo-card li { color: #263247; }
.demo-card li::before { color: var(--ink); }
.demo-card strong { margin-top: 14px; font-size: 13px; }

.pricing {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: 28px;
  padding: 54px 0 62px;
}
.pricing h2 { font-size: 32px; }
.pricing-note {
  margin-top: 12px;
  color: #5c6677;
  line-height: 1.55;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pricing-grid article {
  display: grid;
  align-content: start;
  padding: 22px;
  border: 1px solid #dce3ef;
  border-radius: 9px;
  background: #fff;
}
.pricing-grid h3 { margin-bottom: 12px; }
.pricing-grid strong { display: block; margin-bottom: 12px; font-size: 28px; }
.pricing-grid p { margin-bottom: 0; color: #5c6677; line-height: 1.5; }
.pricing-grid .featured-price {
  border-color: rgba(47, 103, 255, .58);
  box-shadow: 0 18px 46px rgba(47, 103, 255, .12);
}
.pricing-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  margin-top: 20px;
  padding: 0 18px;
  border-radius: 7px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(22px, 4vw, 64px);
  color: #aab4c5;
  background: #050914;
}
.site-footer span:first-child { color: #fff; font-weight: 900; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 110px; }
  .product-screenshot { transform: none; }
  .app-preview { transform: none; }
  .interactive-preview { transform: none; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .workspace-grid,
  .demo-panel,
  .pricing { grid-template-columns: 1fr; }
  .system-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    grid-template-columns: 1fr;
    background: #050914;
  }
  .header-action { justify-self: stretch; }
  .hero {
    min-height: auto;
    padding-top: 42px;
  }
  .hero-points,
  .problem-grid,
  .pricing-grid,
  .preview-stats,
  .preview-grid,
  .preview-body { grid-template-columns: 1fr; }
  .interactive-preview { grid-template-columns: 1fr; }
  .preview-rail { display: none; }
  .preview-workspace { padding: 12px; }
  .preview-nav { grid-template-columns: 1fr; }
  .preview-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-form,
  .preview-row { grid-template-columns: 1fr; }
  .app-preview { grid-template-columns: 1fr; }
  .preview-sidebar { display: none; }
  .workspace-card { padding: 24px; }
  .small-preview { position: relative; top: auto; right: auto; width: 100%; margin-top: 20px; }
  .demo-card { grid-template-columns: 1fr; }
  .demo-card::before { min-height: 180px; }
  .demo-play-button { left: 50%; top: 36%; }
  .primary-action,
  .secondary-action { width: 100%; }
  .site-footer { flex-direction: column; }
}
