/*
 * Grid Down Power — main stylesheet
 * Ported from offline HTML drafts (dark charcoal + orange CTAs, mobile-first)
 */

/* ===== From home (index) — shared + front-page ===== */

/* ===== Reset & base ===== */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background: #121212;
      color: #e8e8e8;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: #7aa3d4; }
    a:focus-visible, button:focus-visible {
      outline: 2px solid #e87a2e;
      outline-offset: 3px;
    }

    /* ===== Tokens ===== */
    :root {
      --bg: #121212;
      --bg-elev: #1a1a1a;
      --bg-card: #1e1e1e;
      --border: #3a3a3a;
      --border-hi: #555;
      --text: #e8e8e8;
      --text-muted: #a8a8a8;
      --silver: #c8c8c8;
      --orange: #e87a2e;
      --orange-hover: #f08a42;
      --orange-dim: rgba(232, 122, 46, 0.18);
      --blue: #2b4c7e;
      --blue-soft: #3d6aa5;
      --radius: 12px;
      --shadow: 0 8px 28px rgba(0,0,0,0.45);
      --max: 1080px;
    }

    .wrap {
      width: min(100% - 1.5rem, var(--max));
      margin-inline: auto;
    }

    /* ===== Draft banner ===== */
    .draft-banner {
      background: #2a1f12;
      border-bottom: 1px solid #5a3d1a;
      color: #f0c080;
      font-size: 0.8rem;
      text-align: center;
      padding: 0.5rem 1rem;
      letter-spacing: 0.02em;
    }


    /* ===== Shared site nav ===== */
    .site-nav {
      background: var(--bg-elev);
      border-bottom: 1px solid var(--border);
      padding: 0.55rem 0;
    }
    .site-nav .nav-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.65rem 1rem;
    }
    .site-nav .nav-brand {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      font-weight: 700;
      color: var(--silver);
      text-decoration: none;
      font-size: 0.95rem;
    }
    .site-nav .nav-brand img {
      width: 36px;
      height: 36px;
      object-fit: cover;
      border-radius: 6px;
    }
    .site-nav .nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.3rem 0.35rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .site-nav .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.88rem;
      padding: 0.4rem 0.65rem;
      border-radius: 8px;
      border: 1px solid transparent;
    }
    .site-nav .nav-links a:hover {
      color: var(--text);
      background: #252525;
    }
    .site-nav .nav-links a[aria-current="page"] {
      color: #fff;
      background: var(--orange-dim);
      border-color: var(--orange);
    }

    /* ===== Header / Hero ===== */
    header.hero {
      padding: 1.75rem 0 2rem;
      background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(43,76,126,0.25), transparent 55%),
        linear-gradient(180deg, #161616 0%, #121212 100%);
      border-bottom: 1px solid var(--border);
    }
    .logo-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: 1.25rem;
    }
    .logo-wrap img {
      width: min(100%, 340px);
      border-radius: 8px;
      box-shadow: var(--shadow);
    }
    .hero h1 {
      margin: 0 0 0.65rem;
      font-size: clamp(1.45rem, 4.5vw, 2rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--silver);
      text-align: center;
      text-shadow: 1px 2px 4px rgba(0,0,0,0.55);
    }
    .hero .video-overview {
      margin: 1.25rem auto 0;
      max-width: 720px;
    }
    .hero .video-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #0a0a0a;
      border: 1px dashed #a06a30;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .hero .video-frame iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }
    .hero .video-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 1.25rem;
      text-align: center;
      color: #f5c98a;
      background:
        radial-gradient(ellipse at center, rgba(232,122,46,0.12), transparent 65%),
        #151515;
    }
    .hero .video-placeholder .ph-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
    }
    .hero .video-placeholder p {
      margin: 0;
      max-width: 22rem;
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.45;
    }
    .hero .video-placeholder code {
      display: inline-block;
      margin-top: 0.35rem;
      background: #3a2a18;
      color: #f5c98a;
      border: 1px dashed #a06a30;
      border-radius: 4px;
      padding: 0.15em 0.45em;
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      font-size: 0.78rem;
    }
    .hero .video-caption {
      margin: 0.65rem 0 0;
      text-align: center;
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    /* ===== Section chrome ===== */
    section {
      padding: 2rem 0;
    }
    .section-label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.4rem;
    }
    h2 {
      margin: 0 0 0.5rem;
      font-size: clamp(1.25rem, 3.5vw, 1.55rem);
      color: var(--silver);
      letter-spacing: -0.015em;
    }
    .section-intro {
      margin: 0 0 1.25rem;
      color: var(--text-muted);
      max-width: 40rem;
    }

    /* ===== Chooser (quiz-lite) ===== */
    .chooser {
      background: var(--bg-elev);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.15rem 1.15rem 1.25rem;
      margin-bottom: 1.5rem;
      box-shadow: var(--shadow);
    }
    .chooser h2 { margin-bottom: 0.35rem; }
    .chooser-q {
      margin: 0 0 0.85rem;
      color: var(--text-muted);
      font-size: 0.95rem;
    }
    .chooser-options {
      display: grid;
      gap: 0.65rem;
    }
    @media (min-width: 640px) {
      .chooser-options { grid-template-columns: 1fr 1fr; }
    }
    .chooser-btn {
      appearance: none;
      -webkit-appearance: none;
      cursor: pointer;
      text-align: left;
      background: var(--bg-card);
      border: 2px solid var(--border);
      border-radius: 10px;
      padding: 0.9rem 1rem;
      color: var(--text);
      font: inherit;
      transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
      min-height: 3.25rem;
    }
    .chooser-btn:hover {
      border-color: var(--border-hi);
      background: #242424;
    }
    .chooser-btn[aria-pressed="true"] {
      border-color: var(--orange);
      background: var(--orange-dim);
      box-shadow: 0 0 0 1px var(--orange);
    }
    .chooser-btn .btn-title {
      display: block;
      font-weight: 700;
      font-size: 0.98rem;
      margin-bottom: 0.2rem;
    }
    .chooser-btn .btn-desc {
      display: block;
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.4;
    }
    .chooser-hint {
      margin: 0.85rem 0 0;
      font-size: 0.82rem;
      color: var(--text-muted);
      min-height: 1.3em;
    }
    .chooser-hint em { color: var(--orange); font-style: normal; font-weight: 600; }

    /* ===== Mobile tab bar ===== */
    .mobile-tabs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
      margin-bottom: 1rem;
      position: sticky;
      top: 0;
      z-index: 5;
      background: rgba(18,18,18,0.92);
      backdrop-filter: blur(8px);
      padding: 0.5rem 0;
      border-bottom: 1px solid transparent;
    }
    .mobile-tabs.is-stuck {
      border-bottom-color: var(--border);
    }
    .tab-btn {
      appearance: none;
      -webkit-appearance: none;
      cursor: pointer;
      font: inherit;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 0.85rem 0.75rem;
      min-height: 3rem;
      border-radius: 10px;
      border: 2px solid var(--border);
      background: var(--bg-card);
      color: var(--silver);
      transition: border-color 0.15s, background 0.15s, color 0.15s;
    }
    .tab-btn[aria-selected="true"] {
      border-color: var(--orange);
      background: var(--orange-dim);
      color: #fff;
    }
    @media (min-width: 768px) {
      .mobile-tabs { display: none; }
    }

    /* ===== Product cards ===== */
    .cards {
      display: grid;
      gap: 1.15rem;
    }
    @media (min-width: 768px) {
      .cards {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
      }
      .card[hidden] { display: block !important; } /* show both on desktop */
    }
    .card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.25rem 1.2rem 1.35rem;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      box-shadow: var(--shadow);
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }
    .card.is-highlighted {
      border-color: var(--orange);
      box-shadow: 0 0 0 1px var(--orange), var(--shadow);
    }
    .card-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      width: fit-content;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.28rem 0.55rem;
      border-radius: 999px;
      background: #252525;
      color: var(--silver);
      border: 1px solid var(--border);
    }
    .card-badge.opt-a {
      border-color: var(--blue-soft);
      color: #9bb8d9;
      background: rgba(43,76,126,0.35);
    }
    .card-badge.opt-b {
      border-color: var(--orange);
      color: #f0b07a;
      background: var(--orange-dim);
    }
    .product-slogan {
      margin: 0.35rem 0 0.55rem;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--orange);
      letter-spacing: -0.01em;
      line-height: 1.3;
    }

    .card-photo {
      margin: 0.75rem 0 0.85rem;
      border-radius: 10px;
      overflow: hidden;
      background: #0f0f0f;
      border: 1px solid var(--border);
      aspect-ratio: 4 / 3;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .card-photo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: #fff;
    }

    .card h3 {
      margin: 0;
      font-size: 1.2rem;
      color: #f0f0f0;
      letter-spacing: -0.01em;
    }
    .placeholder {
      display: inline;
      background: #3a2a18;
      color: #f5c98a;
      border: 1px dashed #a06a30;
      border-radius: 4px;
      padding: 0.05em 0.35em;
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      font-size: 0.9em;
      font-weight: 600;
      word-break: break-word;
    }
    .card-tagline {
      margin: 0;
      color: var(--text-muted);
      font-size: 0.95rem;
    }
    .specs {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 0.45rem;
    }
    .specs li {
      display: grid;
      grid-template-columns: 7.5rem 1fr;
      gap: 0.5rem;
      font-size: 0.9rem;
      padding: 0.4rem 0;
      border-bottom: 1px solid #2a2a2a;
    }
    .specs li:last-child { border-bottom: none; }
    .specs .label {
      color: var(--text-muted);
      font-weight: 500;
    }
    .specs .value { color: var(--text); }
    @media (max-width: 400px) {
      .specs li {
        grid-template-columns: 1fr;
        gap: 0.15rem;
      }
    }
    .price-block {
      margin-top: auto;
      padding-top: 0.35rem;
    }
    .price-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-muted);
      margin-bottom: 0.2rem;
    }
    .price {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--silver);
    }
    .price-note {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin: 0.25rem 0 0;
    }
    .cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      width: 100%;
      min-height: 3rem;
      padding: 0.85rem 1.1rem;
      border-radius: 10px;
      background: var(--orange);
      color: #1a1008;
      font-weight: 800;
      font-size: 1rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.15s, transform 0.1s;
      text-align: center;
    }
    .cta:hover { background: var(--orange-hover); color: #120c06; }
    .cta:active { transform: scale(0.98); }
    .cta-note {
      font-size: 0.75rem;
      color: var(--text-muted);
      text-align: center;
      margin: 0.35rem 0 0;
    }
    .good-for {
      margin: 0;
      padding: 0.75rem 0.85rem;
      background: #181818;
      border-left: 3px solid var(--blue-soft);
      border-radius: 0 8px 8px 0;
      font-size: 0.88rem;
      color: var(--text-muted);
    }
    .good-for strong { color: var(--text); }

    /* ===== Honest notes ===== */
    .honest-notes {
      margin-top: 1.75rem;
      padding: 1.1rem 1.15rem;
      background: var(--bg-elev);
      border: 1px solid var(--border);
      border-radius: var(--radius);
    }
    .honest-notes h2 {
      font-size: 1.05rem;
      margin-bottom: 0.5rem;
    }
    .honest-notes ul {
      margin: 0;
      padding-left: 1.15rem;
      color: var(--text-muted);
      font-size: 0.92rem;
    }
    .honest-notes li { margin-bottom: 0.4rem; }
    .honest-notes li:last-child { margin-bottom: 0; }

    /* ===== Placeholder checklist (for Doc) ===== */
    .doc-checklist {
      margin-top: 1.5rem;
      padding: 1.1rem 1.15rem;
      background: #1a1510;
      border: 1px dashed #6a4a22;
      border-radius: var(--radius);
    }
    .doc-checklist h2 {
      font-size: 1.05rem;
      color: #f0c080;
      margin-bottom: 0.35rem;
    }
    .doc-checklist p {
      margin: 0 0 0.65rem;
      font-size: 0.88rem;
      color: var(--text-muted);
    }
    .doc-checklist ul {
      margin: 0;
      padding-left: 1.15rem;
      font-size: 0.88rem;
      color: #d8c4a0;
    }
    .doc-checklist code {
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      font-size: 0.85em;
      background: #2a2218;
      padding: 0.05em 0.3em;
      border-radius: 3px;
    }

    /* ===== Footer ===== */
    footer {
      margin-top: 1rem;
      padding: 2rem 0 2.5rem;
      border-top: 1px solid var(--border);
      background: #0e0e0e;
    }
    footer .brand {
      font-weight: 700;
      color: var(--silver);
      margin-bottom: 0.5rem;
    }
    .disclaimer {
      font-size: 0.8rem;
      color: #888;
      max-width: 42rem;
      line-height: 1.5;
    }
    .disclaimer p { margin: 0 0 0.65rem; }
    .disclaimer p:last-child { margin-bottom: 0; }
    .footer-meta {
      margin-top: 1rem;
      font-size: 0.75rem;
      color: #666;
    }


    .model-fine {
      margin: 0.15rem 0 0;
      font-size: 0.78rem;
      color: #888;
    }
    .spec-cite {
      margin: 0.15rem 0 0;
      font-size: 0.75rem;
      color: #777;
    }
    .official-link {
      font-size: 0.82rem;
      margin: 0;
    }
    .official-link a { color: #7aa3d4; }
    .placeholder-price {
      display: inline;
      background: #3a2a18;
      color: #f5c98a;
      border: 1px dashed #a06a30;
      border-radius: 4px;
      padding: 0.05em 0.35em;
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      font-size: 0.85em;
      font-weight: 600;
    }

    /* Reduce motion */
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .card, .cta, .chooser-btn, .tab-btn { transition: none; }
    }


.visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;
    }
    code {
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      font-size: 0.85em;
      background: #2a2a2a;
      padding: 0.05em 0.3em;
      border-radius: 3px;
      color: #d0d0d0;
    }



