/* VisualBucks Public Site — Admin Command Center theme */

:root {
  --obsidian: #050506;
  --obsidian-2: #08090c;
  --panel: #0c0d11;
  --panel-2: #121318;
  --gold: #d7ad49;
  --gold-2: #f2d184;
  --gold-soft: rgba(215, 173, 73, 0.18);
  --silver: #bfc5ca;
  --silver-2: #e6ebef;
  --text: #f5f0df;
  --muted: #8a8f97;
  --line: rgba(215, 173, 73, 0.35);
  --line-soft: rgba(191, 197, 202, 0.13);
  --teal: #3ec9b0;
  --teal-soft: rgba(62, 201, 176, 0.14);
  --max-width: 960px;
  --max-width-wide: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--obsidian);
  color: var(--text);
  font-family: 'Inter', ui-sans-serif, system-ui, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  background-image:
    radial-gradient(1200px 800px at 12% -10%, rgba(215, 173, 73, 0.08), transparent 70%),
    radial-gradient(1000px 600px at 110% 110%, rgba(181, 22, 46, 0.05), transparent 70%),
    url('/t/B01/b01_01.png');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

a { color: var(--gold-2); text-decoration: none; }
a:hover { color: #fff; text-decoration: underline; }

h1, h2, h3 { color: var(--gold-2); margin: 0 0 0.5rem; letter-spacing: 0.02em; font-weight: 600; }
h1 { font-size: clamp(1.6rem, 4vw, 2rem); }
h2 { font-size: 1.15rem; margin-top: 1.5rem; }
h3 { font-size: 1rem; margin-top: 1rem; }

p, li { color: var(--silver); }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

.site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.97), rgba(12, 13, 17, 0.94));
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.header-inner-wide,
.footer-inner-wide,
.site-main-wide {
  max-width: var(--max-width-wide);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.brand-link:hover { text-decoration: none; }

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(215, 173, 73, 0.35));
}

.brand-text b {
  display: block;
  color: var(--gold-2);
  letter-spacing: 0.14em;
  font-size: 0.85rem;
}
.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  align-items: center;
}

.site-nav a {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--silver);
  text-decoration: none;
  background: rgba(12, 13, 17, 0.78);
  transition: border-color 0.14s, color 0.14s;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--gold-2);
  border-color: var(--line);
  text-decoration: none;
}

/* Main content */
.site-main {
  flex: 1;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.panel {
  background: linear-gradient(180deg, rgba(18, 19, 24, 0.94), rgba(5, 5, 6, 0.92));
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42), inset 0 0 30px rgba(215, 173, 73, 0.04);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  background: url('/t/B02/b02_03.png') top left / contain no-repeat;
  opacity: 0.7;
  pointer-events: none;
}

.panel::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: url('/t/B02/b02_03.png') top left / contain no-repeat;
  transform: rotate(180deg);
  opacity: 0.7;
  pointer-events: none;
}

.panel > * { position: relative; z-index: 1; }

.title-plate {
  display: inline-block;
  padding: 0.35rem 1.25rem;
  margin-bottom: 1rem;
  background: url('/t/B05/b05_01.png') center / 100% 100% no-repeat;
  min-height: 42px;
  line-height: 42px;
}

.title-plate h2 {
  margin: 0;
  line-height: inherit;
  font-size: 1rem;
}

.section-intro {
  max-width: 40rem;
  margin: 0 0 1.25rem;
  color: var(--silver);
  font-size: 0.95rem;
}

.divider {
  height: 12px;
  margin: 1.75rem 0;
  background: url('/t/B03/b03_01.png') center / contain no-repeat;
  opacity: 0.85;
}

/* Hero */
.hero {
  padding: 2rem 1.25rem 1.75rem;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  text-align: left;
}

.hero-copy {
  max-width: 34rem;
}

.hero-logo {
  width: min(140px, 42vw);
  height: auto;
  object-fit: contain;
  margin: 0 0 0.75rem;
  filter: drop-shadow(0 0 24px rgba(215, 173, 73, 0.25));
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--teal);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 0.75rem;
  line-height: 1.08;
}

.hero-subhead {
  margin: 0 0 1.25rem;
  color: var(--silver);
  font-size: clamp(1rem, 2.4vw, 1.08rem);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-bottom: 0.85rem;
}

.hero-actions .play-card {
  margin-top: 0;
}

