:root {
  color-scheme: dark;
  --ink: #090a0c;
  --ink-soft: #0d0f12;
  --panel: #111317;
  --panel-raised: #171a1f;
  --panel-warm: #1b1612;
  --cream: #f4efe6;
  --cream-soft: #ded8ce;
  --muted: #a7a39b;
  --muted-dark: #77756f;
  --coffee: #d78a4a;
  --coffee-bright: #ffad63;
  --coffee-pale: #ffd1a5;
  --safe: #75e6a4;
  --safe-deep: #184c31;
  --danger: #ff7b6b;
  --danger-deep: #4d211f;
  --line: rgba(244, 239, 230, 0.12);
  --line-strong: rgba(244, 239, 230, 0.2);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --content: 1180px;
  --font-display: "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 7%, rgba(215, 138, 74, 0.12), transparent 27rem),
    linear-gradient(180deg, #090a0c 0, #090a0c 31%, #0d0f12 100%);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 0, transparent 80%);
}

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

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--coffee);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--coffee-bright);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(9, 10, 12, 0.76);
  backdrop-filter: blur(22px) saturate(130%);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 44px;
  gap: 10px;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.brand img {
  border-radius: 9px;
  box-shadow: 0 8px 24px rgba(215, 138, 74, 0.22);
}

.version-pill {
  padding: 2px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  min-height: 44px;
  align-content: center;
  transition: color 160ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--coffee-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  justify-self: end;
  gap: 12px;
}

.language-switch {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.language-switch button {
  width: 42px;
  min-height: 36px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.language-switch button[aria-pressed="true"] {
  background: var(--cream);
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 720;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--coffee-bright);
  color: #1b1008;
  box-shadow: 0 12px 34px rgba(215, 138, 74, 0.2);
}

.button-primary:hover {
  background: #ffbd83;
  box-shadow: 0 16px 44px rgba(215, 138, 74, 0.32);
}

.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  color: var(--cream);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

.button-small {
  min-height: 40px;
  padding-inline: 17px;
  font-size: 12px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding-block: 72px 80px;
  gap: 64px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-index {
  display: inline-flex;
  align-items: center;
  color: var(--coffee-pale);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 12px;
  gap: 8px;
  border: 1px solid rgba(215, 138, 74, 0.22);
  border-radius: 999px;
  background: rgba(215, 138, 74, 0.075);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coffee-bright);
  box-shadow: 0 0 0 4px rgba(215, 138, 74, 0.12);
}

.hero h1 {
  max-width: 700px;
  margin: 28px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 5.7vw, 6.35rem);
  font-weight: 760;
  letter-spacing: -0.067em;
  line-height: 0.95;
}

.hero h1::first-line {
  color: var(--cream);
}

.hero-lede {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

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

.hero-install {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  max-width: 600px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
}

.hero-install > span {
  align-self: stretch;
  display: grid;
  padding: 14px 16px;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--coffee-bright);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-install code {
  display: block;
  overflow-x: auto;
  padding: 12px 16px;
  color: var(--cream-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.7;
  white-space: nowrap;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  gap: 12px 22px;
  color: var(--muted-dark);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.hero-trust > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--safe);
}

.ops-console {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(17, 19, 23, 0.91);
  box-shadow: var(--shadow), 0 0 0 1px rgba(0, 0, 0, 0.5) inset;
}

.ops-console::before {
  position: absolute;
  top: -170px;
  right: -110px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 123, 107, 0.08);
  content: "";
  filter: blur(40px);
  transition: background 400ms ease;
  pointer-events: none;
}

.ops-console[data-wake-active="true"]::before {
  background: rgba(117, 230, 164, 0.1);
}

.console-chrome {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.traffic-lights {
  display: flex;
  gap: 7px;
}

.traffic-lights span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #54575e;
}

.traffic-lights span:first-child {
  background: #ff7069;
}

.traffic-lights span:nth-child(2) {
  background: #f2be50;
}

.traffic-lights span:last-child {
  background: #62c856;
}

