:root {
  --navy-950: #050b18;
  --navy-900: #071126;
  --navy-850: #0a1731;
  --navy-800: #0d1d3a;
  --ink: #0e1826;
  --ink-soft: #384458;
  --muted: #647084;
  --line: #dfe7e3;
  --line-dark: rgba(255, 255, 255, 0.12);
  --paper: #ffffff;
  --mist: #f3f8f5;
  --mint-50: #edfff5;
  --mint-100: #d9fbe8;
  --mint-200: #b8f4d2;
  --mint-400: #43e28d;
  --mint-500: #19cf75;
  --mint-600: #00ad61;
  --mint-700: #00824c;
  --red-50: #fff0ee;
  --red-600: #ce3024;
  --amber-50: #fff7db;
  --amber-700: #886100;
  --shadow-sm: 0 12px 35px rgba(9, 31, 24, 0.08);
  --shadow-lg: 0 34px 80px rgba(3, 12, 27, 0.22);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 32px;
  --shell: 1200px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection,
body *::selection {
  background: var(--mint-200);
  color: var(--navy-950);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

.section-dark {
  background: var(--navy-900);
  color: white;
}

.section-light {
  background: var(--paper);
}

.section-mist {
  background: var(--mist);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: white;
  color: var(--navy-900);
  font-weight: 750;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid var(--mint-400);
  outline-offset: 3px;
}

.site-header {
  position: absolute;
  z-index: 100;
  inset: 0 0 auto;
  height: 78px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: white;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.site-header[data-scrolled] {
  position: fixed;
  background: rgba(7, 17, 38, 0.91);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 40px rgba(3, 9, 22, 0.18);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  color: inherit;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.brand strong {
  color: var(--mint-400);
  font-weight: 780;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 650;
}

.nav-links > a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  transition: color 0.18s ease;
}

.nav-links > a:hover {
  color: white;
}

.nav-links .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: white;
}

.nav-links .nav-cta:hover {
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: white;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 148px 0 62px;
  background:
    radial-gradient(
      circle at 83% 19%,
      rgba(24, 207, 117, 0.22),
      transparent 25%
    ),
    radial-gradient(
      circle at 13% 43%,
      rgba(21, 81, 152, 0.26),
      transparent 31%
    ),
    linear-gradient(145deg, #071126 0%, #071126 55%, #09172c 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(540px, 1.13fr);
  align-items: center;
  gap: clamp(38px, 5vw, 80px);
}

.hero-copy {
  padding-block: 28px 56px;
}

.eyebrow,
.kicker {
  color: var(--mint-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.105em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border: 1px solid rgba(67, 226, 141, 0.22);
  border-radius: 999px;
  background: rgba(67, 226, 141, 0.08);
  color: var(--mint-200);
}

.eyebrow > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint-400);
  box-shadow: 0 0 0 5px rgba(67, 226, 141, 0.1);
}

.hero h1 {
  max-width: 720px;
  margin: 25px 0 24px;
  color: white;
  font-size: clamp(50px, 5.4vw, 76px);
  font-weight: 730;
  letter-spacing: -0.064em;
  line-height: 0.99;
}

.hero h1 em {
  position: relative;
  color: var(--mint-400);
  font-style: normal;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: -4px;
  left: 4px;
  height: 5px;
  border-radius: 100%;
  background: var(--mint-500);
  opacity: 0.7;
  transform: rotate(-1.5deg) scaleX(0.97);
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.69);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

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

.button-primary {
  background: var(--mint-400);
  color: var(--navy-950);
  box-shadow: 0 14px 30px rgba(25, 207, 117, 0.15);
}

.button-primary:hover {
  background: #66eca4;
  box-shadow: 0 16px 38px rgba(25, 207, 117, 0.23);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.19);
  background: rgba(255, 255, 255, 0.065);
  color: white;
}

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

.button-outline {
  border-color: #bfcac5;
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--ink);
  background: #f7faf8;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 620;
  list-style: none;
}