.text-link {
  color: var(--gold-2);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.text-link:hover {
  color: #fff;
}

.hero-disclaimer {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 32rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: min(280px, 72vw);
}

.phone-mockup::before {
  content: "";
  position: absolute;
  inset: -12% -18%;
  background: radial-gradient(circle, var(--teal-soft), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.phone-bezel {
  position: relative;
  z-index: 1;
  padding: 0.55rem;
  border-radius: 28px;
  border: 2px solid rgba(215, 173, 73, 0.55);
  background:
    linear-gradient(180deg, rgba(36, 31, 24, 0.98), rgba(8, 8, 10, 0.98)),
    url('/t/B06/b06_01.png') center / cover no-repeat;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    inset 0 0 24px rgba(215, 173, 73, 0.08);
}

.phone-bezel::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(215, 173, 73, 0.25);
  z-index: 2;
}

.phone-bezel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(215, 173, 73, 0.22);
}

@media (min-width: 900px) {
  .hero-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }

  .phone-mockup {
    width: min(300px, 100%);
  }
}

/* Buttons */
.gold-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: 1px solid #f4d990;
  background: linear-gradient(180deg, #f0d087, #a97824);
  color: #100b04;
  text-decoration: none;
  transition: filter 0.12s;
}
.gold-button:hover { filter: brightness(1.08); text-decoration: none; color: #100b04; }
.gold-button.disabled,
.gold-button[aria-disabled="true"] {
  opacity: 0.85;
  cursor: default;
  pointer-events: none;
}

.play-card {
  display: inline-block;
  padding: 0.5rem;
  margin-top: 0.5rem;
  background: url('/t/B02/b02_12.png') center / 100% 100% no-repeat;
  min-width: min(320px, 90vw);
}

/* Video showcase */
.video-section {
  text-align: center;
}

.video-section .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.video-frame {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(18, 19, 24, 0.96), rgba(5, 5, 6, 0.94)),
    url('/t/B06/b06_01.png') center / cover no-repeat;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.45),
    inset 0 0 30px rgba(215, 173, 73, 0.05);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0.35rem;
  border: 1px solid rgba(215, 173, 73, 0.18);
  border-radius: 14px;
  pointer-events: none;
}

.video-frame video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #000;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  max-height: min(72vh, 640px);
}

.video-caption {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

@media (min-width: 720px) {
  .video-frame video {
    aspect-ratio: auto;
    object-fit: contain;
    max-height: min(70vh, 720px);
  }
}

/* Feature grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.feature-card {
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(18, 19, 24, 0.92), rgba(5, 5, 6, 0.88));
  box-shadow: inset 0 0 20px rgba(215, 173, 73, 0.03);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/t/B04/b04_10.png') center / cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}
.feature-card p {
  margin: 0;
  font-size: 0.88rem;
  position: relative;
  z-index: 1;
}

/* How it works */
.steps-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.step-card {
  padding: 1.15rem 1.2rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(18, 19, 24, 0.92), rgba(5, 5, 6, 0.88));
  box-shadow: inset 0 0 20px rgba(62, 201, 176, 0.03);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(215, 173, 73, 0.45);
  background: rgba(215, 173, 73, 0.12);
  color: var(--gold-2);
  font-size: 0.85rem;
  font-weight: 700;
}

.step-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
}

.step-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--silver);
}

/* Screenshot showcase */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.screenshot-card {
  margin: 0;
  text-align: center;
}

.screenshot-frame {
  padding: 0.45rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 19, 24, 0.96), rgba(5, 5, 6, 0.94));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.screenshot-card figcaption {
  margin-top: 0.65rem;
  color: var(--gold-2);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

/* Built for */
.audience-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}

.audience-grid li {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--silver-2);
  text-align: center;
  font-size: 0.92rem;
  box-shadow: inset 0 0 16px rgba(215, 173, 73, 0.03);
}

.trust-section .disclaimer {
  margin-top: 0;
}

.footer-copy {
  margin-top: 0.5rem;
}

.disclaimer {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(191, 197, 202, 0.2);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  font-size: 0.85rem;
  color: var(--muted);
}

/* Legal / content pages */
.legal-content ul { padding-left: 1.25rem; }
.legal-content li { margin: 0.35rem 0; }
.legal-meta { margin-bottom: 1.25rem; color: var(--muted); font-size: 0.9rem; }

.support-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  gap: 0.5rem;
}