/* ===== Wattage calculator page styles ===== */

*, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background: #121212;
      color: #e8e8e8;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: #7aa3d4; }
    a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
      outline: 2px solid #e87a2e;
      outline-offset: 3px;
    }

    :root {
      --bg: #121212;
      --bg-elev: #1a1a1a;
      --bg-card: #1e1e1e;
      --border: #3a3a3a;
      --border-hi: #555;
      --text: #e8e8e8;
      --text-muted: #a8a8a8;
      --silver: #c8c8c8;
      --orange: #e87a2e;
      --orange-hover: #f08a42;
      --orange-dim: rgba(232, 122, 46, 0.18);
      --blue: #2b4c7e;
      --blue-soft: #3d6aa5;
      --radius: 12px;
      --shadow: 0 8px 28px rgba(0,0,0,0.45);
      --max: 1080px;
    }

    .wrap {
      width: min(100% - 1.5rem, var(--max));
      margin-inline: auto;
    }

    .draft-banner {
      background: #2a1f12;
      border-bottom: 1px solid #5a3d1a;
      color: #f0c080;
      font-size: 0.8rem;
      text-align: center;
      padding: 0.5rem 1rem;
      letter-spacing: 0.02em;
    }

    /* ===== Shared site nav ===== */
    .site-nav {
      background: var(--bg-elev);
      border-bottom: 1px solid var(--border);
      padding: 0.55rem 0;
    }
    .site-nav .nav-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.65rem 1rem;
    }
    .site-nav .nav-brand {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      font-weight: 700;
      color: var(--silver);
      text-decoration: none;
      font-size: 0.95rem;
    }
    .site-nav .nav-brand img {
      width: 36px;
      height: 36px;
      object-fit: cover;
      border-radius: 6px;
    }
    .site-nav .nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.3rem 0.35rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .site-nav .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.88rem;
      padding: 0.4rem 0.65rem;
      border-radius: 8px;
      border: 1px solid transparent;
    }
    .site-nav .nav-links a:hover {
      color: var(--text);
      background: #252525;
    }
    .site-nav .nav-links a[aria-current="page"] {
      color: #fff;
      background: var(--orange-dim);
      border-color: var(--orange);
    }

    header.page-header {
      padding: 1.5rem 0 1.25rem;
      background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(43,76,126,0.25), transparent 55%),
        linear-gradient(180deg, #161616 0%, #121212 100%);
      border-bottom: 1px solid var(--border);
    }
    header.page-header h1 {
      margin: 0 0 0.5rem;
      font-size: clamp(1.35rem, 4.2vw, 1.85rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--silver);
      text-shadow: 1px 2px 4px rgba(0,0,0,0.55);
    }
    header.page-header .lede {
      margin: 0;
      color: var(--text-muted);
      max-width: 40rem;
      font-size: 1rem;
    }

    section { padding: 1.75rem 0; }
    .section-label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.4rem;
    }
    h2 {
      margin: 0 0 0.5rem;
      font-size: clamp(1.15rem, 3.2vw, 1.4rem);
      color: var(--silver);
      letter-spacing: -0.015em;
    }

    .helper {
      margin: 0 0 1.15rem;
      color: var(--text-muted);
      font-size: 0.98rem;
    }

    /* ===== Totals sticky panel ===== */
    .totals-panel {
      background: var(--bg-elev);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.1rem 1.15rem 1.2rem;
      margin-bottom: 1.25rem;
      box-shadow: var(--shadow);
      position: sticky;
      top: 0;
      z-index: 4;
    }
    .totals-grid {
      display: grid;
      gap: 0.85rem;
    }
    @media (min-width: 640px) {
      .totals-grid { grid-template-columns: 1fr 1fr 1fr; }
    }
    .stat {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 0.75rem 0.85rem;
    }
    .stat .stat-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.25rem;
    }
    .stat .stat-value {
      font-size: 1.35rem;
      font-weight: 800;
      color: #f0f0f0;
      letter-spacing: -0.02em;
    }
    .stat .stat-value span.unit {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-muted);
      margin-left: 0.2rem;
    }
    .formula-note {
      margin: 0.85rem 0 0;
      font-size: 0.8rem;
      color: #888;
      line-height: 1.45;
    }
    .formula-note code {
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      font-size: 0.85em;
      background: #2a2a2a;
      padding: 0.05em 0.3em;
      border-radius: 3px;
      color: #d0d0d0;
    }

    /* ===== Battery / runtime ===== */
    .battery-panel {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.1rem 1.15rem;
      margin-bottom: 1.25rem;
      box-shadow: var(--shadow);
    }
    .battery-row {
      display: grid;
      gap: 0.85rem;
    }
    @media (min-width: 640px) {
      .battery-row { grid-template-columns: 1fr 1fr; align-items: end; }
    }
    label.field-label {
      display: block;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.35rem;
    }
    .preset-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin-bottom: 0.65rem;
    }
    .preset-btn {
      appearance: none;
      -webkit-appearance: none;
      cursor: pointer;
      font: inherit;
      font-size: 0.82rem;
      font-weight: 600;
      padding: 0.45rem 0.7rem;
      min-height: 2.5rem;
      border-radius: 8px;
      border: 2px solid var(--border);
      background: #242424;
      color: var(--silver);
      transition: border-color 0.15s, background 0.15s;
    }
    .preset-btn:hover { border-color: var(--border-hi); }
    .preset-btn[aria-pressed="true"] {
      border-color: var(--orange);
      background: var(--orange-dim);
      color: #fff;
    }
    input[type="number"] {
      width: 100%;
      font: inherit;
      font-size: 1rem;
      padding: 0.55rem 0.7rem;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: #151515;
      color: var(--text);
      min-height: 2.75rem;
    }
    input[type="number"]:hover { border-color: var(--border-hi); }
    .usable-note {
      margin: 0.65rem 0 0;
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    /* ===== Appliance table ===== */
    .table-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--bg-card);
      box-shadow: var(--shadow);
    }
    table.appliances {
      width: 100%;
      border-collapse: collapse;
      min-width: 520px;
      font-size: 0.92rem;
    }
    table.appliances th,
    table.appliances td {
      padding: 0.65rem 0.7rem;
      text-align: left;
      border-bottom: 1px solid #2a2a2a;
      vertical-align: middle;
    }
    table.appliances th {
      background: #252525;
      color: var(--silver);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      position: sticky;
      top: 0;
      z-index: 1;
    }
    table.appliances tbody tr:hover { background: #222; }
    table.appliances tbody tr.is-selected { background: var(--orange-dim); }
    table.appliances tbody tr.is-selected:hover { background: rgba(232, 122, 46, 0.26); }
    table.appliances .col-select { width: 3.25rem; text-align: center; }
    table.appliances .col-qty { width: 5.5rem; }
    table.appliances .col-w { width: 6rem; white-space: nowrap; color: var(--text-muted); }
    table.appliances .col-name { font-weight: 500; color: var(--text); }
    table.appliances input[type="checkbox"] {
      width: 1.15rem;
      height: 1.15rem;
      accent-color: var(--orange);
      cursor: pointer;
    }
    table.appliances .qty-input {
      width: 4.25rem;
      min-height: 2.35rem;
      padding: 0.35rem 0.45rem;
      font-size: 0.95rem;
      text-align: center;
    }
    .table-hint {
      margin: 0.75rem 0 0;
      font-size: 0.82rem;
      color: #888;
    }

    .honest-notes {
      margin-top: 1.5rem;
      padding: 1.1rem 1.15rem;
      background: var(--bg-elev);
      border: 1px solid var(--border);
      border-radius: var(--radius);
    }
    .honest-notes h2 { font-size: 1.05rem; margin-bottom: 0.5rem; }
    .honest-notes ul {
      margin: 0;
      padding-left: 1.15rem;
      color: var(--text-muted);
      font-size: 0.92rem;
    }
    .honest-notes li { margin-bottom: 0.4rem; }
    .honest-notes li:last-child { margin-bottom: 0; }

    .soft-cta {
      margin-top: 1.5rem;
      padding: 1.15rem 1.2rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      text-align: center;
    }
    .soft-cta p {
      margin: 0 0 0.85rem;
      color: var(--text-muted);
      font-size: 0.95rem;
    }
    .cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      min-height: 3rem;
      padding: 0.85rem 1.25rem;
      border-radius: 10px;
      background: var(--orange);
      color: #1a1008;
      font-weight: 800;
      font-size: 1rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.15s, transform 0.1s;
      text-align: center;
    }
    .cta:hover { background: var(--orange-hover); color: #120c06; }
    .cta:active { transform: scale(0.98); }

    footer {
      margin-top: 1rem;
      padding: 2rem 0 2.5rem;
      border-top: 1px solid var(--border);
      background: #0e0e0e;
    }
    footer .brand {
      font-weight: 700;
      color: var(--silver);
      margin-bottom: 0.5rem;
    }
    .disclaimer {
      font-size: 0.8rem;
      color: #888;
      max-width: 42rem;
      line-height: 1.5;
    }
    .disclaimer p { margin: 0 0 0.65rem; }
    .disclaimer p:last-child { margin-bottom: 0; }
    .footer-meta {
      margin-top: 1rem;
      font-size: 0.75rem;
      color: #666;
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .cta, .preset-btn { transition: none; }
    }


.visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;
    }