.hero-checks span {
  display: inline-grid;
  width: 19px;
  height: 19px;
  margin-right: 5px;
  place-items: center;
  border: 1px solid rgba(67, 226, 141, 0.3);
  border-radius: 50%;
  color: var(--mint-400);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.visual-glow {
  position: absolute;
  z-index: -1;
  inset: 8% 5% -10% 8%;
  border-radius: 50%;
  background: rgba(41, 222, 132, 0.21);
  filter: blur(70px);
}

.app-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 19px;
  background: white;
  box-shadow: var(--shadow-lg);
}

.app-window-hero {
  width: 100%;
}

.window-bar {
  display: flex;
  height: 47px;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  border-bottom: 1px solid #e6ebe8;
  background: #fbfdfc;
  color: #586475;
  font-size: 11px;
  font-weight: 700;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d7ddda;
}

.window-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: #17744c;
}

.window-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint-500);
}

.app-window-hero > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 154px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--ink);
  box-shadow: 0 20px 50px rgba(2, 11, 26, 0.3);
  backdrop-filter: blur(12px);
}

.floating-card-top {
  top: -21px;
  right: -18px;
}

.floating-card-bottom {
  right: 14px;
  bottom: -25px;
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  margin-bottom: 1px;
  color: var(--muted);
  font-size: 9px;
}

.floating-card strong {
  font-size: 12px;
}

.pulse-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint-500);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(25, 207, 117, 0.35);
  border-radius: 50%;
}

.mini-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: var(--mint-100);
  color: var(--mint-700);
  font-size: 10px;
  font-weight: 850;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 67px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-bottom > p {
  max-width: 190px;
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 70px);
}

.hero-metrics div {
  display: grid;
  gap: 2px;
}

