:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  --bg: #0a0b0d;
  --bg-raised: #111317;
  --surface: rgba(24, 27, 32, 0.82);
  --surface-solid: #181b20;
  --surface-soft: #20242a;
  --line: rgba(255, 255, 255, 0.095);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f6f8;
  --text-soft: #b0b6c0;
  --text-muted: #7e8692;
  --lime: #9cf65a;
  --lime-strong: #7ee63a;
  --lime-soft: rgba(156, 246, 90, 0.12);
  --violet: #8f7fff;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(156, 246, 90, 0.07), transparent 32rem),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

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

::selection {
  background: rgba(156, 246, 90, 0.32);
  color: white;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--lime);
  color: #0a0b0d;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.ambient {
  position: absolute;
  z-index: -1;
  width: min(42rem, 100vw);
  height: min(42rem, 100vw);
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
}

.ambient-one {
  top: 16rem;
  right: 0;
  background: var(--violet);
}

.ambient-two {
  top: 78rem;
  left: 0;
  background: var(--lime);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 32px), 1240px);
  min-height: 68px;
  margin: 14px auto 0;
  padding: 10px 12px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 11, 13, 0.74);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 15px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand img {
  border-radius: 9px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--text-soft);
  font-size: 13px;
  transition: color 150ms ease, background 150ms ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 7px;
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
}

.language-button:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 690;
  letter-spacing: -0.01em;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease, color 150ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.985);
}

.button-small {
  min-height: 38px;
  padding-inline: 13px;
  font-size: 13px;
}

.button-large {
  min-height: 52px;
  padding-inline: 20px;
  border-radius: 14px;
}

.button-primary {
  background: var(--lime);
  color: #11150d;
  box-shadow: 0 10px 34px rgba(126, 230, 58, 0.12);
}

.button-primary:hover {
  background: #acf978;
  box-shadow: 0 14px 42px rgba(126, 230, 58, 0.18);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

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

.button-quiet {
  color: var(--text-soft);
}

.button-quiet:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.play-mark {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 9px;
  padding-left: 1px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  align-items: center;
  gap: 58px;
  width: min(calc(100% - 48px), var(--max));
  min-height: 760px;
  margin: 0 auto;
  padding: 92px 0 78px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.13em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(156, 246, 90, 0.78);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 760;
  line-height: 0.99;
  letter-spacing: -0.06em;
}

.hero h1 span {
  display: inline-block;
  margin-top: 8px;
  color: var(--text-muted);
  font-weight: 620;
}

.hero-lede {
  max-width: 610px;
  margin: 27px 0 0;
  color: var(--text-soft);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.62;
  letter-spacing: -0.018em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.release-note {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 12px;
}

.hero-stage {
  position: relative;
  min-width: 0;
  transform: perspective(1200px) rotateY(-2.5deg) rotateX(1.4deg);
  transform-origin: center;
}

.stage-halo {
  position: absolute;
  inset: 8% 6%;
  border-radius: 40%;
  background: rgba(156, 246, 90, 0.14);
  filter: blur(70px);
}

.app-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: #17191d;
  box-shadow: var(--shadow), 0 0 0 1px rgba(0, 0, 0, 0.8);
}

.window-bar {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  height: 33px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(24, 26, 30, 0.88);
  backdrop-filter: blur(16px);
}

.traffic {
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
}

.traffic.red { background: #ff5f57; }
.traffic.yellow { background: #febc2e; }
.traffic.green { background: #28c840; }

.window-title {
  position: absolute;
  left: 50%;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  transform: translateX(-50%);
}

.app-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111318;
}

.stage-playback {
  position: absolute;
  z-index: 3;
  right: 10px;
  bottom: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(10, 11, 13, 0.76);
  color: var(--text);
  cursor: pointer;
  font-size: 11px;
  backdrop-filter: blur(12px);
}

.stage-playback:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(24, 27, 32, 0.92);
}

.stage-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px 0 9px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(24, 27, 32, 0.86);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  color: var(--text-soft);
  font-size: 11px;
  backdrop-filter: blur(18px);
}

.note-top {
  top: 15%;
  right: -7%;
}

.note-bottom {
  bottom: 9%;
  left: -8%;
}

.note-icon {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 8px;
  background: var(--lime-soft);
  color: var(--lime);
  font-weight: 800;
}

.note-icon-shield {
  font-size: 17px;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 640;
  letter-spacing: 0.02em;
}

.trust-separator {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--line-strong);
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 126px 0;
}

