:root {
  --bg: #08090b;
  --bg-2: #101114;
  --panel: rgba(250, 249, 247, 0.035);
  --panel-strong: rgba(250, 249, 247, 0.075);
  --line: rgba(250, 249, 247, 0.105);
  --line-strong: rgba(250, 249, 247, 0.18);
  --text: #faf9f7;
  --muted: #aaa49a;
  --muted-2: #7e786f;
  --gold: #d4a853;
  --gold-2: #efc86d;
  --warm: #9d6c2f;
  --steel: #bfc5ca;
  --dark-text: #181512;
  --content: 1220px;
  --radius: 2px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --font-display: Fraunces, Georgia, serif;
  --font-body: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background: #08090b;
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 4px;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 100;
  pointer-events: none;
}

.progress-bar span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 12px rgba(212, 168, 83, 0.55);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.18) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.14) 0 1px, transparent 1px);
  background-size: 34px 34px, 29px 29px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 9, 11, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.35);
}

.nav-wrap {
  max-width: var(--content);
  margin: 0 auto;
  min-height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #f0cc79, var(--gold));
  color: #19130b;
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(212, 168, 83, 0.25);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 760;
  line-height: 1;
  color: var(--text);
}

.brand-note {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: #d7d2c8;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--gold-2);
}

.nav-links a.button-primary,
.nav-links a.button-primary:hover {
  color: #18120a;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #18120a;
  box-shadow: 0 16px 35px rgba(212, 168, 83, 0.2);
}

.button-secondary {
  background: rgba(250, 249, 247, 0.035);
  color: var(--text);
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: rgba(212, 168, 83, 0.48);
  background: rgba(250, 249, 247, 0.07);
}

.hero {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(212, 168, 83, 0.2), transparent 22%),
    radial-gradient(circle at 8% 92%, rgba(157, 108, 47, 0.18), transparent 28%),
    linear-gradient(180deg, #07080a 0%, #08090b 58%, #0d0e11 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(250, 249, 247, 0.025), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: auto, 120px 120px, 120px 120px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.45), transparent);
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--content);
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 96px 24px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  min-width: 0;
  max-width: 1020px;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(72px);
  pointer-events: none;
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.hero-glow-gold {
  width: 620px;
  height: 620px;
  top: -240px;
  right: -180px;
  background: rgba(212, 168, 83, 0.18);
}

.hero-glow-warm {
  width: 440px;
  height: 440px;
  bottom: -160px;
  left: -120px;
  background: rgba(157, 108, 47, 0.14);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 25px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  max-width: 1030px;
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 7.2vw, 7.15rem);
  font-weight: 520;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
  font-variation-settings: "SOFT" 80, "WONK" 1;
}

.mobile-break {
  display: none;
}

.hero-subhead {
  margin-top: 24px;
  color: rgba(212, 168, 83, 0.88);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 900;
}

.hero-copy {
  max-width: 720px;
  margin: 18px 0 0;
  color: #d6d0c6;
  font-size: 1.02rem;
  line-height: 1.85;
}

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

.hero-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-micro span {
  position: relative;
}

.hero-micro span + span::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 50%;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  margin-top: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.proof-item {
  min-height: 112px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-value {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
}

.proof-label {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

main {
  position: relative;
  z-index: 2;
}

.section {
  padding: 92px 24px;
  background: #0b0c0f;
  color: var(--text);
  border-top: 1px solid rgba(250, 249, 247, 0.055);
}

.section.alt {
  background:
    radial-gradient(circle at 84% 20%, rgba(212, 168, 83, 0.1), transparent 24%),
    #101114;
}

.section-inner {
  max-width: var(--content);
  min-width: 0;
  margin: 0 auto;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.48fr);
  align-items: end;
  gap: 46px;
  margin-bottom: 36px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4vw, 4.55rem);
  font-weight: 520;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--text);
}

.section-header p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.symbiosis-grid,
.service-grid,
.reviews-row {
  display: grid;
  gap: 12px;
}

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

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

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

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

.system-card,
.service-card,
.review-card,
.answer-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(250, 249, 247, 0.028);
  box-shadow: none;
}

.system-card,
.service-card,
.review-card,
.answer-card {
  min-height: 230px;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 14px;
  position: relative;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.system-card::before,
.service-card::before,
.review-card::before,
.answer-card::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(212, 168, 83, 0.48);
}

.system-card:hover,
.service-card:hover,
.review-card:hover,
.answer-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 168, 83, 0.28);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.answer-card {
  color: inherit;
  text-decoration: none;
}

.icon-badge {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  color: rgba(212, 168, 83, 0.72);
  background: transparent;
}

.icon-badge svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.45;
}

.system-card h3,
.service-card h3,
.review-card h3,
.answer-card h3,
.contact-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 560;
  line-height: 1.05;
  color: var(--text);
}

.system-card p,
.service-card p,
.review-card p,
.answer-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.answer-card span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-main {
  position: relative;
  z-index: 2;
}

