:root {
  color-scheme: dark;
  --ink: #080706;
  --ink-soft: #11100e;
  --panel: #17130f;
  --panel-strong: #211912;
  --ivory: #f7f1e7;
  --muted: #b8aa96;
  --line: rgba(247, 241, 231, 0.14);
  --champagne: #d1ad6f;
  --champagne-soft: #f0d59d;
  --merlot: #7f1d35;
  --emerald: #0e6b5e;
  --cobalt: #486ca8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.no-scroll {
  overflow: hidden;
}

body::selection {
  background: var(--champagne);
  color: var(--ink);
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 40px;
  background: rgba(8, 7, 6, 0.74);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 7, 6, 0.9);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  font-size: 1rem;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--champagne);
  border: 1px solid rgba(247, 241, 231, 0.35);
  border-radius: 6px;
  box-shadow: 0 12px 26px rgba(209, 173, 111, 0.24);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ivory);
}

.nav-cta {
  color: var(--ink) !important;
  background: var(--champagne);
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  background: rgba(247, 241, 231, 0.06);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--ivory);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: 86svh;
  align-items: center;
  overflow: hidden;
  padding: 112px 0 70px;
  background: var(--ink);
  isolation: isolate;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.98) 0%, rgba(8, 7, 6, 0.76) 48%, rgba(8, 7, 6, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 7, 6, 0.16) 0%, rgba(8, 7, 6, 0.78) 100%);
}

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

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--champagne-soft);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.4rem;
  line-height: 0.95;
  font-weight: 500;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.1rem;
  line-height: 1.04;
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-lede,
.section-heading p,
.proof-copy p,
.contact-layout p,
.feature-card p,
.workflow-step p,
.comparison p,
.price-card li,
.faq-grid p {
  color: var(--muted);
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--champagne);
  box-shadow: 0 18px 36px rgba(209, 173, 111, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--champagne-soft);
}

.button-secondary {
  color: var(--ivory);
  background: rgba(247, 241, 231, 0.06);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(209, 173, 111, 0.58);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
  margin: 0;
}

.hero-metrics div {
  padding: 16px;
  background: rgba(247, 241, 231, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-metrics dt {
  font-size: 1.6rem;
  font-weight: 850;
}

.hero-metrics dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.signal-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0b09;
}

.strip-inner {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  color: var(--muted);
}

.strip-inner span {
  min-height: 74px;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  text-align: center;
}

.strip-inner span:last-child {
  border-right: 1px solid var(--line);
}

.section {
  padding: 112px 0;
}

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

.download-guide-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.link-grid,
.sidebar-links {
  display: grid;
  gap: 12px;
}

.link-grid a,
.sidebar-links a,
.inline-link {
  color: var(--ivory);
  background: rgba(247, 241, 231, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.link-grid a {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
}

.link-grid a:hover,
.link-grid a:focus-visible,
.sidebar-links a:hover,
.sidebar-links a:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  border-color: rgba(209, 173, 111, 0.58);
  background: rgba(209, 173, 111, 0.1);
  transform: translateY(-2px);
}

.inline-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  margin-top: 24px;
  padding: 12px 16px;
  font-weight: 800;
}

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

.guide-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 241, 231, 0.035);
}

.guide-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  color: var(--champagne-soft);
  border: 1px solid rgba(209, 173, 111, 0.32);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
}

.guide-card p {
  color: var(--muted);
}

.guide-card .inline-link {
  margin-top: auto;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 58svh;
  align-items: center;
  overflow: hidden;
  padding: 122px 0 70px;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.98), rgba(8, 7, 6, 0.74)),
    linear-gradient(135deg, rgba(127, 29, 53, 0.22), rgba(14, 107, 94, 0.12) 58%, rgba(72, 108, 168, 0.14)),
    #0d0a08;
}

.page-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(209, 173, 111, 0.58), transparent);
}

.content-section {
  padding-top: 86px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
}

.content-panel,
.sidebar-panel,
.page-group {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 241, 231, 0.035);
}

.content-panel {
  padding: 34px;
}

.content-panel h2,
.content-panel h3 {
  color: var(--ivory);
}

.content-panel p,
.content-panel li {
  color: var(--muted);
}

.content-panel strong {
  color: var(--champagne-soft);
}

.article-list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.article-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 22px;
}

.article-list li::before {
  position: absolute;
  left: 0;
  color: var(--champagne);
  content: "/";
}

.sidebar-panel {
  align-self: start;
  padding: 24px;
}

.sidebar-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: var(--muted);
}

