:root {
  color-scheme: dark;
  --bg: #06090c;
  --panel: #0b1117;
  --panel-2: #0f1820;
  --line: rgba(142, 160, 173, 0.24);
  --line-strong: rgba(64, 242, 192, 0.48);
  --text: #ecf6ff;
  --muted: #a8b8c5;
  --dim: #718391;
  --teal: #40f2c0;
  --amber: #f6c766;
  --coral: #ff6b4a;
  --blue: #5aa9ff;
  --shadow: 0 36px 100px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(64, 242, 192, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(64, 242, 192, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #06090c 0%, #081018 44%, #06090c 100%);
  background-size: 42px 42px, 42px 42px, auto;
  color: var(--text);
  font-family: "Segoe UI", Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(236, 246, 255, 0.08), transparent 20%, transparent 78%, rgba(64, 242, 192, 0.05)),
    radial-gradient(ellipse at top, rgba(64, 242, 192, 0.08), transparent 36rem);
}

a {
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3,
.brand strong,
.step-number,
.hero__stats dd {
  font-family: Bahnschrift, "Arial Narrow", "Segoe UI", system-ui, sans-serif;
}

.eyebrow,
.hud-line,
.console-tabs button,
.status-chip,
.trust-mark,
.boot__skip,
.mobile-buy,
.trust-checklist li {
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

.boot {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #020405;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.boot.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.boot__frame {
  position: relative;
  width: min(560px, calc(100vw - 36px));
  min-height: 180px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(11, 17, 23, 0.98), rgba(6, 9, 12, 0.98));
  display: grid;
  place-items: center;
  padding: 34px;
}

.corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--teal);
  opacity: 0.85;
}

.corner--tl { top: 12px; left: 12px; border-top: 1px solid; border-left: 1px solid; }
.corner--tr { top: 12px; right: 12px; border-top: 1px solid; border-right: 1px solid; }
.corner--bl { bottom: 12px; left: 12px; border-bottom: 1px solid; border-left: 1px solid; }
.corner--br { bottom: 12px; right: 12px; border-bottom: 1px solid; border-right: 1px solid; }

.boot__bar {
  width: min(360px, 76vw);
  height: 5px;
  margin-top: 22px;
  border: 1px solid rgba(64, 242, 192, 0.38);
  background: rgba(64, 242, 192, 0.06);
}

.boot__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  animation: boot-load 780ms ease forwards;
}

.boot__skip {
  position: absolute;
  right: 18px;
  bottom: 16px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 8px 10px;
  cursor: pointer;
}

@keyframes boot-load {
  to { width: 100%; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 9, 12, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(64, 242, 192, 0.35);
  border-radius: 6px;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
}

.brand small {
  display: block;
  color: var(--dim);
  font-size: 0.72rem;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-header nav a,
.site-footer nav a {
  text-decoration: none;
}

.site-header nav a:hover,
.site-footer nav a:hover {
  color: var(--text);
}

.header-cta,
.btn,
.mobile-buy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  border-radius: 4px;
}

.header-cta {
  min-width: max-content;
  padding: 10px 16px;
  border-color: var(--line-strong);
  color: var(--teal);
}

.hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px clamp(18px, 4vw, 54px) 76px;
}

.hud-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: rgba(11, 17, 23, 0.58);
  padding: 10px 14px;
  color: var(--dim);
  font-size: 0.72rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 132px);
  padding-top: 38px;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 12px 14px;
  border: 1px solid rgba(246, 199, 102, 0.46);
  background: rgba(246, 199, 102, 0.08);
  text-decoration: none;
  border-radius: 6px;
}

.proof-pill:hover {
  border-color: rgba(246, 199, 102, 0.9);
}

.proof-pill__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 5px;
  background: var(--amber);
  color: #171106;
  font-weight: 900;
}

.proof-pill strong,
.proof-pill small {
  display: block;
}

.proof-pill small {
  color: var(--muted);
  margin-top: 2px;
  font-size: 0.82rem;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.74rem;
}

.hero h1 {
  max-width: 780px;
  margin-top: 20px;
  color: white;
  font-size: clamp(3.7rem, 7.7vw, 8.8rem);
  line-height: 0.86;
  font-weight: 900;
}