.hero-metrics strong {
  color: white;
  font-size: 16px;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

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

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

.section-heading h2,
.split-heading h2,
.safety h2,
.closing h2 {
  margin: 14px 0 18px;
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 720;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.section-heading p,
.split-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.workflow {
  padding: 120px 0 128px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 60px;
}

.workflow-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfc;
}

.workflow-card.featured {
  border-color: #aee8c8;
  background: linear-gradient(155deg, #edfff5, #fafffc);
  box-shadow: 0 24px 60px rgba(0, 130, 76, 0.1);
}

.step-number {
  display: inline-grid;
  width: 37px;
  height: 29px;
  place-items: center;
  border: 1px solid #cad5d0;
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 820;
}

.workflow-card h3 {
  margin: 28px 0 12px;
  font-size: 23px;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.workflow-card > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.step-visual {
  position: relative;
  display: grid;
  height: 157px;
  margin-top: 24px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #e1e8e4;
  border-radius: 16px;
  background: white;
}

.observe-visual::before,
.verify-visual::before,
.redirect-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(#eef3f0 1px, transparent 1px),
    linear-gradient(90deg, #eef3f0 1px, transparent 1px);
  background-size: 22px 22px;
}

.observe-visual {
  align-content: center;
  gap: 10px;
}

.url-chip,
.status-pill {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 740;
}

.url-chip {
  padding: 8px 11px;
  border: 1px solid #dfe6e2;
  background: white;
  box-shadow: 0 7px 20px rgba(10, 29, 23, 0.08);
}

.event-wave {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.event-wave i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e4ebe7;
}

.event-wave i:nth-child(1) {
  top: 25%;
  left: 17%;
}
.event-wave i:nth-child(2) {
  top: 29%;
  right: 19%;
}
.event-wave i:nth-child(3) {
  right: 13%;
  bottom: 22%;
}
.event-wave i:nth-child(4) {
  bottom: 18%;
  left: 14%;
}

.status-pill {
  padding: 5px 9px;
}

.status-red {
  background: var(--red-50);
  color: var(--red-600);
}

.verify-visual {
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 18px;
}

.target-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 9px;
  padding: 13px;
  border: 1px solid #c5ebd6;
  border-radius: 11px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.target-card i {
  display: grid;
  grid-row: span 2;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-100);
  color: var(--mint-700);
  font-size: 10px;
  font-style: normal;
}

.target-card b {
  overflow: hidden;
  max-width: 150px;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.target-card small {
  color: var(--mint-700);
  font-size: 8px;
}

.confidence-ring {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 5px solid var(--mint-200);
  border-top-color: var(--mint-600);
  border-radius: 50%;
  color: var(--mint-700);
  font-size: 14px;
  font-weight: 850;
  transform: rotate(18deg);
}

.confidence-ring small {
  position: absolute;
  right: 7px;
  bottom: 10px;
  font-size: 6px;
}

.redirect-visual {
  align-content: center;
  gap: 4px;
  padding: 16px;
}

.path-line {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border: 1px solid #e5eae7;
  border-radius: 9px;
  background: white;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 9px;
}

.path-line.success {
  border-color: #c8ebd7;
  background: var(--mint-50);
}

.path-line em {
  color: var(--mint-700);
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 8px;
  font-style: normal;
  font-weight: 760;
}

.badge-404,
.badge-301 {
  display: inline-grid;
  min-width: 31px;
  min-height: 21px;
  place-items: center;
  border-radius: 7px;
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
}

.badge-404 {
  background: var(--red-50);
  color: var(--red-600);
}
.badge-301 {
  background: var(--mint-100);
  color: var(--mint-700);
}
.path-arrow {
  position: relative;
  z-index: 1;
  color: var(--mint-700);
  font-weight: 850;
}

.product-tour {
  padding: 120px 0;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.split-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 4px;
}

.tour-panel {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(35px, 6vw, 82px);
  padding: clamp(26px, 4vw, 50px);
  border: 1px solid #dce6e1;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
}

.tour-panel + .tour-panel {
  margin-top: 28px;
}

.tour-panel.reverse {
  grid-template-columns: 1.28fr 0.72fr;
}

.tour-panel.reverse .tour-copy {
  grid-column: 2;
}

.tour-panel.reverse .screenshot-wrap {
  grid-row: 1;
  grid-column: 1;
}

.tour-index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--mint-700);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tour-copy h3 {
  margin-bottom: 15px;
  font-size: clamp(30px, 3.2vw, 44px);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.tour-copy > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.feature-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 13px;
  list-style: none;
}

.feature-list i {
  display: inline-grid;
  width: 21px;
  height: 21px;
  margin-right: 8px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-100);
  color: var(--mint-700);
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
}

.screenshot-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid #d9e2de;
  border-radius: 18px;
  background: #f5f8f6;
  box-shadow: 0 22px 55px rgba(7, 30, 22, 0.13);
}

.screenshot-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.safety {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  background:
    radial-gradient(
      circle at 77% 50%,
      rgba(25, 207, 117, 0.13),
      transparent 30%
    ),
    linear-gradient(140deg, #071126, #08152d);
}

.safety::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, transparent, black 55%, transparent);
  opacity: 0.45;
}

.safety-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  align-items: center;
  gap: clamp(55px, 8vw, 115px);
}

.eyebrow-dark {
  margin-bottom: 21px;
}

.safety h2 {
  max-width: 650px;
  margin-top: 0;
}

.safety-copy > p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 17px;
  line-height: 1.7;
}

.safety-points {
  display: grid;
  gap: 0;
  margin-top: 35px;
  border-top: 1px solid var(--line-dark);
}

.safety-points > div {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dark);
}

.safety-points strong {
  color: white;
  font-size: 13px;
}

.safety-points span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.safety-console {
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 32px 80px rgba(1, 6, 17, 0.42);
  backdrop-filter: blur(15px);
}

.console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 22px;
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.console-head small {
  padding: 5px 8px;
  border: 1px solid rgba(67, 226, 141, 0.19);
  border-radius: 999px;
  background: rgba(67, 226, 141, 0.08);
  color: var(--mint-200);
  font-size: 9px;
}

.pattern-row {
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: rgba(4, 11, 27, 0.62);
}

.pattern-row small,
.pattern-row code {
  display: block;
}