.support-list li {
  padding: 0.65rem 1rem;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--silver-2);
  font-size: 0.9rem;
}

.support-list li::before {
  content: "▸ ";
  color: var(--gold);
}

/* Support page */
.support-page .support-hero {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-soft);
}

.support-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
  margin: 1rem 0 0;
}

.support-category-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 5.5rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(18, 19, 24, 0.92), rgba(8, 8, 10, 0.88));
  color: var(--silver-2);
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.support-category-card:hover,
.support-category-card:focus-visible {
  border-color: var(--line);
  box-shadow: 0 0 0 1px var(--gold-soft), 0 8px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
  color: var(--text);
  text-decoration: none;
}

.support-category-card:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.support-category-label {
  color: var(--gold-2);
  font-weight: 600;
  font-size: 0.95rem;
}

.support-category-hint {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.support-section {
  scroll-margin-top: 5.5rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
}

.support-section:first-of-type {
  border-top: none;
  padding-top: 0;
}

.support-external-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.support-external-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.external-mark {
  color: var(--teal);
  font-size: 0.85em;
}

.external-link:hover .external-mark {
  color: var(--gold-2);
}

@media (max-width: 640px) {
  .support-category-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line-soft);
  background: rgba(8, 8, 10, 0.95);
  padding: 1.5rem 1.25rem;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  max-width: 36rem;
  justify-content: flex-end;
}
.footer-links a { font-size: 0.85rem; color: var(--silver); }

.legal-note {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0;
}

.silver-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(191, 197, 202, 0.32);
  background: linear-gradient(180deg, #2a2c33, #15161b);
  color: var(--silver-2);
  text-decoration: none;
}
.silver-button:hover { filter: brightness(1.08); text-decoration: none; color: var(--silver-2); }

@media (max-width: 640px) {
  .header-inner { justify-content: center; }
  .site-nav { justify-content: center; }
  .panel { padding: 1.25rem 1rem; }
  .hero-split { text-align: center; }
  .hero-copy { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

/* Polish patch additions */
.hero-description {
  margin: 0 0 1.25rem;
  color: var(--silver);
  font-size: 0.95rem;
  max-width: 34rem;
  line-height: 1.65;
}

.section-intro-spaced {
  margin-top: 1.75rem;
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.audience-card {
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(18, 19, 24, 0.92), rgba(5, 5, 6, 0.88));
  box-shadow: inset 0 0 20px rgba(62, 201, 176, 0.03);
}

.audience-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
}

.audience-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--silver);
}

.screenshot-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px dashed rgba(215, 173, 73, 0.28);
}

.demo-teaser {
  text-align: center;
}

.demo-teaser .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.demo-teaser .btn-row {
  justify-content: center;
}

.demo-page {
  text-align: center;
}

.demo-video-frame {
  margin: 0 auto;
}

.video-fallback-link {
  margin-top: 0.85rem;
  font-size: 0.88rem;
}

.business-identity p {
  margin: 0.35rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.table-heading {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--gold-2);
}

.table-scroll {
  overflow-x: auto;
  margin: 0.75rem 0 1.25rem;
  -webkit-overflow-scrolling: touch;
}

.data-table,
.pricing-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th,
.data-table td,
.pricing-table th,
.pricing-table td {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
}

.data-table thead th,
.pricing-table thead th {
  background: rgba(215, 173, 73, 0.1);
  color: var(--gold-2);
  font-weight: 600;
}

.data-table tbody tr:nth-child(even),
.pricing-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.18);
}

.badge-best {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--obsidian);
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
}

.faq-list {
  display: grid;
  gap: 1.25rem;
  margin: 1.25rem 0 1.75rem;
}

.faq-item {
  padding: 1rem 1.15rem;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
}

.faq-item h2 {
  margin-top: 0;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
}

.faq-links {
  padding-left: 1.25rem;
}

.copy-template {
  margin: 0.75rem 0 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.32);
}

.copy-block {
  margin: 0.75rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(8, 8, 10, 0.85);
  border: 1px solid var(--line-soft);
  color: var(--silver-2);
  font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
  font-size: 0.85rem;
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-x: auto;
}

.support-response-time {
  color: var(--teal);
  font-size: 0.92rem;
}