.page-group {
  padding: 28px;
  margin-bottom: 24px;
}

.page-group .section-heading {
  margin-bottom: 22px;
}

.page-group h2 {
  font-size: 2rem;
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: center;
}

.split-copy {
  min-width: 0;
}

.split-copy p,
.sidebar-note {
  color: var(--muted);
}

.tool-page-hero,
.blog-page-hero {
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.98), rgba(8, 7, 6, 0.7)),
    linear-gradient(135deg, rgba(14, 107, 94, 0.22), rgba(127, 29, 53, 0.18) 58%, rgba(209, 173, 111, 0.12)),
    #0d0a08;
}

.install-page-hero {
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.98), rgba(8, 7, 6, 0.72)),
    linear-gradient(135deg, rgba(209, 173, 111, 0.18), rgba(72, 108, 168, 0.2) 56%, rgba(14, 107, 94, 0.12)),
    #0d0a08;
}

.os-page-hero {
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.98), rgba(8, 7, 6, 0.72)),
    linear-gradient(135deg, rgba(72, 108, 168, 0.22), rgba(209, 173, 111, 0.12) 52%, rgba(127, 29, 53, 0.16)),
    #0d0a08;
}

.tool-console,
.command-panel,
.os-card {
  border: 1px solid rgba(209, 173, 111, 0.28);
  border-radius: 8px;
  background: rgba(247, 241, 231, 0.035);
  box-shadow: var(--shadow);
}

.tool-console {
  overflow: hidden;
}

.console-top {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #17120e;
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--merlot);
}

.console-top span:nth-child(2) {
  background: var(--champagne);
}

.console-top span:nth-child(3) {
  background: var(--emerald);
}

.console-top strong {
  margin-left: 10px;
  font-size: 0.88rem;
}

.console-body {
  display: grid;
  gap: 20px;
  padding: 26px;
}

.drop-zone {
  display: grid;
  min-height: 190px;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px dashed rgba(209, 173, 111, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(rgba(247, 241, 231, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 241, 231, 0.04) 1px, transparent 1px),
    rgba(8, 7, 6, 0.44);
  background-size: 28px 28px;
  text-align: center;
}

.drop-zone strong {
  color: var(--champagne-soft);
  font-size: 1.2rem;
}

.drop-zone span,
.scan-stack span,
.command-panel span,
.os-card dd,
.platform-grid span {
  color: var(--muted);
}

.scan-stack {
  display: grid;
  gap: 12px;
}

.scan-stack span {
  position: relative;
  display: block;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.scan-stack span::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  width: var(--value);
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--champagne), var(--emerald));
}

.numbered-steps {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: install-step;
}

.numbered-steps li {
  position: relative;
  min-height: 64px;
  padding: 14px 14px 14px 70px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 241, 231, 0.035);
  counter-increment: install-step;
}

.numbered-steps li::before {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--champagne);
  border-radius: 6px;
  content: counter(install-step);
  font-weight: 900;
}

.numbered-steps strong {
  color: var(--ivory);
}

.command-panel {
  align-self: start;
  padding: 28px;
}

.command-panel code {
  display: block;
  margin: 16px 0;
  padding: 18px;
  overflow-x: auto;
  color: var(--champagne-soft);
  background: rgba(8, 7, 6, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-status {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.mini-status strong {
  color: var(--ivory);
}

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

.platform-grid div,
.os-card dl div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 241, 231, 0.035);
}

.platform-grid strong,
.platform-grid span {
  display: block;
}

.platform-grid strong {
  margin-bottom: 7px;
  color: var(--champagne-soft);
}

.os-card {
  padding: 28px;
}

.os-card h3 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 500;
}

.os-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.os-card dt {
  color: var(--champagne-soft);
  font-weight: 800;
}

.os-card dd {
  margin: 4px 0 0;
}

.blog-preview-section {
  width: 100%;
  padding-right: max(24px, calc((100% - 1180px) / 2));
  padding-left: max(24px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(14, 107, 94, 0.14), transparent 46%),
    #0d0b09;
}

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

.blog-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 241, 231, 0.035);
}

.blog-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  color: var(--champagne-soft);
  border: 1px solid rgba(209, 173, 111, 0.32);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
}

.blog-card p {
  color: var(--muted);
}

.blog-card .inline-link {
  margin-top: auto;
}