.section-heading {
  max-width: 730px;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered .eyebrow {
  justify-content: center;
}

.section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 730;
  line-height: 1.06;
  letter-spacing: -0.048em;
}

.section-heading > p:last-child,
.safety-copy > p,
.roadmap-card > div > p:last-child {
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.65;
}

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

.comparison-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.comparison-after {
  border-color: rgba(156, 246, 90, 0.22);
  background: linear-gradient(145deg, rgba(156, 246, 90, 0.065), rgba(255, 255, 255, 0.014));
}

.comparison-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
}

.comparison-before .comparison-label span:first-child {
  color: #ff7f84;
}

.comparison-after .comparison-label span:first-child {
  color: var(--lime);
}

.comparison pre {
  min-height: 205px;
  margin: 22px 0 18px;
  padding: 19px;
  overflow-wrap: anywhere;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: #0c0e11;
  color: #d8dde6;
  font: 13px/1.75 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  white-space: pre-wrap;
}

.comparison p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.muted { color: var(--text-muted); }
.removed { color: #ed858a; }
.added { color: var(--lime); }

.demo-shell {
  position: relative;
  margin-top: 54px;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
}

.demo-shell::before {
  position: absolute;
  z-index: -1;
  inset: 12% 18%;
  border-radius: 50%;
  background: rgba(143, 127, 255, 0.12);
  filter: blur(80px);
  content: "";
}

.demo-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background: #101216;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.journey-card,
.feature-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.journey-card {
  min-height: 215px;
  padding: 22px;
}

.journey-number {
  display: block;
  margin-bottom: 42px;
  color: var(--lime);
  font: 11px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.journey-card h3,
.feature-card h3,
.safety-stack h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.journey-card p,
.feature-card p,
.safety-stack p {
  margin: 11px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.feature-section {
  padding-top: 86px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.feature-card {
  position: relative;
  min-height: 230px;
  padding: 27px;
  overflow: hidden;
}

.feature-card::after {
  position: absolute;
  inset: auto -70px -90px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(156, 246, 90, 0.055);
  filter: blur(35px);
  content: "";
}

.feature-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  min-height: 195px;
}

.feature-icon {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 35px;
  place-items: center;
  border: 1px solid rgba(156, 246, 90, 0.18);
  border-radius: 12px;
  background: var(--lime-soft);
  color: var(--lime);
  font: 17px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.feature-wide .feature-icon {
  margin: 0;
}

.feature-wide p {
  max-width: 580px;
}

.position-control {
  display: grid;
  grid-template-columns: repeat(3, 24px);
  gap: 5px;
  margin: 4px 10px 0 40px;
}

.position-control span {
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.03);
}

.position-control .active {
  border-color: var(--lime);
  background: var(--lime-soft);
  box-shadow: inset 0 0 0 6px rgba(156, 246, 90, 0.15);
}

.contract-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5px 4px 0 36px;
  padding: 9px 12px;
  border: 1px solid rgba(156, 246, 90, 0.18);
  border-radius: 10px;
  background: var(--lime-soft);
  color: #c7fbaa;
  font-size: 11px;
  white-space: nowrap;
}

.contract-chip span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.safety-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: center;
  padding: 108px 54px;
  border: 1px solid rgba(156, 246, 90, 0.17);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0 0, rgba(156, 246, 90, 0.09), transparent 45%),
    rgba(255, 255, 255, 0.025);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  color: var(--text);
  font-size: 14px;
  font-weight: 690;
}

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

.safety-stack {
  display: grid;
  gap: 9px;
}