.hero__lead {
  max-width: 720px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
  line-height: 1.72;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 52px;
  padding: 15px 20px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: #03100c;
  background: linear-gradient(135deg, var(--teal), #b8ffe8);
  box-shadow: 0 20px 56px rgba(64, 242, 192, 0.25);
}

.btn--secondary {
  border-color: var(--line);
  background: rgba(236, 246, 255, 0.04);
  color: var(--text);
}

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

.hero__stats div {
  border: 1px solid var(--line);
  background: rgba(11, 17, 23, 0.72);
  padding: 16px;
  border-radius: 6px;
}

.hero__stats dt {
  color: var(--dim);
  font-size: 0.78rem;
}

.hero__stats dd {
  margin: 4px 0 0;
  color: white;
  font-size: clamp(1.2rem, 2vw, 1.74rem);
  font-weight: 900;
}

.run-console,
.video-shell,
.app-panel,
.trust-checklist,
.pricing,
.safety__visual,
.faq-list {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 24, 32, 0.94), rgba(7, 12, 17, 0.96));
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.run-console {
  position: relative;
  overflow: hidden;
}

.run-console::before,
.video-shell::before,
.safety__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(64, 242, 192, 0.11);
  transform: translate(8px, 8px);
}

.console-topbar,
.console-tabs,
.console-body {
  position: relative;
  z-index: 1;
}

.console-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.console-topbar h2 {
  margin-top: 7px;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  color: white;
}

.status-chip {
  border: 1px solid rgba(64, 242, 192, 0.44);
  color: var(--teal);
  padding: 7px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
}

.status-chip.is-amber {
  border-color: rgba(246, 199, 102, 0.5);
  color: var(--amber);
}

.status-chip.is-blue {
  border-color: rgba(90, 169, 255, 0.5);
  color: var(--blue);
}

.console-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.console-tabs button {
  min-height: 48px;
  border: 0;
  border-right: 1px solid var(--line);
  background: rgba(6, 9, 12, 0.34);
  color: var(--muted);
  cursor: pointer;
}

.console-tabs button:last-child {
  border-right: 0;
}

.console-tabs button.is-active {
  background: rgba(64, 242, 192, 0.1);
  color: var(--teal);
}

.console-body {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(230px, 0.55fr);
  gap: 16px;
  padding: 18px;
}

.console-screen {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(64, 242, 192, 0.18);
  background: #020405;
  border-radius: 6px;
}

.console-screen img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: left top;
  opacity: 0.88;
}

.console-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.readout {
  border: 1px solid rgba(236, 246, 255, 0.12);
  background: rgba(2, 4, 5, 0.78);
  padding: 16px;
  border-radius: 5px;
  backdrop-filter: blur(10px);
}

.readout span,
.meter-card__head span,
.meter-card p,
.ledger,
.safety-gauge span,
.audit-row {
  color: var(--muted);
  font-size: 0.86rem;
}

.readout strong {
  display: block;
  margin-top: 4px;
  color: var(--teal);
  font-size: 2.2rem;
  line-height: 1;
}

.readout--secondary strong {
  color: var(--amber);
  font-size: 1.1rem;
}

.console-side {
  display: grid;
  gap: 14px;
}

.meter-card,
.ledger {
  border: 1px solid rgba(236, 246, 255, 0.1);
  background: rgba(236, 246, 255, 0.03);
  border-radius: 6px;
}

.meter-card {
  padding: 16px;
}

.meter-card__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.meter-card__head strong {
  color: var(--teal);
}

.meter {
  height: 8px;
  margin: 14px 0;
  background: rgba(236, 246, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.meter span {
  display: block;
  width: 38%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transition: width 420ms ease;
}

.ledger {
  list-style: none;
  margin: 0;
  padding: 12px;
}

.ledger li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(236, 246, 255, 0.07);
}

.ledger li:last-child {
  border-bottom: 0;
}

.ledger span,
.trust-checklist span {
  width: 9px;
  height: 9px;
  border: 1px solid var(--dim);
  border-radius: 50%;
}

.ledger li.is-done span,
.trust-checklist li span {
  border-color: var(--teal);
  background: var(--teal);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 6, 8, 0.48);
}