.console-title,
.console-live,
.console-kicker,
.risk-badge,
.safe-badge,
.agent-status,
.countdown,
.session-time {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.console-title {
  color: var(--muted-dark);
}

.console-live {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 7px;
  color: var(--muted);
}

.console-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 4px rgba(255, 123, 107, 0.1);
  animation: live-pulse 2s ease-in-out infinite;
}

.ops-console[data-wake-active="true"] .console-live i {
  background: var(--safe);
  box-shadow: 0 0 0 4px rgba(117, 230, 164, 0.1);
}

.console-body {
  position: relative;
  padding: 22px;
}

.console-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.console-summary > div:first-child {
  display: grid;
  gap: 3px;
}

.console-kicker {
  color: var(--muted-dark);
}

.console-summary strong {
  font-size: 17px;
  letter-spacing: -0.02em;
}

.risk-badge,
.safe-badge {
  display: flex;
  align-items: center;
  padding: 7px 10px;
  gap: 7px;
  border-radius: 999px;
}

.risk-badge {
  border: 1px solid rgba(255, 123, 107, 0.25);
  background: rgba(255, 123, 107, 0.08);
  color: var(--danger);
}

.safe-badge {
  border: 1px solid rgba(117, 230, 164, 0.25);
  background: rgba(117, 230, 164, 0.08);
  color: var(--safe);
}

.agent-list {
  display: grid;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.14);
}

.agent-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  min-height: 67px;
  padding: 10px 13px;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.agent-row:last-child {
  border-bottom: 0;
}

.agent-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
}

.agent-work {
  display: grid;
  min-width: 0;
}

.agent-work strong {
  font-size: 12px;
}

.agent-work span {
  overflow: hidden;
  color: var(--muted-dark);
  font-family: var(--font-mono);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agent-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
}

.agent-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coffee-bright);
  animation: status-blink 1.7s steps(2, end) infinite;
}

.sleep-warning,
.wake-session {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  min-height: 78px;
  margin-top: 14px;
  padding: 13px;
  gap: 12px;
  border-radius: var(--radius-sm);
}

.sleep-warning {
  border: 1px solid rgba(255, 123, 107, 0.22);
  background: linear-gradient(90deg, rgba(255, 123, 107, 0.09), rgba(255, 123, 107, 0.025));
}

.wake-session {
  border: 1px solid rgba(117, 230, 164, 0.22);
  background: linear-gradient(90deg, rgba(117, 230, 164, 0.1), rgba(117, 230, 164, 0.025));
}

.sleep-symbol,
.wake-cup {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 800;
}

.sleep-symbol {
  background: var(--danger-deep);
  color: var(--danger);
}

.sleep-symbol span {
  font-size: 10px;
  transform: translate(7px, -7px);
}

.wake-cup {
  background: var(--safe-deep);
  font-size: 19px;
}

.sleep-warning > div:nth-child(2),
.wake-session > div:nth-child(2) {
  display: grid;
}

.sleep-warning strong,
.wake-session strong {
  font-size: 11px;
}

.sleep-warning > div:nth-child(2) span,
.wake-session > div:nth-child(2) span {
  color: var(--muted-dark);
  font-family: var(--font-mono);
  font-size: 8px;
}

.countdown,
.session-time {
  display: grid;
  justify-items: end;
  gap: 3px;
  color: var(--muted-dark);
}

.countdown strong {
  color: var(--danger);
  font-size: 13px;
}

.session-time strong {
  color: var(--safe);
  font-size: 13px;
}

