:root {
  color-scheme: dark;
  --page-bg: #010205;
  --surface: #0a1534;
  --surface-deep: #06102a;
  --surface-raised: #0d1b40;
  --line: rgba(255,255,255,0.1);
  --line-blue: rgba(92,156,255,0.28);
  --text: #f3f8ff;
  --muted: #9dafc8;
  --muted-bright: #c5d9f2;
  --blue: #5c9cff;
  --blue-deep: #2b68c7;
  --blue-pale: #c8e2ff;
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background: var(--page-bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover { color: var(--blue-pale); }

.screenshot-section {
  padding: 0 64px 96px;
}

.screenshot-section__header {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.screenshot-section__eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.screenshot-section__title {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.screenshot-section__intro {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

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

.screenshot-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-width: 0;
  background: #000;
  border: 1px solid rgba(143,192,255,0.2);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.24);
  cursor: zoom-in;
  isolation: isolate;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.screenshot-card:hover {
  border-color: rgba(143,192,255,0.55);
  box-shadow: 0 24px 64px rgba(0,0,0,0.38), 0 0 44px rgba(43,104,199,0.16);
  transform: translateY(-3px);
}

.screenshot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.52;
  object-fit: cover;
  object-position: center;
  background: #000;
  transition: transform 420ms cubic-bezier(0.22,1,0.36,1), filter 220ms ease;
}

.screenshot-card:hover img {
  filter: saturate(1.05) brightness(1.06);
  transform: scale(1.025);
}

.screenshot-card__caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  color: var(--text);
  background: rgba(1,2,5,0.76);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9px;
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
  font-size: 12px;
  font-weight: 600;
}

.screenshot-card__caption span:last-child {
  color: var(--blue-pale);
  font-size: 11px;
  font-weight: 500;
}

.screenshot-lightbox {
  width: min(96vw, 1600px);
  max-width: none;
  max-height: 92vh;
  margin: auto;
  padding: 0;
  overflow: visible;
  background: #000;
  border: 1px solid rgba(143,192,255,0.3);
  border-radius: 16px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.7), 0 0 70px rgba(43,104,199,0.18);
}

.screenshot-lightbox::backdrop {
  background: rgba(0,0,0,0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.screenshot-lightbox__frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 92vh;
  padding: 10px;
}

.screenshot-lightbox img {
  display: block;
  max-width: calc(96vw - 20px);
  max-height: calc(92vh - 20px);
  width: auto;
  height: auto;
  object-fit: contain;
  background: #000;
  border-radius: 9px;
}

.screenshot-lightbox__close {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 20px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  color: var(--text);
  background: rgba(1,2,5,0.78);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  cursor: pointer;
  font-size: 21px;
  line-height: 1;
}

.screenshot-lightbox__close:hover {
  color: var(--blue-pale);
  background: rgba(43,104,199,0.7);
}

.legal-shell {
  min-height: 100vh;
  padding: 32px;
  background:
    radial-gradient(900px 420px at 78% 0%, rgba(43,104,199,0.18), transparent 68%),
    var(--page-bg);
}

.legal-frame {
  width: min(1180px, 100%);
  min-height: calc(100vh - 64px);
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(6,16,42,0.96), var(--page-bg) 72%);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.48);
}

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 32px;
  background: rgba(1,2,5,0.84);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.legal-brand:hover { color: var(--text); }

.legal-brand img {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 10px 28px rgba(0,0,0,0.3);
}

.legal-brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

.legal-nav-links a { color: inherit; }
.legal-nav-links a:hover { color: var(--text); }

.legal-nav-links .legal-nav-cta {
  padding: 9px 15px;
  border: 1px solid var(--line-blue);
  border-radius: 8px;
  color: var(--blue-pale);
  background: rgba(43,104,199,0.12);
}

.legal-main {
  max-width: 920px;
  margin: 0 auto;
  padding: 88px 48px 96px;
}

.legal-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-title {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.legal-lede {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted-bright);
  font-size: 18px;
  line-height: 1.65;
}

.legal-meta {
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
}

.legal-rule {
  height: 1px;
  margin: 64px 0;
  background: linear-gradient(90deg, var(--line-blue), var(--line), transparent);
}

.legal-content {
  max-width: 780px;
  color: var(--muted-bright);
  font-size: 15px;
  line-height: 1.75;
}

