    :root {
      --text-primary: oklch(18% 0.01 250);
      --text-secondary: oklch(45% 0.01 250);
      --text-tertiary: oklch(62% 0.01 250);
      --surface: oklch(99.5% 0.002 250);
      --border: oklch(91% 0.008 250);
      --border-hover: oklch(82% 0.01 250);
      --accent: oklch(45% 0.12 165);
      --accent-hover: oklch(38% 0.12 165);
      --row-hover: oklch(97% 0.005 250);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'DM Sans', system-ui, sans-serif;
      color: var(--text-primary);
      background: var(--surface);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    .container { max-width: 720px; margin: 0 auto; padding: 0 20px; }

    /* ── Header ── */
    .site-header {
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }
    .site-header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .site-name {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .site-name svg { flex-shrink: 0; }
    .site-name span {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-primary);
    }
    .header-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .header-link {
      font-size: 0.75rem;
      color: var(--text-tertiary);
      text-decoration: none;
      transition: color 0.15s;
    }
    .header-link:hover { color: var(--text-primary); }
    .location-select {
      position: relative;
      font-size: 0.75rem;
    }
    .location-btn {
      display: flex;
      align-items: center;
      gap: 4px;
      background: none;
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 5px 10px;
      font-family: inherit;
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--text-primary);
      cursor: pointer;
      transition: border-color 0.15s;
    }
    .location-btn:hover { border-color: var(--border-hover); }
    .location-btn svg { width: 12px; height: 12px; opacity: 0.5; }
    .location-btn .loc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
    .location-dropdown {
      display: none;
      position: absolute;
      right: 0;
      top: calc(100% + 6px);
      background: white;
      border: 1px solid var(--border);
      border-radius: 10px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      min-width: 180px;
      z-index: 100;
      overflow: hidden;
    }
    .location-select.open .location-dropdown { display: block; }
    .location-dropdown a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      font-size: 0.8125rem;
      color: var(--text-primary);
      text-decoration: none;
      transition: background 0.1s;
    }
    .location-dropdown a:hover { background: oklch(97% 0.005 250); }
    .location-dropdown a .loc-status {
      font-size: 0.625rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-left: auto;
    }
    .location-dropdown a .loc-status.live { color: var(--accent); }
    .location-dropdown a .loc-status.soon { color: var(--text-tertiary); }
    .location-dropdown .loc-divider { height: 1px; background: var(--border); margin: 0; }

    /* ── Contact Bottom Sheet ── */
    .sheet-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.4);
      z-index: 1000;
      align-items: flex-end;
      justify-content: center;
    }
    .sheet-overlay.open { display: flex; }
    .sheet {
      background: white;
      border-radius: 16px 16px 0 0;
      padding: 24px 20px 32px;
      width: 100%;
      max-width: 480px;
      animation: sheetUp 0.25s ease-out;
    }
    @keyframes sheetUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
    .sheet-handle { width: 36px; height: 4px; background: var(--border); border-radius: 2px; margin: 0 auto 20px; }
    .sheet-title { font-family: 'Newsreader', Georgia, serif; font-size: 1.25rem; font-weight: 500; margin-bottom: 6px; }
    .sheet-subtitle { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.5; }
    .sheet-options { display: flex; flex-direction: column; gap: 10px; }
    .sheet-option {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      border: 1px solid var(--border);
      border-radius: 10px;
      text-decoration: none;
      color: var(--text-primary);
      transition: border-color 0.15s, background 0.15s;
    }
    .sheet-option:hover { border-color: var(--border-hover); background: oklch(97% 0.005 250); }
    .sheet-option svg { width: 24px; height: 24px; flex-shrink: 0; }
    .sheet-option-text { flex: 1; }
    .sheet-option-label { font-size: 0.875rem; font-weight: 600; }
    .sheet-option-desc { font-size: 0.75rem; color: var(--text-tertiary); margin-top: 2px; }
    .sheet-option-badge { font-size: 0.625rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; padding: 3px 8px; border-radius: 100px; }
    .sheet-option-badge.soon { background: oklch(92% 0.04 85); color: oklch(40% 0.08 85); }
    .sheet-option-badge.live { background: oklch(92% 0.06 165); color: oklch(35% 0.1 165); }
    .cart-count {
      font-size: 0.6875rem;
      font-weight: 600;
      background: var(--accent);
      color: white;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: none;
      align-items: center;
      justify-content: center;
    }

    /* ── Hero ── */
    .hero {
      padding: 56px 0 48px;
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
    .hero::after {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 40%;
      background: radial-gradient(ellipse at 80% 50%, oklch(45% 0.12 165 / 0.04), transparent 70%);
      pointer-events: none;
    }
    @media (max-width: 640px) {
      .hero::after { width: 50%; opacity: 0.6; }
    }
    .hero h1 {
      font-family: 'Newsreader', Georgia, serif;
      font-size: clamp(1.625rem, 4vw, 2.25rem);
      font-weight: 400;
      line-height: 1.25;
      letter-spacing: -0.025em;
      max-width: 480px;
    }
    .hero p {
      margin-top: 16px;
      font-size: 0.875rem;
      color: var(--text-secondary);
      max-width: 440px;
      line-height: 1.65;
    }
    .hero-checks {
      margin-top: 24px;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
      font-size: 0.8125rem;
      color: var(--text-secondary);
    }
    .hero-checks li {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .hero-checks li::before {
      content: '';
      display: block;
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      background: var(--accent);
      -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 4.5L6.5 11.5L2.5 7.5' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
      mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 4.5L6.5 11.5L2.5 7.5' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    }

    /* ── Category ── */
    .category {
      padding: 32px 0 0;
    }
    .category-label {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-tertiary);
      padding: 0 0 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .category-label .cat-icon {
      width: 16px;
      height: 16px;
      opacity: 0.5;
    }
    .category[data-cat="weight"] .product-list { border-left: 2px solid oklch(55% 0.12 165); padding-left: 16px; }
    .category[data-cat="healing"] .product-list { border-left: 2px solid oklch(55% 0.14 25); padding-left: 16px; }
    .category[data-cat="longevity"] .product-list { border-left: 2px solid oklch(55% 0.12 270); padding-left: 16px; }
    .category[data-cat="body"] .product-list { border-left: 2px solid oklch(55% 0.1 60); padding-left: 16px; }
    .category[data-cat="cognitive"] .product-list { border-left: 2px solid oklch(55% 0.1 200); padding-left: 16px; }

    /* ── Product row ── */
    .product-list {
      border-top: 1px solid var(--border);
    }
    .product-row {
      display: grid;
      grid-template-columns: 1fr auto auto;
      align-items: center;
      gap: 12px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      cursor: pointer;
      transition: background 0.15s;
    }
    .product-row:hover {
      background: var(--row-hover);
      margin: 0 -20px;
      padding: 14px 20px;
    }
    .product-name {
      font-size: 0.875rem;
      font-weight: 500;
    }
    .product-name .dosage {
      color: var(--text-tertiary);
      font-weight: 400;
    }
    .product-price {
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--text-secondary);
      text-align: right;
      white-space: nowrap;
    }
    .product-add {
      background: none;
      border: 1px solid var(--border);
      border-radius: 5px;
      padding: 6px 12px;
      font-family: inherit;
      font-size: 0.6875rem;
      font-weight: 600;
      color: var(--text-secondary);
      cursor: pointer;
      transition: all 0.15s;
      white-space: nowrap;
    }
    .product-add:hover {
      border-color: var(--text-primary);
      color: var(--text-primary);
    }

    /* ── Quantity stepper (replaces + Cart button) ── */
    .qty-stepper {
      display: inline-flex;
      align-items: center;
      border: 1px solid var(--accent);
      border-radius: 5px;
      overflow: hidden;
    }
    .qty-stepper button {
      background: none;
      border: none;
      width: 28px;
      height: 28px;
      font-family: inherit;
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--accent);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.12s;
    }
    .qty-stepper button:hover {
      background: oklch(45% 0.12 165 / 0.08);
    }
    .qty-stepper .qty-val {
      width: 26px;
      text-align: center;
      font-family: inherit;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--text-primary);
      border-left: 1px solid var(--border);
      border-right: 1px solid var(--border);
      line-height: 28px;
    }

    /* ── Floating order CTA ── */
    .floating-order {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 900;
      background: var(--text-primary);
      padding: 14px 20px;
      transform: translateY(100%);
      transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .floating-order.visible {
      transform: translateY(0);
    }
    .floating-order-inner {
      max-width: 720px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .floating-order-subtotal {
      color: oklch(80% 0.01 250);
      font-size: 0.8125rem;
      font-weight: 500;
    }
    .floating-order-subtotal strong {
      color: white;
      font-weight: 700;
      font-size: 0.9375rem;
    }
    .floating-order-subtotal .original-price {
      text-decoration: line-through;
      opacity: 0.5;
      font-size: 0.75rem;
      font-weight: 400;
      margin-right: 6px;
    }
    .floating-order-subtotal .discounted-price {
      color: oklch(80% 0.12 165);
      font-weight: 700;
      font-size: 0.9375rem;
    }
    .floating-order-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: white;
      border: none;
      border-radius: 8px;
      padding: 12px 24px;
      font-family: inherit;
      font-size: 0.875rem;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.15s;
    }
    .floating-order-btn:hover {
      background: var(--accent-hover);
    }
    .floating-order-btn svg {
      width: 16px;
      height: 16px;
    }

    /* ── Product detail modal ── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: oklch(18% 0.01 250 / 0.5);
      z-index: 1000;
      align-items: flex-end;
      justify-content: center;
      padding: 0;
    }
    .modal-overlay.active {
      display: flex;
    }
    @media (min-width: 641px) {
      .modal-overlay { align-items: center; padding: 24px; }
    }
    .modal-content {
      background: white;
      width: 100%;
      max-width: 480px;
      max-height: 85vh;
      overflow-y: auto;
      border-radius: 16px 16px 0 0;
      padding: 28px 24px 32px;
      position: relative;
      animation: slideUp 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }
    @media (min-width: 641px) {
      .modal-content {
        border-radius: 12px;
        animation: fadeScale 0.25s cubic-bezier(0.22, 1, 0.36, 1);
      }
    }
    @keyframes slideUp {
      from { transform: translateY(100%); }
      to { transform: translateY(0); }
    }
    @keyframes fadeScale {
      from { opacity: 0; transform: scale(0.96); }
      to { opacity: 1; transform: scale(1); }
    }
    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: none;
      border: none;
      font-size: 1.25rem;
      color: var(--text-tertiary);
      cursor: pointer;
      padding: 4px;
      line-height: 1;
    }
    .modal-category {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-tertiary);
      margin-bottom: 6px;
    }
    .modal-title {
      font-size: 1.25rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      margin-bottom: 16px;
    }
    .modal-desc {
      font-size: 0.8125rem;
      line-height: 1.7;
      color: var(--text-secondary);
      margin-bottom: 24px;
    }
    .modal-price {
      font-size: 1.125rem;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .modal-popularity {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 0;
      margin: 12px 0 20px;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      font-size: 0.8125rem;
      color: var(--text-secondary);
    }
    .modal-popularity svg {
      width: 14px;
      height: 14px;
      opacity: 0.5;
    }
    .modal-popularity .count {
      font-weight: 600;
      color: var(--text-primary);
    }
    .popular-dot {
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: oklch(65% 0.18 165);
      margin-right: 8px;
      vertical-align: middle;
      opacity: 0.7;
    }
    .modal-add-btn {
      width: 100%;
      padding: 14px;
      background: var(--text-primary);
      color: white;
      border: none;
      border-radius: 8px;
      font-family: inherit;
      font-size: 0.875rem;
      font-weight: 600;
      cursor: pointer;
      transition: opacity 0.15s;
    }
    .modal-add-btn:hover { opacity: 0.85; }

    /* ── Bottom sections ── */
    .info-section {
      padding: 36px 0;
      border-top: 1px solid var(--border);
    }
    .info-label {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-tertiary);
      margin-bottom: 20px;
    }
    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 24px;
    }
    .step-num {
      font-size: 0.6875rem;
      font-weight: 600;
      color: var(--text-tertiary);
      margin-bottom: 4px;
    }
    .step h4 {
      font-size: 0.8125rem;
      font-weight: 600;
      margin-bottom: 2px;
    }
    .step p {
      font-size: 0.75rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }
    .standards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 16px;
    }
    .standard {
      font-size: 0.75rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }
    .standard strong {
      color: var(--text-primary);
      font-weight: 600;
    }
    .standard-icon {
      display: block;
      margin-bottom: 6px;
      opacity: 0.35;
    }

    /* ── FAQ ── */
    .faq-section { padding: 48px 0 24px; }
    .faq-label {
      font-size: 0.6875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-tertiary);
      margin-bottom: 24px;
    }
    .faq-item {
      border-top: 1px solid var(--border);
      padding: 16px 0;
    }
    .faq-q {
      font-family: 'Newsreader', Georgia, serif;
      font-size: 1.0625rem;
      font-weight: 500;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      color: var(--text-primary);
    }
    .faq-q::after {
      content: '+';
      font-family: 'DM Sans', sans-serif;
      font-size: 1.25rem;
      font-weight: 300;
      color: var(--text-tertiary);
      transition: transform 0.2s;
      flex-shrink: 0;
    }
    .faq-item.open .faq-q::after { content: '−'; }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      font-size: 0.875rem;
      color: var(--text-secondary);
      line-height: 1.65;
    }
    .faq-item.open .faq-a {
      max-height: 500px;
      padding-top: 10px;
    }

    /* ── Footer ── */
    .site-footer {
      border-top: 1px solid var(--border);
      padding: 24px 0;
    }
    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .social-proof {
      width: 100%;
      text-align: center;
      padding: 24px 0;
      border-bottom: 1px solid var(--border);
      margin-bottom: 24px;
    }
    .social-proof p {
      font-size: 0.875rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }
    .social-proof .highlight {
      color: var(--text-primary);
      font-weight: 500;
    }
    .footer-text {
      font-size: 0.6875rem;
      color: var(--text-tertiary);
    }
    .footer-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--accent);
      color: white;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: 6px;
      text-decoration: none;
      transition: background 0.15s;
    }
    .footer-cta:hover { background: var(--accent-hover); }
    .footer-cta svg { width: 14px; height: 14px; }

    /* ── Extra bottom space for floating CTA ── */
    .site-footer { margin-bottom: 72px; }

    /* ── Hide SWB chrome ── */
    .senangwebs-buy-search,
    .senangwebs-buy-sort,
    [data-swb-search],
    [data-swb-sort] { display: none !important; }

    /* ── SWB cart button override ── */
    .senangwebs-buy-floating-cart,
    [data-swb-floating-cart] {
      background: var(--accent) !important;
      font-family: 'DM Sans', system-ui, sans-serif !important;
      box-shadow: 0 4px 16px oklch(45% 0.12 165 / 0.25) !important;
    }

    /* ── SWB product grid: hide it, we render our own rows ── */
    .swb-grid.senangwebs-buy-products {
      display: none !important;
    }

    /* ── SWB modal overrides ── */
    .senangwebs-buy-modal {
      font-family: 'DM Sans', system-ui, sans-serif !important;
    }
    .senangwebs-buy-modal button[type="submit"],
    .senangwebs-buy-checkout-btn {
      background: var(--accent) !important;
      border-radius: 8px !important;
    }