.pattern-row small {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pattern-row code {
  color: white;
  font-size: clamp(15px, 2vw, 20px);
}

.pattern-row.target {
  border-color: rgba(67, 226, 141, 0.27);
  background: rgba(25, 207, 117, 0.08);
}

.pattern-row.target code {
  color: var(--mint-200);
}

.pattern-connector {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--mint-400);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pattern-connector span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(67, 226, 141, 0.35));
}

.pattern-connector span:last-child {
  transform: scaleX(-1);
}

.simulation-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 12px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.simulation-results div {
  display: grid;
  gap: 1px;
  padding: 13px 15px;
}

.simulation-results div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.simulation-results strong {
  color: white;
  font-size: 17px;
}

.simulation-results span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.console-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 5px 4px 1px 10px;
}

.console-action > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 9px;
}

.console-action i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint-400);
  box-shadow: 0 0 0 4px rgba(67, 226, 141, 0.08);
}

.console-action button {
  padding: 9px 12px;
  border: 0;
  border-radius: 8px;
  background: var(--mint-400);
  color: var(--navy-950);
  font-size: 10px;
  font-weight: 800;
}

.feature-bento {
  padding: 120px 0 128px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfc;
}

.bento-wide {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 25px;
}

.green-card {
  border-color: #bfe9d1;
  background: linear-gradient(145deg, #e9fff3, #f8fffb);
}

.navy-card {
  border-color: var(--navy-800);
  background:
    radial-gradient(
      circle at 80% 90%,
      rgba(25, 207, 117, 0.2),
      transparent 38%
    ),
    var(--navy-900);
  color: white;
}

.card-label {
  display: inline-block;
  margin-bottom: 17px;
  color: var(--mint-700);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.navy-card .card-label {
  color: var(--mint-400);
}

.bento-card h3 {
  margin-bottom: 13px;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.043em;
  line-height: 1.1;
}

.bento-card > p,
.bento-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.navy-card > p {
  color: rgba(255, 255, 255, 0.58);
}

.navy-card > a {
  position: absolute;
  right: 27px;
  bottom: 25px;
  left: 27px;
  color: var(--mint-200);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.mini-inbox {
  position: relative;
  z-index: 1;
  padding: 12px;
  border: 1px solid #cae8d6;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.mini-inbox > div:not(.mini-arrow) {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 10px;
  border: 1px solid #e3e9e6;
  border-radius: 9px;
  background: white;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 8px;
}

.mini-inbox em {
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: 7px;
  font-style: normal;
}

.mini-inbox button {
  padding: 5px 7px;
  border: 0;
  border-radius: 6px;
  background: var(--navy-900);
  color: white;
  font-family: Inter, sans-serif;
  font-size: 7px;
  font-weight: 750;
}

.mini-inbox .mini-success {
  border-color: #cae8d6;
  background: var(--mint-50);
}

.mini-arrow {
  height: 17px;
  color: var(--mint-700);
  font-size: 11px;
  line-height: 17px;
  text-align: center;
}

.resource-chips {
  position: absolute;
  right: 27px;
  bottom: 27px;
  left: 27px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.resource-chips span {
  padding: 6px 9px;
  border: 1px solid #d8e2dd;
  border-radius: 999px;
  background: white;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 740;
}

.threshold {
  position: absolute;
  right: 28px;
  bottom: 42px;
  left: 28px;
  height: 6px;
  border-radius: 99px;
  background: #dfe8e3;
}

.threshold span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint-200), var(--mint-500));
}

.threshold i {
  position: absolute;
  top: 50%;
  left: 78%;
  width: 15px;
  height: 15px;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--mint-600);
  box-shadow: 0 2px 8px rgba(0, 90, 53, 0.25);
  transform: translate(-50%, -50%);
}

.threshold b {
  position: absolute;
  top: -34px;
  left: 78%;
  padding: 3px 6px;
  border-radius: 6px;
  background: var(--navy-900);
  color: white;
  font-size: 8px;
  transform: translateX(-50%);
}

