:root {
  color-scheme: dark;
  scroll-behavior: smooth;
  --page: #070913;
  --page-deep: #04050b;
  --surface: #0c1020;
  --surface-2: #10162a;
  --surface-3: #151d34;
  --text: #f5f7ff;
  --muted: #9da6bc;
  --soft: #6f7890;
  --line: rgba(196, 205, 236, .14);
  --line-strong: rgba(196, 205, 236, .25);
  --header: rgba(7, 9, 19, .78);
  --accent: #7a68ff;
  --accent-2: #a484ff;
  --accent-soft: rgba(122, 104, 255, .16);
  --mint: #5ce1bd;
  --blue: #52a7ff;
  --orange: #ff9d70;
  --button-text: #fff;
  --grid: rgba(152, 165, 199, .045);
  --demo-bg: #0b0f1a;
  --card-hover: #121a30;
}

body[data-theme="light"] {
  color-scheme: light;
  --page: #f5f5f1;
  --page-deep: #eaece7;
  --surface: #ffffff;
  --surface-2: #ecefe9;
  --surface-3: #e3e8e1;
  --text: #151923;
  --muted: #68707b;
  --soft: #9299a1;
  --line: rgba(28, 34, 43, .12);
  --line-strong: rgba(28, 34, 43, .22);
  --header: rgba(245, 245, 241, .84);
  --accent: #5949e8;
  --accent-2: #7a62f3;
  --accent-soft: rgba(89, 73, 232, .1);
  --mint: #087d68;
  --blue: #186fc4;
  --orange: #b9572d;
  --button-text: #fff;
  --grid: rgba(47, 59, 68, .055);
  --demo-bg: #dfe4e1;
  --card-hover: #f8f9f6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    var(--page);
  background-size: 72px 72px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 9px 14px;
  border-radius: 9px;
  color: var(--button-text);
  background: var(--accent);
  transform: translateY(-150%);
}

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

.ambient {
  position: absolute;
  z-index: -1;
  width: 650px;
  height: 650px;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(130px);
  opacity: .13;
}

.ambient--one {
  top: -260px;
  left: 48%;
  background: var(--accent);
}

.ambient--two {
  top: 1050px;
  left: -420px;
  background: var(--mint);
  opacity: .075;
}

.site-header {
  position: fixed;
  z-index: 800;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: var(--header);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(1200px, calc(100% - 48px));
  height: 74px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 760;
  letter-spacing: -.045em;
  text-decoration: none;
}

.brand-icon {
  width: 30px;
  height: 30px;
  display: block;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.nav-links a,
.theme-link {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  font-weight: 610;
  text-decoration: none;
  transition: color .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.theme-link:hover {
  color: var(--text);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-link {
  min-width: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.theme-link > span:first-child {
  font-size: 16px;
}

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

.section--narrow {
  width: min(1040px, calc(100% - 48px));
}

.hero {
  min-height: 100vh;
  padding-top: 118px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: minmax(390px, .78fr) minmax(650px, 1.22fr);
  align-items: center;
  gap: clamp(42px, 5vw, 78px);
  text-align: left;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
}

.status-pill {
  width: max-content;
  max-width: 100%;
  margin: 0 0 26px;
  padding: 7px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .02em;
}

.status-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--mint) 16%, transparent);
}

.hero h1,
.section-heading h2,
.targets h2,
.pricing h2,
.final-card h2 {
  margin: 0;
  font-weight: 760;
  letter-spacing: -.066em;
  line-height: .98;
}

.hero h1 {
  font-size: clamp(54px, 5.25vw, 82px);
}

.hero h1 em {
  color: var(--accent-2);
  font-style: normal;
}

.hero-lede {
  width: min(610px, 100%);
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
  letter-spacing: -.018em;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 690;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

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

.button--primary {
  color: var(--button-text);
  background: var(--accent);
}

.button--primary:hover {
  background: var(--accent-2);
}

.button--quiet {
  border-color: var(--line-strong);
  background: var(--surface);
}

.button--quiet:hover {
  border-color: var(--accent);
}

.button--small {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 9px;
  font-size: 12px;
}

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

.hero-note {
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 12px;
}

.hero-demo {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 0;
}

.hero-feature-label {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  text-align: left;
}

.hero-feature-label > span {
  color: var(--accent-2);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.06em;
}

.hero-feature-label div { display: flex; flex-direction: column; gap: 2px; }
.hero-feature-label strong { font-size: 15px; }
.hero-feature-label small { color: var(--muted); font-size: 12px; }

.demo-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--demo-bg);
}

.demo-shell--hero {
  border-radius: 22px;
}