/* ── Guide Pages ── */
.guide-content {
  padding: 40px 20px;
  max-width: 720px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.guide-content article {
  line-height: 1.7;
}

.guide-content h1 {
  font-family: 'Newsreader', serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.guide-content h2 {
  font-family: 'Newsreader', serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.guide-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.guide-content p {
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.guide-content .lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.guide-content ul, .guide-content ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.guide-content li {
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.guide-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.guide-content a {
  color: var(--accent);
  text-decoration: none;
}

.guide-content a:hover {
  text-decoration: underline;
}

.disclaimer {
  background: oklch(96% 0.02 60);
  border-left: 3px solid oklch(70% 0.15 60);
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.cta-box {
  background: oklch(97% 0.008 165);
  border: 1px solid oklch(88% 0.02 165);
  border-radius: 8px;
  padding: 24px;
  margin: 32px 0;
}

.cta-box h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.cta-box p {
  margin-bottom: 16px;
}

.cta-box .check-list {
  list-style: none;
  margin-left: 0;
  margin-bottom: 20px;
}

.cta-box .check-list li {
  padding-left: 24px;
  position: relative;
}

.cta-box .check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

a.cta-button,
a.cta-button:link,
a.cta-button:visited,
a.cta-button:hover,
a.cta-button:active {
  display: inline-block;
  background: oklch(35% 0.12 165);
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: 600;
  transition: background 0.2s;
}

a.cta-button:hover {
  background: oklch(30% 0.12 165);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
}

.data-table thead {
  background: oklch(96% 0.005 250);
}

.data-table th {
  padding: 12px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--border);
  color: var(--text-primary);
}

.data-table td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.data-table tbody tr:hover {
  background: var(--row-hover);
}

.sequence-box {
  background: oklch(97% 0.003 250);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px;
  margin: 16px 0;
  overflow-x: auto;
}

.sequence-box code {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.references {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.references li {
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.guide-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.guide-footer h3 {
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.related-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.related-links a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9375rem;
}

.related-links a:hover {
  text-decoration: underline;
}

/* ── Navigation ── */
header {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}

header .logo img { flex-shrink: 0; display: block; }

header .logo span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

header .nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.875rem;
}

header .nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
}

header .nav-links a:hover {
  color: var(--text-primary);
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  margin-top: 64px;
  font-size: 0.875rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left p {
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

.footer-left a {
  color: var(--accent);
  text-decoration: none;
}

.footer-left a:hover {
  text-decoration: underline;
}

.footer-right p {
  color: var(--text-tertiary);
}
/* Updated Wed Mar 25 07:32:21 UTC 2026 */
/* CTA fix 1774520178 */

/* CTA Button - Force white text */
a.cta-button,
a.cta-button:link,
a.cta-button:visited,
a.cta-button:hover,
a.cta-button:active {
  display: inline-block;
  background: oklch(35% 0.12 165) !important;
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: 600;
  transition: background 0.2s;
}

a.cta-button:hover {
  background: oklch(30% 0.12 165) !important;
}