/* ===== Generator page styles ===== */

*, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background: #121212;
      color: #e8e8e8;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: #7aa3d4; }
    a:focus-visible, button:focus-visible {
      outline: 2px solid #e87a2e;
      outline-offset: 3px;
    }

    :root {
      --bg: #121212;
      --bg-elev: #1a1a1a;
      --bg-card: #1e1e1e;
      --border: #3a3a3a;
      --border-hi: #555;
      --text: #e8e8e8;
      --text-muted: #a8a8a8;
      --silver: #c8c8c8;
      --orange: #e87a2e;
      --orange-hover: #f08a42;
      --orange-dim: rgba(232, 122, 46, 0.18);
      --blue: #2b4c7e;
      --blue-soft: #3d6aa5;
      --radius: 12px;
      --shadow: 0 8px 28px rgba(0,0,0,0.45);
      --max: 1080px;
    }

    .wrap {
      width: min(100% - 1.5rem, var(--max));
      margin-inline: auto;
    }

    .draft-banner {
      background: #2a1f12;
      border-bottom: 1px solid #5a3d1a;
      color: #f0c080;
      font-size: 0.8rem;
      text-align: center;
      padding: 0.5rem 1rem;
      letter-spacing: 0.02em;
    }

    .site-nav {
      background: var(--bg-elev);
      border-bottom: 1px solid var(--border);
      padding: 0.55rem 0;
    }
    .site-nav .nav-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.65rem 1rem;
    }
    .site-nav .nav-brand {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      font-weight: 700;
      color: var(--silver);
      text-decoration: none;
      font-size: 0.95rem;
    }
    .site-nav .nav-brand img {
      width: 36px;
      height: 36px;
      object-fit: cover;
      border-radius: 6px;
    }
    .site-nav .nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.3rem 0.35rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .site-nav .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.88rem;
      padding: 0.4rem 0.65rem;
      border-radius: 8px;
      border: 1px solid transparent;
    }
    .site-nav .nav-links a:hover {
      color: var(--text);
      background: #252525;
    }
    .site-nav .nav-links a[aria-current="page"] {
      color: #fff;
      background: var(--orange-dim);
      border-color: var(--orange);
    }

    header.page-header {
      padding: 1.5rem 0 1.25rem;
      background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(43,76,126,0.25), transparent 55%),
        linear-gradient(180deg, #161616 0%, #121212 100%);
      border-bottom: 1px solid var(--border);
    }
    header.page-header h1 {
      margin: 0 0 0.5rem;
      font-size: clamp(1.35rem, 4.2vw, 1.85rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--silver);
      text-shadow: 1px 2px 4px rgba(0,0,0,0.55);
    }
    header.page-header .lede {
      margin: 0;
      color: var(--text-muted);
      max-width: 42rem;
      font-size: 1rem;
    }

    section { padding: 1.75rem 0; }
    .section-label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.4rem;
    }
    h2 {
      margin: 0 0 0.5rem;
      font-size: clamp(1.15rem, 3.2vw, 1.4rem);
      color: var(--silver);
      letter-spacing: -0.015em;
    }
    .section-intro {
      margin: 0 0 1.15rem;
      color: var(--text-muted);
      max-width: 42rem;
    }
    p { margin: 0 0 0.9rem; color: var(--text-muted); }
    p:last-child { margin-bottom: 0; }
    strong { color: var(--text); font-weight: 650; }

    .placeholder {
      display: inline;
      background: #3a2a18;
      color: #f5c98a;
      border: 1px dashed #a06a30;
      border-radius: 4px;
      padding: 0.05em 0.35em;
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      font-size: 0.9em;
      font-weight: 600;
      word-break: break-word;
    }

    .video-overview {
      margin: 0 0 0.5rem;
      max-width: 720px;
    }
    .video-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #0a0a0a;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .video-frame iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }
    .video-caption {
      margin: 0.65rem 0 0;
      color: var(--text-muted);
      font-size: 0.9rem;
      max-width: 42rem;
    }
    .video-caption a { font-weight: 600; }

    .content-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.15rem 1.2rem 1.25rem;
      box-shadow: var(--shadow);
      margin-bottom: 1rem;
    }
    .content-card h3 {
      margin: 0 0 0.45rem;
      font-size: 1.05rem;
      color: #f0f0f0;
    }
    .content-card ul {
      margin: 0.5rem 0 0;
      padding-left: 1.15rem;
      color: var(--text-muted);
      font-size: 0.95rem;
    }
    .content-card li { margin-bottom: 0.4rem; }
    .content-card li:last-child { margin-bottom: 0; }

    .size-grid {
      display: grid;
      gap: 0.85rem;
    }
    @media (min-width: 640px) {
      .size-grid { grid-template-columns: 1fr 1fr; }
    }
    .size-card {
      background: var(--bg-elev);
      border: 1px dashed #6a4a22;
      border-radius: 10px;
      padding: 0.95rem 1rem;
    }
    .size-card .ph-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.35rem;
    }
    .size-card .size-title {
      font-weight: 700;
      color: var(--silver);
      margin-bottom: 0.35rem;
    }
    .size-card p {
      margin: 0;
      font-size: 0.9rem;
    }

    .callout {
      margin: 1rem 0 0;
      padding: 0.85rem 1rem;
      background: #181818;
      border-left: 3px solid var(--blue-soft);
      border-radius: 0 8px 8px 0;
      font-size: 0.9rem;
      color: var(--text-muted);
    }
    .callout.safety {
      border-left-color: var(--orange);
      background: #1a1510;
    }

    .honest-notes {
      margin-top: 0.25rem;
      padding: 1.1rem 1.15rem;
      background: var(--bg-elev);
      border: 1px solid var(--border);
      border-radius: var(--radius);
    }
    .honest-notes h2 { font-size: 1.05rem; margin-bottom: 0.5rem; }
    .honest-notes ul {
      margin: 0;
      padding-left: 1.15rem;
      color: var(--text-muted);
      font-size: 0.92rem;
    }
    .honest-notes li { margin-bottom: 0.4rem; }
    .honest-notes li:last-child { margin-bottom: 0; }

    .doc-checklist {
      margin-top: 1.25rem;
      padding: 1.1rem 1.15rem;
      background: #1a1510;
      border: 1px dashed #6a4a22;
      border-radius: var(--radius);
    }
    .doc-checklist h2 {
      font-size: 1.05rem;
      color: #f0c080;
      margin-bottom: 0.35rem;
    }
    .doc-checklist p {
      margin: 0 0 0.65rem;
      font-size: 0.88rem;
      color: var(--text-muted);
    }
    .doc-checklist ul {
      margin: 0;
      padding-left: 1.15rem;
      font-size: 0.88rem;
      color: #d8c4a0;
    }
    .doc-checklist code {
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      font-size: 0.85em;
      background: #2a2218;
      padding: 0.05em 0.3em;
      border-radius: 3px;
    }

    .soft-cta {
      margin-top: 1.5rem;
      padding: 1.15rem 1.2rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      text-align: center;
    }
    .soft-cta p {
      margin: 0 0 0.85rem;
      color: var(--text-muted);
      font-size: 0.95rem;
    }
    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      justify-content: center;
    }
    .cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      min-height: 3rem;
      padding: 0.85rem 1.25rem;
      border-radius: 10px;
      background: var(--orange);
      color: #1a1008;
      font-weight: 800;
      font-size: 1rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.15s, transform 0.1s;
      text-align: center;
    }
    .cta:hover { background: var(--orange-hover); color: #120c06; }
    .cta:active { transform: scale(0.98); }
    .cta.secondary {
      background: transparent;
      color: var(--silver);
      border: 2px solid var(--border-hi);
    }
    .cta.secondary:hover {
      background: #252525;
      color: #fff;
      border-color: var(--orange);
    }

    footer {
      margin-top: 1rem;
      padding: 2rem 0 2.5rem;
      border-top: 1px solid var(--border);
      background: #0e0e0e;
    }
    footer .brand {
      font-weight: 700;
      color: var(--silver);
      margin-bottom: 0.5rem;
    }
    .disclaimer {
      font-size: 0.8rem;
      color: #888;
      max-width: 42rem;
      line-height: 1.5;
    }
    .disclaimer p { margin: 0 0 0.65rem; }
    .disclaimer p:last-child { margin-bottom: 0; }
    .footer-meta {
      margin-top: 1rem;
      font-size: 0.75rem;
      color: #666;
    }

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



/* ===== Accessories page styles ===== */

*, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background: #121212;
      color: #e8e8e8;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: #7aa3d4; }
    a:focus-visible, button:focus-visible {
      outline: 2px solid #e87a2e;
      outline-offset: 3px;
    }

    :root {
      --bg: #121212;
      --bg-elev: #1a1a1a;
      --bg-card: #1e1e1e;
      --border: #3a3a3a;
      --border-hi: #555;
      --text: #e8e8e8;
      --text-muted: #a8a8a8;
      --silver: #c8c8c8;
      --orange: #e87a2e;
      --orange-hover: #f08a42;
      --orange-dim: rgba(232, 122, 46, 0.18);
      --blue: #2b4c7e;
      --blue-soft: #3d6aa5;
      --radius: 12px;
      --shadow: 0 8px 28px rgba(0,0,0,0.45);
      --max: 1080px;
    }

    .wrap {
      width: min(100% - 1.5rem, var(--max));
      margin-inline: auto;
    }

    .draft-banner {
      background: #2a1f12;
      border-bottom: 1px solid #5a3d1a;
      color: #f0c080;
      font-size: 0.8rem;
      text-align: center;
      padding: 0.5rem 1rem;
      letter-spacing: 0.02em;
    }

    .site-nav {
      background: var(--bg-elev);
      border-bottom: 1px solid var(--border);
      padding: 0.55rem 0;
    }
    .site-nav .nav-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.65rem 1rem;
    }
    .site-nav .nav-brand {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      font-weight: 700;
      color: var(--silver);
      text-decoration: none;
      font-size: 0.95rem;
    }
    .site-nav .nav-brand img {
      width: 36px;
      height: 36px;
      object-fit: cover;
      border-radius: 6px;
    }
    .site-nav .nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.3rem 0.35rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .site-nav .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.88rem;
      padding: 0.4rem 0.65rem;
      border-radius: 8px;
      border: 1px solid transparent;
    }
    .site-nav .nav-links a:hover {
      color: var(--text);
      background: #252525;
    }
    .site-nav .nav-links a[aria-current="page"] {
      color: #fff;
      background: var(--orange-dim);
      border-color: var(--orange);
    }

    header.page-header {
      padding: 1.5rem 0 1.25rem;
      background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(43,76,126,0.25), transparent 55%),
        linear-gradient(180deg, #161616 0%, #121212 100%);
      border-bottom: 1px solid var(--border);
    }
    header.page-header h1 {
      margin: 0 0 0.5rem;
      font-size: clamp(1.35rem, 4.2vw, 1.85rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--silver);
      text-shadow: 1px 2px 4px rgba(0,0,0,0.55);
    }
    header.page-header .lede {
      margin: 0;
      color: var(--text-muted);
      max-width: 42rem;
      font-size: 1rem;
    }

    section { padding: 1.75rem 0; }
    .section-label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.4rem;
    }
    h2 {
      margin: 0 0 0.5rem;
      font-size: clamp(1.15rem, 3.2vw, 1.4rem);
      color: var(--silver);
      letter-spacing: -0.015em;
    }
    .section-intro {
      margin: 0 0 1.15rem;
      color: var(--text-muted);
      max-width: 42rem;
    }

    .placeholder {
      display: inline;
      background: #3a2a18;
      color: #f5c98a;
      border: 1px dashed #a06a30;
      border-radius: 4px;
      padding: 0.05em 0.35em;
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      font-size: 0.9em;
      font-weight: 600;
      word-break: break-word;
    }

    .cat-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin: 0 0 0.25rem;
      padding: 0;
      list-style: none;
    }
    .cat-nav a {
      display: inline-block;
      padding: 0.4rem 0.7rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: var(--bg-card);
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 600;
    }
    .cat-nav a:hover {
      color: var(--text);
      border-color: var(--border-hi);
      background: #252525;
    }

    .acc-grid {
      display: grid;
      gap: 0.9rem;
    }
    @media (min-width: 640px) {
      .acc-grid { grid-template-columns: 1fr 1fr; }
    }

    .acc-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.1rem 1.15rem 1.2rem;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
    }
    .acc-card .badge {
      display: inline-flex;
      width: fit-content;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.25rem 0.5rem;
      border-radius: 999px;
      background: rgba(43,76,126,0.35);
      color: #9bb8d9;
      border: 1px solid var(--blue-soft);
    }
    .acc-card .badge.fuel {
      background: var(--orange-dim);
      color: #f0b07a;
      border-color: var(--orange);
    }
    .acc-card .badge.pro {
      background: #252525;
      color: var(--silver);
      border-color: var(--border-hi);
    }
    .acc-card h3 {
      margin: 0;
      font-size: 1.05rem;
      color: #f0f0f0;
      letter-spacing: -0.01em;
    }
    .acc-meta {
      margin: 0;
      font-size: 0.88rem;
      color: var(--text-muted);
    }
    .acc-meta strong { color: var(--text); font-weight: 650; }
    .acc-notes {
      margin: 0;
      font-size: 0.88rem;
      color: #a0a0a0;
      flex-grow: 1;
    }
    .acc-link-row {
      margin-top: 0.25rem;
      padding-top: 0.65rem;
      border-top: 1px solid var(--border);
      font-size: 0.82rem;
      color: #888;
    }
    .acc-link-row a.cta-mini {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 0.45rem;
      min-height: 2.5rem;
      padding: 0.55rem 0.9rem;
      border-radius: 8px;
      background: transparent;
      border: 1px dashed #a06a30;
      color: #f5c98a;
      font-weight: 700;
      font-size: 0.85rem;
      text-decoration: none;
    }
    .acc-link-row a.cta-mini:hover {
      background: var(--orange-dim);
      border-style: solid;
      border-color: var(--orange);
      color: #fff;
    }
    .acc-link-row code {
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      font-size: 0.85em;
      background: #2a2a2a;
      padding: 0.05em 0.3em;
      border-radius: 3px;
      color: #d0d0d0;
      word-break: break-all;
    }

    .honest-notes {
      margin-top: 0.25rem;
      padding: 1.1rem 1.15rem;
      background: var(--bg-elev);
      border: 1px solid var(--border);
      border-radius: var(--radius);
    }
    .honest-notes h2 { font-size: 1.05rem; margin-bottom: 0.5rem; }
    .honest-notes ul {
      margin: 0;
      padding-left: 1.15rem;
      color: var(--text-muted);
      font-size: 0.92rem;
    }
    .honest-notes li { margin-bottom: 0.4rem; }
    .honest-notes li:last-child { margin-bottom: 0; }

    .doc-checklist {
      margin-top: 1.25rem;
      padding: 1.1rem 1.15rem;
      background: #1a1510;
      border: 1px dashed #6a4a22;
      border-radius: var(--radius);
    }
    .doc-checklist h2 {
      font-size: 1.05rem;
      color: #f0c080;
      margin-bottom: 0.35rem;
    }
    .doc-checklist p {
      margin: 0 0 0.65rem;
      font-size: 0.88rem;
      color: var(--text-muted);
    }
    .doc-checklist ul {
      margin: 0;
      padding-left: 1.15rem;
      font-size: 0.88rem;
      color: #d8c4a0;
    }
    .doc-checklist code {
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      font-size: 0.85em;
      background: #2a2218;
      padding: 0.05em 0.3em;
      border-radius: 3px;
    }

    .soft-cta {
      margin-top: 1.5rem;
      padding: 1.15rem 1.2rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      text-align: center;
    }
    .soft-cta p {
      margin: 0 0 0.85rem;
      color: var(--text-muted);
      font-size: 0.95rem;
    }
    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      justify-content: center;
    }
    .cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      min-height: 3rem;
      padding: 0.85rem 1.25rem;
      border-radius: 10px;
      background: var(--orange);
      color: #1a1008;
      font-weight: 800;
      font-size: 1rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.15s, transform 0.1s;
      text-align: center;
    }
    .cta:hover { background: var(--orange-hover); color: #120c06; }
    .cta:active { transform: scale(0.98); }
    .cta.secondary {
      background: transparent;
      color: var(--silver);
      border: 2px solid var(--border-hi);
    }
    .cta.secondary:hover {
      background: #252525;
      color: #fff;
      border-color: var(--orange);
    }

    footer {
      margin-top: 1rem;
      padding: 2rem 0 2.5rem;
      border-top: 1px solid var(--border);
      background: #0e0e0e;
    }
    footer .brand {
      font-weight: 700;
      color: var(--silver);
      margin-bottom: 0.5rem;
    }
    .disclaimer {
      font-size: 0.8rem;
      color: #888;
      max-width: 42rem;
      line-height: 1.5;
    }
    .disclaimer p { margin: 0 0 0.65rem; color: #888; }
    .disclaimer p:last-child { margin-bottom: 0; }
    .footer-meta {
      margin-top: 1rem;
      font-size: 0.75rem;
      color: #666;
    }

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



/* ===== WordPress adjustments ===== */
.admin-bar .mobile-tabs { top: 32px; }
.admin-bar .totals-panel { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .mobile-tabs { top: 46px; }
  .admin-bar .totals-panel { top: 46px; }
}
body.gdp-theme { margin: 0; }


/* ===== Videos page slots ===== */
.video-grid .video-slot h3 .placeholder {
  color: #f0a86a;
  font-weight: 600;
}
.video-grid .video-caption code {
  font-size: 0.85em;
  opacity: 0.85;
}