.trust-strip article {
  min-height: 190px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-mark {
  color: var(--teal);
  font-size: 0.78rem;
}

.trust-strip h3 {
  margin-top: 22px;
  color: white;
  font-size: 1.24rem;
}

.trust-strip p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.62;
}

.preview,
.workflow,
.faq {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px clamp(18px, 4vw, 54px);
}

.section-kicker {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-kicker h2,
.safety h2,
.pricing h2 {
  margin-top: 12px;
  color: white;
  font-size: clamp(2.8rem, 6vw, 6.6rem);
  line-height: 0.94;
  font-weight: 900;
}

.video-shell {
  position: relative;
  max-width: 1080px;
  padding: 12px;
  overflow: hidden;
}

.video-shell video,
.video-shell img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.workflow-grid {
  display: grid;
  gap: 48px;
}

.workflow-step {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
}

.workflow-step--reverse {
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
}

.workflow-step--reverse .step-copy {
  order: 2;
}

.step-copy {
  border-left: 1px solid rgba(64, 242, 192, 0.32);
  padding-left: 22px;
}

.step-number {
  color: var(--teal);
  font-size: 0.82rem;
}

.step-number--amber {
  color: var(--amber);
}

.step-number--blue {
  color: var(--blue);
}

.step-copy h3 {
  margin-top: 14px;
  color: white;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1;
}

.step-copy p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.03rem;
}

.step-copy strong {
  display: block;
  margin-top: 20px;
  color: var(--amber);
}

.app-panel {
  position: relative;
  overflow: hidden;
  padding: 8px;
}

.app-panel img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: left top;
  border-radius: 4px;
}

.app-panel--batch img {
  min-height: 0;
  height: auto;
  filter: brightness(1.18) contrast(1.08);
}

.app-panel--custom {
  padding: 20px;
}

.batch-overlay {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 6px;
  min-width: 220px;
  border: 1px solid rgba(246, 199, 102, 0.45);
  background: rgba(2, 4, 5, 0.84);
  padding: 16px;
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.batch-overlay strong,
.batch-overlay em,
.batch-overlay i {
  font-style: normal;
}

.batch-overlay strong {
  color: var(--amber);
}

.batch-overlay em {
  color: white;
}

.batch-overlay i {
  color: var(--muted);
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.78rem;
}

.audit-ledger {
  display: grid;
  gap: 10px;
}

.audit-row {
  display: grid;
  grid-template-columns: 1fr 0.95fr 0.9fr;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(236, 246, 255, 0.09);
  background: rgba(236, 246, 255, 0.03);
  padding: 14px;
  border-radius: 5px;
}

.audit-row--head {
  color: var(--dim);
  background: transparent;
}

.status {
  display: inline-flex;
  width: max-content;
  border: 1px solid currentColor;
  padding: 4px 7px;
  border-radius: 4px;
}

.status--wait { color: var(--amber); }
.status--clean { color: var(--coral); }
.status--ready { color: var(--teal); }

.safety {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(11, 17, 23, 0.5);
}

.safety__copy > p:not(.eyebrow),
.pricing__main > p {
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.08rem;
  max-width: 720px;
}

.safety-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.safety-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  border: 1px solid rgba(236, 246, 255, 0.1);
  background: rgba(6, 9, 12, 0.46);
  padding: 15px;
  border-radius: 5px;
}

.safety-list strong {
  color: white;
}

.safety-list span {
  color: var(--muted);
}

.safety__visual {
  position: relative;
  min-height: 480px;
  padding: 14px;
  overflow: hidden;
}

.settings-panel {
  display: block;
  min-height: 430px;
  background:
    linear-gradient(135deg, rgba(64, 242, 192, 0.08), transparent),
    #030506;
  border: 1px solid rgba(64, 242, 192, 0.16);
  border-radius: 6px;
  overflow: hidden;
}

.settings-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  opacity: 0.34;
  filter: brightness(1.28) contrast(1.1);
}

.settings-overlay-card {
  position: absolute;
  left: 34px;
  top: 34px;
  width: min(360px, calc(100% - 68px));
  border: 1px solid rgba(90, 169, 255, 0.42);
  background: rgba(7, 12, 17, 0.86);
  padding: 18px;
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
}

