:root {
  --bg: #ffffff;
  --ink: #111827;
  --muted: #5b6472;
  --soft: #eef3f8;
  --line: #e5eaf0;
  --line-strong: #d3dce8;
  --blue: #0ea5e9;
  --blue-dark: #0284c7;
  --green: var(--blue);
  --amber: #f59e0b;
  --red: #ef4444;
  --panel: #f8fafc;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
  --halftone-blue: rgba(14, 165, 233, 0.24);
  --halftone-ink: rgba(15, 23, 42, 0.12);
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#top,
#workflow,
#product,
#deploy,
#waitlist,
#faq {
  scroll-margin-top: 72px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0, transparent 760px);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px 48px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(229, 234, 240, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  font-size: 18px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--blue), #38bdf8);
  color: #fff;
  font-size: 15px;
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.28);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a,
.footer-links a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--blue-dark);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.22);
}

.section-pad {
  width: min(1110px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 60px;
  align-items: center;
  min-height: 740px;
  padding-top: 68px;
  padding-bottom: 72px;
}

.hero-copy h1,
.section-title h2,
.split h2,
.feature-copy h2,
.audit-card h2 {
  margin: 0;
  color: #0f172a;
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
}

.hero-copy h1 {
  max-width: 690px;
}

.hero-copy p {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.btn.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 15px 30px rgba(14, 165, 233, 0.24);
}

.btn.secondary {
  background: #fff;
  color: #1f2937;
  border: 1px solid var(--line-strong);
}

.hero-visual {
  min-width: 0;
}

.product-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(14, 45, 71, 0.1);
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-shot {
  margin-top: 30px;
}

.detail-shot,
.integration-shot {
  width: min(620px, 100%);
  margin: 0 auto;
}

.browser-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-window {
  transform: translateY(10px);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.dots {
  display: flex;
  gap: 6px;
}

.dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd5e1;
}

.dots span:first-child {
  background: #fb7185;
}

.dots span:nth-child(2) {
  background: #fbbf24;
}

.dots span:nth-child(3) {
  background: #34d399;
}

.window-title {
  overflow: hidden;
  color: #667085;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.window-status {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  font-size: 11px;
  font-weight: 800;
}

.window-status.neutral {
  background: rgba(14, 165, 233, 0.12);
  color: var(--blue-dark);
}

.app-shell {
  display: grid;
  grid-template-columns: 148px 1fr;
  min-height: 420px;
  background: #fff;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 12px;
  border-right: 1px solid var(--line);
  background: #fbfdff;
}

.side-logo {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 9px;
  background: #e0f2fe;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
}

.side-item {
  padding: 9px 10px;
  border-radius: 7px;
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

.side-item.active {
  background: #e0f2fe;
  color: var(--blue-dark);
}

.dashboard {
  padding: 22px;
}

.dash-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.micro {
  display: block;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
}

.dash-head h2 {
  margin: 5px 0 0;
  font-size: 28px;
  line-height: 1.1;
}

.tiny-button,
.task button,
.wide-button {
  border: 0;
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.tiny-button {
  min-height: 32px;
  padding: 0 11px;
  white-space: nowrap;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.score-grid article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fbfdff;
}

.score-grid span,
.score-grid em {
  display: block;
  color: #667085;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.score-grid strong {
  display: block;
  margin: 8px 0 2px;
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
}

.score-grid em {
  color: #16a34a;
}

.task-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.task {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.task > span {
  width: 10px;
  height: 42px;
  border-radius: 999px;
  background: #cbd5e1;
}

.task.high > span {
  background: var(--blue);
}

.task strong {
  display: block;
  font-size: 14px;
}

.task p {
  margin: 4px 0 0;
  color: #667085;
  font-size: 12px;
  line-height: 1.45;
}

.task button {
  min-height: 30px;
  padding: 0 10px;
  background: #eff6ff;
  color: var(--blue-dark);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 26px;
  width: min(930px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0 72px;
  color: #667085;
}

.proof-strip img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.72;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.problem h2,
.feature-copy h2,
.audit-card h2,
.section-title h2 {
  font-size: 44px;
  line-height: 1.08;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.copy-stack p,
.section-title p,
.feature-copy p,
.audit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.center {
  text-align: center;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 36px;
}

.section-title h2 {
  margin: 0;
}

.section-title p {
  margin-top: 14px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  text-align: left;
}

.workflow-grid article,
.collab-grid article {
  min-height: 212px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}

.step-icon {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #e0f2fe;
  position: relative;
}

.step-icon::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 3px solid var(--blue);
  border-radius: 7px;
}

.step-icon.decide::after {
  border-radius: 50%;
}

.step-icon.deploy::after {
  inset: 12px 9px;
  border-radius: 999px;
}

.step-icon.verify::after {
  border-width: 0 3px 3px 0;
  border-radius: 0;
  transform: rotate(45deg);
}

.workflow-grid h3,
.collab-grid h3 {
  margin: 18px 0 0;
  font-size: 20px;
}

.workflow-grid p,
.collab-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 70px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.product-section.reverse {
  grid-template-columns: minmax(430px, 1.1fr) minmax(0, 0.9fr);
}

.feature-copy h2 {
  margin: 0;
}

.feature-copy p {
  margin-top: 17px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #374151;
  font-size: 15px;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #e0f2fe;
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 4px;
  height: 7px;
  border: solid var(--blue);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.detail-window,
.integration-window {
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.1);
}

.action-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(14, 165, 233, 0.05), rgba(255, 255, 255, 0) 52%),
    #fff;
}

.action-top {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.action-top span,
.impact-row span,
.code-preview span {
  display: block;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
}

.action-top strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.18;
}

.impact-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.impact-row div {
  min-height: 74px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.impact-row strong {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.35;
}

.code-preview {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  background: #f0f9ff;
}

.code-preview p {
  margin: 8px 0 0;
  color: #334155;
  font-size: 14px;
  line-height: 1.55;
}

.wide-button {
  width: 100%;
  min-height: 42px;
  margin-top: 16px;
}

.integration-map {
  display: grid;
  grid-template-columns: 1fr 150px 1fr;
  align-items: center;
  gap: 18px;
  padding: 28px;
  min-height: 320px;
  background: #fbfdff;
}

.map-column {
  display: grid;
  gap: 10px;
}

.map-column span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.map-column strong {
  display: block;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.map-core {
  position: relative;
  display: grid;
  place-items: center;
  height: 150px;
}

.map-core::before,
.map-core::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 104px;
  height: 1px;
  background: #bae6fd;
}

.map-core::before {
  right: 112px;
}

.map-core::after {
  left: 112px;
}

.core-mark {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 26px;
  background: linear-gradient(145deg, var(--blue), #38bdf8);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 22px 44px rgba(14, 165, 233, 0.26);
}

.collaboration {
  border-top: 1px solid var(--line);
}

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

.autopilot {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline div {
  position: relative;
  padding: 20px 20px 20px 68px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.timeline div::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 24px;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: #e0f2fe;
  border: 3px solid var(--blue);
}

.timeline span {
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
}

.timeline strong {
  display: block;
  margin-top: 5px;
  font-size: 19px;
}

.timeline p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.audit {
  padding-top: 88px;
  padding-bottom: 88px;
}

.audit-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 48px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0, rgba(14, 165, 233, 0.12), transparent 50%),
    #fff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.audit-card p {
  margin: 16px auto 26px;
  max-width: 590px;
}

.waitlist-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr) auto;
  gap: 12px;
  align-items: end;
  margin: 28px auto 0;
  max-width: 680px;
  text-align: left;
}

.waitlist-form label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
}

.waitlist-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.92);
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.waitlist-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.form-status {
  min-height: 22px;
  margin: 16px auto 0;
  max-width: 590px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-status.success {
  color: #047857;
}

.form-status.error {
  color: #dc2626;
}

.faq {
  padding-top: 70px;
}

.faq-list {
  width: min(840px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
}

.faq-list summary::after {
  content: "+";
  color: var(--blue-dark);
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  width: min(1110px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

@media (prefers-reduced-motion: no-preference) {
  .browser-window,
  .workflow-grid article,
  .collab-grid article,
  .timeline div {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .browser-window:hover,
  .workflow-grid article:hover,
  .collab-grid article:hover,
  .timeline div:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
  }

  .reveal {
    opacity: 0;
    transform: translateY(18px);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 520ms ease, transform 520ms ease;
  }
}

/* Source-aligned long-page layout */
body::before {
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(14, 165, 233, 0.16) 1px, transparent 1.6px),
    radial-gradient(circle, rgba(15, 23, 42, 0.08) 1px, transparent 1.7px);
  background-position:
    0 0,
    7px 9px;
  background-size:
    18px 18px,
    26px 26px;
  opacity: 0.42;
  mask-image:
    linear-gradient(to bottom, #000 0, transparent 720px),
    linear-gradient(to right, transparent 0, #000 18%, #000 82%, transparent 100%);
  mask-composite: intersect;
}

.site-header {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 16px 0 12px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 0;
  grid-template-columns: auto 1fr auto;
}

.brand {
  font-size: 16px;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  font-size: 13px;
}

.main-nav {
  justify-content: center;
  gap: 22px;
  font-size: 12px;
}

.nav-cta {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 6px;
  font-size: 12px;
}

.section-pad,
.footer {
  width: min(760px, calc(100% - 40px));
}

.section-pad {
  padding: 74px 0;
}

.hero {
  display: block;
  position: relative;
  isolation: isolate;
  overflow: clip;
  min-height: 0;
  padding-top: 38px;
  padding-bottom: 42px;
}

.hero::before {
  content: "";
  position: absolute;
  right: -88px;
  top: 58px;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background-image: radial-gradient(circle, var(--halftone-blue) 1.35px, transparent 1.75px);
  background-size: 11px 11px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0 48%, rgba(0, 0, 0, 0.68) 56%, transparent 74%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 46%;
  top: 78px;
  z-index: -1;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-image: radial-gradient(circle, var(--halftone-ink) 1px, transparent 1.45px);
  background-size: 9px 9px;
  opacity: 0.28;
  mask-image: linear-gradient(135deg, #000, transparent 72%);
}

.hero-copy h1 {
  max-width: 610px;
  font-size: 46px;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.hero-copy p {
  max-width: 560px;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.62;
}

.hero-actions {
  margin-top: 18px;
}

.btn {
  min-height: 36px;
  padding: 0 13px;
  border-radius: 6px;
  font-size: 12px;
}

.hero-visual {
  margin-top: 30px;
}

.browser-window {
  border-radius: 7px;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.1);
}

.product-shot {
  position: relative;
  isolation: isolate;
}

.product-shot::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -28px;
  z-index: 1;
  width: 190px;
  height: 150px;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(14, 165, 233, 0.3) 1px, transparent 1.55px);
  background-size: 10px 10px;
  opacity: 0.38;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0 48%, transparent 74%);
}

.hero-window {
  transform: none;
}

.window-bar {
  height: 34px;
  padding: 0 11px;
}

.dots span {
  width: 7px;
  height: 7px;
}

.window-title {
  font-size: 11px;
}

.window-status {
  min-height: 18px;
  padding: 0 7px;
  font-size: 10px;
}

.app-shell {
  grid-template-columns: 132px 1fr;
  min-height: 390px;
}

.sidebar {
  gap: 6px;
  padding: 14px 10px;
}

.side-logo {
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  border-radius: 7px;
  font-size: 11px;
}

.side-item {
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 12px;
}

.dashboard {
  padding: 18px;
}

.dash-head h2 {
  font-size: 24px;
}

.score-grid {
  gap: 8px;
  margin-top: 18px;
}

.score-grid article {
  padding: 12px;
  border-radius: 7px;
}

.score-grid strong {
  font-size: 24px;
}

.task-list {
  gap: 8px;
  margin-top: 14px;
}

.task {
  gap: 10px;
  padding: 12px;
  border-radius: 7px;
}

.proof-strip {
  width: min(760px, calc(100% - 40px));
  justify-content: center;
  padding: 16px 0 54px;
}

.proof-strip img {
  width: 20px;
  height: 20px;
}

.split,
.product-section,
.product-section.reverse,
.autopilot {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.product-section.reverse .feature-copy {
  order: -1;
}

.problem h2,
.feature-copy h2,
.audit-card h2,
.section-title h2 {
  max-width: 620px;
  font-size: 33px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.problem h2 {
  max-width: 560px;
}

.copy-stack {
  max-width: 620px;
  gap: 14px;
}

.copy-stack p,
.section-title p,
.feature-copy p,
.audit-card p {
  font-size: 14px;
  line-height: 1.68;
}

.section-title {
  max-width: 620px;
  margin-bottom: 30px;
}

.center {
  text-align: center;
}

.workflow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.workflow-grid article,
.collab-grid article {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  padding: 18px;
  border-radius: 7px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.055);
}

.workflow-grid article::after,
.collab-grid article::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -20px;
  width: 86px;
  height: 86px;
  background-image: radial-gradient(circle, rgba(14, 165, 233, 0.18) 1px, transparent 1.45px);
  background-size: 8px 8px;
  opacity: 0.5;
  mask-image: radial-gradient(circle, #000 0 56%, transparent 74%);
}

.step-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.step-icon::after {
  inset: 8px;
  border-width: 2px;
}

.workflow-grid h3,
.collab-grid h3 {
  margin-top: 14px;
  font-size: 16px;
}

.workflow-grid p,
.collab-grid p {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.5;
}

.feature-copy {
  max-width: 540px;
}

.check-list {
  gap: 9px;
  margin-top: 16px;
}

.check-list li {
  padding-left: 23px;
  font-size: 13px;
}

.check-list li::before {
  width: 15px;
  height: 15px;
}

.check-list li::after {
  left: 5px;
  top: 7px;
}

.detail-window,
.integration-window {
  width: min(620px, 100%);
  margin: 0 auto;
}

.action-card {
  padding: 20px;
}

.action-top strong {
  font-size: 20px;
}

.integration-map {
  min-height: 300px;
  padding: 24px;
}

.collaboration {
  border-top: 1px solid var(--line);
}

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

.timeline {
  max-width: 620px;
  margin-left: auto;
}

.timeline div {
  padding: 17px 17px 17px 58px;
  border-radius: 7px;
}

.timeline div::before {
  left: 18px;
  top: 20px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border-width: 2px;
}

.timeline strong {
  font-size: 16px;
}

.timeline p {
  font-size: 12px;
}

.audit {
  padding-top: 70px;
  padding-bottom: 70px;
}

.audit-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(560px, 100%);
  padding: 38px 32px;
  border-radius: 14px;
}

.audit-card::before {
  content: "";
  position: absolute;
  inset: -70px auto auto -78px;
  z-index: 0;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-image: radial-gradient(circle, rgba(14, 165, 233, 0.28) 1.2px, transparent 1.7px);
  background-size: 10px 10px;
  opacity: 0.48;
  mask-image: radial-gradient(circle, #000 0 50%, transparent 76%);
}

.audit-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -74px auto;
  z-index: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-image: radial-gradient(circle, rgba(15, 23, 42, 0.12) 1px, transparent 1.55px);
  background-size: 9px 9px;
  opacity: 0.4;
  mask-image: radial-gradient(circle, #000 0 50%, transparent 76%);
}

.audit-card > * {
  position: relative;
  z-index: 1;
}

.audit-card h2 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.audit-card p {
  max-width: 470px;
  margin-top: 13px;
  margin-bottom: 22px;
}

.audit-card .form-status {
  margin-top: 16px;
  margin-bottom: 0;
}

.faq {
  padding-top: 52px;
}

.faq .section-title {
  margin-bottom: 18px;
}

.faq-list {
  width: min(680px, 100%);
}

.faq-list summary {
  padding: 18px 0;
  font-size: 13px;
}

.faq-list p {
  font-size: 13px;
}

.footer {
  padding: 30px 0 42px;
}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 28px, 760px);
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .section-pad,
  .footer,
  .proof-strip {
    width: min(100% - 28px, 760px);
  }

  .hero-copy h1 {
    font-size: 31px;
    letter-spacing: -0.035em;
  }

  .hero-copy p {
    font-size: 13px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .app-shell,
  .score-grid,
  .impact-row,
  .integration-map,
  .workflow-grid,
  .collab-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .side-logo,
  .side-item {
    flex: 0 0 auto;
  }

  .task {
    grid-template-columns: 1fr;
  }

  .task > span {
    display: none;
  }

  .task button,
  .tiny-button {
    width: 100%;
  }

  .problem h2,
  .feature-copy h2,
  .audit-card h2,
  .section-title h2 {
    font-size: 25px;
  }

  .workflow-grid article,
  .collab-grid article {
    min-height: 0;
  }

  .map-core::before,
  .map-core::after {
    display: none;
  }

  .footer {
    display: grid;
    justify-items: start;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 15px 24px;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .split,
  .product-section,
  .product-section.reverse,
  .autopilot {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    gap: 40px;
  }

  .hero-copy h1 {
    font-size: 52px;
  }

  .problem h2,
  .feature-copy h2,
  .audit-card h2,
  .section-title h2 {
    font-size: 38px;
  }

  .workflow-grid,
  .collab-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .section-pad,
  .footer,
  .proof-strip {
    width: min(100% - 32px, 1110px);
  }

  .section-pad {
    padding: 70px 0;
  }

  .site-header {
    gap: 12px;
  }

  .nav-cta {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero {
    padding-top: 44px;
    padding-bottom: 56px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .side-logo {
    flex: 0 0 auto;
    margin-bottom: 0;
  }

  .side-item {
    flex: 0 0 auto;
  }

  .dash-head,
  .task {
    align-items: stretch;
  }

  .dash-head,
  .task,
  .impact-row,
  .score-grid,
  .workflow-grid,
  .collab-grid,
  .integration-map,
  .footer {
    grid-template-columns: 1fr;
  }

  .task {
    gap: 10px;
  }

  .task > span {
    display: none;
  }

  .task button,
  .tiny-button {
    width: 100%;
  }

  .problem h2,
  .feature-copy h2,
  .audit-card h2,
  .section-title h2 {
    font-size: 32px;
  }

  .integration-map {
    gap: 24px;
    padding: 22px;
  }

  .map-core {
    height: 124px;
  }

  .map-core::before,
  .map-core::after {
    display: none;
  }

  .core-mark {
    width: 112px;
    height: 112px;
  }

  .audit-card {
    padding: 34px 20px;
  }

  .hero::before {
    right: -126px;
    top: 70px;
    width: 270px;
    height: 270px;
    opacity: 0.58;
  }

  .hero::after {
    display: none;
  }

  .product-shot::after {
    width: 136px;
    height: 112px;
    opacity: 0.28;
  }

  .workflow-grid article::after,
  .collab-grid article::after {
    opacity: 0.32;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .waitlist-form .btn {
    width: 100%;
  }

  .footer {
    display: grid;
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
