:root {
  --ink: #101211;
  --carbon: #161918;
  --graphite: #232726;
  --paper: #ffffff;
  --soft: #f4f6f5;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: #d7dce2;
  --text: #f8faf9;
  --muted: #b8c0bd;
  --subtle: #68726f;
  --wine: #7a2943;
  --green: #16a34a;
  --electric: #76f0a3;
  --blue: #2d63e2;
  --amber: #f59e0b;
  --red: #dc2626;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

.topbar {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 52px;
  background: rgba(16, 18, 17, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.hero-trust,
.system-proof,
.proof-inner,
.micro-steps,
.footer-inner {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 950;
}

.brand-logo {
  display: block;
}

.brand-logo-full {
  width: 236px;
  height: 48px;
  object-fit: contain;
}

.brand-logo-mark {
  display: none;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.nav-links a,
.nav-cta {
  text-decoration: none;
}

.nav-links a {
  border-radius: 7px;
  padding: 7px 11px;
  font-weight: 850;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
  outline: none;
}

.nav-cta {
  border: 1px solid rgba(118, 240, 163, 0.2);
  border-radius: 8px;
  padding: 10px 16px;
  background: var(--green);
  color: var(--paper);
  font-weight: 950;
  box-shadow: 0 16px 42px rgba(22, 163, 74, 0.24);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(420px, 0.58fr) minmax(0, 0.92fr);
  gap: 26px;
  align-items: center;
  overflow: hidden;
  padding: 116px 56px 72px;
  background: var(--ink);
}

.hero-bg,
.hero-veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: 72% center;
  opacity: 0.68;
  filter: saturate(0.88) contrast(0.98) blur(0.4px);
  transform: scale(1.05);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-veil {
  background:
    radial-gradient(circle at 74% 36%, rgba(255, 255, 255, 0.13), transparent 34%),
    linear-gradient(90deg, rgba(16, 18, 17, 1) 0%, rgba(16, 18, 17, 0.92) 34%, rgba(16, 18, 17, 0.48) 70%, rgba(16, 18, 17, 0.34) 100%),
    linear-gradient(180deg, rgba(16, 18, 17, 0.16) 0%, rgba(16, 18, 17, 0.82) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 560px;
  max-width: 100%;
  min-width: 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.hero-stage {
  position: relative;
  z-index: 2;
  width: min(880px, 60vw);
  height: 640px;
  justify-self: end;
  border-radius: 0;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.5));
  overflow: visible;
  transform: translateX(34px);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 18px -18px 24px;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12) 48%, transparent),
    radial-gradient(circle at 54% 42%, rgba(255, 255, 255, 0.16), transparent 48%);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  opacity: 0.68;
}

.hero-stage canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-stage-caption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-stage-caption span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 7px 10px;
  background: rgba(16, 18, 17, 0.62);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--electric);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: 40px;
  line-height: 1.08;
}

.hero-subtitle {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.button.primary {
  background: var(--green);
  color: var(--paper);
  box-shadow: 0 18px 50px rgba(22, 163, 74, 0.26);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
}

.button.full {
  width: 100%;
}

.hero-trust {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-trust span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 900;
}

.decision-system {
  position: relative;
  background:
    linear-gradient(90deg, rgba(122, 41, 67, 0.44), rgba(16, 18, 17, 0.96) 38%, rgba(45, 99, 226, 0.22)),
    var(--carbon);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.system-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: center;
}

.system-copy {
  max-width: 420px;
}

.system-copy p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.system-proof {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.system-proof span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
}

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

.system-grid article {
  min-height: 226px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 24px 24px 62px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.system-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: var(--green);
}

.system-grid article::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 5px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  opacity: 0.7;
}

.system-grid article:nth-child(2)::before {
  background: var(--blue);
}

.system-grid article:nth-child(3)::before {
  background: var(--amber);
}

.system-grid article:nth-child(2)::after {
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.system-grid article:nth-child(3)::after {
  background: linear-gradient(90deg, var(--amber), var(--red));
}

.system-grid span {
  color: var(--electric);
  font-weight: 950;
}

.system-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.system-grid strong {
  display: inline-flex;
  margin-top: auto;
  padding-top: 24px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 950;
}

.section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(108deg, rgba(255, 255, 255, 0.055) 0, rgba(255, 255, 255, 0.055) 1px, transparent 1px, transparent 160px),
    linear-gradient(90deg, rgba(122, 41, 67, 0.18), transparent 42%, rgba(45, 99, 226, 0.12));
}

