:root {
  --ink: #f8f8f8;
  --muted: rgba(255, 255, 255, 0.58);
  --line: rgba(255, 255, 255, 0.12);
  --soft: #151515;
  --white: #ffffff;
  --accent: #ff002f;
  --accent-soft: rgba(255, 0, 47, 0.16);
  --green: #ff002f;
  --green-dark: #ff002f;
  --amber: #ff002f;
  --blue: #ffffff;
  --graphite: #0a0a0a;
  --radius: 2px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* {
  box-sizing: border-box;
}

main,
section,
div,
article,
aside {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 75% 8%, rgba(255, 0, 47, 0.14), transparent 32rem),
    linear-gradient(180deg, #0d0d0d 0%, #090909 44%, #0d0d0d 100%);
  overflow-x: hidden;
}

.mos-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.44;
  pointer-events: none;
}

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

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

button,
.button {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: none;
}

.ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--ink);
  background: transparent;
}

.ghost.dark {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  width: min(1280px, calc(100% - 40px));
  min-height: 58px;
  margin: 20px auto 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(10, 10, 10, 0.84);
  box-shadow: none;
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 34px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--white);
}

.top-cta {
  min-height: 38px;
  padding: 0 18px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: #0a0a0a;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero {
  width: min(1280px, calc(100% - 40px));
  min-height: 760px;
  margin: -22px auto 0;
  padding: 106px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 34px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "[ ";
  color: var(--accent);
}

.eyebrow::after {
  content: " ]";
  color: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  max-width: 100%;
}

