:root {
  --ink: #08090b;
  --ink-2: #101115;
  --ink-3: #17191e;
  --line: #2a2c32;
  --line-soft: #202228;
  --text: #f0f1ed;
  --text-2: #b5b8b4;
  --text-3: #7e837f;
  --fog: #e9ece8;
  --fog-2: #dfe3df;
  --fog-text: #141614;
  --accent: #e6e7a3;
  --accent-hover: #d6d876;
  --accent-rgb: 230, 231, 163;
  --green: #56c7a2;
  --red: #e56b68;
  --blue: #69aef5;
  --amber: #d9a64d;
  --display: "DM Serif Display", Georgia, serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.is-menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input { font: inherit; letter-spacing: 0; }
button { color: inherit; }
img { display: block; max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

[hidden] { display: none !important; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: 72px;
  background: rgba(8, 9, 11, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.site-nav {
  width: min(1320px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-weight: 650;
  color: var(--text);
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: var(--accent);
  background: var(--ink-2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--text-2);
  font-size: 14px;
}

.nav-links a { transition: color 160ms ease; }
.nav-links a:hover { color: var(--text); }

.button {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms var(--ease), background-color 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button--small { min-height: 40px; padding: 0 17px; font-size: 14px; }
.button--primary {
  background: var(--accent);
  color: #10110e;
  border-color: var(--accent);
  box-shadow: 0 10px 32px rgba(var(--accent-rgb), 0.12);
}
.button--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.button--dark { background: var(--ink); color: var(--text); border-color: var(--ink); }
.button--dark:hover { background: #1a1c1f; }

.nav-menu {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--ink-2);
  cursor: pointer;
}

.nav-menu span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-menu[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.nav-menu[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

.mobile-navigation {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 79;
  padding: 24px;
  display: grid;
  gap: 6px;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}

.mobile-navigation > a:not(.button) {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text-2);
}

.mobile-navigation .button { width: 100%; margin-top: 14px; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow--dark { color: #444842; }

.cockpit-tour {
  padding: 112px 24px 124px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(var(--accent-rgb), 0.045), transparent 24%),
    #0d0f12;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.cockpit-tour-heading {
  width: min(1180px, 100%);
  margin: 0 auto 58px;
}

.cockpit-tour-heading h1 {
  margin: 0;
  font-family: var(--display);
  font-size: 58px;
  font-weight: 400;
  line-height: 1.05;
}

.cockpit-tour-heading > p:not(.cockpit-tour-disclosure) {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--text-2);
  font-size: 17px;
}

.cockpit-tour-heading .cockpit-tour-disclosure {
  margin: 10px 0 0;
  color: var(--text-3);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cockpit-tour-shell {
  width: min(1500px, 100%);
  margin: 0 auto;
}

.cockpit-tour-stage {
  position: relative;
  padding-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(292px, 22vw, 330px);
  align-items: start;
  gap: clamp(30px, 3vw, 46px);
}

.cockpit-canvas {
  position: relative;
  aspect-ratio: 1594 / 897;
  overflow: hidden;
  border: 1px solid #303238;
  border-radius: 8px;
  background: #090a0d;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.46);
}

.cockpit-capture {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 520ms ease;
}

.cockpit-capture.is-active { opacity: 1; }
.cockpit-capture--workspace { object-position: center top; }

.cockpit-nav-overlay {
  position: absolute;
  z-index: 3;
  left: 1%;
  top: 8.5%;
  width: 98%;
  height: 6.4%;
  padding: 0 1.2%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8%;
  overflow: hidden;
  color: #747a75;
  border: 1px solid #24272b;
  border-radius: 999px;
  background: #111217;
  font-size: clamp(5px, 0.58vw, 9px);
  transition: opacity 360ms ease;
}

.cockpit-nav-overlay span {
  height: 68%;
  padding: 0 2.1%;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
}

[data-tour-step="cockpit"] [data-cockpit-nav-step="cockpit"],
[data-tour-step="scanner"] [data-cockpit-nav-step="scanner"],
[data-tour-step="guardrails"] [data-cockpit-nav-step="guardrails"],
[data-tour-step="journal"] [data-cockpit-nav-step="journal"],
[data-tour-step="market"] [data-cockpit-nav-step="market"] {
  color: var(--accent);
  border-color: #686946;
  background: #1a1b18;
}

.cockpit-chart-fill {
  position: absolute;
  z-index: 2;
  left: 16.35%;
  top: 62.1%;
  width: 63.2%;
  height: 37.9%;
  object-fit: cover;
  object-position: center 60%;
  opacity: 0.92;
  filter: saturate(0.78) brightness(0.82);
  transition: opacity 360ms ease;
}

.cockpit-watchlist {
  position: absolute;
  z-index: 2;
  left: 0.72%;
  top: 50.25%;
  bottom: 0;
  width: 14.7%;
  padding: 1.25% 1.05%;
  overflow: hidden;
  color: #c8cbc8;
  background: #111217;
  border: 1px solid #2a2c32;
  font-family: var(--mono);
  font-size: 9px;
  transition: opacity 360ms ease;
}

[data-tour-capture]:not([data-tour-capture="base"]) .cockpit-watchlist,
[data-tour-capture]:not([data-tour-capture="base"]) .cockpit-chart-fill,
[data-tour-capture]:not([data-tour-capture="base"]) .cockpit-nav-overlay {
  opacity: 0;
}

.cockpit-watchlist-head {
  margin: -1.25% -5% 8%;
  padding: 8% 7%;
  display: flex;
  justify-content: space-between;
  color: #858a86;
  text-transform: uppercase;
  border-bottom: 1px solid #2a2c32;
}

.cockpit-watchlist-head b { color: #777c78; font-weight: 500; }
.cockpit-watchlist > div:not(.cockpit-watchlist-head) { min-height: 19%; display: grid; grid-template-columns: 24px minmax(0, 1fr) auto; align-items: center; gap: 7px; }
.cockpit-watchlist i { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid #33363c; border-radius: 5px; color: #e3e5e1; font-style: normal; font-size: 7px; }
.cockpit-watchlist span { min-width: 0; display: grid; }
.cockpit-watchlist span b { color: #e3e5e1; font-size: 10px; }
.cockpit-watchlist small { color: #686d69; font-size: 7px; }
.cockpit-watchlist strong { color: var(--green); font-size: 9px; }
.cockpit-watchlist strong.is-down { color: var(--red); }

.cockpit-focus {
  --tour-x: 0.8%;
  --tour-y: 37.8%;
  --tour-w: 98.4%;
  --tour-h: 10.9%;
  position: absolute;
  z-index: 4;
  left: var(--tour-x);
  top: var(--tour-y);
  width: var(--tour-w);
  height: var(--tour-h);
  pointer-events: none;
  border: 1px solid rgba(230, 231, 163, 0.9);
  border-radius: 8px;
  background: rgba(230, 231, 163, 0.035);
  box-shadow: 0 0 0 9999px rgba(4, 5, 7, 0.34), 0 0 20px rgba(230, 231, 163, 0.1);
  transition: left 720ms var(--ease), top 720ms var(--ease), width 720ms var(--ease), height 720ms var(--ease);
}

.cockpit-hairline {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.cockpit-hairline-path {
  fill: none;
  stroke: rgba(230, 231, 163, 0.96);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 8 7;
  filter: drop-shadow(0 0 3px rgba(230, 231, 163, 0.42));
  vector-effect: non-scaling-stroke;
}

[data-cockpit-hairline-reveal] {
  fill: none;
  stroke: #fff;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
}

.cockpit-hairline-node {
  fill: var(--accent);
  stroke: #0d0f12;
  stroke-width: 2.5;
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(230, 231, 163, 0.64));
  vector-effect: non-scaling-stroke;
}

.cockpit-tour-shell.is-drawing [data-cockpit-hairline-reveal] {
  animation: cockpit-line-reveal 1600ms var(--ease) both;
}

.cockpit-tour-shell.is-drawing .cockpit-hairline-node--source {
  animation: cockpit-node-in 320ms 180ms ease both;
}

.cockpit-tour-shell.is-drawing .cockpit-hairline-node--target {
  animation: cockpit-node-in 320ms 1420ms ease both;
}

@keyframes cockpit-line-reveal {
  from { stroke-dashoffset: 1; }
  to { stroke-dashoffset: 0; }
}

@keyframes cockpit-node-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cockpit-tour-rail {
  position: relative;
  z-index: 4;
  min-width: 0;
  align-self: stretch;
  display: grid;
  grid-template-rows: 42px auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.cockpit-tour-meta {
  min-width: 0;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-cockpit-autoplay] {
  min-height: 34px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  color: var(--text-2);
  background: transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

[data-cockpit-autoplay] i {
  position: relative;
  width: 8px;
  height: 10px;
  display: block;
  background: transparent;
}

[data-cockpit-autoplay] i::before,
[data-cockpit-autoplay] i::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 2px;
  height: 8px;
  background: var(--text-3);
}

[data-cockpit-autoplay] i::before { left: 1px; }
[data-cockpit-autoplay] i::after { right: 1px; }

[data-cockpit-autoplay][data-state="paused"] i::before {
  top: 0;
  left: 1px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--text-3);
  background: transparent;
}

[data-cockpit-autoplay][data-state="paused"] i::after { display: none; }

.cockpit-note {
  min-width: 0;
  min-height: 202px;
  padding: 28px 24px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cockpit-note div > p {
  margin: 0 0 7px;
  color: var(--text-3);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.cockpit-note h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 3.4vw, 54px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.cockpit-note > p {
  margin: 18px 0 0;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}

.cockpit-note.is-changing h3,
.cockpit-note.is-changing > p,
.cockpit-note.is-changing div > p {
  animation: cockpit-copy-rise 720ms var(--ease) both;
}

.cockpit-note.is-changing > p { animation-delay: 70ms; }

@keyframes cockpit-copy-rise {
  from { opacity: 0; transform: translateY(12px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.cockpit-tour-tabs {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: repeat(5, minmax(44px, 1fr));
  min-height: 0;
  padding: 6px 0;
}

.cockpit-tour-tabs button {
  position: relative;
  min-width: 0;
  min-height: 44px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  border: 0;
  color: var(--text-3);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, background-color 180ms ease;
}

.cockpit-tour-tabs button:hover { color: var(--text); }

.cockpit-tour-tabs button > strong {
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cockpit-tour-tabs button[aria-selected="true"] {
  color: var(--accent);
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.08), transparent 72%);
}

.cockpit-tour-tabs button::before {
  content: '';
  width: 1px;
  height: 18px;
  margin-right: 12px;
  flex: 0 0 auto;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 420ms var(--ease);
}

.cockpit-tour-tabs button[aria-selected="true"]::before { transform: scaleY(1); }


.pricing-section h2,
.brief h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 58px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.pricing-section {
  min-height: 620px;
  padding: 108px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 96px;
  color: var(--fog-text);
  background: #e5e8e4;
}

.pricing-section h2 { font-size: 60px; }
.pricing-copy > p:last-child { max-width: 420px; margin: 20px 0 0; color: #555a54; font-size: 17px; }

.pricing-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  min-width: 0;
  padding: 46px 38px 36px;
  justify-self: end;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.055), transparent 34%),
    #101014;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  box-shadow: 0 34px 72px rgba(25, 28, 26, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 6px 16px;
  transform: translateX(-50%);
  color: #11120f;
  background: var(--accent);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card-head {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.pricing-card-head > p:first-child { margin: 0; color: var(--text); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.pricing-card-head > span { display: block; margin-top: 8px; color: var(--text-3); font-size: 13px; }
.pricing-price { margin: 22px 0 0; display: flex; align-items: baseline; gap: 7px; white-space: nowrap; }
.pricing-price strong { font-family: var(--display); font-size: 52px; font-weight: 400; line-height: 0.9; }
.pricing-price span { color: var(--text-3); font-size: 13px; }

.pricing-features {
  margin: 0;
  padding: 25px 0 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  list-style: none;
}

.pricing-features li { padding: 7px 0; display: flex; align-items: flex-start; gap: 11px; color: var(--text-2); font-size: 13px; line-height: 1.45; }
.pricing-features li > span:first-child { width: 18px; height: 18px; margin-top: 1px; display: inline-grid; place-items: center; flex: 0 0 auto; color: var(--accent); border: 1px solid rgba(var(--accent-rgb), 0.3); border-radius: 50%; font-size: 10px; font-weight: 700; }
.pricing-features b { color: var(--text); font-weight: 600; }
.pricing-card .button { width: 100%; }
.pricing-note { margin: 15px 0 0; color: var(--text-3); font-size: 11px; text-align: center; }

.brief {
  min-height: 0;
  padding: 66px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 72px;
  background: #171c1d;
  border-bottom: 1px solid #2c3333;
}

.brief .eyebrow { margin-bottom: 10px; }
.brief h2 { margin: 0; font-size: 36px; }
.brief-copy > p:last-child { max-width: 560px; margin: 10px 0 0; color: #aeb6b3; font-size: 15px; }
.brief-form label { display: block; margin-bottom: 10px; color: #9da5a2; font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.brief-form > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.brief-form input { min-width: 0; height: 52px; padding: 0 16px; border: 1px solid #414848; border-radius: 6px; outline: none; color: var(--text); background: #0f1314; }
.brief-form input:focus { border-color: var(--accent); }
.brief-form input::placeholder { color: #666e6b; }
.brief-status { min-height: 24px; margin: 10px 0 0; color: #aeb6b3; font-size: 13px; }
.brief-status[data-tone="good"] { color: var(--green); }
.brief-status[data-tone="warn"] { color: var(--red); }

.site-footer {
  padding: 54px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 60px;
  align-items: center;
  background: var(--ink);
}

.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; color: var(--text-3); font-size: 12px; }
.site-footer > p { grid-column: 1 / -1; margin: 0; padding-top: 26px; color: #686c69; font-size: 11px; border-top: 1px solid var(--line-soft); }

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms ease, transform 820ms var(--ease);
}

[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .cockpit-tour-stage { padding-top: 0; grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .cockpit-tour-rail { grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr); grid-template-rows: 42px auto; }
  .cockpit-tour-meta { grid-column: 1 / -1; }
  .cockpit-note { min-height: 164px; border-right: 1px solid rgba(255, 255, 255, 0.07); border-bottom: 0; }
  .cockpit-tour-tabs { padding: 8px; display: flex; flex-wrap: wrap; align-content: center; gap: 2px; }
  .cockpit-tour-tabs button { min-height: 52px; padding: 0 14px; flex: 1 1 150px; }
  .cockpit-hairline { display: none; }
}

@media (max-width: 820px) {
  .site-nav { width: calc(100% - 32px); grid-template-columns: minmax(0, 1fr) auto auto; gap: 10px; }
  .nav-links { display: none; }
  .nav-menu { display: block; }

  .cockpit-tour { padding: 90px 18px 100px; }
  .cockpit-tour-heading { margin-bottom: 46px; }
  .cockpit-tour-heading h1 { font-size: 48px; }
  .cockpit-tour-rail { grid-template-columns: minmax(0, 1fr); grid-template-rows: 42px auto auto; }
  .cockpit-tour-meta { grid-column: 1; }
  .cockpit-note { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
  .cockpit-tour-tabs { display: flex; flex-wrap: wrap; }

  .pricing-section h2 { font-size: 48px; }

  .brief h2 { font-size: 38px; }

  .pricing-section { min-height: 0; padding: 84px 24px; grid-template-columns: 1fr; gap: 42px; }
  .pricing-copy > p:last-child { max-width: 560px; }
  .pricing-card { max-width: 560px; justify-self: start; }
  .brief { padding: 64px 24px; grid-template-columns: 1fr; gap: 28px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .site-header { height: 66px; }
  .site-nav { width: calc(100% - 24px); }
  .mobile-navigation { top: 66px; }
  .brand { min-height: 44px; font-size: 14px; }
  .brand-mark { width: 31px; height: 31px; }
  .nav-trial { min-height: 44px; padding: 0 12px; font-size: 12px; }
  .nav-menu { width: 44px; height: 44px; }

  .eyebrow { margin-bottom: 14px; font-size: 10px; }
  .cockpit-tour { padding: 94px 12px 84px; }
  .cockpit-tour-heading { margin-bottom: 34px; padding: 0 8px; }
  .cockpit-tour-heading h1 { font-size: 40px; }
  .cockpit-tour-heading > p:not(.cockpit-tour-disclosure) { font-size: 15px; }
  .cockpit-canvas { border-radius: 6px; }
  .cockpit-watchlist { display: none; }
  .cockpit-tour-stage { gap: 20px; }
  .cockpit-tour-rail { display: block; }
  .cockpit-tour-meta { min-height: 44px; }
  [data-cockpit-autoplay] { min-height: 44px; }
  .cockpit-note { padding: 20px 18px 22px; }
  .cockpit-note h3 { font-size: 42px; }
  .cockpit-note > p { font-size: 14px; }
  .cockpit-tour-tabs { padding: 6px; display: flex; flex-wrap: wrap; overflow: hidden; gap: 2px; }
  .cockpit-tour-tabs button { min-width: 0; min-height: 52px; padding: 0 12px; flex: 1 1 calc(50% - 2px); }

  .pricing-section h2 { font-size: 40px; }

  .brief h2 { font-size: 34px; }

  .pricing-section { padding: 76px 20px; gap: 34px; }
  .pricing-card { padding: 38px 24px 28px; border-radius: 22px; }
  .pricing-price strong { font-size: 42px; }
  .brief { padding: 54px 20px; gap: 24px; }
  .brief-form > div { grid-template-columns: 1fr; }
  .brief-form .button { width: 100%; }
  .site-footer { padding: 44px 20px; }
  .footer-links { gap: 14px; }
  .footer-links a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .cockpit-note.is-changing h3,
  .cockpit-note.is-changing > p,
  .cockpit-note.is-changing div > p { animation: none; }
}