.support-include-info {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.support-warning {
  margin-top: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(181, 22, 46, 0.35);
  background: rgba(181, 22, 46, 0.08);
  font-size: 0.88rem;
  color: var(--silver);
}

@media (max-width: 640px) {
  .data-table,
  .pricing-table {
    font-size: 0.82rem;
  }

  .data-table th,
  .data-table td,
  .pricing-table th,
  .pricing-table td {
    padding: 0.55rem 0.65rem;
  }
}

/* ============================================================
   How It Works — scan tiers, accuracy, comparison
   ============================================================ */

.how-page .panel {
  margin-bottom: 0;
}

.how-hero {
  padding: 2rem 1.75rem;
  text-align: left;
}

.how-hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  margin-bottom: 0.85rem;
  line-height: 1.12;
}

.how-hero-lead {
  margin: 0 0 1rem;
  color: var(--silver-2);
  font-size: clamp(1rem, 2.5vw, 1.08rem);
  line-height: 1.65;
  max-width: 42rem;
}

.how-hero-support {
  margin: 0 0 1.25rem;
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 42rem;
}

.accuracy-notice {
  margin: 0;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(215, 173, 73, 0.35);
  background: rgba(215, 173, 73, 0.08);
  color: var(--silver);
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 42rem;
}

.accuracy-notice strong {
  color: var(--gold-2);
}

.scan-tier-section h2 {
  margin: 0;
  font-size: clamp(1.2rem, 3vw, 1.45rem);
}

.scan-tier-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.scan-tier-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  color: var(--gold-2);
  box-shadow: inset 0 0 16px rgba(215, 173, 73, 0.08);
}

.scan-tier-badge-fast {
  border-color: rgba(62, 201, 176, 0.45);
  background: rgba(62, 201, 176, 0.1);
  color: var(--teal);
}

.scan-tier-badge-deep {
  border-color: rgba(215, 173, 73, 0.5);
}

.scan-tier-badge-premium {
  border-color: rgba(242, 209, 132, 0.55);
  background: linear-gradient(180deg, rgba(215, 173, 73, 0.18), rgba(0, 0, 0, 0.3));
}

.scan-tier-sub {
  margin: 0.25rem 0 0;
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 500;
}

.scan-tier-section > p {
  margin: 0 0 1rem;
  line-height: 1.65;
  max-width: 44rem;
}

.scan-detail-list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  max-width: 44rem;
}

.scan-detail-list li {
  margin: 0.4rem 0;
  line-height: 1.55;
}

.scan-detail-list strong {
  color: var(--gold-2);
}

.scan-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
}

.scan-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.32);
  color: var(--silver-2);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.scan-chip-premium {
  border-color: rgba(215, 173, 73, 0.45);
  color: var(--gold-2);
}

.accuracy-callout {
  margin: 0 0 1.15rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(18, 19, 24, 0.88), rgba(8, 8, 10, 0.82));
  max-width: 44rem;
}

.accuracy-callout-title,
.best-for-title {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.accuracy-callout p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.accuracy-callout strong {
  color: var(--gold-2);
}

.best-for {
  max-width: 44rem;
}

.best-for ul {
  margin: 0;
  padding-left: 1.25rem;
}

.best-for li {
  margin: 0.35rem 0;
  line-height: 1.5;
}

.how-section .title-plate h2 {
  font-size: 1rem;
}

.factor-list,
.tips-list {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  max-width: 40rem;
}

.factor-list li,
.tips-list li {
  margin: 0.45rem 0;
  line-height: 1.55;
}

.disclaimer-prominent {
  margin-top: 0;
  border-color: rgba(215, 173, 73, 0.28);
  background: rgba(0, 0, 0, 0.38);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 44rem;
}

.how-cta {
  text-align: center;
  padding: 2rem 1.75rem;
}

.how-cta h2 {
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  margin-bottom: 0.5rem;
}

.how-cta .section-intro {
  margin-left: auto;
  margin-right: auto;
  max-width: 36rem;
}

.how-cta-buttons {
  justify-content: center;
  margin-top: 1.25rem;
}

.how-cta-buttons .gold-button,
.how-cta-buttons .silver-button {
  min-height: 48px;
  min-width: min(280px, 100%);
  padding: 0.85rem 1.35rem;
  font-size: 0.95rem;
}

/* Comparison: desktop table vs mobile cards */
.scan-compare-cards {
  display: none;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.scan-compare-card {
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(18, 19, 24, 0.94), rgba(5, 5, 6, 0.9));
  box-shadow: inset 0 0 20px rgba(215, 173, 73, 0.03);
}

.scan-compare-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  color: var(--gold-2);
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line-soft);
}