.section-inner,
.final-inner,
.footer-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section-inner {
  padding: 96px 0;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 50px;
  align-items: center;
}

.two-col.reversed {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.two-col.reversed .copy-block {
  order: 2;
}

.copy-block {
  max-width: 540px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.13;
}

h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.18;
}

.copy-block p,
.section-heading p,
.inclusion-grid p,
.fit-grid li,
.price-copy p,
.price-box li,
details p,
.guarantee,
.price-note {
  color: var(--muted);
  font-size: 17px;
}

.precision-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.precision-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 28px;
  color: var(--paper);
  font-weight: 850;
}

.precision-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 14px;
  height: 14px;
  border: 2px solid var(--green);
  border-radius: 4px;
}

.visual-frame {
  position: relative;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.visual-frame.elevated::after {
  content: "";
  position: absolute;
  top: 0;
  left: -55%;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-18deg);
  animation: sheen 6s ease-in-out infinite;
}

.visual-frame img {
  width: 100%;
  border-radius: 8px;
}

.visual-frame.elevated {
  margin-top: 34px;
}

.product-reveal {
  background:
    linear-gradient(135deg, rgba(122, 41, 67, 0.34), rgba(16, 18, 17, 0.96) 42%, rgba(45, 99, 226, 0.18)),
    var(--carbon);
}

.inclusion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.inclusion-grid article,
.fit-grid article,
.price-box,
details {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
}

.inclusion-grid article {
  min-height: 178px;
  padding: 22px;
}

.inclusion-grid span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--electric);
  font-weight: 950;
}

.inclusion-grid strong {
  display: block;
  font-size: 19px;
}

.checklist-lab {
  background:
    linear-gradient(90deg, rgba(16, 18, 17, 0.96), rgba(122, 41, 67, 0.22), rgba(16, 18, 17, 0.98)),
    var(--ink);
}

.micro-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.micro-steps div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.micro-steps span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.micro-steps strong {
  display: block;
  margin-top: 4px;
}

.score-cockpit {
  min-height: 720px;
  display: grid;
  align-items: center;
}

.score-cockpit::before {
  display: none;
}

.score-bg,
.score-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.score-bg img {
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.82) contrast(0.92);
  opacity: 0.72;
}

.score-cockpit::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 18, 17, 1) 0%, rgba(16, 18, 17, 0.97) 42%, rgba(16, 18, 17, 0.74) 70%, rgba(16, 18, 17, 0.38) 100%),
    linear-gradient(180deg, rgba(16, 18, 17, 0.18) 0%, rgba(16, 18, 17, 0.62) 100%);
}

.score-content {
  max-width: 620px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.44);
}

.score-side {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: max(44px, calc((100% - var(--max)) / 2 - 250px));
  width: 260px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.028)),
    rgba(16, 18, 17, 0.72);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.score-side p {
  margin: 0 0 10px;
  color: var(--electric);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.score-side strong {
  display: block;
  color: var(--paper);
  font-size: 22px;
  line-height: 1.12;
}

.score-side-list {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.score-side-list span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 850;
}

.score-grid {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.score-grid div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.score-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 38px;
  border-radius: 8px;
  color: var(--paper);
  font-weight: 950;
}

.score-grid .green {
  background: var(--green);
}

.score-grid .amber {
  background: var(--amber);
}

.score-grid .red {
  background: var(--red);
}

.score-grid .black {
  background: var(--graphite);
}

.sources-section {
  background: var(--carbon);
}

.fit-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fit-grid article {
  padding: 28px;
}

.fit-grid ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.fit-grid li {
  margin: 10px 0;
}

.pricing {
  background:
    linear-gradient(135deg, rgba(122, 41, 67, 0.38), rgba(16, 18, 17, 0.96) 44%, rgba(22, 163, 74, 0.12)),
    var(--ink);
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.52fr);
  gap: 56px;
  align-items: start;
}

.price-copy {
  max-width: 660px;
}

.price-box {
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.price-label {
  margin: 0;
  color: var(--subtle);
  font-weight: 900;
}

.price {
  margin-top: 4px;
  font-size: 58px;
  line-height: 1;
  font-weight: 950;
}

.price-box ul {
  margin: 22px 0 26px;
  padding-left: 20px;
}

.price-box li,
.price-note,
.guarantee {
  color: var(--subtle);
}

.faq {
  background: var(--carbon);
}

.faq-grid {
  margin-top: 26px;
}

details {
  padding: 22px;
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 950;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(122, 41, 67, 0.44), rgba(16, 18, 17, 0.96), rgba(45, 99, 226, 0.18)),
    var(--ink);
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(108deg, rgba(255, 255, 255, 0.055) 0, rgba(255, 255, 255, 0.055) 1px, transparent 1px, transparent 160px);
}