.wake-toggle {
  width: 100%;
  min-height: 50px;
  margin-top: 14px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 760;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.wake-toggle > span {
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.wake-toggle:hover {
  background: #fffaf1;
  box-shadow: 0 12px 34px rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.ops-console[data-wake-active="true"] .wake-toggle {
  background: var(--safe);
  color: #092215;
}

.safe-only {
  display: none;
}

.ops-console[data-wake-active="true"] .safe-only {
  display: flex;
}

.ops-console[data-wake-active="true"] .wake-session.safe-only {
  display: grid;
}

.ops-console[data-wake-active="true"] .risk-only {
  display: none;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.38; }
}

@keyframes status-blink {
  0%, 75% { opacity: 1; }
  76%, 100% { opacity: 0.25; }
}

.proof {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
  display: flex;
  align-items: baseline;
  min-height: 108px;
  padding: 28px 30px;
  gap: 10px;
  border-left: 1px solid var(--line);
}

.proof-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.proof-grid strong {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.proof-grid span {
  color: var(--muted-dark);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pain-section,
.features-section,
.safety-section,
.final-cta {
  padding-block: 150px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1fr);
  align-items: end;
  margin-bottom: 64px;
  column-gap: 80px;
}

.section-heading .section-index {
  grid-column: 1 / -1;
  margin-bottom: 22px;
}

.section-heading h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 730;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-heading p {
  max-width: 570px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: center;
}

.scenario-card {
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
}

.scenario-before {
  background: linear-gradient(145deg, rgba(255, 123, 107, 0.07), transparent 55%), var(--panel);
}

.scenario-after {
  background: linear-gradient(145deg, rgba(117, 230, 164, 0.075), transparent 55%), var(--panel);
}

.scenario-label {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 9px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.scenario-before .scenario-label span:first-child,
.scenario-after .scenario-label span:first-child {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
}

.scenario-before .scenario-label span:first-child {
  background: var(--danger-deep);
  color: var(--danger);
}

.scenario-after .scenario-label span:first-child {
  background: var(--safe-deep);
  color: var(--safe);
}

.scenario-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  min-height: 44px;
  padding-inline: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  color: var(--muted-dark);
  font-family: var(--font-mono);
  font-size: 10px;
}

.scenario-line code {
  color: var(--cream-soft);
}

.scenario-line b {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
}

.scenario-line.is-error b {
  color: var(--danger);
}

.scenario-line.is-safe b {
  color: var(--safe);
}

.scenario-card > p {
  margin: 22px 0 0;
  color: var(--muted);
}

.scenario-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--ink);
  color: var(--coffee-bright);
  font-size: 22px;
}

.features-section {
  padding-top: 80px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  grid-column: span 4;
  min-height: 380px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 45%),
    var(--panel);
}

.feature-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(215, 138, 74, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 22px rgba(215, 138, 74, 0.025), 0 0 0 44px rgba(215, 138, 74, 0.015);
  pointer-events: none;
}

.feature-primary {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.74fr 1.26fr;
  min-height: 550px;
  padding: 44px 0 0 44px;
  gap: 42px;
}

.feature-copy {
  padding-bottom: 44px;
}

.feature-number {
  display: block;
  margin-bottom: 46px;
  color: var(--muted-dark);
  font-family: var(--font-mono);
  font-size: 10px;
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 54px;
  place-items: center;
  border: 1px solid rgba(215, 138, 74, 0.22);
  border-radius: 15px;
  background: rgba(215, 138, 74, 0.08);
  color: var(--coffee-bright);
  font-family: var(--font-mono);
  font-size: 22px;
}

.feature-card .feature-icon + .feature-number {
  position: absolute;
  top: 30px;
  right: 30px;
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0 0 15px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.feature-card p {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.mode-pills,
.native-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  gap: 8px;
}

.mode-pills span,
.native-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 8px;
}

.mode-pills span:first-child {
  border-color: rgba(117, 230, 164, 0.25);
  background: rgba(117, 230, 164, 0.08);
  color: var(--safe);
}

.screenshot-frame {
  align-self: end;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-width: 1px 0 0 1px;
  border-radius: 18px 0 0;
  background: #1b1c1e;
  box-shadow: -24px -24px 80px rgba(0, 0, 0, 0.2);
}

.screenshot-bar {
  display: flex;
  align-items: center;
  height: 42px;
  padding-inline: 14px;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--muted-dark);
  font-family: var(--font-mono);
  font-size: 9px;
}

.screenshot-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coffee);
}

.screenshot-bar span {
  flex: 1;
}

.screenshot-bar b {
  color: var(--safe);
}

.screenshot-frame img {
  width: 100%;
  height: auto;
}

.duration-track {
  position: absolute;
  right: 30px;
  bottom: 32px;
  left: 30px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted-dark);
  font-family: var(--font-mono);
  font-size: 9px;
  text-align: center;
}