.blog-article-section {
  padding-top: 84px;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.blog-article {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 241, 231, 0.035);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.article-meta span {
  padding: 8px 10px;
  color: var(--champagne-soft);
  border: 1px solid rgba(209, 173, 111, 0.3);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-article h2 {
  margin-top: 34px;
  font-size: 2.05rem;
}

.blog-article h2:first-of-type {
  margin-top: 0;
}

.blog-article p {
  color: var(--muted);
  font-size: 1.02rem;
}

.blog-sidebar {
  position: sticky;
  top: 96px;
}

.sidebar-note {
  margin: 22px 0 0;
  font-size: 0.9rem;
}

.suite-section {
  padding-top: 120px;
}

.product-frame {
  overflow: hidden;
  border: 1px solid rgba(209, 173, 111, 0.22);
  border-radius: 8px;
  background: #100d0a;
  box-shadow: var(--shadow);
}

.frame-topbar {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  background: #17120e;
}

.frame-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--merlot);
}

.frame-topbar span:nth-child(2) {
  background: var(--champagne);
}

.frame-topbar span:nth-child(3) {
  background: var(--emerald);
}

.frame-topbar strong {
  margin-left: 12px;
  color: var(--ivory);
  font-size: 0.88rem;
}

.product-grid {
  display: grid;
  min-height: 560px;
  grid-template-columns: 230px 1fr 260px;
}

.case-rail,
.inspector {
  padding: 24px;
  background: rgba(247, 241, 231, 0.025);
}

.case-rail {
  border-right: 1px solid var(--line);
}

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

.case-rail p,
.inspector p {
  margin-bottom: 18px;
  color: var(--champagne-soft);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-pill {
  width: 100%;
  min-height: 42px;
  margin-bottom: 10px;
  padding: 0 12px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: left;
}

.case-pill.active {
  color: var(--ivory);
  border-color: rgba(209, 173, 111, 0.52);
  background: rgba(209, 173, 111, 0.1);
}

.rail-status {
  margin-top: 38px;
  padding: 18px;
  border: 1px solid rgba(14, 107, 94, 0.42);
  border-radius: 8px;
  background: rgba(14, 107, 94, 0.1);
}

.rail-status span,
.rail-status strong {
  display: block;
}

.rail-status span {
  color: var(--muted);
  font-size: 0.83rem;
}

.rail-status strong {
  margin-top: 4px;
  color: #a9e6d9;
}

.analysis-stage {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  padding: 42px;
  background:
    linear-gradient(rgba(247, 241, 231, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 241, 231, 0.035) 1px, transparent 1px),
    #0d0a08;
  background-size: 44px 44px;
}

.pixel-map {
  display: grid;
  width: min(100%, 520px);
  aspect-ratio: 1 / 0.78;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(247, 241, 231, 0.12);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.72);
  box-shadow: inset 0 0 70px rgba(209, 173, 111, 0.08);
}

.pixel-map span {
  min-width: 0;
  border-radius: 4px;
  background: #251a13;
  border: 1px solid rgba(247, 241, 231, 0.05);
}

.pixel-map span:nth-child(4n) {
  background: #5c1730;
}

.pixel-map span:nth-child(5n) {
  background: #1b5d53;
}

.pixel-map span:nth-child(7n) {
  background: #9f7f4b;
}

.pixel-map span:nth-child(11n) {
  background: #2f4e7d;
}

.analysis-caption {
  position: absolute;
  right: 38px;
  bottom: 34px;
  width: min(280px, calc(100% - 76px));
  padding: 18px;
  border: 1px solid rgba(209, 173, 111, 0.34);
  border-radius: 8px;
  background: rgba(17, 13, 10, 0.92);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.analysis-caption span,
.analysis-caption strong {
  display: block;
}

.analysis-caption span {
  color: var(--muted);
  font-size: 0.86rem;
}

.analysis-caption strong {
  margin-top: 5px;
}

.meter {
  margin-bottom: 20px;
}

.meter span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.meter i {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(247, 241, 231, 0.08);
}

.meter i::before {
  display: block;
  width: var(--value);
  height: 100%;
  content: "";
  background: linear-gradient(90deg, var(--champagne), var(--emerald));
}

.inspector ul {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.inspector li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.feature-section,
.pricing-section {
  width: 100%;
  padding-right: max(24px, calc((100% - 1180px) / 2));
  padding-left: max(24px, calc((100% - 1180px) / 2));
  background: #0d0b09;
}

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

.feature-card,
.price-card,
.workflow-step,
.comparison > div,
.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 241, 231, 0.035);
}

.feature-card {
  min-height: 220px;
  padding: 26px;
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  color: var(--champagne-soft);
  border: 1px solid rgba(209, 173, 111, 0.32);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
}

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