.page-hero {
  padding: 46px 24px 32px;
  background:
    radial-gradient(circle at 86% 16%, rgba(212, 168, 83, 0.16), transparent 26%),
    linear-gradient(180deg, #07080a 0%, #101114 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner,
.article-inner {
  max-width: var(--content);
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--gold-2);
  text-decoration: none;
}

.page-hero h1 {
  max-width: 940px;
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.2vw, 4.35rem);
  font-weight: 520;
  line-height: 1;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #d6d0c6;
  font-size: 1.02rem;
  line-height: 1.68;
}

.hub-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hub-shortcuts a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(212, 168, 83, 0.34);
  border-radius: 6px;
  color: var(--text);
  background: rgba(250, 249, 247, 0.045);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
}

.hub-shortcuts a:hover {
  border-color: rgba(239, 200, 109, 0.68);
  background: rgba(212, 168, 83, 0.12);
}

.article-section {
  padding: 74px 24px;
  background: #0b0c0f;
}

.page-main .section {
  padding-top: 36px;
  padding-bottom: 66px;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.34fr);
  gap: 48px;
  align-items: start;
}

.article-copy {
  display: grid;
  gap: 30px;
  min-width: 0;
}

.answer-box,
.article-card,
.side-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(250, 249, 247, 0.035);
}

.answer-box {
  padding: 28px;
  border-color: rgba(212, 168, 83, 0.24);
  background:
    radial-gradient(circle at 10% 0%, rgba(212, 168, 83, 0.11), transparent 36%),
    rgba(250, 249, 247, 0.035);
}

.answer-box h2,
.article-card h2 {
  font-size: clamp(1.85rem, 3vw, 3rem);
}

.answer-box p,
.article-card p,
.article-card li,
.side-card p,
.side-card li {
  color: var(--muted);
}

.answer-box p {
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.85;
}

.article-card {
  padding: 28px;
}

.article-card p {
  margin: 16px 0 0;
  line-height: 1.8;
}

.article-card ul,
.side-card ul {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.article-card li,
.side-card li {
  line-height: 1.7;
}

.side-stack {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 96px;
}

.side-card {
  padding: 22px;
}

.side-card h2,
.side-card h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 560;
  line-height: 1.08;
}

.side-card p {
  margin: 12px 0 0;
}

.related-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.related-links a {
  color: var(--gold-2);
  font-weight: 900;
  text-decoration: none;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--line);
}

.trust-list div {
  min-height: 122px;
  padding: 20px;
  background: rgba(250, 249, 247, 0.035);
}

.trust-list strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 560;
}

.trust-list span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.58fr);
  gap: 48px;
  align-items: center;
}

.launch-proof-stack {
  position: relative;
  min-height: 540px;
}

.launch-proof-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 10%, rgba(212, 168, 83, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(250, 249, 247, 0.08), rgba(250, 249, 247, 0.025));
  backdrop-filter: blur(16px);
}

.launch-proof-main {
  inset: 0 70px 74px 0;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.launch-proof-secondary {
  right: 0;
  bottom: 0;
  width: 52%;
  border: 10px solid #101114;
  padding: 26px;
  background:
    radial-gradient(circle at 80% 10%, rgba(230, 205, 146, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(15, 16, 18, 0.96), rgba(25, 22, 18, 0.96));
}

.launch-proof-card h3 {
  margin: 12px 0 0;
  max-width: 520px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  line-height: 1.04;
}

.launch-proof-card p,
.launch-proof-card li {
  color: var(--muted);
  line-height: 1.6;
}

.launch-proof-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.launch-proof-card li {
  padding-left: 22px;
  position: relative;
}

.launch-proof-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.proof-kicker {
  margin: 24px 0 0;
  color: var(--gold-2) !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(250, 249, 247, 0.028);
}

.process-step {
  min-height: 248px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.step-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(212, 168, 83, 0.12);
  color: var(--gold-2);
  font-weight: 900;
}

.process-step h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 560;
  color: var(--text);
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.part-scout-section {
  background:
    radial-gradient(circle at 12% 24%, rgba(191, 197, 202, 0.08), transparent 24%),
    radial-gradient(circle at 86% 8%, rgba(212, 168, 83, 0.13), transparent 25%),
    #101114;
}

.part-scout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 14px;
  align-items: start;
}

.tool-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(250, 249, 247, 0.035);
  padding: 24px;
}

.part-form,
.compare-panel {
  min-width: 0;
}

.compare-panel,
.lead-panel {
  grid-column: 1 / -1;
}

.tool-panel-header {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 20px;
}

.tool-panel h3,
.fitment-box h4 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 560;
  line-height: 1.05;
}

.tool-panel p,
.tool-note,
.empty-state {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.form-grid,
.lead-grid {
  display: grid;
  gap: 12px;
}

.form-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
}

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

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field-wide {
  grid-column: span 3;
}

.field span {
  color: #d7d2c8;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.offer-table input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.55);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 750;
  outline: none;
}

.field input,
.field select {
  padding: 0 13px;
}

.offer-table input {
  min-width: 104px;
  padding: 0 10px;
}

.field input::placeholder,
.offer-table input::placeholder {
  color: rgba(170, 164, 154, 0.62);
}

.field input:focus,
.field select:focus,
.offer-table input:focus {
  border-color: rgba(239, 200, 109, 0.68);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.12);
}