.duration-track::before {
  position: absolute;
  top: -3px;
  left: 41%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coffee-bright);
  content: "";
  box-shadow: 0 0 0 5px rgba(215, 138, 74, 0.13);
}

.duration-track .selected {
  color: var(--coffee-bright);
}

.battery-visual {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  height: 64px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.2);
}

.battery-visual::after {
  position: absolute;
  top: 21px;
  right: -6px;
  width: 5px;
  height: 20px;
  border-radius: 0 4px 4px 0;
  background: var(--line-strong);
  content: "";
}

.battery-visual span {
  position: absolute;
  inset: 6px auto 6px 6px;
  width: var(--level);
  border-radius: 9px;
  background: linear-gradient(90deg, #439f66, var(--safe));
}

.battery-visual strong {
  position: relative;
  z-index: 1;
  display: grid;
  height: 100%;
  place-items: center;
  color: #0a2b18;
  font-family: var(--font-mono);
  font-size: 13px;
}

.toggle-demo {
  position: absolute;
  right: 30px;
  bottom: 32px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--cream-soft);
  font-size: 12px;
}

.toggle-demo i {
  position: relative;
  width: 40px;
  height: 23px;
  border-radius: 999px;
  background: var(--safe);
}

.toggle-demo i::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: white;
  content: "";
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.language-cloud {
  position: absolute;
  right: 18px;
  bottom: 22px;
  left: 18px;
  height: 105px;
  color: var(--coffee-pale);
  font-family: var(--font-display);
}

.language-cloud span {
  position: absolute;
  opacity: 0.8;
}

.language-cloud span:nth-child(1) { left: 10%; top: 10%; font-size: 25px; }
.language-cloud span:nth-child(2) { right: 7%; top: 3%; font-size: 18px; }
.language-cloud span:nth-child(3) { left: 40%; top: 41%; font-size: 15px; }
.language-cloud span:nth-child(4) { right: 4%; bottom: 4%; font-size: 13px; }
.language-cloud span:nth-child(5) { left: 10%; bottom: 0; font-size: 17px; }
.language-cloud span:nth-child(6) { left: 62%; top: 6%; font-size: 11px; }

.native-tags {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
}

.native-tags span {
  color: var(--safe);
}

.mcp-section {
  position: relative;
  overflow: hidden;
  padding-block: 150px;
  border-block: 1px solid rgba(215, 138, 74, 0.17);
  background:
    radial-gradient(circle at 15% 20%, rgba(215, 138, 74, 0.12), transparent 28rem),
    radial-gradient(circle at 90% 70%, rgba(117, 230, 164, 0.06), transparent 24rem),
    #0a0a09;
}

.mcp-section::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(215, 138, 74, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(215, 138, 74, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 80%);
  pointer-events: none;
}

.section-heading-light h2 {
  color: #fff8ed;
}

.mcp-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 24px;
}

.setup-steps,
.code-window,
.tool-catalog {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(14, 15, 17, 0.88);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.25);
}

.setup-steps {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.setup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
}

.setup-header span {
  font-size: 14px;
  font-weight: 700;
}

.setup-header b {
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(117, 230, 164, 0.09);
  color: var(--safe);
  font-family: var(--font-mono);
  font-size: 9px;
}

.setup-steps ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.setup-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  padding: 20px 22px;
  gap: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.setup-steps li > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(215, 138, 74, 0.2);
  border-radius: 9px;
  background: rgba(215, 138, 74, 0.07);
  color: var(--coffee-bright);
  font-family: var(--font-mono);
  font-size: 9px;
}

.setup-steps li div {
  display: grid;
  gap: 3px;
}

.setup-steps li strong {
  font-size: 12px;
}

.setup-steps li p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 11px;
  line-height: 1.55;
}

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

.code-window {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.code-window header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.code-window header > div {
  display: flex;
  gap: 6px;
}

.code-window header > div span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4c4e53;
}