.safety-stack article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(10, 11, 13, 0.45);
}

.safety-stack p {
  margin-top: 6px;
}

.safety-mark {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 8px;
  background: var(--lime-soft);
  color: var(--lime);
  font: 11px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.architecture-map {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 12px;
  margin-top: 55px;
}

.architecture-node {
  display: flex;
  flex-direction: column;
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
}

.architecture-node > span {
  color: var(--text-muted);
  font: 10px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.architecture-node strong {
  margin-top: auto;
  font-size: 15px;
}

.architecture-node small {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 11px;
}

.architecture-node-accent {
  border-color: rgba(156, 246, 90, 0.23);
  background: var(--lime-soft);
}

.architecture-arrow {
  display: grid;
  place-items: center;
  color: var(--text-muted);
}

.architecture-link {
  margin: 24px 0 0;
  text-align: center;
}

.roadmap-section {
  padding-top: 58px;
}

.roadmap-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(143, 127, 255, 0.08), rgba(255, 255, 255, 0.025) 52%);
}

.roadmap-card > .button {
  width: fit-content;
}

.roadmap-list {
  display: grid;
  gap: 10px;
  grid-row: span 2;
}

.roadmap-list > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(10, 11, 13, 0.34);
  color: var(--text-soft);
  font-size: 13px;
}

.roadmap-state {
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.roadmap-state.complete {
  display: grid;
  place-items: center;
  border-color: rgba(156, 246, 90, 0.3);
  background: var(--lime-soft);
  color: var(--lime);
  font-size: 10px;
}

.roadmap-state.active {
  border-color: rgba(156, 246, 90, 0.42);
  box-shadow: inset 0 0 0 4px var(--bg), inset 0 0 0 9px var(--lime), 0 0 16px rgba(156, 246, 90, 0.22);
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 23px 42px 23px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 660;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 3px;
  color: var(--text-muted);
  content: "+";
  font-size: 20px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -6px 42px 22px 0;
  color: var(--text-muted);
  font-size: 14px;
}

.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto 80px;
  padding: 96px 24px;
  border: 1px solid rgba(156, 246, 90, 0.18);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0, rgba(156, 246, 90, 0.12), transparent 50%),
    rgba(255, 255, 255, 0.025);
  text-align: center;
}

.final-cta img {
  margin-bottom: 24px;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.32);
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta > p:not(.eyebrow) {
  margin: 15px 0 0;
  color: var(--text-soft);
  font-size: 17px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 27px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 12px;
}

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

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer nav a {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
}

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

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal[data-reveal-delay="1"] { transition-delay: 80ms; }
.reveal[data-reveal-delay="2"] { transition-delay: 150ms; }
.reveal[data-reveal-delay="3"] { transition-delay: 220ms; }

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

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

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-top: 100px;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero-stage {
    width: min(860px, 100%);
    margin-inline: auto;
    transform: none;
  }

  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .safety-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .architecture-arrow {
    transform: rotate(90deg);
  }

  .architecture-node {
    min-height: 112px;
  }

  .roadmap-card,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .roadmap-list {
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .header-actions .button-secondary,
  .language-button span:last-child {
    display: none;
  }

  .language-button {
    min-width: 38px;
    justify-content: center;
    padding: 0;
  }

  .hero,
  .section,
  .trust-strip,
  .final-cta,
  .site-footer {
    width: calc(100% - 30px);
  }

  .hero {
    min-height: auto;
    padding: 80px 0 64px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .stage-note {
    display: none;
  }

  .trust-strip {
    justify-content: flex-start;
    gap: 10px 14px;
  }

  .section {
    padding: 90px 0;
  }

  .comparison,
  .journey-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-wide {
    display: block;
    grid-column: auto;
  }

  .feature-wide .feature-icon {
    margin-bottom: 35px;
  }

  .position-control,
  .contract-chip {
    width: fit-content;
    margin: 26px 0 0;
  }

  .safety-section,
  .roadmap-card {
    padding: 34px 24px;
  }

  .faq-section {
    gap: 35px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .site-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