.scan-compare-card-premium {
  border-color: rgba(215, 173, 73, 0.45);
}

.scan-compare-card dl {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.scan-compare-card dl > div {
  display: grid;
  gap: 0.2rem;
}

.scan-compare-card dt {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.scan-compare-card dd {
  margin: 0;
  color: var(--silver-2);
  font-size: 0.9rem;
  line-height: 1.45;
}

.scan-compare-table tbody th[scope="row"] {
  color: var(--gold-2);
  font-weight: 600;
  background: rgba(215, 173, 73, 0.06);
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }

  .how-hero {
    padding: 1.5rem 1.15rem;
  }

  .scan-tier-section {
    padding: 1.25rem 1.1rem;
  }

  .scan-tier-header {
    flex-direction: row;
    align-items: center;
  }

  .scan-compare-desktop {
    display: none;
  }

  .scan-compare-cards {
    display: grid;
  }

  .how-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .how-cta-buttons .gold-button,
  .how-cta-buttons .silver-button {
    width: 100%;
  }
}

@media (min-width: 769px) {
  .scan-compare-cards {
    display: none;
  }
}

@media (min-width: 900px) {
  .scan-tier-section {
    padding: 1.75rem 2rem;
  }
}

/* Homepage + shared scan overview */
.scan-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.15rem;
  margin-top: 0.5rem;
}

.scan-overview-card {
  padding: 1.25rem 1.3rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(18, 19, 24, 0.94), rgba(5, 5, 6, 0.9));
  box-shadow: inset 0 0 22px rgba(215, 173, 73, 0.03);
  display: flex;
  flex-direction: column;
}

.scan-overview-fast { border-color: rgba(62, 201, 176, 0.35); }
.scan-overview-deep { border-color: rgba(215, 173, 73, 0.4); }
.scan-overview-premium {
  border-color: rgba(242, 209, 132, 0.45);
  background: linear-gradient(180deg, rgba(22, 20, 14, 0.96), rgba(5, 5, 6, 0.92));
}

.scan-overview-head h3 {
  margin: 0 0 0.35rem;
  font-size: 1.12rem;
  color: var(--gold-2);
}

.scan-overview-time {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: var(--silver);
}

.scan-overview-time strong {
  color: var(--teal);
  font-size: 1.05rem;
}

.scan-overview-premium .scan-overview-time strong {
  color: var(--gold-2);
}

.scan-time-cap {
  color: var(--muted);
  font-size: 0.82rem;
}

.scan-overview-lead {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--silver);
}

.scan-examines-label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.scan-examines-list {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  flex: 1;
}

.scan-examines-list li {
  margin: 0.3rem 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--silver-2);
}

.scan-overview-meta {
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
}

.scan-overview-meta span {
  color: var(--gold-2);
  font-weight: 600;
}

.scan-overview-cta {
  justify-content: center;
  margin-top: 1.25rem;
}

.scan-overview-disclaimer {
  margin: 1rem 0 0;
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* How-it-works: at a glance + what examines */
.scan-glance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.scan-glance-card {
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
}

.scan-glance-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.scan-glance-time {
  margin: 0 0 0.55rem;
  font-size: 0.9rem;
  color: var(--silver);
}

.scan-glance-time strong {
  color: var(--teal);
}

.scan-glance-premium .scan-glance-time strong {
  color: var(--gold-2);
}

.scan-glance-examines {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--silver-2);
}

.what-examines {
  margin: 0 0 1.15rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(62, 201, 176, 0.22);
  background: linear-gradient(180deg, rgba(12, 18, 17, 0.55), rgba(8, 8, 10, 0.82));
  max-width: 44rem;
}

.what-examines-title {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}

.what-examines ul {
  margin: 0;
  padding-left: 1.2rem;
}

.what-examines li {
  margin: 0.4rem 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--silver);
}

.what-examines strong {
  color: var(--gold-2);
}

.scan-chip-muted {
  color: var(--muted) !important;
  font-weight: 500 !important;
  border-style: dashed;
}

@media (max-width: 640px) {
  .scan-overview-grid {
    grid-template-columns: 1fr;
  }

  .scan-overview-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .scan-overview-cta .gold-button,
  .scan-overview-cta .silver-button {
    width: 100%;
    min-height: 48px;
  }
}