.code-window header > div span:first-child { background: #ff7069; }
.code-window header > div span:nth-child(2) { background: #f2be50; }
.code-window header > div span:last-child { background: #62c856; }

.code-window header strong {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
}

.code-window header button {
  justify-self: end;
  min-width: 66px;
  min-height: 34px;
  padding-inline: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 9px;
}

.code-window header button:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--cream);
}

.code-window pre {
  overflow-x: auto;
  margin: 0;
  padding: 24px;
  color: var(--cream-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.85;
  tab-size: 2;
}

.code-comment {
  color: #62666d;
}

.code-string {
  color: var(--safe);
}

.code-key {
  color: var(--coffee-pale);
}

.tool-response {
  display: grid;
  padding: 15px 24px;
  gap: 8px;
  border-top: 1px solid var(--line);
  background: rgba(117, 230, 164, 0.035);
}

.tool-response span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--safe);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.tool-response span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--safe);
}

.tool-response code {
  overflow-x: auto;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  white-space: nowrap;
}

.tool-catalog {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.9fr;
  margin-top: 24px;
  padding: 30px;
  gap: 28px;
  border-radius: var(--radius-md);
}

.catalog-intro span,
.resource-list > span {
  color: var(--coffee-bright);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.catalog-intro h3 {
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.catalog-intro p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 11px;
}

.catalog-list,
.resource-list {
  display: grid;
  align-content: start;
  gap: 8px;
}

.catalog-list code,
.resource-list code {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 8px;
  white-space: nowrap;
}

.resource-list > span {
  margin-bottom: 4px;
}

.resource-list code {
  color: var(--safe);
}

.copy-status {
  min-height: 24px;
  color: var(--safe);
  font-family: var(--font-mono);
  font-size: 10px;
  text-align: right;
}

.safety-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 18px;
}

.boundary-card,
.trust-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
}

.boundary-card {
  display: flex;
  flex-direction: column;
  min-height: 570px;
  padding: 34px;
}

.boundary-orbit {
  position: relative;
  display: grid;
  width: 190px;
  height: 190px;
  margin: 15px auto 45px;
  place-items: center;
  border: 1px solid rgba(215, 138, 74, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(215, 138, 74, 0.03), 0 0 0 58px rgba(215, 138, 74, 0.015);
}

.boundary-orbit::before,
.boundary-orbit::after {
  position: absolute;
  border: 1px dashed rgba(215, 138, 74, 0.16);
  border-radius: 50%;
  content: "";
}

.boundary-orbit::before { inset: 23px; }
.boundary-orbit::after { inset: 51px; }

.boundary-orbit span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 77px;
  height: 77px;
  place-items: center;
  border-radius: 50%;
  background: var(--coffee);
  color: #241207;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  text-align: center;
}

.boundary-orbit i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--safe);
  box-shadow: 0 0 0 4px rgba(117, 230, 164, 0.09);
}

.boundary-orbit i:nth-of-type(1) { top: 16px; left: 43px; }
.boundary-orbit i:nth-of-type(2) { right: 2px; bottom: 69px; }
.boundary-orbit i:nth-of-type(3) { bottom: 7px; left: 57px; }

.boundary-card h3 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.boundary-card ul {
  display: grid;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.boundary-card li {
  display: grid;
  grid-template-columns: 34px 1fr;
  min-height: 49px;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.boundary-card li span:first-child {
  color: var(--muted-dark);
  font-family: var(--font-mono);
  font-size: 9px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.trust-grid article {
  min-height: 276px;
  padding: 28px;
}

.trust-grid article > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--coffee-bright);
  font-family: var(--font-mono);
  font-size: 20px;
}

.trust-grid h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.035em;
}

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

.architecture-section {
  padding-block: 130px;
  border-block: 1px solid var(--line);
  background: #0b0c0e;
}

.section-heading-compact {
  grid-template-columns: 1fr 0.8fr;
  margin-bottom: 58px;
}

.section-heading-compact h2 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
}

.architecture-flow {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr 28px 1fr;
  align-items: center;
}