.legal-content h2 {
  margin: 52px 0 14px;
  color: var(--text);
  font-size: 25px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.legal-content h3 {
  margin: 30px 0 8px;
  color: var(--text);
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p { margin: 0 0 18px; }

.legal-content ul {
  margin: 0 0 20px;
  padding-left: 24px;
}

.legal-content li { margin: 7px 0; }

.legal-content strong { color: var(--text); }

.legal-content code {
  padding: 2px 5px;
  color: var(--blue-pale);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.9em;
}

.legal-main--wide { max-width: 1040px; }

.legal-content--wide { max-width: 920px; }

.legal-table-wrap {
  margin: 28px 0 34px;
  overflow-x: auto;
  border: 1px solid var(--line-blue);
  border-radius: 12px;
  background: rgba(6,16,42,0.52);
  -webkit-overflow-scrolling: touch;
}

.legal-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: var(--muted-bright);
  font-size: 13px;
  line-height: 1.5;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--text);
  background: rgba(43,104,199,0.14);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-table tbody tr:last-child td { border-bottom: 0; }

.legal-table tbody tr:hover { background: rgba(255,255,255,0.025); }

.legal-content a {
  color: var(--blue-pale);
  text-decoration: underline;
  text-decoration-color: rgba(143,192,255,0.45);
  text-underline-offset: 3px;
}

.legal-note {
  margin: 28px 0 0;
  padding: 18px 20px;
  color: var(--muted-bright);
  background: rgba(43,104,199,0.1);
  border: 1px solid var(--line-blue);
  border-radius: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.contact-card {
  min-height: 160px;
  padding: 24px;
  background: linear-gradient(150deg, rgba(13,27,64,0.92), rgba(6,16,42,0.92));
  border: 1px solid var(--line);
  border-radius: 16px;
}

.contact-card--wide { grid-column: 1 / -1; }

.contact-label {
  margin: 0 0 12px;
  color: var(--blue);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-value {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.55;
}

.contact-value small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.legal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.legal-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.legal-footer-links a { color: inherit; }
.legal-footer-links a:hover { color: var(--text); }

.changelog-main { max-width: 980px; }

.changelog-source {
  margin: 20px 0 0;
  color: var(--muted);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  line-height: 1.6;
}

.changelog-source a { color: var(--blue-pale); }

.release-list {
  display: grid;
  gap: 18px;
}

.release-card {
  padding: clamp(24px, 4vw, 38px);
  background:
    radial-gradient(ellipse at 108% -12%, rgba(43, 104, 199, 0.22), transparent 42%),
    linear-gradient(150deg, rgba(13, 27, 64, 0.72), rgba(4, 9, 23, 0.9));
  border: 1px solid rgba(143, 192, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.2);
}

.release-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.release-version {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  color: var(--text);
  font-size: 27px;
  font-weight: 680;
  letter-spacing: -0.05em;
}

.release-badge {
  padding: 6px 8px;
  color: var(--blue-pale);
  background: rgba(92, 156, 255, 0.14);
  border: 1px solid rgba(143, 192, 255, 0.3);
  border-radius: 999px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.release-meta {
  margin: 8px 0 0;
  color: var(--muted);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.release-notes-link {
  flex: 0 0 auto;
  padding: 9px 11px;
  color: var(--muted-bright);
  border: 1px solid rgba(143, 192, 255, 0.2);
  border-radius: 8px;
  font-size: 11px;
}

.release-notes {
  margin-top: 28px;
  padding-top: 24px;
  color: var(--muted-bright);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  line-height: 1.7;
}

.release-notes > :first-child { margin-top: 0; }
.release-notes > :last-child { margin-bottom: 0; }
.release-notes h3, .release-notes h4 { margin: 24px 0 9px; color: var(--text); }
.release-notes h3 { font-size: 18px; }
.release-notes h4 { font-size: 16px; }
.release-notes ul { margin: 12px 0; padding-left: 21px; }
.release-notes code { padding: 2px 5px; color: var(--blue-pale); background: rgba(43, 104, 199, 0.13); border-radius: 4px; }

@media (max-width: 720px) {
  .legal-shell { padding: 0; }
  .legal-frame { min-height: 100vh; border: 0; border-radius: 0; }
  .legal-nav { padding: 16px 20px; }
  .legal-nav-links { gap: 14px; }
  .legal-nav-links a:not(.legal-nav-cta) { display: none; }
  .legal-main { padding: 64px 24px 72px; }
  .legal-title { font-size: clamp(42px, 14vw, 64px); }
  .legal-lede { font-size: 16px; }
  .legal-rule { margin: 48px 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card--wide { grid-column: auto; }
  .legal-footer { align-items: flex-start; flex-direction: column; padding: 24px; }
  .screenshot-section { padding: 0 24px 72px; }
  .screenshot-grid { grid-template-columns: 1fr; }
  .screenshot-section__title { font-size: 30px; }
  .screenshot-card__caption { right: 10px; bottom: 10px; left: 10px; }
  .release-card__header { flex-direction: column; }
  .release-notes-link { align-self: flex-start; }
}

/* Homepage ---------------------------------------------------------------- */

.home {
  overflow-x: hidden;
  background:
    radial-gradient(1000px 600px at 76% -10%, rgba(43, 104, 199, 0.12), transparent 62%),
    var(--page-bg);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

.home *,
.home *::before,
.home *::after { box-sizing: border-box; }

.home-shell { width: min(1480px, 100%); margin: 0 auto; }

.masthead {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  padding: 20px clamp(24px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 11px;
  color: var(--text);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
}

.brand:hover { color: var(--text); }

.brand img {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 10px 28px rgba(0, 0, 0, 0.32);
}

.primary-nav {
  display: flex;
  align-items: center;
  align-self: stretch;
  border-inline: 1px solid rgba(255, 255, 255, 0.09);
}

.primary-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  padding: 0 19px;
  color: var(--muted);
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.primary-nav a:last-child { border-right: 0; }
.primary-nav a span { color: var(--blue); font-size: 10px; opacity: 0.9; }
.primary-nav a:hover { color: var(--text); background: rgba(92, 156, 255, 0.08); }

.masthead > .button { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 21px;
  color: var(--text);
  background: var(--surface-raised);
  border: 1px solid rgba(143, 192, 255, 0.42);
  border-radius: 9px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 30px rgba(0, 0, 0, 0.24);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover {
  color: var(--text);
  background: #122650;
  border-color: rgba(143, 192, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 17px 38px rgba(0, 0, 0, 0.34), 0 0 24px rgba(43, 104, 199, 0.16);
  transform: translateY(-2px);
}

.button span { color: var(--blue-pale); }

.button--compact { min-height: 42px; gap: 12px; padding: 0 15px; font-size: 12px; }

.button--download { min-height: 60px; padding: 8px 20px; }
.button--download .button__stack { display: grid; gap: 2px; text-align: left; }
.button--download .button__main { color: var(--text); line-height: 1.15; }
.button--download .button__version,
.button--download .button__version span { color: rgba(200, 226, 255, 0.68); font-size: 10px; font-weight: 500; letter-spacing: 0.025em; line-height: 1.2; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  gap: clamp(28px, 5vw, 78px);
  min-height: 820px;
  padding: clamp(56px, 7vw, 108px) clamp(24px, 4vw, 64px) 0;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(143, 192, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 192, 255, 0.06) 1px, transparent 1px);
  background-position: center;
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.7) 58%, transparent 96%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -22%;
  bottom: -26%;
  width: 86%;
  height: 75%;
  content: "";
  background: radial-gradient(ellipse, rgba(43, 104, 199, 0.18), transparent 65%);
  filter: blur(10px);
}

.hero-field {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 69%;
  height: 81%;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(ellipse at 55% 38%, rgba(24, 61, 126, 0.66), transparent 68%);
}

.hero-field canvas { opacity: 0.84; }

.hero-introbar {
  position: absolute;
  z-index: 1;
  top: 25px;
  left: clamp(24px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-introbar i { width: 3px; height: 3px; background: var(--blue); border-radius: 50%; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-pale); box-shadow: 0 0 0 4px rgba(143, 192, 255, 0.12), 0 0 16px var(--blue); }

.hero-copy { position: relative; z-index: 2; align-self: center; padding-bottom: 86px; }

.eyebrow {
  margin: 0 0 17px;
  color: var(--blue-pale);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.detail-copy h2,
.plans h2,
.final-cta h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(46px, 5.5vw, 88px);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.91;
}

.hero h1 em,
.plans h2 em { color: var(--blue); font-style: normal; }

.hero h1 {
  font-size: clamp(46px, 4.8vw, 72px);
  line-height: 0.94;
}

.hero-lede {
  max-width: 470px;
  margin: 23px 0 0;
  color: var(--muted-bright);
  font-size: 18px;
  line-height: 1.58;
}

.hero-actions { display: flex; align-items: center; gap: 27px; margin-top: 28px; }

.download-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.download-assurance li {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  color: var(--muted-bright);
  background: rgba(43, 104, 199, 0.11);
  border: 1px solid rgba(143, 192, 255, 0.2);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.35;
}

.download-assurance li::before {
  margin-right: 7px;
  color: var(--blue);
  content: "✓";
}

.download-meta {
  margin: 11px 0 0;
  color: #8295b5;
  font-size: 11px;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.text-link span { color: var(--blue); font-size: 18px; line-height: 1; transition: transform 180ms ease; }
.text-link:hover { color: var(--blue-pale); }
.text-link:hover span { transform: translateY(3px); }

.hero-product {
  position: relative;
  z-index: 1;
  align-self: center;
  margin-top: 50px;
  overflow: hidden;
  background: #05070d;
  border: 1px solid rgba(143, 192, 255, 0.34);
  border-radius: 4px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.46), 0 0 75px rgba(43, 104, 199, 0.13);
  transform: perspective(1600px) rotateY(-4deg) rotateX(2deg);
  transform-origin: left center;
}

.hero-product img { position: relative; z-index: 1; display: block; width: 100%; height: auto; }

.window-chrome {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 35px;
  gap: 6px;
  padding: 0 13px;
  color: #8492ac;
  background: #0b0f18;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-chrome span { width: 7px; height: 7px; background: #596477; border-radius: 50%; }
.window-chrome p { margin: 0 auto; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 9px; letter-spacing: 0.02em; }
.window-chrome b { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 9px; font-weight: 500; }
.product-glow { position: absolute; z-index: 0; inset: 20% 0 -40%; background: radial-gradient(ellipse, rgba(92, 156, 255, 0.28), transparent 70%); filter: blur(32px); }

.hero-stats {
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-self: end;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats div { min-height: 128px; padding: 27px 28px; border-right: 1px solid rgba(255, 255, 255, 0.1); }
.hero-stats div:first-child { padding-left: 0; }
.hero-stats div:last-child { border-right: 0; }
.hero-stats dt { color: var(--text); font-size: 27px; font-weight: 650; letter-spacing: -0.05em; line-height: 1; }
.hero-stats dd { max-width: 148px; margin: 9px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }

.section { padding: 144px clamp(24px, 4vw, 64px); }

.section-heading { max-width: 670px; margin-bottom: 62px; }
.section-heading h2,
.detail-copy h2,
.plans h2,
.final-cta h2 { font-size: clamp(40px, 4.6vw, 68px); }
.section-heading > p:not(.eyebrow),
.section-heading--split > p,
.detail-copy > p:not(.eyebrow),
.plans > p:not(.eyebrow),
.final-cta > p:not(.eyebrow) { color: var(--muted); font-size: 16px; line-height: 1.68; }

.section-heading--split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, 0.55fr); max-width: none; gap: 56px; align-items: end; }
.section-heading--split > p { max-width: 410px; margin: 0 0 3px; }

.agent-section { border-top: 1px solid rgba(255, 255, 255, 0.09); }

.agent-grid { display: grid; grid-template-columns: 0.87fr 1.13fr; gap: 16px; }

.command-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 23px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 105% 5%, rgba(43, 104, 199, 0.24), transparent 45%),
    linear-gradient(155deg, #101f47, #07122b 72%);
  border: 1px solid rgba(143, 192, 255, 0.24);
}

.command-card__header { display: flex; justify-content: space-between; gap: 12px; color: var(--muted-bright); font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 10px; letter-spacing: 0.05em; }
.command-card__header span:last-child { color: #8fc0ff; }
.command-prompt { display: flex; gap: 15px; margin-top: 52px; padding: 23px 0; border-block: 1px solid rgba(255, 255, 255, 0.12); }
.command-prompt > span { color: var(--blue); font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 24px; line-height: 1; }
.command-prompt p { margin: 0; color: var(--text); font-size: clamp(19px, 2vw, 27px); font-weight: 560; letter-spacing: -0.045em; line-height: 1.2; }

.command-steps { display: grid; gap: 0; margin: 27px 0 0; padding: 0; list-style: none; }
.command-steps li { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; min-height: 44px; color: var(--muted-bright); border-bottom: 1px solid rgba(255, 255, 255, 0.09); font-size: 13px; }
.command-steps li > span { color: var(--blue); font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 10px; }
.command-steps b { color: #a8cbff; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 10px; font-weight: 500; text-transform: uppercase; }
.command-card__note { max-width: 390px; margin: auto 0 0; padding-top: 28px; color: var(--muted); font-size: 13px; line-height: 1.58; }

.image-card { position: relative; overflow: hidden; background: #05070d; border: 1px solid rgba(143, 192, 255, 0.2); }
.image-card img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), filter 250ms ease; }
.image-card:hover img { filter: saturate(1.08) brightness(1.05); transform: scale(1.025); }
.image-card--agent { min-height: 520px; }
.image-card--agent img { object-position: 40% center; }

.image-card__caption {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 13px;
  color: var(--text);
  background: rgba(1, 2, 5, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 600;
}

.image-card__caption span:last-child { color: var(--blue-pale); font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 10px; font-weight: 500; letter-spacing: 0.03em; }

.workflow-section { background: linear-gradient(180deg, transparent, rgba(10, 21, 52, 0.6) 44%, transparent); }
.workflow-section .section-heading { margin-left: auto; text-align: right; }
.workflow-section .section-heading > p:last-child { margin-left: auto; }
.workflow-layout { display: grid; grid-template-columns: minmax(0, 1.32fr) minmax(270px, 0.68fr); gap: 16px; }
.image-card--large { min-height: 620px; }
.image-card--large img { object-position: center; }

.workflow-list { display: flex; flex-direction: column; }
.workflow-list article { flex: 1; padding: 28px 25px; border-top: 1px solid rgba(255, 255, 255, 0.13); }
.workflow-list article:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
.workflow-list article > span { color: var(--blue); font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11px; }
.workflow-list h3 { margin: 33px 0 11px; color: var(--text); font-size: 22px; font-weight: 600; letter-spacing: -0.045em; }
.workflow-list p { max-width: 325px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.feature-gallery { background: linear-gradient(180deg, transparent, rgba(10, 21, 52, 0.34) 50%, transparent); }
.feature-gallery__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.feature-shot { position: relative; min-width: 0; overflow: hidden; background: #05070d; border: 1px solid rgba(143, 192, 255, 0.2); }
.feature-shot img { display: block; width: 100%; aspect-ratio: 1.55; object-fit: cover; transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), filter 250ms ease; }
.feature-shot:hover img { filter: saturate(1.08) brightness(1.05); transform: scale(1.025); }
.feature-shot__caption { position: absolute; right: 14px; bottom: 14px; left: 14px; display: flex; justify-content: space-between; gap: 12px; padding: 10px 12px; color: var(--text); background: rgba(1, 2, 5, 0.76); border: 1px solid rgba(255, 255, 255, 0.12); backdrop-filter: blur(12px); font-size: 12px; font-weight: 600; }
.feature-shot__caption span:last-child { color: var(--blue-pale); font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 10px; font-weight: 500; }

.capabilities-section { border-top: 1px solid rgba(255, 255, 255, 0.09); }
.capability-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(255, 255, 255, 0.1); border-left: 1px solid rgba(255, 255, 255, 0.1); }

.capability {
  position: relative;
  min-height: 308px;
  padding: 31px;
  overflow: hidden;
  background: rgba(4, 8, 20, 0.32);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 220ms ease;
}

.capability:hover { background: rgba(13, 27, 64, 0.82); }
.capability--feature { background: linear-gradient(145deg, rgba(25, 57, 121, 0.58), rgba(6, 16, 42, 0.6)); }
.capability-index { color: var(--blue); font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11px; }
.capability h3 { max-width: 330px; margin: 50px 0 11px; color: var(--text); font-size: 24px; font-weight: 600; letter-spacing: -0.05em; }
.capability p { max-width: 425px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.66; }
.capability-number { position: absolute; right: 28px; bottom: 26px; color: var(--blue-pale); font-size: 45px; font-weight: 650; letter-spacing: -0.08em; line-height: 0.7; }
.capability-number small { display: block; margin-top: 11px; color: var(--muted); font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 9px; font-weight: 500; letter-spacing: 0.06em; text-align: right; text-transform: uppercase; }
.capability--wide { grid-column: 1 / -1; min-height: 250px; padding-right: 32%; }
.capability--wide h3 { margin-top: 45px; }

.format-tags { position: absolute; right: 30px; bottom: 30px; display: flex; max-width: 300px; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.format-tags span { padding: 7px 9px; color: var(--muted-bright); background: rgba(1, 2, 5, 0.6); border: 1px solid rgba(143, 192, 255, 0.19); font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 10px; }

.detail-section { display: grid; grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr); align-items: center; gap: clamp(32px, 8vw, 120px); padding-top: 112px; padding-bottom: 112px; }
.detail-copy > p:not(.eyebrow) { max-width: 410px; margin-top: 24px; }
.detail-copy code { padding: 2px 5px; color: var(--blue-pale); background: rgba(43, 104, 199, 0.13); border: 1px solid rgba(92, 156, 255, 0.2); font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.85em; }
.detail-stats { display: flex; gap: 44px; margin: 38px 0 0; }
.detail-stats dt { color: var(--text); font-size: 28px; font-weight: 650; letter-spacing: -0.06em; }
.detail-stats dd { margin: 5px 0 0; color: var(--muted); font-size: 11px; }
.image-card--detail { min-height: 410px; box-shadow: 0 28px 70px rgba(0, 0, 0, 0.33); }

.layers-section { display: grid; grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr); align-items: center; gap: clamp(32px, 8vw, 120px); padding-top: 112px; padding-bottom: 112px; border-top: 1px solid rgba(255, 255, 255, 0.09); }
.layers-copy > p:not(.eyebrow) { max-width: 410px; margin-top: 24px; color: var(--muted); font-size: 16px; line-height: 1.68; }
.layers-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.layers-meta span { padding: 8px 10px; color: var(--muted-bright); background: rgba(43, 104, 199, 0.12); border: 1px solid rgba(92, 156, 255, 0.22); font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 10px; }
.layers-figure { margin: 0; padding: 10px; background: #05070d; border: 1px solid rgba(143, 192, 255, 0.2); box-shadow: 0 28px 70px rgba(0, 0, 0, 0.33); }
.layers-figure img { display: block; width: 512px; max-width: 100%; height: auto; margin-inline: auto; }
.layers-figure figcaption { padding: 12px 5px 3px; color: var(--muted); font-size: 11px; }

.plans {
  position: relative;
  max-width: none;
  overflow: hidden;
  padding-top: 128px;
  padding-bottom: 128px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  isolation: isolate;
}

.plans::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    radial-gradient(ellipse at 52% 42%, rgba(43, 104, 199, 0.18), transparent 52%),
    linear-gradient(180deg, rgba(10, 21, 52, 0.38), rgba(1, 2, 5, 0.12) 64%, transparent);
}

.plans-dither {
  position: absolute;
  z-index: -1;
  top: -150px;
  right: -7%;
  width: min(820px, 67vw);
  height: 540px;
  opacity: 0.58;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(92, 156, 255, 0.62) 0 1px, transparent 1.35px);
  background-size: 8px 8px;
  mask-image: radial-gradient(ellipse at center, #000 0, rgba(0, 0, 0, 0.76) 32%, transparent 73%);
  transform: rotate(-8deg);
}

.plans-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  align-items: end;
  gap: clamp(36px, 7vw, 96px);
  margin-bottom: 66px;
}

.plans h2 { max-width: 850px; }
.plans-heading > p {
  max-width: 420px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}

.pricing-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 610px;
  flex-direction: column;
  padding: 25px 23px 23px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 112% -7%, rgba(43, 104, 199, 0.2), transparent 39%),
    rgba(4, 9, 23, 0.9);
  border: 1px solid rgba(143, 192, 255, 0.2);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.2);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.pricing-card::after {
  position: absolute;
  right: -44px;
  bottom: -50px;
  width: 180px;
  height: 180px;
  content: "";
  opacity: 0.14;
  pointer-events: none;
  background-image: radial-gradient(circle, var(--blue-pale) 0 1px, transparent 1.25px);
  background-size: 7px 7px;
  mask-image: radial-gradient(circle, #000, transparent 69%);
}

.pricing-card:hover {
  border-color: rgba(143, 192, 255, 0.48);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3), 0 0 42px rgba(43, 104, 199, 0.1);
  transform: translateY(-4px);
}

.pricing-card--free { background: rgba(3, 7, 17, 0.8); }

.pricing-card--featured {
  background:
    radial-gradient(ellipse at 105% -8%, rgba(92, 156, 255, 0.35), transparent 42%),
    linear-gradient(150deg, rgba(16, 38, 84, 0.97), rgba(5, 13, 33, 0.96) 67%);
  border-color: rgba(143, 192, 255, 0.58);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35), 0 0 48px rgba(43, 104, 199, 0.15);
}

.pricing-card--studio {
  background:
    radial-gradient(ellipse at 110% -8%, rgba(115, 170, 255, 0.26), transparent 43%),
    linear-gradient(150deg, rgba(11, 25, 57, 0.95), rgba(3, 8, 20, 0.96) 70%);
}

.pricing-card__topline {
  display: flex;
  min-height: 25px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card__topline > span:first-child { color: var(--blue); }

.pricing-card__badge {
  padding: 6px 8px;
  color: var(--blue-pale);
  background: rgba(92, 156, 255, 0.14);
  border: 1px solid rgba(143, 192, 255, 0.3);
  border-radius: 999px;
}

.pricing-card h3 {
  margin: 33px 0 0;
  color: var(--text);
  font-size: 30px;
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
}

.pricing-card__summary {
  min-height: 65px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  margin-top: 28px;
  color: var(--text);
  font-size: clamp(37px, 3.2vw, 49px);
  font-weight: 680;
  letter-spacing: -0.075em;
  line-height: 1;
  white-space: nowrap;
}

.pricing-card__price > span {
  margin-right: 3px;
  color: var(--blue-pale);
  font-size: 0.54em;
  letter-spacing: 0;
  transform: translateY(-0.52em);
}

.pricing-card__price small {
  margin-left: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}

.pricing-card__allowance {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  margin: 23px 0 0;
  padding: 15px 0;
  color: var(--text);
  border-block: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 12px;
  line-height: 1.4;
}

.pricing-card__allowance > span { color: var(--blue); font-size: 15px; }
.pricing-card__allowance strong { font-weight: 650; }

.pricing-card__features {
  display: grid;
  gap: 15px;
  margin: 24px 0 28px;
  padding: 0;
  color: var(--muted-bright);
  font-size: 12px;
  line-height: 1.52;
  list-style: none;
}

.pricing-card__features li { position: relative; padding-left: 22px; }
.pricing-card__features li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue-pale);
  content: "✓";
  font-size: 12px;
}

.pricing-card__features li span { color: var(--muted); }

.pricing-card__cta {
  z-index: 1;
  width: 100%;
  margin-top: auto;
  min-height: 46px;
  gap: 12px;
  background: rgba(13, 27, 64, 0.82);
}

.pricing-card--featured .pricing-card__cta {
  color: #031027;
  background: var(--blue-pale);
  border-color: var(--blue-pale);
  box-shadow: 0 12px 32px rgba(43, 104, 199, 0.25);
}

.pricing-card--featured .pricing-card__cta span { color: #244e8f; }
.pricing-card--featured .pricing-card__cta:hover { color: #010205; background: #e5f1ff; border-color: #e5f1ff; }

.plans-note {
  margin: 25px 0 0;
  color: var(--muted);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.download-faq {
  padding-top: 112px;
  padding-bottom: 112px;
  background:
    radial-gradient(680px 380px at 8% 10%, rgba(43, 104, 199, 0.18), transparent 72%),
    linear-gradient(180deg, rgba(10, 21, 52, 0.56), transparent 82%);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

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

.faq-list details {
  min-height: 174px;
  background: linear-gradient(145deg, rgba(13, 27, 64, 0.82), rgba(4, 9, 23, 0.82));
  border: 1px solid rgba(143, 192, 255, 0.18);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.faq-list details:hover {
  background: linear-gradient(145deg, rgba(18, 38, 88, 0.9), rgba(5, 12, 29, 0.88));
  border-color: rgba(143, 192, 255, 0.38);
  transform: translateY(-2px);
}

.faq-list details:last-child { grid-column: 1 / -1; min-height: 148px; }

.faq-list summary {
  position: relative;
  padding: 23px 58px 10px 22px;
  color: var(--text);
  cursor: pointer;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.3;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--blue-pale);
  border: 1px solid rgba(143, 192, 255, 0.25);
  border-radius: 50%;
  content: "+";
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
}

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

.faq-list details > p {
  max-width: 860px;
  margin: 0;
  padding: 0 22px 23px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.faq-list details > p a { color: var(--blue-pale); text-decoration: underline; text-decoration-color: rgba(143, 192, 255, 0.35); text-underline-offset: 3px; }

.final-cta {
  position: relative;
  margin: 0 clamp(24px, 4vw, 64px) clamp(72px, 8vw, 128px);
  padding: clamp(68px, 9vw, 132px) 24px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(43, 104, 199, 0.11), transparent 67%),
    #07122b;
  border: 1px solid rgba(143, 192, 255, 0.25);
}

.final-cta::after { position: absolute; right: -10%; bottom: -40%; width: 47%; height: 120%; content: ""; background: radial-gradient(ellipse, rgba(92, 156, 255, 0.3), transparent 65%); filter: blur(20px); }
.final-cta .eyebrow, .final-cta h2, .final-cta > p, .final-cta .button { position: relative; z-index: 1; }
.final-cta > p:not(.eyebrow) { margin: 19px 0 30px; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; padding: 33px clamp(24px, 4vw, 64px) 47px; border-top: 1px solid rgba(255, 255, 255, 0.09); }
.brand--footer { font-size: 16px; }
.brand--footer img { width: 29px; height: 29px; border-radius: 8px; }
.site-footer p { margin: 0; color: #6d83a8; font-size: 11px; text-align: center; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 21px; }
.site-footer nav a { color: var(--muted); font-size: 12px; }
.site-footer nav a:hover { color: var(--text); }

@media (max-width: 900px) {
  .masthead {
    position: sticky;
    top: 0;
    grid-template-columns: 1fr auto;
    background: rgba(1, 2, 5, 0.86);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(20px) saturate(135%);
    backdrop-filter: blur(20px) saturate(135%);
  }
  .primary-nav { display: none; }
  #agent, #workflow, #capabilities, #plans, #all-features, #download-faq { scroll-margin-top: 92px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; gap: 4px; }
  .hero-copy { padding-bottom: 10px; }
  .hero-product { width: min(100%, 760px); margin-top: 35px; margin-left: auto; transform: none; }
  .hero-stats { margin-top: 60px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 22px; }
  .agent-grid, .workflow-layout, .detail-section, .layers-section { grid-template-columns: 1fr; }
  .image-card--agent, .image-card--large { min-height: 480px; }
  .workflow-section .section-heading { margin-left: 0; text-align: left; }
  .workflow-section .section-heading > p:last-child { margin-left: 0; }
  .workflow-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .workflow-list article, .workflow-list article:last-child { min-height: 230px; border: 1px solid rgba(255, 255, 255, 0.13); }
  .workflow-list h3 { margin-top: 22px; }
  .detail-section { padding-top: 88px; padding-bottom: 88px; }
  .detail-copy { max-width: 610px; }
  .image-card--detail { min-height: 470px; }
  .layers-copy { max-width: 610px; }
  .plans-heading { grid-template-columns: 1fr; gap: 24px; }
  .plans-heading > p { max-width: 600px; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-card { min-height: 560px; }
  .pricing-card__price { font-size: 47px; }
}

@media (max-width: 620px) {
  .masthead { min-height: 76px; padding-block: 15px; }
  .masthead > .button { min-height: 38px; padding-inline: 12px; }
  .masthead > .button span { display: none; }
  .brand { gap: 9px; font-size: 19px; }
  .brand img { width: 34px; height: 34px; border-radius: 9px; }
  .hero { padding-top: 92px; }
  .hero-introbar { top: 21px; max-width: 280px; flex-wrap: wrap; line-height: 1.7; }
  .hero-introbar i { display: none; }
  .eyebrow { font-size: 12px; }
  .hero h1 { font-size: clamp(45px, 13vw, 65px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .button--download { min-height: 58px; }
  .download-assurance { margin-top: 20px; }
  .download-assurance li { font-size: 11px; }
  .download-meta { max-width: 310px; font-size: 10px; }
  .hero-product { margin-top: 25px; }
  .window-chrome p { overflow: hidden; max-width: 160px; text-overflow: ellipsis; white-space: nowrap; }
  .hero-stats { grid-template-columns: 1fr; margin-top: 45px; }
  .hero-stats div, .hero-stats div:first-child { display: grid; grid-template-columns: 100px 1fr; align-items: center; min-height: 70px; padding: 17px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .hero-stats div:last-child { border-bottom: 0; }
  .hero-stats dd { max-width: none; margin: 0; }
  .section { padding-top: 86px; padding-bottom: 86px; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2, .detail-copy h2, .plans h2, .final-cta h2 { font-size: clamp(38px, 11vw, 54px); }
  .section-heading > p:not(.eyebrow), .section-heading--split > p, .detail-copy > p:not(.eyebrow), .plans > p:not(.eyebrow), .final-cta > p:not(.eyebrow) { font-size: 15px; }
  .agent-grid { gap: 12px; }
  .feature-gallery__grid { grid-template-columns: 1fr; gap: 12px; }
  .command-card { min-height: 468px; padding: 18px; }
  .command-card__header { font-size: 8px; }
  .command-prompt { margin-top: 36px; }
  .command-prompt p { font-size: 21px; }
  .image-card--agent, .image-card--large { min-height: 310px; }
  .image-card__caption { right: 10px; bottom: 10px; left: 10px; padding: 9px 10px; font-size: 10px; }
  .image-card__caption span:last-child { font-size: 8px; }
  .workflow-list { grid-template-columns: 1fr; gap: 0; }
  .workflow-list article, .workflow-list article:last-child { min-height: 0; padding: 24px 0; border: 0; border-top: 1px solid rgba(255, 255, 255, 0.13); }
  .workflow-list article:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
  .workflow-list h3 { margin: 17px 0 8px; font-size: 20px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability { min-height: 270px; padding: 24px; }
  .capability h3 { margin-top: 39px; font-size: 22px; }
  .capability-number { right: 23px; bottom: 22px; font-size: 41px; }
  .capability--wide { grid-column: auto; padding-right: 24px; min-height: 340px; }
  .format-tags { right: 23px; bottom: 24px; max-width: 245px; }
  .image-card--detail { min-height: 300px; }
  .layers-section { padding-top: 86px; padding-bottom: 86px; }
  .inspector-section { padding-top: 86px; }
  .inspector-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .inspector-card figcaption { padding: 10px; font-size: 11px; }
  .detail-stats { gap: 28px; }
  .plans { padding-top: 86px; padding-bottom: 86px; }
  .plans-heading { margin-bottom: 42px; }
  .plans-dither { right: -40%; width: 130vw; opacity: 0.4; }
  .pricing-grid { grid-template-columns: 1fr; gap: 12px; }
  .pricing-card { min-height: 0; padding: 22px 20px 20px; }
  .pricing-card h3 { margin-top: 27px; }
  .pricing-card__summary { min-height: 0; }
  .pricing-card__price { margin-top: 26px; font-size: 46px; }
  .pricing-card__features { min-height: 0; }
  .pricing-card__cta { margin-top: 8px; }
  .download-faq { padding-top: 86px; padding-bottom: 86px; }
  .faq-list { grid-template-columns: 1fr; }
  .faq-list details, .faq-list details:last-child { grid-column: auto; min-height: 0; }
  .faq-list summary { padding: 21px 54px 9px 19px; font-size: 17px; }
  .faq-list summary::after { right: 17px; }
  .faq-list details > p { padding: 0 19px 21px; font-size: 14px; }
  .final-cta { margin-bottom: 72px; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; gap: 17px; padding-bottom: 30px; }
  .site-footer p { text-align: left; }
  .site-footer nav { justify-content: start; }
}

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

/* The long-form inventory intentionally sits late in the page: it preserves
   the full product story without competing with the introductory narrative. */
.full-toolkit {
  padding-top: 112px;
  background: linear-gradient(180deg, rgba(10, 21, 52, 0.42), transparent 82%);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.full-toolkit .section-heading { margin-bottom: 54px; }

.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.toolkit-grid article {
  min-height: 178px;
  padding: 24px;
  background: rgba(1, 2, 5, 0.26);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 180ms ease;
}

.toolkit-grid article:hover { background: rgba(13, 27, 64, 0.72); }

.toolkit-grid h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.toolkit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.toolkit-grid code {
  padding: 1px 3px;
  color: var(--blue-pale);
  background: rgba(43, 104, 199, 0.13);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.9em;
}

.inspector-section { padding-top: 112px; background: linear-gradient(180deg, rgba(10, 21, 52, 0.42), transparent 82%); border-top: 1px solid rgba(255, 255, 255, 0.09); }
.inspector-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.inspector-card { min-width: 0; margin: 0; overflow: hidden; background: #202126; border: 1px solid rgba(143, 192, 255, 0.24); box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22); transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease; }
.inspector-card:hover { border-color: rgba(143, 192, 255, 0.62); box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38), 0 0 34px rgba(43, 104, 199, 0.14); transform: translateY(-3px); }
.inspector-card img { display: block; width: 100%; height: auto; }
.inspector-card figcaption { display: flex; align-items: center; gap: 10px; padding: 12px 14px 14px; color: var(--text); font-size: 12px; font-weight: 600; }
.inspector-card figcaption span { color: var(--blue); font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 10px; }

@media (max-width: 900px) {
  .toolkit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .full-toolkit { padding-top: 86px; }
  .toolkit-grid { grid-template-columns: 1fr; }
  .toolkit-grid article { min-height: 0; padding: 21px; }
}