.image-card {
  padding-right: 27px;
  background: #f7faf8;
}

.image-card img {
  align-self: center;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 1px solid #dfe6e3;
  border-radius: 14px;
  object-fit: contain;
}

.plans {
  padding: 120px 0;
}

.plans-heading {
  margin-bottom: 50px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
  max-width: 940px;
  margin-inline: auto;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid #dce5e1;
  border-radius: 25px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.plan-pro {
  border-color: #8edeb2;
  box-shadow: 0 26px 65px rgba(0, 130, 76, 0.13);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--mint-100);
  color: var(--mint-700);
  font-size: 9px;
  font-weight: 800;
}

.plan-name {
  display: block;
  margin-bottom: 22px;
  color: var(--mint-700);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.price strong {
  font-size: 47px;
  font-weight: 720;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 13px;
}

.plan-top > p {
  min-height: 48px;
  color: var(--muted);
  font-size: 14px;
}

.plan-card ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 32px;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.plan-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 13px;
}

.plan-card li i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-100);
  color: var(--mint-700);
  font-size: 9px;
  font-style: normal;
  font-weight: 850;
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
}

.annual-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.faq {
  padding: 120px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: clamp(55px, 8vw, 110px);
}

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

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

.accordion summary {
  position: relative;
  padding: 22px 42px 22px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 720;
  list-style: none;
}

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

.accordion summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 0;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid #ced8d3;
  border-radius: 50%;
  color: var(--mint-700);
  font-size: 17px;
  font-weight: 500;
}

.accordion details[open] summary::after {
  content: "−";
  background: var(--mint-100);
}

.accordion details p {
  max-width: 690px;
  padding: 0 50px 22px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.closing {
  padding: 76px 0;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(25, 207, 117, 0.17),
      transparent 22%
    ),
    var(--navy-900);
}

.closing-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.closing-inner > img {
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.kicker-on-dark {
  color: var(--mint-400);
}

.closing h2 {
  margin: 7px 0 0;
  font-size: clamp(32px, 3.7vw, 49px);
}

.site-footer {
  padding: 70px 0 24px;
  background: var(--navy-950);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.footer-brand > p {
  max-width: 300px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: white;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--mint-200);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.29);
  font-size: 10px;
}

/* Inner pages */
.inner-page {
  background: var(--mist);
}

.inner-page .site-header {
  position: absolute;
  background: var(--navy-900);
}

.inner-page .site-header[data-scrolled] {
  position: fixed;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 154px 0 76px;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(25, 207, 117, 0.17),
      transparent 29%
    ),
    linear-gradient(145deg, var(--navy-900), #0b1b36);
  color: white;
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.16) 1px,
    transparent 1px
  );
  background-size: 26px 26px;
  mask-image: linear-gradient(90deg, transparent, black, transparent);
  pointer-events: none;
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--mint-200);
  text-decoration: none;
}

.inner-hero h1 {
  max-width: 850px;
  margin-bottom: 19px;
  font-size: clamp(48px, 6vw, 74px);
  font-weight: 720;
  letter-spacing: -0.06em;
  line-height: 1;
}

.inner-hero p {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  line-height: 1.65;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.meta-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.meta-line i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint-400);
}

.document-section {
  padding: 78px 0 110px;
}

.document-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: center;
  align-items: start;
  gap: 55px;
}