.architecture-flow > div {
  display: grid;
  min-height: 170px;
  padding: 22px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.architecture-flow > div span {
  color: var(--muted-dark);
  font-family: var(--font-mono);
  font-size: 9px;
}

.architecture-flow > div strong {
  font-size: 15px;
}

.architecture-flow > div code {
  overflow: hidden;
  color: var(--coffee-bright);
  font-family: var(--font-mono);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.architecture-flow > b {
  color: var(--muted-dark);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.architecture-notes {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  gap: 18px 36px;
  color: var(--muted-dark);
  font-family: var(--font-mono);
  font-size: 9px;
}

.architecture-notes span::before {
  color: var(--safe);
  content: "✓ ";
}

.final-cta {
  padding-block: 150px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  padding: 80px 40px;
  border: 1px solid rgba(215, 138, 74, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 30%, rgba(215, 138, 74, 0.2), transparent 20rem),
    linear-gradient(145deg, #1a1410, #0d0e11 70%);
  text-align: center;
}

.cta-card::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(215, 138, 74, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(215, 138, 74, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  mask-image: radial-gradient(circle at center, black, transparent 70%);
}

.cta-card > *:not(.cta-glow) {
  position: relative;
  z-index: 1;
}

.cta-card > img {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  border-radius: 22px;
  box-shadow: 0 25px 70px rgba(215, 138, 74, 0.3);
}

.cta-card h2 {
  max-width: 850px;
  margin: 22px auto 18px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 6rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.cta-card p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

.cta-card .hero-actions {
  justify-content: center;
}

.cta-card small {
  display: block;
  margin-top: 24px;
  color: var(--muted-dark);
  font-family: var(--font-mono);
  font-size: 9px;
}

.site-footer {
  padding-block: 30px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.footer-grid p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 11px;
}

.footer-grid > div {
  display: flex;
  justify-self: end;
  gap: 22px;
}

.footer-grid > div a {
  min-height: 44px;
  align-content: center;
  color: var(--muted);
  font-size: 11px;
}

.footer-grid > div a:hover {
  color: var(--cream);
}

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

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

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

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    max-width: 820px;
    min-height: auto;
    padding-block: 100px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1,
  .hero-lede,
  .hero-install {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .feature-card {
    grid-column: span 6;
  }

  .feature-primary {
    grid-column: 1 / -1;
  }

  .mcp-layout {
    grid-template-columns: 1fr;
  }

  .setup-steps ol {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .setup-steps li:last-child {
    grid-column: 1 / -1;
  }

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

  .boundary-card {
    min-height: auto;
  }

  .boundary-card ul {
    margin-top: 0;
  }

  .architecture-flow {
    grid-template-columns: 1fr 20px 1fr 20px 1fr;
    row-gap: 20px;
  }

  .architecture-flow > div:nth-of-type(4) {
    grid-column: 3;
  }

  .architecture-flow > b:nth-of-type(3) {
    grid-column: 2;
    transform: rotate(90deg);
  }

  .architecture-flow > div:nth-of-type(5) {
    grid-column: 5;
  }
}

@media (max-width: 800px) {
  .shell {
    width: min(calc(100% - 32px), var(--content));
  }

  .pain-section,
  .features-section,
  .safety-section,
  .final-cta,
  .mcp-section {
    padding-block: 100px;
  }

  .section-heading,
  .section-heading-compact {
    grid-template-columns: 1fr;
    margin-bottom: 42px;
    gap: 22px;
  }

  .section-heading .section-index {
    margin-bottom: 5px;
  }

  .before-after {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .scenario-arrow {
    margin-inline: auto;
    transform: rotate(90deg);
  }

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

  .proof-grid > div:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .proof-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .feature-card,
  .feature-primary {
    grid-column: 1 / -1;
  }

  .feature-primary {
    grid-template-columns: 1fr;
    padding: 34px 0 0 30px;
  }

  .feature-copy {
    padding: 0 30px 0 0;
  }

  .tool-catalog {
    grid-template-columns: 1fr;
  }

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

  .architecture-flow {
    grid-template-columns: 1fr;
  }

  .architecture-flow > div,
  .architecture-flow > div:nth-of-type(4),
  .architecture-flow > div:nth-of-type(5),
  .architecture-flow > b:nth-of-type(3) {
    grid-column: 1;
  }

  .architecture-flow > b,
  .architecture-flow > b:nth-of-type(3) {
    transform: rotate(90deg);
  }

  .architecture-notes {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-grid .brand,
  .footer-grid > div {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: relative;
  }

  .nav {
    min-height: 70px;
    gap: 10px;
  }

  .version-pill,
  .nav-actions > .button {
    display: none;
  }

  .hero {
    padding-block: 68px 80px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(3rem, 14.8vw, 4.6rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    justify-content: start;
    text-align: left;
  }

  .hero-install {
    grid-template-columns: 1fr;
  }

  .hero-install > span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .console-body {
    padding: 14px;
  }

  .console-title {
    display: none;
  }

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

  .agent-row {
    grid-template-columns: 32px 1fr;
  }

  .agent-status {
    display: none;
  }

  .sleep-warning,
  .wake-session {
    grid-template-columns: 38px 1fr;
  }

  .countdown,
  .session-time {
    display: none;
  }

  .proof-grid > div {
    display: grid;
    align-content: center;
    min-height: 98px;
    padding: 18px;
  }

  .section-heading h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .scenario-card {
    padding: 20px;
  }

  .scenario-line {
    grid-template-columns: 1fr auto;
  }

  .scenario-line > span:first-child {
    display: none;
  }

  .feature-card {
    min-height: 390px;
    padding: 24px;
  }

  .feature-primary {
    padding: 30px 0 0 24px;
  }

  .feature-copy {
    padding-right: 24px;
  }

  .feature-number {
    margin-bottom: 34px;
  }

  .feature-icon {
    margin-bottom: 44px;
  }

  .setup-steps ol {
    grid-template-columns: 1fr;
  }

  .setup-steps li:last-child {
    grid-column: auto;
  }

  .code-window header {
    grid-template-columns: 1fr auto;
  }

  .code-window header > div {
    display: none;
  }

  .code-window header strong {
    justify-self: start;
  }

  .code-window pre {
    padding: 18px;
    font-size: 9px;
  }

  .tool-catalog,
  .boundary-card,
  .trust-grid article {
    padding: 23px;
  }

  .catalog-list code,
  .resource-list code {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .boundary-orbit {
    width: 160px;
    height: 160px;
  }

  .cta-card {
    min-height: 520px;
    padding: 60px 22px;
    border-radius: 24px;
  }

  .cta-card h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .footer-grid > div {
    flex-wrap: wrap;
    justify-content: center;
  }
}

body { background: var(--ink); }
body::before { display: none; }
body .nav { min-height: 64px; }
body .hero { min-height: 0; padding-block: 40px 48px; gap: 36px; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
body .hero h1 { margin: 18px 0; font-size: clamp(2.2rem, 3.8vw, 3.5rem); line-height: 1.14; letter-spacing: -.025em; }
body .hero-lede { font-size: 1rem; line-height: 1.65; }
body .hero-actions { margin-top: 22px; }
body .hero-trust { margin-top: 20px; }
body .eyebrow, body .section-index { font-size: 12px; letter-spacing: .07em; }
body .pain-section, body .features-section, body .safety-section, body .mcp-section, body .architecture-section, body .final-cta { padding-block: 48px; }
body .section-heading { margin-bottom: 28px; gap: 20px 36px; }
body .section-heading .section-index { margin-bottom: 0; }
body .section-heading h2, body .section-heading-compact h2 { font-size: clamp(1.8rem, 2.8vw, 2.6rem); line-height: 1.2; letter-spacing: -.025em; }
body .section-heading p { font-size: 1rem; line-height: 1.65; }
body .cta-card { min-height: 0; padding: 36px 24px; border-radius: 16px; }
body .cta-card > img { width: 56px; height: 56px; margin-bottom: 16px; }
body .cta-card h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.2; letter-spacing: -.025em; }
body .button { min-height: 44px; border-radius: 8px; }
@media (max-width: 900px) {
  body .hero { grid-template-columns: 1fr; gap: 28px; }
  body .section-heading { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 560px) {
  body .hero { padding-block: 28px; }
  body .hero h1 { font-size: 2.2rem; }
  body .pain-section, body .features-section, body .safety-section, body .mcp-section, body .architecture-section, body .final-cta { padding-block: 32px; }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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