.settings-overlay-card > span {
  display: block;
  color: var(--blue);
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.settings-pair {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(236, 246, 255, 0.1);
  padding: 12px 0;
}

.settings-pair strong {
  color: var(--text);
}

.settings-pair em {
  color: var(--amber);
  font-style: normal;
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

.safety-gauge {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: min(280px, calc(100% - 68px));
  border: 1px solid rgba(64, 242, 192, 0.38);
  background: rgba(2, 4, 5, 0.82);
  padding: 18px;
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.safety-gauge strong {
  display: block;
  margin-top: 4px;
  color: var(--teal);
  font-size: 2rem;
}

.safety-gauge div {
  height: 8px;
  margin-top: 12px;
  background: rgba(236, 246, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.safety-gauge i {
  display: block;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
  gap: 24px;
  max-width: 1320px;
  margin: 100px auto;
  padding: clamp(22px, 5vw, 54px);
}

.pricing h2 {
  max-width: 820px;
}

.trust-checklist {
  padding: 24px;
  box-shadow: none;
}

.trust-checklist h3 {
  color: white;
  font-size: 1.35rem;
}

.trust-checklist ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.trust-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.86rem;
}

.faq {
  padding-top: 0;
}

.faq-list {
  box-shadow: none;
  padding: 8px 26px;
}

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

.faq details:last-child {
  border-bottom: 0;
}

.faq summary {
  cursor: pointer;
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
}

.faq p {
  max-width: 780px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 36px clamp(18px, 4vw, 54px) 110px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: white;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.mobile-buy {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(64, 242, 192, 0.42);
  background: rgba(6, 9, 12, 0.92);
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
}

.mobile-buy span {
  color: var(--muted);
  font-size: 0.82rem;
}

.mobile-buy strong {
  color: white;
}

.mobile-buy a {
  min-width: 120px;
  min-height: 42px;
  background: var(--teal);
  color: #03100c;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: transform 560ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero__grid,
  .workflow-step,
  .workflow-step--reverse,
  .safety,
  .pricing {
    grid-template-columns: 1fr;
  }

  .workflow-step--reverse .step-copy {
    order: 0;
  }

  .console-body {
    grid-template-columns: 1fr;
  }

  .console-screen,
  .console-screen img {
    min-height: 300px;
  }

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

  .trust-strip article:nth-child(2) {
    border-right: 0;
  }

  .trust-strip article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  body {
    background-size: 34px 34px, 34px 34px, auto;
  }

  .site-header {
    padding: 12px 16px;
  }

  .site-header nav {
    display: none;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 18px 16px 54px;
  }

  .hud-line {
    display: none;
  }

  .hero__grid {
    min-height: 0;
    padding-top: 18px;
    gap: 28px;
  }

  .proof-pill {
    margin-bottom: 18px;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero__lead {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .console-topbar {
    flex-direction: column;
  }

  .console-tabs {
    grid-template-columns: 1fr;
  }

  .console-tabs button {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .console-tabs button:last-child {
    border-bottom: 0;
  }

  .console-screen,
  .console-screen img {
    min-height: 245px;
  }

  .console-overlay {
    position: static;
    grid-template-columns: 1fr;
    padding: 12px;
    background: #020405;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip article,
  .trust-strip article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .preview,
  .workflow,
  .faq,
  .safety {
    padding: 66px 16px;
  }

  .section-kicker h2,
  .safety h2,
  .pricing h2 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .workflow-grid {
    gap: 36px;
  }

  .step-copy {
    padding-left: 16px;
  }

  .app-panel img {
    min-height: 180px;
  }

  .app-panel--batch img {
    min-height: 0;
  }

  .batch-overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
    min-width: 0;
  }

  .audit-row {
    grid-template-columns: 1fr;
  }

  .safety-list div {
    grid-template-columns: 1fr;
  }

  .safety__visual {
    min-height: 0;
  }

  .settings-panel,
  .settings-panel img {
    min-height: 300px;
  }

  .safety-gauge {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .settings-overlay-card {
    position: static;
    width: 100%;
    margin-top: -286px;
    margin-bottom: 12px;
  }

  .pricing {
    margin: 66px 16px;
    padding: 20px;
  }

  .faq-list {
    padding: 4px 18px;
  }

  .site-footer {
    flex-direction: column;
    padding: 30px 16px 92px;
  }

  .mobile-buy {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .boot {
    display: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