.final-inner {
  padding: 86px 0;
}

.final-inner h2 {
  max-width: 780px;
  margin: 0 auto 28px;
}

.footer {
  background: #0c0e0d;
  color: var(--muted);
}

.footer > .footer-inner:not(.footer-shell) {
  display: none;
}

.footer-shell {
  display: block;
  padding: 34px 0 30px;
  font-size: 14px;
}

.footer-grid,
.footer-links,
.footer-contact,
.footer-bottom {
  display: grid;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.8fr) minmax(200px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.footer-brand-block strong {
  display: block;
  color: var(--paper);
  font-size: 18px;
}

.footer-brand-block p,
.footer-contact p,
.footer-bottom p {
  margin: 0;
}

.footer-brand-block p:last-child {
  margin-top: 12px;
}

.footer-kicker {
  margin: 0 0 8px;
  color: var(--electric);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-links {
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 850;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--paper);
  outline: none;
}

.footer-contact {
  gap: 10px;
}

.footer-bottom {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-size: 14px;
}

.footer p {
  margin: 0;
}

[data-reveal] {
  transform: translateY(22px);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateX(0);
  }

  to {
    transform: scale(1.055) translateX(-14px);
  }
}

@keyframes sheen {
  0%,
  55% {
    left: -55%;
  }

  100% {
    left: 115%;
  }
}

@media (max-width: 1080px) {
  .topbar {
    padding: 13px 28px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 106px 28px 64px;
  }

  .hero-bg {
    object-position: 76% center;
  }

  .hero-stage {
    justify-self: start;
    width: min(620px, 100%);
    height: 420px;
    transform: none;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 29px;
  }

  .two-col,
  .two-col.reversed,
  .price-layout,
  .system-inner {
    grid-template-columns: 1fr;
  }

  .two-col.reversed .copy-block {
    order: 0;
  }

  .copy-block,
  .score-content,
  .price-copy {
    max-width: 760px;
  }

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

@media (max-width: 760px) {
  .topbar {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    padding: 8px 10px;
  }

  .brand-logo-full {
    display: none;
  }

  .brand-logo-mark {
    display: block;
  }

  .hero {
    min-height: 90svh;
    padding: 88px 18px 48px;
  }

  .hero-bg {
    object-position: 74% center;
    opacity: 0.5;
    filter: saturate(0.82) contrast(0.92) blur(0.8px);
  }

  .hero-stage {
    height: 300px;
    margin-top: 12px;
  }

  .hero-veil {
    background:
      linear-gradient(90deg, rgba(16, 18, 17, 0.98) 0%, rgba(16, 18, 17, 0.91) 64%, rgba(16, 18, 17, 0.68) 100%),
      linear-gradient(180deg, rgba(16, 18, 17, 0.24) 0%, rgba(16, 18, 17, 0.8) 100%);
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 26px;
  }

  .hero-actions {
    align-items: stretch;
  }

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

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

  .hero-trust span {
    text-align: center;
  }

  .hero-subtitle,
  .copy-block p,
  .section-heading p,
  .inclusion-grid p,
  .fit-grid li,
  .price-copy p,
  .price-box li,
  details p,
  .guarantee,
  .price-note {
    font-size: 16px;
  }

  .section-inner,
  .final-inner,
  .footer-inner,
  .system-inner {
    width: calc(100% - 36px);
  }

  .system-inner {
    padding: 42px 0;
  }

  .section-inner {
    padding: 68px 0;
  }

  .system-grid,
  .inclusion-grid,
  .micro-steps,
  .fit-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .system-grid article {
    min-height: auto;
  }

  .score-cockpit {
    min-height: 780px;
  }

  .score-side {
    display: none;
  }

  .score-bg img {
    object-position: 66% center;
  }

  .score-cockpit::after {
    background:
      linear-gradient(90deg, rgba(16, 18, 17, 1) 0%, rgba(16, 18, 17, 0.94) 72%, rgba(16, 18, 17, 0.78) 100%),
      linear-gradient(180deg, rgba(16, 18, 17, 0.24) 0%, rgba(16, 18, 17, 0.74) 100%);
  }

  .price {
    font-size: 50px;
  }

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

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

  .hero-bg,
  .visual-frame.elevated::after,
  [data-reveal] {
    animation: none;
    transition: none;
  }

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