.document-nav {
  position: sticky;
  top: 105px;
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.document-nav strong {
  margin: 2px 8px 9px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.document-nav a {
  padding: 7px 8px;
  border-radius: 7px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 650;
  text-decoration: none;
}

.document-nav a:hover {
  background: var(--mint-50);
  color: var(--mint-700);
}

.document-card {
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid var(--line);
  border-radius: 25px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.document-intro {
  margin-bottom: 42px;
  padding: 20px 22px;
  border: 1px solid #bfe8d0;
  border-radius: 13px;
  background: var(--mint-50);
  color: #23523c;
  font-size: 13px;
  line-height: 1.65;
}

.document-card section + section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.document-card h2 {
  margin-bottom: 18px;
  font-size: 28px;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.document-card h3 {
  margin: 28px 0 10px;
  font-size: 17px;
  letter-spacing: -0.025em;
}

.document-card p,
.document-card li {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.document-card ul,
.document-card ol {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.document-card li::marker {
  color: var(--mint-600);
}

.document-card a {
  color: var(--mint-700);
  font-weight: 650;
}

.data-table {
  width: 100%;
  margin: 23px 0;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  font-size: 12px;
}

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

.data-table th {
  background: #f5f8f6;
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.data-table td {
  color: var(--ink-soft);
}

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

.legal-note {
  padding: 16px 18px;
  border-left: 3px solid var(--mint-500);
  background: #f5faf7;
  color: var(--ink-soft);
  font-size: 12px;
}

/* Changelog */
.changelog-section {
  padding: 78px 0 110px;
}

.changelog-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) 260px;
  justify-content: center;
  align-items: start;
  gap: 50px;
}

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

.release-card {
  position: relative;
  padding: clamp(28px, 4vw, 43px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.release-card.latest {
  border-color: #a9e2c3;
}

.release-card.latest::before {
  content: "Latest";
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--mint-100);
  color: var(--mint-700);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}

.version-tag {
  padding: 5px 8px;
  border-radius: 7px;
  background: var(--navy-900);
  color: white;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 10px;
  font-weight: 750;
}

.release-date,
.release-stage {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.release-stage {
  padding-left: 9px;
  border-left: 1px solid var(--line);
  color: var(--mint-700);
}

.release-card h2 {
  margin-bottom: 12px;
  padding-right: 60px;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.release-summary {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.change-group {
  margin-top: 26px;
}

.change-group h3 {
  margin-bottom: 10px;
  color: var(--mint-700);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.change-group ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 19px;
}

.change-group li {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.change-group li::marker {
  color: var(--mint-600);
}

.release-aside {
  position: sticky;
  top: 105px;
  display: grid;
  gap: 17px;
}

.aside-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.aside-card h3 {
  margin-bottom: 8px;
  font-size: 15px;
}

.aside-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.status-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.status-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 650;
}

.status-list i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint-500);
}

.status-list i.amber {
  background: #e2a900;
}

/* 404 */
.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 20px;
  background:
    radial-gradient(
      circle at 60% 25%,
      rgba(25, 207, 117, 0.19),
      transparent 28%
    ),
    var(--navy-900);
  color: white;
}

.not-found-card {
  width: min(680px, 100%);
  text-align: center;
}

.not-found-card img {
  margin: 0 auto 26px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.error-code {
  color: var(--mint-400);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.not-found-card h1 {
  margin: 13px 0 18px;
  font-size: clamp(48px, 8vw, 82px);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.not-found-card p {
  max-width: 540px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
}

.not-found-card .button {
  margin-inline: auto;
}

/* Reveals */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js [data-reveal-delay="1"] {
  transition-delay: 0.09s;
}
.js [data-reveal-delay="2"] {
  transition-delay: 0.18s;
}

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

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
    padding-bottom: 10px;
  }

  .hero h1 {
    max-width: 800px;
  }

  .hero-visual {
    width: 92%;
    margin: 35px auto 0;
  }

  .app-window-hero {
    width: 100%;
    transform: none;
  }

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

  .workflow-card {
    min-height: 0;
  }

  .step-visual {
    max-width: 430px;
  }

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

  .safety-copy {
    max-width: 760px;
  }

  .safety-console {
    max-width: 700px;
  }

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

  .closing-inner {
    grid-template-columns: auto 1fr;
  }

  .closing-inner .button-row {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  .js .menu-toggle {
    display: block;
  }

  .js .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    background: rgba(7, 17, 38, 0.98);
    box-shadow: 0 24px 60px rgba(1, 6, 17, 0.42);
    backdrop-filter: blur(20px);
  }

  .js .nav-links[data-open] {
    display: grid;
  }

  .nav-links > a {
    padding: 12px;
  }

  .nav-links .nav-cta {
    margin-top: 6px;
  }

  .hero-bottom {
    display: grid;
  }

  .hero-bottom > p {
    max-width: none;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tour-panel,
  .tour-panel.reverse {
    grid-template-columns: 1fr;
  }

  .tour-panel.reverse .tour-copy,
  .tour-panel.reverse .screenshot-wrap {
    grid-row: auto;
    grid-column: auto;
  }

  .tour-panel.reverse .screenshot-wrap {
    order: 2;
  }

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

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

  .document-layout,
  .changelog-shell {
    grid-template-columns: 1fr;
  }

  .document-nav,
  .release-aside {
    position: static;
  }

  .document-nav {
    display: flex;
    overflow-x: auto;
    align-items: center;
    scrollbar-width: thin;
  }

  .document-nav strong {
    min-width: max-content;
    margin: 0 7px;
  }

  .document-nav a {
    min-width: max-content;
  }

  .release-aside {
    grid-row: 1;
  }
}

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

  .site-header {
    height: 70px;
  }

  .brand {
    font-size: 15px;
  }

  .brand img {
    width: 35px;
    height: 35px;
  }

  .hero {
    padding: 121px 0 45px;
  }

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

  .hero-lead {
    font-size: 16px;
  }

  .hero-copy {
    padding-top: 12px;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-checks {
    display: grid;
  }

  .hero-visual {
    width: 100%;
    margin-top: 18px;
  }

  .window-bar {
    height: 37px;
    padding-inline: 10px;
  }

  .window-status {
    display: none;
  }

  .floating-card {
    display: none;
  }

  .hero-bottom {
    margin-top: 42px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .workflow,
  .product-tour,
  .safety,
  .feature-bento,
  .plans,
  .faq {
    padding: 82px 0;
  }

  .section-heading h2,
  .split-heading h2,
  .safety h2,
  .closing h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .section-heading p,
  .split-heading p {
    font-size: 16px;
  }

  .workflow-grid {
    margin-top: 38px;
  }

  .workflow-card,
  .bento-card,
  .plan-card {
    padding: 22px;
  }

  .tour-panel {
    padding: 21px;
    border-radius: 22px;
  }

  .tour-copy h3 {
    font-size: 32px;
  }

  .safety-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .safety-points > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .safety-console {
    padding: 8px;
  }

  .pattern-row {
    padding: 16px;
  }

  .simulation-results div {
    padding: 11px 8px;
  }

  .console-action {
    align-items: stretch;
    flex-direction: column;
    padding: 8px 0 0;
  }

  .console-action button {
    padding: 11px;
  }

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

  .bento-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .bento-card {
    min-height: 300px;
  }

  .green-card {
    min-height: 420px;
  }

  .image-card {
    padding-right: 22px;
  }

  .image-card img {
    border-right: 1px solid #dfe6e3;
    border-radius: 14px;
  }

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

  .popular-badge {
    position: static;
    width: max-content;
    margin-bottom: 18px;
  }

  .plan-top > p {
    min-height: 0;
  }

  .closing {
    padding: 64px 0;
  }

  .closing-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .closing-inner > img {
    margin-inline: auto;
  }

  .closing-inner .button-row {
    grid-column: auto;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .inner-hero {
    padding: 126px 0 60px;
  }

  .inner-hero h1 {
    font-size: clamp(43px, 13vw, 61px);
  }

  .inner-hero p {
    font-size: 16px;
  }

  .document-section,
  .changelog-section {
    padding: 50px 0 80px;
  }

  .document-layout,
  .changelog-shell {
    gap: 24px;
  }

  .document-card {
    padding: 25px 21px;
    border-radius: 19px;
  }

  .data-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .release-card {
    padding: 26px 22px;
  }

  .release-card.latest::before {
    position: static;
    display: inline-block;
    margin-bottom: 14px;
  }

  .release-card h2 {
    padding-right: 0;
  }
}

@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;
  }
}