.decode-button {
  width: 100%;
  min-height: 46px;
}

.tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.search-links {
  display: grid;
  gap: 10px;
}

.search-link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  background: rgba(8, 9, 11, 0.35);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.search-link:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 168, 83, 0.42);
  background: rgba(250, 249, 247, 0.06);
}

.search-link strong {
  display: block;
  margin-bottom: 2px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 620;
}

.search-link span {
  color: var(--muted);
  font-size: 0.84rem;
}

.search-link i {
  color: var(--gold-2);
  font-style: normal;
  font-weight: 900;
}

.fitment-box {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(212, 168, 83, 0.2);
  background: rgba(212, 168, 83, 0.055);
}

.fitment-box h4 {
  font-size: 1.28rem;
}

.fitment-box ul {
  margin: 12px 0 0;
  padding-left: 19px;
  color: var(--muted);
}

.fitment-box li + li {
  margin-top: 7px;
}

.offer-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
}

.offer-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.offer-table th,
.offer-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.offer-table th {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-table tr:last-child td {
  border-bottom: 0;
}

.offer-table td:last-child {
  color: var(--gold-2);
  font-weight: 900;
  white-space: nowrap;
}

.offer-table tr.is-best {
  background: rgba(212, 168, 83, 0.075);
}

.price-verdict {
  margin-top: 14px;
  color: var(--gold-2);
  font-weight: 900;
}

.check-line {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.check-line input {
  margin-top: 4px;
  accent-color: var(--gold);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
  color: var(--gold);
}

.review-meta {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.faq-item {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(250, 249, 247, 0.03);
}

.faq-item h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 560;
  line-height: 1.08;
}

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

.contact-band {
  background:
    radial-gradient(circle at 84% 18%, rgba(212, 168, 83, 0.18), transparent 30%),
    radial-gradient(circle at 14% 70%, rgba(116, 141, 150, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(8, 9, 11, 0.98), rgba(14, 14, 16, 0.94));
  color: var(--text);
}

.contact-band .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.5fr);
  gap: 40px;
  align-items: center;
}

.contact-band .section-kicker {
  color: var(--gold-2);
}

.contact-band p {
  color: #d6d0c6;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-card {
  padding: 26px;
  color: var(--text);
  background: rgba(250, 249, 247, 0.045);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.contact-card h3 {
  color: var(--text);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.contact-line {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  color: #d6d0c6;
}

.contact-line strong {
  display: block;
  color: var(--gold-2);
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 34px 24px;
  background: #08090b;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: var(--content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(34px);
  transition: opacity 800ms ease, filter 800ms ease, transform 800ms ease;
}

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

@keyframes slowZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

@keyframes floatGlow {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-24px, 18px, 0) scale(1.06);
  }
}

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

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

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

@media (max-width: 1080px) {
  .nav-links {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    background: rgba(8, 9, 11, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.is-open {
    display: flex;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-inner {
    padding-top: 80px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 9.5vw, 5.4rem);
  }

  .hero-proof,
  .symbiosis-grid,
  .service-grid,
  .answer-grid,
  .process,
  .reviews-row,
  .faq-grid,
  .trust-list,
  .part-scout,
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header,
  .split,
  .contact-band .section-inner,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .side-stack {
    position: static;
  }

  .field-wide {
    grid-column: span 2;
  }

  .process-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    padding: 0 16px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-note {
    font-size: 0.66rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding: 72px 18px 32px;
    max-width: 100vw;
    overflow: hidden;
  }

  .eyebrow {
    font-size: 0.68rem;
    line-height: 1.5;
  }

  .hero h1 {
    max-width: calc(100vw - 36px);
    font-size: clamp(2.45rem, 10.4vw, 3.05rem);
    line-height: 1;
  }

  .hero-micro span + span::before {
    display: none;
  }

  .hero-micro {
    display: grid;
    gap: 7px;
  }

  .mobile-break {
    display: block;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 0.96rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
    max-width: calc(100vw - 36px);
    white-space: normal;
  }

  .hero-proof,
  .symbiosis-grid,
  .service-grid,
  .answer-grid,
  .process,
  .reviews-row,
  .faq-grid,
  .trust-list,
  .part-scout,
  .form-grid,
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .field-wide,
  .compare-panel,
  .lead-panel {
    grid-column: auto;
  }

  .tool-panel {
    padding: 18px;
  }

  .tool-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tool-actions .button {
    width: 100%;
    white-space: normal;
  }

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

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 18px;
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .page-hero {
    padding: 42px 18px 28px;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 10.2vw, 3rem);
    line-height: 1;
  }

  .article-section {
    padding: 56px 18px;
  }

  .answer-box,
  .article-card,
  .side-card {
    padding: 22px;
  }

  .launch-proof-stack {
    min-height: 380px;
  }

  .launch-proof-main {
    inset: 0 0 90px 0;
    padding: 24px;
  }

  .launch-proof-secondary {
    width: 66%;
    border-width: 8px;
    padding: 20px;
  }

  .process-step:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    width: 100%;
    gap: 12px 16px;
  }
}