.demo-chrome {
  height: 42px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface);
}

.traffic {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

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

.demo-title {
  margin-left: 8px;
  font-size: 10px;
  font-weight: 610;
  letter-spacing: .02em;
}

.demo-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 690;
  text-transform: uppercase;
  letter-spacing: .09em;
}

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

.demo-viewport {
  position: relative;
  aspect-ratio: 1512 / 982;
  overflow: hidden;
  background: var(--demo-bg);
}

.demo-poster {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--muted);
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    var(--demo-bg);
  background-size: 48px 48px;
}

.demo-poster span {
  font-size: 64px;
  font-weight: 760;
  letter-spacing: -.08em;
  opacity: .18;
}

.demo-engine {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 1512px;
  height: 982px;
  display: block;
  border: 0;
  background: var(--demo-bg);
  pointer-events: none;
  transform-origin: center;
}

.demo-engine-mount {
  position: absolute;
  z-index: 8;
  overflow: hidden;
  border-radius: 0 0 17px 17px;
  background: var(--demo-bg);
  pointer-events: none;
  transition: opacity .12s ease;
}

.demo-engine-mount.is-scene-switching { opacity: 0; }

.fact-strip {
  position: relative;
  margin-bottom: 150px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact {
  padding: 30px 22px;
  text-align: center;
}

.fact + .fact {
  border-left: 1px solid var(--line);
}

.fact strong,
.fact span {
  display: block;
}

.fact strong {
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -.055em;
}

.fact span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.intro,
.capabilities,
.reviews,
.faq {
  padding: 40px 0 150px;
}

.section-heading {
  width: min(800px, 100%);
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading--left {
  width: min(820px, 100%);
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-heading h2,
.targets h2,
.pricing h2,
.final-card h2 {
  font-size: clamp(42px, 5.4vw, 74px);
}

.section-heading h2 span,
.targets h2 span,
.pricing h2 span {
  color: var(--muted);
}

.section-heading > p:last-child,
.pricing-intro > p:last-child {
  width: min(620px, 100%);
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading--left > p:last-child {
  margin-left: 0;
}

.mini-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-features--support {
  grid-template-columns: repeat(4, 1fr);
}

.mini-card,
.capability-card,
.review-card {
  border: 1px solid var(--line);
  background: var(--surface);
}

.mini-card {
  min-height: 220px;
  padding: 28px;
  border-radius: 16px;
}

.detail-number {
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.mini-card h3,
.capability-card h3 {
  margin: 24px 0 8px;
  font-size: 20px;
  letter-spacing: -.035em;
}

.mini-card p,
.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.mini-icon {
  position: relative;
  width: 48px;
  height: 48px;
  display: block;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  color: var(--accent-2);
  background: var(--accent-soft);
}

.mini-icon::before,
.mini-icon::after,
.mini-icon i {
  content: "";
  position: absolute;
  display: block;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.mini-icon--snap::before { inset: 10px 22px 10px 9px; }
.mini-icon--snap::after { inset: 10px 9px 10px 25px; }
.mini-icon--snap i { right: 5px; bottom: 5px; width: 8px; height: 8px; border-top: 0; border-left: 0; }
.mini-icon--grid::before { inset: 8px; background: linear-gradient(90deg, transparent 31%, currentColor 32% 35%, transparent 36% 64%, currentColor 65% 68%, transparent 69%), linear-gradient(transparent 31%, currentColor 32% 35%, transparent 36% 64%, currentColor 65% 68%, transparent 69%); opacity: .8; }
.mini-icon--grid::after { display: none; }
.mini-icon--grid i { top: 12px; left: 12px; width: 14px; height: 12px; background: color-mix(in srgb, currentColor 18%, transparent); }
.mini-icon--group::before { top: 9px; left: 9px; width: 20px; height: 16px; }
.mini-icon--group::after { right: 9px; bottom: 9px; width: 20px; height: 16px; background: var(--surface); }
.mini-icon--group i { display: none; }

.stories {
  width: min(1400px, calc(100% - 64px));
  padding: 68px 0 120px;
}

.feature-story {
  min-height: 0;
  padding: 112px 0;
  display: block;
  border-top: 1px solid var(--line);
}

.feature-story:first-child { padding-top: 38px; border-top: 0; }

.feature-copy {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
  align-items: end;
  gap: clamp(48px, 7vw, 110px);
}
.feature-body { padding-bottom: 4px; }
.feature-demo { margin-top: 54px; }
.feature-story:first-child .feature-demo { margin-top: 42px; }

.step-number {
  margin-bottom: 30px;
  display: block;
  color: var(--line-strong);
  font-size: 82px;
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: 1;
}

.feature-copy h3 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -.058em;
}

.feature-story--hero .feature-copy h3 { font-size: clamp(58px, 7vw, 96px); }
.feature-story--hero .feature-description { font-size: 18px; }

.feature-description {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.check-list,
.price-list {
  padding: 0;
  list-style: none;
}

.check-list {
  margin: 28px 0 0;
}

.check-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.check-list span,
.price-list span {
  color: var(--mint);
  font-weight: 800;
}

.feature-fine-print {
  margin: 18px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--soft);
  font-size: 11px;
  line-height: 1.55;
}

.feature-fine-print span {
  margin-top: 1px;
  color: var(--accent-2);
  font-size: 10px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-card {
  min-height: 245px;
  padding: 28px;
  border-top: 0;
  border-left: 0;
  transition: background .2s ease;
}

.capability-card:hover {
  background: var(--card-hover);
}

.capability-card > span {
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .1em;
}

.capability-card code,
.faq code {
  padding: 2px 5px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--text);
  background: var(--surface-2);
  font-size: .9em;
}

.targets {
  margin-bottom: 150px;
  padding: 88px;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: 88px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}

.targets-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
}

.target-disclaimer {
  margin-top: 30px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 3px solid var(--orange);
  background: color-mix(in srgb, var(--orange) 7%, transparent);
}

.target-disclaimer strong {
  color: var(--orange);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.target-disclaimer span {
  color: var(--muted);
  font-size: 11px;
}

.comparison {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-2);
}

.comparison-legend {
  margin-bottom: 30px;
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 10px;
}

.comparison-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.comparison-legend i {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 2px;
}

.legend-panesnap { background: var(--accent); }
.legend-other { background: var(--line-strong); }

.metric + .metric {
  margin-top: 28px;
}

.metric-head {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  font-weight: 650;
}

.metric-head b {
  color: var(--accent-2);
  font-size: 13px;
}

.metric-head small {
  color: var(--muted);
  font-size: 10px;
}

.bars {
  display: grid;
  gap: 5px;
}

.bar {
  width: var(--value);
  height: 8px;
  display: block;
  border-radius: 2px;
}

.bar--panesnap { background: var(--accent); }
.bar--other { background: var(--line-strong); }

.metric p {
  margin: 8px 0 0;
  color: var(--soft);
  font-size: 9px;
}

.review-disclaimer {
  width: min(760px, 100%);
  margin: 22px auto 0;
  color: var(--soft);
  font-size: 11px !important;
  text-align: center;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-card {
  min-height: 350px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
}

.review-context {
  color: var(--accent-2);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-card blockquote {
  margin: 26px 0 38px;
  font-size: clamp(17px, 1.75vw, 22px);
  font-weight: 570;
  line-height: 1.48;
  letter-spacing: -.025em;
}

.review-card footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.review-dot--violet { background: #7057e9; }
.review-dot--green { background: #138a70; }
.review-dot--blue { background: #277cc4; }

.review-card footer div {
  display: flex;
  flex-direction: column;
}

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

.review-card footer small {
  color: var(--soft);
  font-size: 9px;
}

.pricing {
  padding: 110px 0 160px;
  display: grid;
  grid-template-columns: 1fr .78fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
  border-top: 1px solid var(--line);
}

.pricing-intro > p:last-child {
  margin-left: 0;
}

.price-card {
  padding: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: var(--surface);
}

.price-top {
  padding-bottom: 26px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.price-top > div {
  display: flex;
  flex-direction: column;
}

.price-label,
.price-top small {
  color: var(--muted);
  font-size: 11px;
}

.price-top strong {
  margin: 7px 0 2px;
  font-size: 64px;
  letter-spacing: -.065em;
  line-height: 1;
}

.price-top sup {
  position: relative;
  top: -20px;
  margin-right: 3px;
  font-size: 22px;
}

.price-badge {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--accent-2);
  background: var(--accent-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-list {
  margin: 24px 0;
}

.price-list li {
  padding: 7px 0;
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.purchase-note {
  margin: 13px 0 0;
  color: var(--soft);
  font-size: 9px;
  text-align: center;
}

.faq-list {
  width: min(830px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

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

.faq summary {
  padding: 23px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 650;
  list-style: none;
}

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

.faq summary span {
  color: var(--accent-2);
  font-size: 24px;
  font-weight: 350;
  transition: transform .2s ease;
}

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

.faq details div {
  max-width: 700px;
  padding: 0 44px 24px 0;
  color: var(--muted);
}

.faq details p {
  margin: 0;
}

.final-cta {
  padding: 30px 0 130px;
}

.final-card {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 10vw, 120px) 28px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, var(--accent-soft), transparent 48%),
    var(--surface);
}

.final-card::before,
.final-card::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 130px;
  border: 1px solid var(--line);
  border-radius: 14px;
  transform: rotate(-10deg);
}

.final-card::before {
  top: -75px;
  left: 6%;
}

.final-card::after {
  right: 5%;
  bottom: -80px;
  transform: rotate(12deg);
}

.final-kicker {
  margin-bottom: 17px;
  display: block;
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.final-card h2 {
  font-size: clamp(44px, 6vw, 78px);
}

.final-card p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 40px 0 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.site-footer > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.site-footer > div {
  display: flex;
  gap: 25px;
}

.site-footer > div a {
  color: var(--muted);
  font-size: 11px;
  text-decoration: none;
}

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

.site-footer small {
  color: var(--soft);
  font-size: 10px;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease var(--reveal-delay, 0ms), transform .75s cubic-bezier(.2, .7, .2, 1) var(--reveal-delay, 0ms);
}

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

@media (max-width: 1380px) {
  .nav-links {
    display: none;
  }

  .feature-story,
  .feature-story--right {
    min-height: 0;
    padding: 80px 0;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .feature-story--right .feature-copy,
  .feature-story--right .feature-demo {
    grid-column: 1;
    grid-row: auto;
  }

  .feature-story--right .feature-copy {
    grid-row: 1;
  }

  .feature-copy {
    max-width: none;
  }

  .step-number {
    margin-bottom: 25px;
    font-size: 68px;
  }

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

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

  .targets {
    padding: 55px;
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .pricing-intro {
    max-width: 750px;
  }

  .price-card {
    width: min(570px, 100%);
  }
}

@media (max-width: 1050px) {
  .feature-copy {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 82px;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .hero-copy { width: min(890px, 100%); }
  .status-pill { margin-left: auto; margin-right: auto; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-demo { margin-top: 48px; }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    background-size: 46px 46px;
  }

  .nav-wrap,
  .section,
  .section--narrow,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .nav-wrap {
    height: 64px;
  }

  .theme-link-label,
  .nav-actions .button {
    display: none;
  }

  .theme-link {
    min-width: 34px;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 75px;
  }

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

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

  .hero-demo {
    width: calc(100% + 12px);
    margin-top: 48px;
  }

  .hero-feature-label { margin-left: 6px; }

  .demo-chrome {
    height: 33px;
    padding: 0 10px;
  }

  .traffic {
    width: 7px;
    height: 7px;
  }

  .demo-title {
    display: none;
  }

  .fact-strip {
    margin-bottom: 100px;
    grid-template-columns: repeat(2, 1fr);
  }

  .fact:nth-child(3) {
    border-left: 0;
  }

  .fact:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .fact {
    padding: 22px 10px;
  }

  .intro,
  .capabilities,
  .reviews,
  .faq {
    padding-bottom: 100px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .targets h2,
  .pricing h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .section-heading > p:last-child,
  .pricing-intro > p:last-child {
    font-size: 15px;
  }

  .mini-features,
  .capability-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .mini-card {
    min-height: 210px;
  }

  .stories {
    padding-bottom: 90px;
  }

  .feature-story,
  .feature-story--right {
    padding: 68px 0;
    gap: 36px;
  }

  .feature-copy h3 {
    font-size: 38px;
  }

  .feature-story--hero .feature-copy h3 { font-size: 46px; }

  .feature-description {
    font-size: 15px;
  }

  .capability-grid {
    border-right: 1px solid var(--line);
  }

  .capability-card {
    min-height: 210px;
  }

  .targets {
    width: 100%;
    margin-bottom: 100px;
    padding: 62px 14px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .targets-copy,
  .comparison {
    width: min(100% - 28px, 560px);
    margin: auto;
  }

  .comparison {
    padding: 20px;
  }

  .metric-head {
    align-items: flex-end;
  }

  .metric-head span {
    max-width: 165px;
  }

  .review-card,
  .review-card--wide {
    min-height: 290px;
    grid-column: span 1;
  }

  .pricing {
    padding: 80px 0 110px;
    gap: 45px;
  }

  .price-card {
    padding: 25px;
  }

  .price-top strong {
    font-size: 56px;
  }

  .faq summary {
    font-size: 14px;
  }

  .final-cta {
    padding-bottom: 90px;
  }

  .final-card {
    border-radius: 18px;
  }

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

  .site-footer > p,
  .site-footer small {
    text-align: left;
  }

  .site-footer > div {
    flex-wrap: wrap;
  }
}

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

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

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