.workflow-step {
  padding: 30px;
}

.workflow-step span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 54px;
  place-items: center;
  color: var(--ink);
  background: var(--champagne);
  border-radius: 6px;
  font-weight: 900;
}

.proof-section {
  width: 100%;
  padding-right: max(24px, calc((100% - 1180px) / 2));
  padding-left: max(24px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(127, 29, 53, 0.2), transparent 46%),
    #110d0a;
}

.proof-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

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

.comparison > div {
  min-height: 260px;
  padding: 28px;
}

.comparison span,
.price-card > p {
  display: block;
  color: var(--champagne-soft);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison strong {
  display: block;
  margin: 28px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.5rem;
  font-weight: 500;
}

.comparison .highlight {
  border-color: rgba(209, 173, 111, 0.48);
  background: rgba(209, 173, 111, 0.1);
  box-shadow: var(--shadow);
}

.price-card {
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(209, 173, 111, 0.58);
  background:
    linear-gradient(180deg, rgba(209, 173, 111, 0.14), rgba(247, 241, 231, 0.035)),
    rgba(247, 241, 231, 0.035);
}

.price-card h3 {
  margin: 22px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  font-weight: 500;
}

.price-card h3 span {
  color: var(--muted);
  font-family: inherit;
  font-size: 1rem;
}

.price-card ul {
  min-height: 142px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.price-card li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--champagne);
  content: "/";
}

.price-card .button {
  width: 100%;
}

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

.faq-grid details {
  padding: 24px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-grid p {
  margin: 16px 0 0;
}

.contact-section {
  width: 100%;
  padding-right: max(24px, calc((100% - 1180px) / 2));
  padding-left: max(24px, calc((100% - 1180px) / 2));
  background: #0c0907;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
  padding: 48px;
  border: 1px solid rgba(209, 173, 111, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(209, 173, 111, 0.16), transparent 42%),
    #14100c;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form label:nth-child(3),
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 48px;
  color: var(--ivory);
  background: rgba(8, 7, 6, 0.78);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
}

.contact-form input:focus,
.contact-form select:focus {
  outline: 2px solid rgba(209, 173, 111, 0.5);
  outline-offset: 2px;
}

.site-footer {
  display: flex;
  width: min(1180px, calc(100% - 48px));
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.site-footer span:first-child {
  color: var(--ivory);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 980px) {
  .site-header {
    padding: 16px 24px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 24px;
    left: 24px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(12, 9, 7, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: 84svh;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.45rem;
  }

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

  .case-rail,
  .inspector {
    border: 0;
  }

  .case-rail {
    border-bottom: 1px solid var(--line);
  }

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

  .product-grid,
  .analysis-stage {
    min-height: auto;
  }

  .feature-grid,
  .workflow,
  .pricing-grid,
  .faq-grid,
  .proof-layout,
  .comparison,
  .content-layout,
  .split-section,
  .guide-grid,
  .blog-grid,
  .blog-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .blog-sidebar {
    position: static;
  }

  .price-card ul {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand span:last-child {
    font-size: 0.96rem;
  }

  .hero {
    min-height: 82svh;
    padding: 102px 0 42px;
  }

  .hero-content,
  .section,
  .strip-inner,
  .site-footer {
    width: min(100% - 32px, 1180px);
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

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

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(145px, 1fr));
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .hero-metrics div {
    padding: 12px;
  }

  .hero-metrics dt {
    font-size: 1.28rem;
  }

  .hero-metrics dd {
    font-size: 0.78rem;
  }

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

  .strip-inner span,
  .strip-inner span:last-child {
    min-height: 50px;
    border-right: 1px solid var(--line);
  }

  .section {
    padding: 76px 0;
  }

  .page-hero {
    min-height: 54svh;
    padding: 104px 0 52px;
  }

  .download-guide-section,
  .content-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .feature-section,
  .proof-section,
  .pricing-section,
  .blog-preview-section,
  .contact-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .analysis-stage {
    padding: 20px;
  }

  .pixel-map {
    gap: 5px;
  }

  .analysis-caption {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .feature-card,
  .workflow-step,
  .comparison > div,
  .price-card,
  .faq-grid details,
  .content-panel,
  .sidebar-panel,
    .page-group,
  .guide-card,
    .blog-card,
  .blog-article,
  .command-panel,
  .os-card {
    padding: 22px;
  }

  .link-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .blog-article h2 {
    font-size: 1.7rem;
  }

  .contact-layout {
    padding: 24px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

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

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