:root {
  --bg: #070707;
  --panel: #0b0b0b;
  --text: #f5f2ea;
  --muted: rgba(245, 242, 234, 0.58);
  --faint: rgba(245, 242, 234, 0.28);
  --line: rgba(245, 242, 234, 0.24);
  --line-strong: rgba(245, 242, 234, 0.42);
  --red: #ff2a24;
  --green: #b7d18a;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 5%, rgba(255, 42, 36, 0.17), transparent 24%),
    radial-gradient(circle at 84% 92%, rgba(183, 209, 138, 0.08), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.035) 18% 18.1%, transparent 18.1%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 98px);
  opacity: 0.55;
}

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

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

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

ul {
  padding: 0;
  list-style: none;
}

.site-header,
main,
.site-footer {
  width: min(var(--max), calc(100% - 56px));
  margin-inline: auto;
}

.site-header {
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 10px 0 14px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  border-bottom: 1px solid var(--line-strong);
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(310px, 44vw);
  height: 2px;
  background: var(--text);
  transform: translateX(-50%);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.brand {
  justify-self: start;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-transform: none;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
}

.nav-links a {
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-links a[aria-current="page"] {
  color: var(--text);
  border-bottom-color: var(--text);
}

.nav-cta {
  justify-self: end;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(245, 242, 234, 0.46);
  background: rgba(245, 242, 234, 0.018);
  color: var(--text);
  white-space: nowrap;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.nav-cta:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  transform: translateY(-1px);
}

.hero,
.page-hero,
.contact-hero {
  border-bottom: 1px solid var(--line);
}

.hero {
  min-height: 478px;
  padding: 70px 0 90px;
  position: relative;
}

.hero-home {
  min-height: 640px;
  display: grid;
  align-content: start;
}

.hero-topline {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-title-wrap {
  position: relative;
  margin-top: 46px;
}

.hero h1,
.page-hero h1,
.contact-hero h1 {
  max-width: 1120px;
  font-size: clamp(58px, 8.2vw, 122px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 300;
  text-transform: uppercase;
}

.hero-orbit {
  position: absolute;
  right: 2%;
  top: 16%;
  width: min(560px, 48vw);
  height: 120px;
  border: 2px solid rgba(183, 209, 138, 0.72);
  border-radius: 50%;
  transform: rotate(9deg);
  box-shadow:
    0 0 34px rgba(255, 42, 36, 0.55),
    inset 0 0 32px rgba(255, 42, 36, 0.22);
  pointer-events: none;
}

.micro-button {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-top: 24px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.micro-button:hover {
  background: var(--text);
  color: var(--bg);
}

.micro-button.solid {
  min-height: 40px;
  padding-inline: 22px;
  background: var(--text);
  color: var(--bg);
  font-size: 12px;
}

.hero-action-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(360px, 0.58fr);
  gap: 48px;
  align-items: end;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(245, 242, 234, 0.2);
}

.hero-action-panel p {
  max-width: 520px;
  color: rgba(245, 242, 234, 0.72);
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.32;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.hero-action-panel .micro-button {
  margin-top: 0;
}

.hero-proof-list {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-proof-list li::before {
  content: "+ ";
  color: var(--green);
}

.sales-path {
  padding: 88px 0 92px;
  border-bottom: 1px solid var(--line);
}

.sales-path-head {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(240px, 0.34fr);
  gap: 52px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.sales-path-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.sales-path-head h2 {
  max-width: 980px;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 300;
  text-transform: uppercase;
}

.sales-path-rows {
  border-bottom: 1px solid var(--line);
}

.sales-path-rows article {
  min-height: 132px;
  display: grid;
  grid-template-columns: 88px minmax(190px, 0.32fr) minmax(0, 0.68fr);
  gap: 36px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.sales-path-rows article:last-child {
  border-bottom: 0;
}

.sales-path-rows article:hover {
  background:
    linear-gradient(90deg, rgba(255, 42, 36, 0.075), transparent 46%),
    rgba(255, 255, 255, 0.008);
  box-shadow: inset 0 1px 0 rgba(255, 42, 36, 0.22);
}

.sales-path-rows span {
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.sales-path-rows h3 {
  font-size: clamp(26px, 3vw, 46px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 350;
  text-transform: uppercase;
}

.sales-path-rows p {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
}

.why-section {
  padding: 94px 0 100px;
  border-bottom: 1px solid var(--line);
}

.why-head {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(260px, 0.32fr);
  gap: 52px;
  align-items: end;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.why-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.why-head h2 {
  max-width: 860px;
  font-size: clamp(44px, 6.2vw, 94px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 300;
  text-transform: uppercase;
}

.why-head p:last-child {
  max-width: 430px;
  color: rgba(245, 242, 234, 0.72);
  font-size: 16px;
}

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

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

.why-card {
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px 26px 30px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(245, 242, 234, 0.035), rgba(245, 242, 234, 0.01));
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.why-card:last-child {
  border-right: 0;
}

.why-card:hover {
  background:
    linear-gradient(180deg, rgba(255, 42, 36, 0.09), rgba(255, 42, 36, 0.018) 58%, transparent),
    rgba(255, 255, 255, 0.012);
  box-shadow: inset 0 1px 0 rgba(255, 42, 36, 0.32);
  transform: translateY(-2px);
}

.why-card span {
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.why-card h3 {
  max-width: 280px;
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 350;
  text-transform: uppercase;
}

.why-card p {
  max-width: 330px;
  color: var(--muted);
  font-size: 15px;
}

.why-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) auto;
  gap: 32px;
  align-items: center;
  padding-top: 30px;
}

.why-callout strong {
  max-width: 840px;
  font-size: clamp(22px, 2.7vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 350;
  text-transform: uppercase;
}

.why-callout div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.why-callout .micro-button {
  margin-top: 0;
}

.why-page-section {
  padding-top: 88px;
}

.why-proof-band .side-copy h2 {
  max-width: 420px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 350;
  text-transform: uppercase;
}

.why-proof-band .side-copy .micro-button {
  justify-self: start;
}

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

.faq-section {
  padding: 88px 0 94px;
  border-bottom: 1px solid var(--line);
}

.faq-head {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(240px, 0.3fr);
  gap: 48px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.faq-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.faq-head h2 {
  max-width: 860px;
  font-size: clamp(38px, 5.6vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 300;
  text-transform: uppercase;
}

.faq-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  gap: 48px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

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

.faq-list h3 {
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 350;
  text-transform: uppercase;
}

.faq-list p {
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
}

.related-pages {
  padding: 90px 0 96px;
  border-bottom: 1px solid var(--line);
}

.related-pages-head {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(240px, 0.3fr);
  gap: 48px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.related-pages-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.related-pages-head h2 {
  max-width: 900px;
  font-size: clamp(38px, 5.8vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.058em;
  font-weight: 300;
  text-transform: uppercase;
}

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

.related-pages-grid a {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px 24px 30px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(245, 242, 234, 0.035), rgba(245, 242, 234, 0.01));
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.related-pages-grid a:last-child {
  border-right: 0;
}

.related-pages-grid a:hover {
  background:
    linear-gradient(180deg, rgba(255, 42, 36, 0.09), rgba(255, 42, 36, 0.018) 58%, transparent),
    rgba(255, 255, 255, 0.012);
  box-shadow: inset 0 1px 0 rgba(255, 42, 36, 0.32);
  transform: translateY(-2px);
}

.related-pages-grid span {
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.related-pages-grid strong {
  max-width: 320px;
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 350;
  text-transform: uppercase;
}

.related-pages-grid p {
  max-width: 330px;
  color: var(--muted);
  font-size: 15px;
}

.number-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(320px, 0.54fr);
  gap: 82px;
  align-items: center;
  min-height: 405px;
  border-bottom: 1px solid var(--line);
}

.big-number,
.row-number {
  display: block;
  font-weight: 300;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.big-number {
  font-size: clamp(210px, 28vw, 390px);
}

.feature-copy {
  max-width: 460px;
  min-width: 0;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature-copy h2,
.feature-panel h2,
.method-stack h2,
.tool-rows h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 400;
  text-transform: uppercase;
}

.feature-copy p,
.feature-panel p,
.method-stack p,
.tool-rows p,
.side-copy p,
.site-footer,
.mini-list {
  color: var(--muted);
  font-size: 15px;
  max-width: 100%;
  overflow-wrap: break-word;
}

.mini-list {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mini-list li::before {
  content: "+ ";
  color: var(--green);
}

.number-row {
  min-height: 230px;
  display: grid;
  grid-template-columns: minmax(250px, 0.46fr) minmax(280px, 1fr) auto;
  gap: 56px;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.row-number {
  align-self: start;
  margin-top: 32px;
  font-size: clamp(160px, 21vw, 300px);
}

.number-row h2 {
  padding-bottom: 34px;
  font-size: clamp(28px, 3.4vw, 54px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 300;
  text-transform: uppercase;
}

.number-row a {
  align-self: center;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--muted);
  font-size: 0;
}

.number-row a::before {
  content: "+";
  font-size: 18px;
}

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

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

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

.accordion-row summary {
  min-height: 230px;
  display: grid;
  grid-template-columns: minmax(250px, 0.46fr) minmax(280px, 1fr) auto;
  gap: 56px;
  align-items: end;
  cursor: pointer;
  list-style: none;
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

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

.accordion-row summary::after {
  content: "+";
  align-self: center;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.accordion-row[open] summary::after {
  content: "-";
  color: var(--text);
  border-color: rgba(255, 42, 36, 0.52);
  box-shadow: 0 0 24px rgba(255, 42, 36, 0.22);
}

.accordion-row:hover summary::after {
  color: var(--text);
  transform: scale(1.04);
}

.accordion-row[open] {
  background:
    linear-gradient(90deg, rgba(255, 42, 36, 0.075), transparent 48%),
    rgba(255, 255, 255, 0.008);
}

.accordion-title {
  align-self: end;
  display: grid;
  padding-bottom: 34px;
}

.accordion-title .eyebrow {
  margin-bottom: 18px;
}

.accordion-title strong {
  max-width: 720px;
  font-size: clamp(28px, 3.4vw, 54px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 300;
  text-transform: uppercase;
}

.accordion-body {
  display: grid;
  grid-template-columns: minmax(250px, 0.46fr) minmax(280px, 1fr) 30px;
  gap: 56px;
  padding: 0 0 46px;
}

.accordion-body > * {
  grid-column: 2;
  max-width: 560px;
}

.accordion-body p {
  color: var(--muted);
  font-size: 16px;
}

.image-text-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(220px, 0.22fr);
  gap: 52px;
  align-items: center;
  padding: 104px 0 88px;
  border-bottom: 1px solid var(--line);
}

.wide-image,
.feature-image {
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(245, 242, 234, 0.12);
  aspect-ratio: 16 / 9;
}

.wide-image {
  min-height: 0;
}

.wide-image img,
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) brightness(0.88);
}

.side-copy {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 20px;
}

.side-copy h2 {
  max-width: 420px;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 350;
  text-transform: uppercase;
}

.spark {
  color: var(--green);
  font-size: 48px;
  line-height: 1;
}

.contact-strip {
  padding: 84px 0 74px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.contact-strip a {
  position: relative;
  display: inline-block;
  color: var(--text);
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 300;
  text-transform: uppercase;
}

.contact-strip a::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 4%;
  top: 50%;
  height: 76%;
  border: 2px solid rgba(183, 209, 138, 0.65);
  border-radius: 50%;
  transform: translateY(-50%) rotate(-2deg);
  pointer-events: none;
}

.pricing-section {
  padding: 94px 0 96px;
  border-bottom: 1px solid var(--line);
}

.pricing-head {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(260px, 0.32fr);
  gap: 52px;
  align-items: end;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.pricing-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -20px;
}

.pricing-head h2 {
  max-width: 780px;
  font-size: clamp(44px, 6vw, 90px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 300;
  text-transform: uppercase;
}

.pricing-head p:last-child,
.pricing-card p,
.pricing-note p {
  color: var(--muted);
  font-size: 15px;
}

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

.pricing-card {
  min-height: 340px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px 26px 30px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.008);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.pricing-card:last-child {
  border-right: 0;
}

.pricing-card:hover,
.pricing-card.featured {
  background:
    linear-gradient(180deg, rgba(255, 42, 36, 0.095), rgba(255, 42, 36, 0.018) 56%, transparent),
    rgba(255, 255, 255, 0.012);
  box-shadow: inset 0 1px 0 rgba(255, 42, 36, 0.34);
}

.pricing-card span {
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.pricing-card h3 {
  margin: 0;
  max-width: 330px;
  font-size: clamp(24px, 2.7vw, 42px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 350;
  text-transform: uppercase;
}

.pricing-card strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: clamp(28px, 3.4vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 300;
  text-transform: uppercase;
}

.pricing-card p {
  max-width: 340px;
}

.pricing-note {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) auto;
  gap: 32px;
  align-items: center;
  padding-top: 28px;
}

.pricing-note p {
  max-width: 760px;
}

.pricing-note .micro-button {
  margin-top: 0;
  justify-self: end;
  width: max-content;
}

.audit-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(320px, 0.54fr);
  gap: 58px;
  align-items: start;
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

.form-intro h2 {
  margin-bottom: 20px;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.065em;
  font-weight: 300;
  text-transform: uppercase;
}

.form-intro p:last-child {
  max-width: 440px;
  color: var(--muted);
  font-size: 15px;
}

.audit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(245, 242, 234, 0.04), rgba(245, 242, 234, 0.012));
}

.audit-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.audit-form label:has(textarea),
.audit-form button,
.form-error {
  grid-column: 1 / -1;
}

.audit-form input,
.audit-form textarea {
  width: 100%;
  border: 1px solid rgba(245, 242, 234, 0.28);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  font: 15px/1.4 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 13px 12px;
  outline: none;
}

.audit-form input:focus,
.audit-form textarea:focus {
  border-color: var(--text);
}

.audit-form button {
  min-height: 48px;
  border: 1px solid var(--text);
  background: var(--text);
  color: var(--bg);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.audit-form button:hover {
  background: transparent;
  color: var(--text);
}

.form-error {
  color: var(--red);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.system-board {
  padding: 96px 0 102px;
  border-bottom: 1px solid var(--line);
}

.system-board-head {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.3fr);
  gap: 56px;
  align-items: end;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.system-board-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -24px;
}

.system-board-head h2 {
  grid-column: 1;
  max-width: 820px;
  font-size: clamp(42px, 6.4vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.065em;
  font-weight: 300;
  text-transform: uppercase;
}

.system-board-head p:last-child {
  grid-column: 2;
  color: var(--muted);
  font-size: 15px;
}

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

.asset-grid.compact {
  grid-template-columns: repeat(3, 1fr);
}

.asset-card {
  grid-column: span 4;
  border: 1px solid rgba(245, 242, 234, 0.18);
  background:
    linear-gradient(180deg, rgba(245, 242, 234, 0.055), rgba(245, 242, 234, 0.015));
  overflow: hidden;
}

.asset-card.asset-wide {
  grid-column: span 8;
}

.asset-grid.compact .asset-card,
.asset-grid.compact .asset-card.asset-wide {
  grid-column: auto;
}

.asset-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08) brightness(0.92);
}

.asset-card figcaption {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-top: 1px solid rgba(245, 242, 234, 0.14);
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.asset-card figcaption span {
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.asset-card figcaption strong {
  max-width: 220px;
  font-weight: 600;
  text-align: right;
}

.page-hero,
.contact-hero {
  padding: 74px 0 86px;
}

.page-hero h1,
.contact-hero h1 {
  margin-top: 48px;
}

.workflow-hero .hero-action-panel {
  margin-top: 40px;
}

.workflow-summary {
  border-bottom: 1px solid var(--line);
}

.workflow-timeline {
  padding: 88px 0 96px;
  border-bottom: 1px solid var(--line);
}

.workflow-timeline-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(220px, 0.28fr);
  gap: 48px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.workflow-timeline-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.workflow-timeline-head h2 {
  max-width: 900px;
  font-size: clamp(38px, 5.7vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.058em;
  font-weight: 300;
  text-transform: uppercase;
}

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

.workflow-grid article {
  min-height: 290px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 26px 24px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(245, 242, 234, 0.035), rgba(245, 242, 234, 0.006));
}

.workflow-grid article:nth-child(3n) {
  border-right: 0;
}

.workflow-grid span {
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.workflow-grid h3 {
  max-width: 330px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 350;
  text-transform: uppercase;
}

.workflow-grid p {
  max-width: 360px;
  color: var(--muted);
  font-size: 15px;
}

.workflow-checklist {
  border-top: 0;
}

.workflow-proof-band {
  padding-top: 88px;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(280px, 0.34fr);
  gap: 52px;
  align-items: center;
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

.split-feature.reverse {
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
}

.split-feature.lead-feature {
  grid-template-columns: minmax(0, 0.72fr) minmax(310px, 0.28fr);
}

.lead-feature .feature-image {
  min-height: 500px;
}

.lead-feature .feature-panel h2 {
  font-size: clamp(30px, 2.9vw, 44px);
}

.feature-image {
  min-height: 0;
}

.feature-panel {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.method-visual-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.method-visual-strip figure {
  border: 1px solid rgba(245, 242, 234, 0.16);
  background: rgba(255, 255, 255, 0.018);
  overflow: hidden;
}

.method-visual-strip img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.9);
}

.method-visual-strip figcaption {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-top: 1px solid rgba(245, 242, 234, 0.12);
  text-transform: uppercase;
}

.method-visual-strip figcaption span {
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.method-visual-strip figcaption strong {
  max-width: 220px;
  font-size: 13px;
  font-weight: 600;
  text-align: right;
  letter-spacing: 0.02em;
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.method-stack,
.tool-rows {
  border-top: 1px solid var(--line);
}

.method-stack article,
.tool-rows article {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(220px, 0.48fr) minmax(280px, 0.52fr);
  gap: 34px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.method-stack article:hover,
.method-stack article:focus-within,
.method-stack article:focus {
  padding-inline: 18px;
  border-color: rgba(255, 42, 36, 0.48);
  background:
    linear-gradient(90deg, rgba(255, 42, 36, 0.1), rgba(255, 42, 36, 0.018) 46%, transparent),
    rgba(255, 255, 255, 0.01);
  box-shadow:
    inset 3px 0 0 rgba(255, 42, 36, 0.58),
    0 0 36px rgba(255, 42, 36, 0.11);
  outline: none;
}

.method-stack span,
.tool-rows span {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.method-detail {
  grid-column: 3;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-5px);
  transition:
    max-height 220ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.method-detail strong {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.method-detail p {
  color: rgba(245, 242, 234, 0.72);
  font-size: 14px;
}

.method-stack article:hover .method-detail,
.method-stack article:focus .method-detail,
.method-stack article:focus-within .method-detail {
  max-height: 180px;
  opacity: 1;
  transform: translateY(0);
}

.method-stack.compact article {
  grid-template-columns: 70px minmax(220px, 0.42fr) minmax(280px, 0.58fr);
}

.audit-card {
  border: 1px solid var(--line);
  padding: 30px;
  background: rgba(255, 255, 255, 0.025);
}

.contact-hero {
  min-height: 520px;
}

.contact-email {
  display: block;
  margin-top: 42px;
  color: var(--text);
  font-size: clamp(32px, 5vw, 74px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.contact-band {
  padding-top: 70px;
}

.contact-band .wide-image {
  aspect-ratio: 16 / 9;
}

.contact-band .wide-image img {
  object-position: center;
}

.site-footer {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  border-top: 1px solid var(--line);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--muted);
  text-transform: uppercase;
}

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

@media (max-width: 900px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 32px, var(--max));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    column-gap: 12px;
    row-gap: 16px;
    padding: 18px 0 24px;
    min-height: 0;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    gap: 18px;
    overflow-x: auto;
  }

  .nav-links a {
    padding-inline: 0;
    font-size: 9px;
  }

  .nav-cta {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    height: 32px;
    padding-inline: 12px;
    font-size: 9px;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 72px;
  }

  .hero-home {
    min-height: auto;
  }

  .hero-action-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-actions,
  .hero-proof-list {
    grid-column: 1;
    justify-content: flex-start;
  }

  .hero-orbit {
    width: 70vw;
    height: 82px;
    right: 0;
    top: 22%;
  }

  .sales-path {
    padding: 64px 0 70px;
  }

  .sales-path-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sales-path-head .eyebrow,
  .sales-path-head h2 {
    grid-column: 1;
    margin-bottom: 0;
  }

  .sales-path-rows article {
    grid-template-columns: 52px minmax(150px, 0.36fr) minmax(0, 0.64fr);
    gap: 22px;
  }

  .why-section {
    padding: 64px 0 70px;
  }

  .why-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-head .eyebrow,
  .why-head h2,
  .why-head p:last-child {
    grid-column: 1;
    margin-bottom: 0;
  }

  .why-grid,
  .why-grid.four {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .why-callout {
    grid-template-columns: 1fr;
  }

  .why-callout div {
    justify-content: flex-start;
  }

  .faq-section {
    padding: 64px 0 70px;
  }

  .faq-head,
  .faq-list article,
  .related-pages-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-head .eyebrow,
  .faq-head h2,
  .related-pages-head .eyebrow,
  .related-pages-head h2 {
    grid-column: 1;
    margin-bottom: 0;
  }

  .related-pages {
    padding: 64px 0 70px;
  }

  .related-pages-grid {
    grid-template-columns: 1fr;
  }

  .related-pages-grid a {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-timeline {
    padding: 64px 0 70px;
  }

  .workflow-timeline-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .workflow-timeline-head .eyebrow,
  .workflow-timeline-head h2 {
    grid-column: 1;
    margin-bottom: 0;
  }

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

  .workflow-grid article,
  .workflow-grid article:nth-child(3n) {
    min-height: 0;
    border-right: 0;
  }

  .number-section,
  .image-text-band,
  .audit-form-section,
  .split-feature,
  .split-feature.reverse {
    grid-template-columns: 1fr;
  }

  .number-section {
    gap: 30px;
    padding: 42px 0;
  }

  .number-row {
    grid-template-columns: 0.38fr 1fr auto;
    gap: 22px;
    min-height: 160px;
  }

  .accordion-row summary {
    grid-template-columns: 0.38fr 1fr auto;
    gap: 22px;
    min-height: 176px;
  }

  .row-number {
    font-size: clamp(106px, 28vw, 180px);
  }

  .number-row h2,
  .accordion-title {
    padding-bottom: 24px;
  }

  .accordion-title strong {
    font-size: clamp(28px, 7vw, 44px);
  }

  .accordion-body {
    grid-template-columns: 0.38fr 1fr auto;
    gap: 22px;
  }

  .accordion-body > * {
    grid-column: 2 / 4;
  }

  .image-text-band,
  .audit-form-section,
  .split-feature {
    padding: 58px 0;
  }

  .audit-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .system-board {
    padding: 64px 0 70px;
  }

  .system-board-head,
  .pricing-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .system-board-head .eyebrow,
  .system-board-head h2,
  .system-board-head p:last-child,
  .pricing-head .eyebrow,
  .pricing-head h2,
  .pricing-head p:last-child {
    grid-column: 1;
    margin-bottom: 0;
  }

  .pricing-section {
    padding: 64px 0 70px;
  }

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

  .pricing-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .pricing-note .micro-button {
    justify-self: start;
  }

  .asset-grid,
  .asset-grid.compact {
    grid-template-columns: 1fr;
  }

  .asset-card,
  .asset-card.asset-wide {
    grid-column: 1;
  }

  .wide-image,
  .feature-image {
    min-height: 0;
  }

  .feature-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 24px;
  }

  .lead-feature .feature-image {
    min-height: 0;
  }

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

  .method-stack article,
  .tool-rows article,
  .method-stack.compact article {
    grid-template-columns: 52px 1fr;
    gap: 14px 22px;
  }

  .method-stack p,
  .tool-rows p {
    grid-column: 2;
  }

  .method-detail {
    grid-column: 2;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 0;
  }
}

@media (max-width: 680px) {
  .method-visual-strip {
    grid-template-columns: 1fr;
    padding: 34px 0;
  }

  .method-stack article,
  .tool-rows article,
  .method-stack.compact article {
    grid-template-columns: 52px 1fr;
    gap: 14px 22px;
  }

  .method-stack p,
  .tool-rows p {
    grid-column: 2;
  }

  .method-detail {
    grid-column: 2;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 0;
  }
}

@media (max-width: 560px) {
  .site-header,
  main,
  .site-footer {
    width: min(358px, calc(100% - 32px));
    margin-left: 16px;
    margin-right: auto;
  }

  .hero h1,
  .page-hero h1,
  .contact-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.8vw, 48px);
    line-height: 1.04;
    letter-spacing: -0.038em;
    overflow-wrap: break-word;
  }

  .hero-title-wrap {
    margin-top: 34px;
  }

  .system-board-head h2 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1;
  }

  .sales-path-head h2 {
    font-size: clamp(36px, 11vw, 50px);
    line-height: 1;
  }

  .sales-path-rows article {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .sales-path-rows h3 {
    font-size: clamp(26px, 8vw, 36px);
  }

  .why-head h2 {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 1;
  }

  .why-callout strong {
    font-size: clamp(24px, 7vw, 34px);
  }

  .faq-head h2 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1;
  }

  .related-pages-head h2 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1;
  }

  .pricing-head h2 {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 1;
  }

  .asset-card figcaption {
    min-height: 62px;
    padding: 14px;
  }

  .hero-orbit {
    width: 62vw;
    height: 60px;
    top: 25%;
  }

  .hero-topline {
    font-size: 10px;
  }

  .big-number {
    font-size: clamp(160px, 48vw, 220px);
  }

  .number-row {
    grid-template-columns: 1fr auto;
    min-height: 178px;
  }

  .accordion-row summary {
    grid-template-columns: 1fr auto;
    gap: 14px;
    min-height: 184px;
  }

  .row-number {
    grid-column: 1;
    font-size: 138px;
  }

  .number-row h2,
  .accordion-title {
    grid-column: 1;
    padding-bottom: 20px;
  }

  .number-row a,
  .accordion-row summary::after {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .accordion-body {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 34px;
  }

  .accordion-body > * {
    grid-column: 1;
  }

  .wide-image,
  .feature-image {
    min-height: 0;
  }

  .contact-strip a {
    font-size: clamp(38px, 12vw, 62px);
  }

  .contact-email {
    font-size: clamp(30px, 10vw, 48px);
  }
}

/* Motion layer */

.motion-ready .site-header {
  animation: header-in 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.motion-ready .brand {
  animation: brand-lock 780ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.motion-ready .nav-links a {
  transition:
    color 160ms ease,
    transform 160ms ease,
    text-shadow 160ms ease;
}

.motion-ready .nav-links a:hover {
  text-shadow: 0 0 18px rgba(255, 42, 36, 0.22);
}

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 360ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--motion-delay, 0ms),
    transform 440ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--motion-delay, 0ms);
}

.motion-ready .motion-row {
  transform: translate3d(-14px, 16px, 0);
}

.motion-ready .hero-title-wrap.motion-reveal,
.motion-ready .page-hero h1.motion-reveal,
.motion-ready .contact-hero h1.motion-reveal {
  transform: translate3d(0, 28px, 0) scale(0.99);
  transform-origin: left bottom;
}

.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-line {
  position: relative;
}

.motion-ready .motion-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 42, 36, 0.62),
    rgba(183, 209, 138, 0.42),
    transparent
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.motion-ready .motion-line.line-visible::after {
  transform: scaleX(1);
}

.motion-image-frame {
  position: relative;
}

.motion-ready .motion-image-frame {
  transform: translate3d(0, 20px, 0) scale(0.99);
  transition:
    opacity 380ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--motion-delay, 0ms),
    transform 460ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--motion-delay, 0ms),
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.motion-ready .motion-image-frame img {
  transition: filter 180ms ease;
}

.motion-ready .motion-image-frame:hover {
  border-color: rgba(255, 42, 36, 0.44);
  box-shadow: 0 0 42px rgba(255, 42, 36, 0.12);
}

.motion-ready .motion-image-frame:hover img {
  filter: contrast(1.14) brightness(0.98);
}

.motion-ready .accordion-row[open] .accordion-body {
  animation: accordion-in 260ms ease both;
}

.micro-button,
.nav-cta,
.audit-form button {
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.micro-button:hover,
.nav-cta:hover,
.audit-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(255, 42, 36, 0.18);
}

.sales-path-rows article:hover,
.why-card:hover,
.related-pages-grid a:hover,
.pricing-card:hover,
.method-stack article:hover,
.tool-rows article:hover,
.workflow-grid article:hover {
  transform: translateY(-2px);
}

.workflow-grid article,
.tool-rows article {
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.workflow-grid article:hover,
.tool-rows article:hover {
  background:
    linear-gradient(180deg, rgba(255, 42, 36, 0.09), rgba(255, 42, 36, 0.018) 58%, transparent),
    rgba(255, 255, 255, 0.012);
  box-shadow: inset 0 1px 0 rgba(255, 42, 36, 0.32);
}

@keyframes header-in {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brand-lock {
  from {
    letter-spacing: 0.08em;
    opacity: 0;
  }
  to {
    letter-spacing: -0.05em;
    opacity: 1;
  }
}

@keyframes accordion-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .motion-reveal,
  .motion-row,
  .motion-image-frame,
  .motion-image-frame img {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .motion-line::after,
  .motion-image-frame::before {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .nav-links {
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
  }
}