h1 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(32px, 3.45vw, 46px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(25px, 2.6vw, 34px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 600;
  line-height: 1.2;
}

.lead {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.55;
}

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

.hero-metrics {
  max-width: 760px;
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-metrics div {
  min-height: 100px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 600;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-visual {
  align-self: stretch;
  min-height: 520px;
  max-height: 620px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--soft);
  isolation: isolate;
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.2) contrast(1.08) brightness(0.72);
  mix-blend-mode: luminosity;
}

.strip {
  width: 100%;
  padding: 26px 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a0a0a;
  color: var(--white);
}

.strip div {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.strip span {
  color: var(--accent);
  font-family: var(--mono);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.strip strong {
  max-width: 870px;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.28;
}

.section {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
}

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

.diag-card,
.sales-item,
.step,
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.diag-card {
  min-height: 260px;
  padding: 24px;
}

.diag-card .icon {
  width: fit-content;
  height: auto;
  margin-bottom: 34px;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.diag-card .icon::before {
  content: "[ ";
  color: var(--accent);
}

.diag-card .icon::after {
  content: " ]";
  color: var(--accent);
}

.diag-card p,
.sales-item span,
.step p,
.product-card p {
  color: var(--muted);
  line-height: 1.5;
}

.accent-band {
  width: 100%;
  max-width: none;
  padding: 92px max(20px, calc((100vw - 1280px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a0a0a;
}

.sales-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
}

.sales-item {
  min-height: 220px;
  padding: 24px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sales-item b {
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 600;
}

.economics {
  padding-bottom: 64px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
}

.impact-card {
  min-height: 270px;
  padding: 24px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #0a0a0a;
  color: var(--white);
}

.impact-card span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.impact-card strong {
  margin-top: auto;
  margin-bottom: 12px;
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1.14;
}

.impact-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.variant-panels.visible-all {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.variant-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0a0a0a;
  box-shadow: var(--shadow);
}

.variant-panel.active {
  display: grid;
}

.tag {
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tag.best {
  background: var(--accent-soft);
  color: var(--accent);
}

.variant-copy p:not(.tag) {
  max-width: 740px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 0;
  background: var(--accent);
  box-shadow: none;
}

.price-box {
  padding: 26px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--soft);
  min-height: 250px;
}

.price-box.featured {
  background: var(--accent);
  color: var(--white);
}

.price-box span,
.package-price span {
  margin-bottom: 8px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-box.featured span {
  color: var(--white);
}

.package-price span {
  color: var(--white);
}

.price-box strong,
.package-price strong {
  margin-bottom: 10px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.08;
}

.price-box p,
.price-box small {
  color: inherit;
  opacity: 0.72;
  line-height: 1.5;
}

.price-box .price-note {
  margin-bottom: 10px;
  opacity: 1;
  font-weight: 800;
}

.roadmap {
  padding-top: 70px;
}

.roadmap-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-bottom: 0;
}

.roadmap-list article {
  min-height: 120px;
  padding: 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  background: rgba(255, 255, 255, 0.035);
}

.roadmap-list span {
  width: fit-content;
  height: auto;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-weight: 600;
}

.roadmap-list span::before {
  content: "[ ";
  color: var(--accent);
}

.roadmap-list span::after {
  content: " ]";
  color: var(--accent);
}

.roadmap-list h3 {
  margin-bottom: 8px;
}

.roadmap-list p {
  max-width: 790px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.product-demo {
  padding-top: 70px;
}

.catalog-shell {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0a0a0a;
  box-shadow: var(--shadow);
}

.promo-column {
  display: grid;
  gap: 0;
  border-right: 1px solid var(--line);
}

.day-deal {
  min-height: 310px;
  padding: 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.day-deal span {
  width: fit-content;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--white);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.day-deal strong {
  display: block;
  color: var(--white);
  font-size: 30px;
  line-height: 1.08;
}

.day-deal button {
  width: 100%;
  background: var(--white);
  color: #0a0a0a;
}

.benefit-stack {
  display: grid;
  gap: 0;
}

.benefit-stack span {
  min-height: 48px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  display: flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.product-card {
  min-height: 390px;
  padding: 22px;
  border: 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

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

.product-card.hot {
  border-color: var(--accent);
}

.card-top {
  margin-bottom: 58px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.card-top span,
.card-top b {
  padding: 7px 9px;
  border-radius: var(--radius);
  background: var(--soft);
}

.card-top b {
  background: var(--accent-soft);
  color: var(--accent);
}

.price-row {
  margin: auto 0 12px;
}

.price-row strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.price-row small {
  color: var(--accent);
  font-family: var(--mono);
  font-weight: 900;
}

.installment {
  min-height: 42px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  background: var(--soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.product-card button {
  width: 100%;
  background: var(--white);
  color: #0a0a0a;
}

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

.step {
  min-height: 250px;
  padding: 24px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step span {
  width: fit-content;
  height: auto;
  margin-bottom: 38px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-weight: 900;
}

.step span::before {
  content: "[ ";
  color: var(--accent);
}

.step span::after {
  content: " ]";
  color: var(--accent);
}

.package {
  width: 100%;
  max-width: none;
  padding: 92px max(20px, calc((100vw - 1280px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a0a0a;
}

.package-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: center;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.package-card p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.55;
}

.package-price {
  min-height: 220px;
  padding: 26px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
}

.package-price p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.deal-row {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
}

.deal-row div {
  min-height: 122px;
  padding: 22px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.035);
}

.deal-row b {
  font-size: 18px;
}

.deal-row span {
  color: var(--muted);
  line-height: 1.45;
}

.summary {
  width: 100%;
  max-width: none;
  padding: 92px max(20px, calc((100vw - 1280px) / 2));
  background: #0a0a0a;
  color: var(--white);
}

.summary-card {
  max-width: 980px;
}

.summary-card .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.summary-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.6;
}

.summary-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  min-height: 74px;
  padding: 20px max(20px, calc((100vw - 1280px) / 2));
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 14px;
}

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

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

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

  .hero {
    min-height: auto;
    padding-top: 92px;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 390px;
  }

  .split,
  .catalog-shell,
  .package-card {
    grid-template-columns: 1fr;
  }

  .variant-panels.visible-all {
    grid-template-columns: 1fr;
  }

  .sales-grid,
  .impact-grid,
  .cards-column,
  .workflow-grid,
  .deal-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card:nth-child(2) {
    border-right: 0;
  }

  .price-box,
  .package-price {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .topbar {
    width: min(340px, calc(100% - 20px));
    min-height: 60px;
    margin: 10px auto 0 10px;
  }

  .top-cta {
    display: none;
  }

  .hero {
    width: min(340px, calc(100% - 20px));
    max-width: 340px;
    margin-left: 10px;
    margin-right: auto;
    padding-top: 68px;
    gap: 18px;
  }

  .topbar,
  .section,
  .strip div,
  .accent-band > *,
  .package > *,
  .summary > * {
    max-width: 340px;
  }

  .section {
    width: min(340px, calc(100% - 20px));
    margin-left: 10px;
    margin-right: auto;
  }

  h2,
  h3,
  p,
  li,
  .lead,
  .roadmap-list p,
  .product-card p {
    overflow-wrap: anywhere;
  }

  .hero-copy,
  .lead {
    max-width: 330px;
  }

  h1 {
    max-width: 330px;
    font-size: 24px;
    line-height: 1.14;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 24px;
    line-height: 1.16;
    letter-spacing: -0.018em;
  }

  h3 {
    font-size: 18px;
  }

  .lead {
    font-size: 15px;
  }

  .hero-actions,
  .summary-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-metrics,
  .diagnostics,
  .sales-grid,
  .impact-grid,
  .cards-column,
  .workflow-grid,
  .deal-row {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .hero-visual {
    min-height: 280px;
  }

  .strip div,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .section,
  .accent-band,
  .package,
  .summary {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .variant-panel,
  .package-card,
  .roadmap-list article {
    padding: 18px;
  }

  .roadmap-list article {
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: hidden;
  }

  .roadmap-list span {
    margin-bottom: 0;
  }

  .catalog-shell {
    padding: 0;
  }

  .promo-column,
  .product-card {
    border-right: 0;
  }

  .card-top {
    margin-bottom: 38px;
  }
}

@media print {
  :root {
    --ink: #111317;
    --muted: #646b76;
    --line: #d8d8d8;
    --soft: #f4f4f4;
  }

  html {
    scroll-behavior: auto;
  }

  body {
    background: #fff;
  }

  .topbar {
    position: static;
    width: 100%;
    margin: 0 0 24px;
    background: #fff;
    color: #111317;
    box-shadow: none;
  }

  .nav,
  .top-cta,
  .hero-actions,
  .summary-actions {
    display: none;
  }

  .hero,
  .split,
  .variant-panel,
  .catalog-shell,
  .package-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section,
  .accent-band,
  .package,
  .summary {
    width: 100%;
    padding: 32px 0;
    background: #fff;
    color: var(--ink);
  }

  .diag-card,
  .sales-item,
  .impact-card,
  .variant-panel,
  .roadmap-list article,
  .product-card,
  .step,
  .package-card,
  .deal-row div {
    background: #fff;
    color: var(--ink);
  }

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

  .hero-visual,
  .variant-panel,
  .package-card,
  .catalog-shell {
    box-shadow: none;
  }

  .summary-card p:not(.eyebrow),
  .package-price p {
    color: var(--muted);
  }
}
