
    /* ─── Design Tokens ─────────────────────────────────── */
    :root {
      --bg:          #F7F8FA;
      --surface:     #FFFFFF;
      --border:      #D9DCE3;
      --ink:         #111318;
      --muted:       #6B7280;
      --accent-hot:  #E8330A;
      --accent-cold: #1A6BFF;
      --data-green:  #00A86B;
      --font-mono:   'Montserrat', sans-serif;
      --font-serif:  'Montserrat', sans-serif;
      --font-ui:     'Montserrat', sans-serif;
    }

    /* ─── Reset ─────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


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

    body {
      max-width: 1440px;
      margin: 0 auto;
      background: var(--bg);
      color: var(--ink);
      font-family: var(--font-ui);
      font-size: 15px;
      line-height: 1.6;
      overflow-x: hidden;
      box-shadow: 0 0 0 1px var(--border);
    }

    /* ─── Navbar v2 ─────────────────────────────────────── */
    .navbar-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .navbar-logo-icon {
      width: 32px; height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .navbar-logo-icon img { width: 32px; height: 32px; display: block; }
    .navbar-logo-name {
      font-family: var(--font-ui);
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      letter-spacing: -0.01em;
    }

    .navbar-nav {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none;
    }
    .navbar-nav a {
      display: block;
      padding: 0 16px;
      font-family: var(--font-ui);
      font-size: 13px;
      color: var(--muted);
      text-decoration: none;
      height: 52px;
      line-height: 52px;
      transition: color 0.15s;
      white-space: nowrap;
    }
    .navbar-nav a:hover { color: var(--ink); }

    /* Language switcher */
    .lang-switcher {
      position: relative;
      flex-shrink: 0;
    }
    .lang-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border: 1px solid var(--border);
      background: var(--surface);
      font-family: var(--font-ui);
      font-size: 13px;
      color: var(--ink);
      cursor: pointer;
      height: 34px;
      transition: border-color 0.15s;
    }
    .lang-btn:hover { border-color: var(--ink); }
    .lang-btn svg { width: 14px; height: 14px; flex-shrink: 0; stroke: var(--muted); fill: none; }
    .lang-chevron {
      width: 12px; height: 12px;
      stroke: var(--muted);
      fill: none;
      transition: transform 0.2s;
    }
    .lang-switcher.open .lang-chevron { transform: rotate(180deg); }

    .lang-dropdown {
      position: absolute;
      top: calc(100% + 6px);
      right: 0;
      background: var(--surface);
      border: 1px solid var(--border);
      min-width: 160px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      z-index: 200;
      display: none;
    }
    .lang-switcher.open .lang-dropdown { display: block; }
    .lang-option {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px;
      font-family: var(--font-ui);
      font-size: 13px;
      color: var(--muted);
      cursor: pointer;
      border-bottom: 1px solid var(--border);
      transition: background 0.12s, color 0.12s;
      text-decoration: none !important;
    }
    .lang-option:last-child { border-bottom: none; }
    .lang-option:hover { background: var(--bg); color: var(--ink); }
    .lang-option.active { color: var(--ink); font-weight: 500; }
    .lang-option .lang-code {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.08em;
      color: var(--border);
    }
    .lang-option.active .lang-code { color: var(--accent-hot); }

    /* Mobile hamburger */
    .navbar-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .navbar-hamburger span {
      display: block;
      width: 22px; height: 1.5px;
      background: var(--ink);
      transition: transform 0.2s, opacity 0.2s;
    }

    @media (max-width: 860px) {
      .navbar-nav { display: none; }
      .navbar-hamburger { display: flex; }
    }
    @media (max-width: 480px) {
      .lang-btn span { display: none; }
    }

    /* ─── Modal / Legal ─────────────────────────────────── */
    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(17,19,24,0.6);
      backdrop-filter: blur(4px);
      z-index: 1000;
      display: none;
      align-items: flex-start;
      justify-content: center;
      padding: 40px 20px;
      overflow-y: auto;
    }
    .modal-backdrop.open { display: flex; }
    .modal-box {
      background: var(--surface);
      border: 1px solid var(--border);
      width: 100%;
      max-width: 680px;
      position: relative;
      animation: fade-blur-in 0.25s ease;
      margin: auto;
    }
    .modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 28px;
      border-bottom: 1px solid var(--border);
    }
    .modal-title {
      font-family: var(--font-serif);
      font-size: 20px;
      color: var(--ink);
    }
    .modal-tag {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.12em;
      color: var(--muted);
      text-transform: uppercase;
    }
    .modal-close {
      width: 32px; height: 32px;
      display: flex; align-items: center; justify-content: center;
      background: none; border: 1px solid var(--border);
      cursor: pointer; color: var(--muted);
      font-size: 18px; line-height: 1;
      transition: border-color 0.15s, color 0.15s;
    }
    .modal-close:hover { border-color: var(--ink); color: var(--ink); }
    .modal-body {
      padding: 28px;
      max-height: 70vh;
      overflow-y: auto;
    }
    .modal-body h3 {
      font-family: var(--font-serif);
      font-size: 16px;
      color: var(--ink);
      margin: 20px 0 8px;
    }
    .modal-body h3:first-child { margin-top: 0; }
    .modal-body p, .modal-body li {
      font-size: 14px;
      line-height: 1.75;
      color: #374151;
    }
    .modal-body ul { margin: 8px 0 12px 20px; }
    .modal-footer-note {
      padding: 16px 28px;
      border-top: 1px solid var(--border);
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.08em;
      color: var(--muted);
    }

    /* ─── Footer ─────────────────────────────────────────── */
    .site-footer {
      background: #111318;
      position: relative;
      z-index: 1;
    }
    .footer-main {
      display: grid;
      grid-template-columns: 280px 1fr 1fr 1fr;
      gap: 48px;
      padding: 64px 0 56px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand {}
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      text-decoration: none;
    }
    .footer-logo-icon {
      width: 32px; height: 32px;
      display: flex; align-items: center; justify-content: center;
    }
    .footer-logo-icon img { width: 32px; height: 32px; display: block; }
    .footer-logo-name {
      font-family: var(--font-ui);
      font-size: 14px;
      font-weight: 600;
      color: #fff;
    }
    .footer-desc {
      font-size: 13px;
      line-height: 1.7;
      color: #6B7280;
      max-width: 240px;
    }

    .footer-col-title {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #9CA3AF;
      margin-bottom: 20px;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
      list-style: none;
    }
    .footer-links a {
      font-size: 14px;
      color: #6B7280;
      text-decoration: none;
      transition: color 0.15s;
    }
    .footer-links a:hover { color: #fff; }
    .footer-links button {
      background: none;
      border: none;
      font-size: 14px;
      color: #6B7280;
      cursor: pointer;
      text-align: left;
      padding: 0;
      transition: color 0.15s;
      font-family: inherit;
    }
    .footer-links button:hover { color: #fff; }

    /* Lang list in footer */
    .footer-lang-active {
      color: #fff !important;
      font-weight: 500;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 0;
    }
    .footer-copy {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.06em;
      color: #4B5563;
    }
    .footer-made {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.06em;
      color: #4B5563;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .footer-made .heart { color: #E8330A; }
    .footer-made .btc   { color: var(--accent-hot); font-weight: 600; }

    @media (max-width: 900px) {
      .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
      .footer-brand { grid-column: 1 / -1; }
    }
    @media (max-width: 560px) {
      .footer-main { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    }

    /* ─── Lab Grid Background ───────────────────────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 48px 48px;
      opacity: 0.35;
      pointer-events: none;
      z-index: 0;
    }

    /* ─── Utility ────────────────────────────────────────── */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      position: relative;
      z-index: 1;
    }

    /* Montserrat weight roles */
    .mono { font-family: var(--font-mono); font-weight: 600; }
    .serif { font-family: var(--font-serif); font-weight: 800; font-style: italic; }

    /* Global weight overrides for semantic roles */
    [style*="font-mono"], *[class*="mono"] { font-weight: 600; }

    /* Mono-role elements: labels, eyebrows, code-like text */
    .lab-divider,
    .hero-specimen-id, .hero-specimen-id *,
    .stat-label, .stat-value,
    .data-label, .label-crust, .label-cheese,
    .label-tomato, .label-value,
    .story-eyebrow, .news-eyebrow,
    .faq-num, .tl-year, .tl-meta,
    .video-tag, .video-duration,
    .trustee-cta-btn-sub,
    .footer-copy, .news-all-link,
    .lang-cur, .lang-option {
      font-weight: 600;
    }

    /* Display/serif-role elements: big headlines */
    .hero-headline,
    .news-title,
    .story-title,
    .trustee-cta-text h3,
    .faq-section-title {
      font-weight: 800;
    }

    /* Italic accent spans */
    .hero-headline em,
    .news-title em {
      font-style: italic;
      font-weight: 800;
    }

    /* ─── Lab Divider ────────────────────────────────────── */
    .lab-divider {
      width: 100%;
      border: none;
      border-top: 1px solid var(--border);
      position: relative;
    }
    .lab-divider::before {
      content: attr(data-label);
      position: absolute;
      top: -10px;
      left: 32px;
      background: var(--bg);
      padding: 0 8px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.12em;
      color: var(--muted);
    }

    /* ──────────────────────────────────────────────────────
       NAVBAR
    ────────────────────────────────────────────────────── */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(247, 248, 250, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 52px;
    }
    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.08em;
      color: var(--muted);
      text-transform: uppercase;
    }
    .navbar-brand .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--accent-hot);
      animation: pulse-dot 2s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.5; transform: scale(0.7); }
    }
    .navbar-status {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      color: var(--data-green);
    }

    /* ──────────────────────────────────────────────────────
       HERO
    ────────────────────────────────────────────────────── */
    .hero {
      height: calc(100vh - 52px);
      min-height: 600px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      gap: 0;
      position: relative;
      overflow: hidden;
    }

    /* Left column */
    .hero-left {
      padding: 48px 48px 48px 32px;
      display: flex;
      flex-direction: column;
      gap: 28px;
      animation: fade-blur-in 0.8s ease forwards;
      height: 100%;
      justify-content: center;
      max-width: 600px;
    }

    @keyframes fade-blur-in {
      from { opacity: 0; filter: blur(6px); transform: translateY(12px); }
      to   { opacity: 1; filter: blur(0);   transform: translateY(0); }
    }

    .hero-specimen-id {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .specimen-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1px solid var(--border);
      padding: 4px 10px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.12em;
      color: var(--muted);
      background: var(--surface);
    }
    .specimen-badge .hot { color: var(--accent-hot); }

    .hero-headline {
      font-family: var(--font-serif);
      font-size: clamp(36px, 4.5vw, 58px);
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--ink);
    }
    .hero-headline em {
      font-style: italic;
      color: var(--accent-hot);
    }

    .hero-sub {
      font-family: var(--font-ui);
      font-size: 16px;
      color: var(--muted);
      max-width: 440px;
      line-height: 1.7;
      font-weight: 300;
    }

    /* Key metric row */
    .hero-metrics {
      display: flex;
      gap: 32px;
      padding: 20px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .metric {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .metric-value {
      font-family: var(--font-mono);
      font-size: 22px;
      font-weight: 500;
      color: var(--ink);
      letter-spacing: -0.02em;
    }
    .metric-value.hot { color: var(--accent-hot); }
    .metric-value.green { color: var(--data-green); }
    .metric-label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      color: var(--muted);
      text-transform: uppercase;
    }

    /* CTA row */
    .hero-cta {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--ink);
      color: #fff;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 14px 28px;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      text-decoration: none;
      transition: background 0.2s;
    }
    .btn-primary::after {
      content: '';
      position: absolute;
      inset: -2px;
      background: conic-gradient(from var(--beam-angle, 0deg), transparent 270deg, var(--accent-hot) 360deg);
      animation: beam-spin 2.5s linear infinite;
      z-index: -1;
      border-radius: 0;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 2px;
      background: var(--ink);
      z-index: 0;
    }
    .btn-primary span { position: relative; z-index: 1; }
    @keyframes beam-spin {
      to { transform: rotate(360deg); }
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.08em;
      color: var(--muted);
      text-transform: uppercase;
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }
    .btn-secondary:hover { color: var(--ink); border-color: var(--ink); }

    /* Right column — Specimen viewer */
    .hero-right {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      border-left: 1px solid var(--border);
    }

    /* Crosshair corners */
    .hero-right::before,
    .hero-right::after {
      content: '';
      position: absolute;
      width: 24px; height: 24px;
      border-color: var(--border);
      border-style: solid;
    }
    .hero-right::before {
      top: 24px; left: 24px;
      border-width: 1px 0 0 1px;
    }
    .hero-right::after {
      bottom: 24px; right: 24px;
      border-width: 0 1px 1px 0;
    }

    .specimen-viewer {
      position: relative;
      width: 420px;
      height: 420px;
      animation: fade-blur-in 1s 0.3s ease both;
    }

    .pizza-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      mix-blend-mode: multiply;
      filter: contrast(1.05) saturate(1.1);
    }

    /* Scanning line animation */
    .scan-line {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent-hot), transparent);
      animation: scan 3s ease-in-out 0.5s forwards;
      opacity: 0;
      box-shadow: 0 0 8px var(--accent-hot);
    }
    @keyframes scan {
      0%   { top: 0%;   opacity: 0; }
      5%   { opacity: 1; }
      95%  { opacity: 1; }
      100% { top: 100%; opacity: 0; }
    }

    /* Data overlay labels */
    .data-label {
      position: absolute;
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.1em;
      color: var(--muted);
      white-space: nowrap;
      opacity: 0;
      animation: label-appear 0.4s ease forwards;
    }
    .data-label.hot { color: var(--accent-hot); }
    .data-label.green { color: var(--data-green); }

    .data-label::before {
      content: '';
      position: absolute;
      background: var(--muted);
    }

    /* Label positions */
    .label-crust {
      top: 8%; right: -90px;
      animation-delay: 3.2s;
    }
    .label-crust::before {
      right: calc(100% + 6px); top: 50%;
      width: 32px; height: 1px;
    }

    .label-cheese {
      top: 38%; right: -98px;
      animation-delay: 3.4s;
    }
    .label-cheese::before {
      right: calc(100% + 6px); top: 50%;
      width: 32px; height: 1px;
    }

    .label-tomato {
      top: 55%; left: -140px;
      text-align: right;
      animation-delay: 3.6s;
    }
    .label-tomato::before {
      left: calc(100% + 6px); top: 50%;
      width: 60px; height: 1px;
      background: var(--accent-hot);
    }
    .label-tomato { color: var(--accent-hot); }

    .label-value {
      bottom: 18%; left: -130px;
      text-align: right;
      animation-delay: 3.8s;
    }
    .label-value::before {
      left: calc(100% + 6px); top: 50%;
      width: 60px; height: 1px;
      background: var(--data-green);
    }
    .label-value { color: var(--data-green); }

    @keyframes label-appear {
      from { opacity: 0; transform: translateX(4px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    /* Specimen ID bottom bar */
    .specimen-bar {
      position: absolute;
      bottom: 16px; left: 16px; right: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.1em;
      color: var(--muted);
      border-top: 1px solid var(--border);
      padding-top: 8px;
      opacity: 0;
      animation: fade-blur-in 0.5s 3.8s ease forwards;
    }
    .specimen-bar .status-ok {
      color: var(--data-green);
    }

    /* Corner crosshairs on specimen viewer */
    .corner {
      position: absolute;
      width: 12px; height: 12px;
      border-color: var(--border);
      border-style: solid;
    }
    .corner-tl { top: 0; left: 0;  border-width: 1px 0 0 1px; }
    .corner-tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
    .corner-bl { bottom: 0; left: 0;  border-width: 0 0 1px 1px; }
    .corner-br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

    /* Top specimen meta */
    .specimen-meta {
      position: absolute;
      top: 16px; left: 16px; right: 16px;
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.1em;
      color: var(--muted);
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid var(--border);
      padding-bottom: 8px;
      opacity: 0;
      animation: fade-blur-in 0.5s 0.6s ease forwards;
    }

    /* ──────────────────────────────────────────────────────
       SECTION HEADER BAND
    ────────────────────────────────────────────────────── */
    .section-band {
      width: 100%;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 10px 32px;
      display: flex;
      align-items: center;
      gap: 16px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.12em;
      color: var(--muted);
      text-transform: uppercase;
      background: var(--surface);
      position: relative;
      z-index: 1;
    }
    .section-band .number {
      color: var(--accent-hot);
      font-size: 12px;
    }
    .section-band .line {
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    /* ──────────────────────────────────────────────────────
       FOOTER HINT
    ────────────────────────────────────────────────────── */
    .scroll-hint {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.12em;
      color: var(--muted);
      text-transform: uppercase;
      animation: fade-blur-in 0.5s 4.5s ease both;
      z-index: 10;
    }
    .scroll-arrow {
      width: 1px;
      height: 32px;
      background: linear-gradient(to bottom, var(--muted), transparent);
      animation: scroll-pulse 1.5s ease-in-out infinite;
    }
    @keyframes scroll-pulse {
      0%, 100% { opacity: 0.4; transform: scaleY(1); }
      50%       { opacity: 1;   transform: scaleY(1.1); }
    }

    /* ──────────────────────────────────────────────────────
       RESPONSIVE
    ────────────────────────────────────────────────────── */
    @media (max-width: 900px) {
      .hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: auto;
        overflow: visible;
      }
      .hero-left {
        height: auto;
        justify-content: flex-start;
        max-width: 100%;
      }
      .hero-left.container {
        padding: 40px 20px 36px !important;
      }
      .hero-right {
        border-left: none;
        border-top: 1px solid var(--border);
        min-height: 320px;
        overflow: hidden;
      }
      .specimen-viewer {
        width: 240px;
        height: 240px;
      }
      .data-label { display: none; }
      .label-tomato, .label-value { display: none; }
      .hero-metrics { flex-wrap: wrap; gap: 20px; }

      /* Hide scroll hint on mobile */
      .scroll-hint { display: none !important; }

    }

    /* Hide left-overflow labels on mid-size screens */
    @media (max-width: 1140px) {
      .label-tomato, .label-value { display: none; }
    }

    @media (max-width: 600px) {
      .container { padding: 0 20px; }
      .hero-headline { font-size: 32px; }
    }

    /* ──────────────────────────────────────────────────────
       SECTION: ИСТОРИЯ
    ────────────────────────────────────────────────────── */
    .story-section {
      padding: 80px 0 64px;
      position: relative;
      z-index: 1;
    }

    .story-grid {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 64px;
      align-items: start;
    }

    /* Left: text */
    .story-eyebrow {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.18em;
      color: var(--accent-hot);
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .story-title {
      font-family: var(--font-serif);
      font-size: clamp(28px, 3.5vw, 44px);
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--ink);
      margin-bottom: 28px;
    }

    .story-intro {
      font-size: 17px;
      line-height: 1.75;
      color: var(--ink);
      font-weight: 400;
      margin-bottom: 28px;
      border-left: 3px solid var(--border);
      padding-left: 20px;
    }

    .story-body {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .story-body p {
      font-size: 15px;
      line-height: 1.75;
      color: #374151;
    }

    .story-body strong {
      color: var(--ink);
      font-weight: 600;
    }

    .story-quote {
      margin: 8px 0;
      padding: 24px 28px;
      border-left: 3px solid var(--accent-hot);
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      border-right: 1px solid var(--border);
    }

    .story-quote p {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 18px !important;
      line-height: 1.6 !important;
      color: var(--ink) !important;
    }

    .story-quote cite {
      display: block;
      margin-top: 12px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      color: var(--muted);
      font-style: normal;
    }

    /* Right: Facts table */
    .facts-panel {
      position: sticky;
      top: 72px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .facts-card {
      background: var(--surface);
      border: 1px solid var(--border);
    }

    .facts-card-header {
      padding: 14px 20px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .facts-card-header h3 {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--ink);
      font-weight: 500;
    }

    .facts-card-header .verified {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.1em;
      color: var(--data-green);
    }

    .facts-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      padding: 14px 20px;
      border-bottom: 1px solid var(--border);
      gap: 16px;
      transition: background 0.15s;
    }

    .facts-row:last-child { border-bottom: none; }

    .facts-row:hover { background: var(--bg); }

    .facts-key {
      font-family: var(--font-ui);
      font-size: 13px;
      color: var(--muted);
      flex-shrink: 0;
    }

    .facts-val {
      font-family: var(--font-mono);
      font-size: 14px;
      font-weight: 500;
      color: var(--ink);
      text-align: right;
    }

    .facts-val.hot  { color: var(--accent-hot); }
    .facts-val.green { color: var(--data-green); }

    /* ── Trustee Banner ─────────────────────────────────── */
    .trustee-banner {
      background: var(--surface);
      border: 1px solid var(--border);
      border-left: 4px solid var(--accent-hot);
      overflow: hidden;
    }

    .trustee-banner-tag {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.12em;
      color: var(--muted);
      text-transform: uppercase;
    }

    .trustee-banner-tag .hot-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent-hot);
      flex-shrink: 0;
    }

    .trustee-banner-body {
      padding: 16px 16px 0;
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .trustee-icon {
      width: 36px; height: 36px;
      background: var(--accent-hot);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: #fff;
      font-size: 18px;
    }

    .trustee-text strong {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.4;
      margin-bottom: 4px;
    }

    .trustee-text p {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5;
    }

    .trustee-banner-footer {
      padding: 14px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .trustee-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--accent-hot);
      color: #fff;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.08em;
      padding: 10px 20px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      text-transform: uppercase;
      transition: opacity 0.2s;
      white-space: nowrap;
    }

    .trustee-btn:hover { opacity: 0.88; }

    .trustee-time {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--muted);
      letter-spacing: 0.06em;
    }

    /* story responsive */
    @media (max-width: 960px) {
      .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .facts-panel { position: static; }
    }

    /* ──────────────────────────────────────────────────────
       SECTION: CALCULATOR
    ────────────────────────────────────────────────────── */
    .calc-section {
      padding: 80px 0 96px;
      position: relative;
      z-index: 1;
    }

    .calc-header {
      max-width: 640px;
      margin-bottom: 48px;
    }

    .calc-header h2 {
      font-family: var(--font-serif);
      font-size: clamp(26px, 3vw, 40px);
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin: 12px 0 16px;
    }

    .calc-header .lead {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.7;
    }

    /* Tabs */
    .calc-tabs {
      display: flex;
      gap: 0;
      border: 1px solid var(--border);
      background: var(--surface);
      overflow: hidden;
      width: fit-content;
      margin-bottom: 0;
    }

    .calc-tab {
      padding: 10px 20px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.08em;
      border: none;
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      border-right: 1px solid var(--border);
      transition: background 0.15s, color 0.15s;
      white-space: nowrap;
    }

    .calc-tab:last-child { border-right: none; }

    .calc-tab:hover { background: var(--bg); color: var(--ink); }

    .calc-tab.active {
      background: var(--ink);
      color: #fff;
    }

    /* Main instrument panel */
    .calc-instrument {
      border: 1px solid var(--border);
      background: var(--surface);
      overflow: hidden;
    }

    /* Display — dark zone */
    .calc-display {
      background: #111318;
      padding: 36px 40px;
      display: grid;
      grid-template-columns: 1fr auto;
      grid-template-rows: auto auto auto;
      gap: 8px 24px;
      align-items: start;
    }

    .calc-year-label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.16em;
      color: #6B7280;
      text-transform: uppercase;
      grid-column: 1 / -1;
    }

    .calc-price-wrap {
      display: flex;
      align-items: baseline;
      gap: 4px;
    }

    .calc-currency {
      font-family: var(--font-mono);
      font-size: 28px;
      color: #9CA3AF;
      align-self: flex-start;
      margin-top: 6px;
    }

    .calc-price-num {
      font-family: var(--font-mono);
      font-size: clamp(40px, 6vw, 72px);
      font-weight: 500;
      color: #FFFFFF;
      letter-spacing: -0.03em;
      line-height: 1;
    }

    .calc-rate-badge {
      grid-column: 2;
      grid-row: 2;
      align-self: end;
      text-align: right;
    }

    .calc-rate-badge .rate-label {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.1em;
      color: #6B7280;
      display: block;
      margin-bottom: 2px;
    }

    .calc-rate-badge .rate-val {
      font-family: var(--font-mono);
      font-size: 14px;
      color: var(--accent-hot);
    }

    .calc-equiv {
      grid-column: 1 / -1;
      margin-top: 8px;
      padding-top: 16px;
      border-top: 1px solid #1F2937;
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.04em;
      color: #9CA3AF;
      line-height: 1.6;
      min-height: 36px;
    }

    .calc-equiv .equiv-hot {
      color: var(--accent-hot);
    }

    /* Slider zone */
    .calc-slider-zone {
      padding: 28px 40px 32px;
      border-top: 1px solid var(--border);
    }

    .slider-top {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 14px;
    }

    .slider-top label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.12em;
      color: var(--muted);
      text-transform: uppercase;
    }

    .slider-year-current {
      font-family: var(--font-mono);
      font-size: 20px;
      font-weight: 500;
      color: var(--ink);
      letter-spacing: -0.02em;
    }

    /* Custom range */
    input[type="range"] {
      -webkit-appearance: none;
      width: 100%;
      height: 2px;
      background: var(--border);
      outline: none;
      cursor: pointer;
      position: relative;
    }

    input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 20px;
      height: 20px;
      background: var(--ink);
      border: 3px solid var(--surface);
      box-shadow: 0 0 0 1px var(--ink);
      cursor: pointer;
      border-radius: 0;
      transition: background 0.15s;
    }

    input[type="range"]::-webkit-slider-thumb:hover {
      background: var(--accent-hot);
      box-shadow: 0 0 0 1px var(--accent-hot);
    }

    input[type="range"]::-moz-range-thumb {
      width: 20px; height: 20px;
      background: var(--ink);
      border: 3px solid var(--surface);
      box-shadow: 0 0 0 1px var(--ink);
      cursor: pointer;
      border-radius: 0;
    }

    .range-readout {
      display: flex;
      justify-content: space-between;
      margin-top: 8px;
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--muted);
      letter-spacing: 0.08em;
    }

    /* Year tick marks */
    .year-ticks {
      display: flex;
      justify-content: space-between;
      margin-top: 12px;
      padding: 0 2px;
    }

    .year-tick {
      font-family: var(--font-mono);
      font-size: 9px;
      color: var(--border);
      text-align: center;
      cursor: pointer;
      transition: color 0.15s;
      user-select: none;
    }

    .year-tick:hover { color: var(--muted); }
    .year-tick.active { color: var(--accent-hot); }

    /* Calc responsive */
    @media (max-width: 700px) {
      .calc-display { padding: 24px 20px; }
      .calc-slider-zone { padding: 20px; }
      .calc-tabs { width: 100%; flex-wrap: wrap; }
      .calc-tab { flex: 1; text-align: center; }
      .calc-price-num { font-size: 40px; }
      .year-ticks { display: none; }
      .calc-rate-badge { grid-column: 1; grid-row: 3; text-align: left; }
    }

    /* ──────────────────────────────────────────────────────
       SECTION: TIMELINE
    ────────────────────────────────────────────────────── */
    .timeline-section {
      padding: 80px 0 96px;
      position: relative;
      z-index: 1;
    }

    .timeline-header {
      max-width: 600px;
      margin-bottom: 64px;
    }

    .timeline-header h2 {
      font-family: var(--font-serif);
      font-size: clamp(26px, 3vw, 40px);
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin: 12px 0 14px;
    }

    .timeline-header .lead {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.7;
    }

    /* Layout: left track + right content */
    .timeline-wrap {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 0;
      position: relative;
    }

    /* Vertical rail */
    .timeline-rail {
      position: relative;
      padding-right: 40px;
    }

    .timeline-rail::after {
      content: '';
      position: absolute;
      top: 24px;
      bottom: 24px;
      right: 39px;
      width: 1px;
      background: var(--border);
    }

    /* Animated fill of the rail */
    .timeline-rail-fill {
      position: absolute;
      top: 24px;
      right: 39px;
      width: 1px;
      height: 0;
      background: var(--accent-hot);
      transition: height 0.6s cubic-bezier(.22,1,.36,1);
      z-index: 2;
    }

    /* Individual entries */
    .timeline-entries {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .tl-entry {
      display: contents;
    }

    .tl-row {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 0;
      position: relative;
      cursor: pointer;
    }

    /* Year label (left) */
    .tl-year-col {
      padding: 28px 40px 28px 0;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 6px;
      position: relative;
    }

    /* Dot on the rail */
    .tl-dot {
      position: absolute;
      right: -6px;
      top: 34px;
      width: 13px;
      height: 13px;
      border: 2px solid var(--border);
      background: var(--surface);
      border-radius: 0;
      transition: border-color 0.2s, background 0.2s, transform 0.2s;
      z-index: 3;
    }

    .tl-row:hover .tl-dot,
    .tl-row.active .tl-dot {
      border-color: var(--accent-hot);
      background: var(--accent-hot);
      transform: rotate(45deg) scale(1.1);
    }

    .tl-year-num {
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 500;
      color: var(--muted);
      letter-spacing: 0.06em;
      transition: color 0.2s;
      text-align: right;
    }

    .tl-row:hover .tl-year-num,
    .tl-row.active .tl-year-num {
      color: var(--accent-hot);
    }

    .tl-price-badge {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--data-green);
      letter-spacing: 0.04em;
      text-align: right;
      opacity: 0;
      transition: opacity 0.2s;
    }

    .tl-row:hover .tl-price-badge,
    .tl-row.active .tl-price-badge {
      opacity: 1;
    }

    /* Content (right) */
    .tl-content-col {
      padding: 24px 0 24px 40px;
      border-left: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      transition: background 0.2s;
    }

    .tl-row:last-child .tl-content-col {
      border-bottom: none;
    }

    .tl-row:hover .tl-content-col,
    .tl-row.active .tl-content-col {
      background: var(--surface);
    }

    .tl-date-label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.14em;
      color: var(--accent-hot);
      text-transform: uppercase;
      margin-bottom: 8px;
      opacity: 0;
      transform: translateX(-6px);
      transition: opacity 0.3s, transform 0.3s;
    }

    .tl-row.visible .tl-date-label { opacity: 1; transform: translateX(0); }

    .tl-headline {
      font-family: var(--font-serif);
      font-size: 20px;
      line-height: 1.25;
      color: var(--ink);
      margin-bottom: 10px;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.4s 0.08s, transform 0.4s 0.08s;
    }

    .tl-row.visible .tl-headline { opacity: 1; transform: translateY(0); }

    .tl-body {
      font-size: 14px;
      line-height: 1.7;
      color: var(--muted);
      max-width: 600px;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.4s 0.15s, transform 0.4s 0.15s;
    }

    .tl-row.visible .tl-body { opacity: 1; transform: translateY(0); }

    /* Expanded detail */
    .tl-detail {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(.22,1,.36,1);
    }

    .tl-row.active .tl-detail {
      max-height: 200px;
    }

    .tl-detail-inner {
      padding-top: 14px;
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .tl-stat {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .tl-stat-val {
      font-family: var(--font-mono);
      font-size: 18px;
      font-weight: 500;
      color: var(--ink);
      letter-spacing: -0.02em;
    }

    .tl-stat-val.hot { color: var(--accent-hot); }
    .tl-stat-val.green { color: var(--data-green); }

    .tl-stat-label {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.1em;
      color: var(--muted);
      text-transform: uppercase;
    }

    /* ── CTA Banner — Trustee Plus ──────────────────────── */
    .trustee-cta-block {
      margin-top: 64px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-top: 3px solid var(--accent-hot);
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 28px;
      padding: 28px 32px;
      position: relative;
      overflow: hidden;
    }

    /* Faint Bitcoin watermark */
    .trustee-cta-block::before {
      content: '₿';
      position: absolute;
      right: 180px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 160px;
      font-weight: 700;
      color: var(--border);
      opacity: 0.4;
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    .trustee-btc-icon {
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .trustee-btc-icon img {
      width: 56px;
      height: 56px;
      display: block;
    }

    .trustee-cta-text h3 {
      font-family: var(--font-serif);
      font-size: 20px;
      line-height: 1.3;
      color: var(--ink);
      margin-bottom: 6px;
    }

    .trustee-cta-text p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
      max-width: 480px;
    }

    .trustee-cta-text strong {
      color: var(--ink);
      font-weight: 600;
    }

    .trustee-cta-btn {
      flex-shrink: 0;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      text-decoration: none;
    }

    .trustee-cta-btn-main {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent-hot);
      color: #fff;
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 14px 28px;
      white-space: nowrap;
      transition: opacity 0.2s;
    }

    .trustee-cta-btn-main:hover { opacity: 0.88; }

    .trustee-cta-btn-sub {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.1em;
      color: var(--muted);
      text-transform: uppercase;
    }

    /* Timeline responsive */
    @media (max-width: 760px) {
      .timeline-wrap,
      .tl-row {
        grid-template-columns: 1fr;
      }
      .timeline-rail { display: none; }
      .tl-year-col {
        align-items: flex-start;
        padding: 20px 0 8px;
        border-top: 1px solid var(--border);
      }
      .tl-dot { display: none; }
      .tl-content-col {
        border-left: 3px solid var(--accent-hot);
        padding: 12px 0 20px 20px;
        border-bottom: none;
      }
      .trustee-cta-block {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .trustee-cta-block::before { display: none; }
    }

    /* ──────────────────────────────────────────────────────
       SECTION: FAQ
    ────────────────────────────────────────────────────── */
    .faq-section {
      padding: 80px 0 96px;
      position: relative;
      z-index: 1;
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 64px;
      align-items: start;
    }

    /* Left sticky header */
    .faq-sidebar {
      position: sticky;
      top: 72px;
    }

    .faq-sidebar h2 {
      font-family: var(--font-serif);
      font-size: clamp(24px, 2.5vw, 34px);
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin: 12px 0 16px;
    }

    .faq-sidebar .lead {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
    }

    .faq-counter {
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .faq-counter-num {
      font-family: var(--font-mono);
      font-size: 40px;
      font-weight: 500;
      color: var(--ink);
      letter-spacing: -0.04em;
      line-height: 1;
    }

    .faq-counter-label {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.12em;
      color: var(--muted);
      text-transform: uppercase;
    }

    .faq-counter-open {
      margin-top: 12px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      color: var(--accent-hot);
    }

    /* FAQ accordion list */
    .faq-list {
      border: 1px solid var(--border);
      background: var(--surface);
      overflow: hidden;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
      transition: background 0.2s;
    }

    .faq-item:last-child { border-bottom: none; }

    .faq-item.is-open {
      background: var(--bg);
    }

    .faq-trigger {
      display: grid;
      grid-template-columns: 52px 1fr 32px;
      align-items: center;
      gap: 0;
      width: 100%;
      border: none;
      background: transparent;
      cursor: pointer;
      text-align: left;
      padding: 0;
      transition: background 0.15s;
    }

    .faq-trigger:hover { background: rgba(232,51,10,0.03); }

    .faq-item.is-open .faq-trigger { background: transparent; }

    .faq-num {
      padding: 22px 0 22px 20px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      color: var(--border);
      transition: color 0.2s;
      align-self: stretch;
      display: flex;
      align-items: center;
      border-right: 1px solid var(--border);
    }

    .faq-item.is-open .faq-num,
    .faq-item:hover .faq-num {
      color: var(--accent-hot);
    }

    .faq-question {
      padding: 22px 0 22px 24px;
      font-family: var(--font-ui);
      font-size: 15px;
      font-weight: 500;
      color: var(--ink);
      line-height: 1.4;
    }

    .faq-icon {
      padding-right: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .faq-icon-inner {
      width: 20px;
      height: 20px;
      position: relative;
      flex-shrink: 0;
    }

    .faq-icon-inner::before,
    .faq-icon-inner::after {
      content: '';
      position: absolute;
      background: var(--muted);
      border-radius: 0;
      transition: transform 0.3s cubic-bezier(.22,1,.36,1), opacity 0.3s;
    }

    .faq-icon-inner::before {
      width: 12px; height: 1.5px;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }

    .faq-icon-inner::after {
      width: 1.5px; height: 12px;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }

    .faq-item.is-open .faq-icon-inner::before { background: var(--accent-hot); }
    .faq-item.is-open .faq-icon-inner::after  { background: var(--accent-hot); transform: translate(-50%, -50%) rotate(90deg) scaleY(0); opacity: 0; }

    /* Answer panel */
    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s cubic-bezier(.22,1,.36,1);
    }

    .faq-answer {
      padding: 0 24px 24px calc(52px + 24px);
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-answer p {
      font-size: 14px;
      line-height: 1.75;
      color: #374151;
    }

    .faq-answer strong { color: var(--ink); font-weight: 600; }

    .faq-answer ul {
      margin: 4px 0 4px 20px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .faq-answer li {
      font-size: 14px;
      line-height: 1.65;
      color: #374151;
    }

    .faq-answer li::marker { color: var(--accent-hot); }

    /* Left accent bar when open */
    .faq-item.is-open {
      border-left: 3px solid var(--accent-hot);
    }

    .faq-item:not(.is-open) {
      border-left: 3px solid transparent;
    }

    /* FAQ responsive */
    @media (max-width: 860px) {
      .faq-layout { grid-template-columns: 1fr; gap: 40px; }
      .faq-sidebar { position: static; }
      .faq-counter { display: none; }
    }

    @media (max-width: 600px) {
      .faq-num { display: none; }
      .faq-trigger { grid-template-columns: 1fr 32px; }
      .faq-question { padding-left: 20px; }
      .faq-answer { padding-left: 20px; }
    }

    /* ──────────────────────────────────────────────────────
       CTA BANNER — DARK (after calculator)
    ────────────────────────────────────────────────────── */
    .cta-dark {
      background: #111318;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .cta-dark-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 40px;
      padding: 52px 0;
    }

    /* Giant ₿ watermark — left side so it never hits button */
    .cta-dark::before {
      content: '₿';
      position: absolute;
      left: -24px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 220px;
      font-weight: 700;
      color: rgba(255,255,255,0.04);
      line-height: 1;
      pointer-events: none;
      user-select: none;
      font-family: var(--font-mono);
    }

    .cta-dark-text {
      position: relative;
      z-index: 1;
    }

    .cta-dark-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.14em;
      color: var(--accent-hot);
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .cta-dark-eyebrow::before {
      content: '';
      width: 20px;
      height: 1px;
      background: var(--accent-hot);
    }

    .cta-dark-text h3 {
      font-family: var(--font-serif);
      font-size: clamp(20px, 2.5vw, 30px);
      line-height: 1.25;
      color: #fff;
      margin-bottom: 14px;
      max-width: 560px;
    }

    .cta-dark-text p {
      font-size: 14px;
      line-height: 1.75;
      color: #9CA3AF;
      max-width: 560px;
    }

    .cta-dark-action {
      position: relative;
      z-index: 1;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .cta-dark-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent-hot);
      color: #fff;
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 16px 32px;
      white-space: nowrap;
      transition: opacity 0.2s;
    }

    .cta-dark-btn:hover { opacity: 0.88; }

    .cta-dark-sub {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.08em;
      color: #4B5563;
    }

    @media (max-width: 700px) {
      .cta-dark-inner { grid-template-columns: 1fr; gap: 28px; }
      .cta-dark::before { font-size: 140px; }
    }

    /* ──────────────────────────────────────────────────────
       CTA BANNER — LIGHT (after FAQ)
    ────────────────────────────────────────────────────── */
    .cta-light {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .cta-light::after {
      content: '?';
      position: absolute;
      right: 200px;
      top: 50%;
      transform: translateY(-50%);
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 200px;
      color: var(--border);
      opacity: 0.6;
      line-height: 1;
      pointer-events: none;
    }

    .cta-light-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 40px;
      padding: 52px 0;
      position: relative;
      z-index: 1;
    }

    .cta-light-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.14em;
      color: var(--accent-hot);
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .cta-light-eyebrow::before {
      content: '';
      width: 20px;
      height: 1px;
      background: var(--accent-hot);
    }

    .cta-light h3 {
      font-family: var(--font-serif);
      font-size: clamp(20px, 2.5vw, 30px);
      line-height: 1.25;
      color: var(--ink);
      margin-bottom: 12px;
      max-width: 520px;
    }

    .cta-light p {
      font-size: 14px;
      line-height: 1.75;
      color: var(--muted);
      max-width: 520px;
    }

    .cta-light-action {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .cta-light-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--ink);
      color: #fff;
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 16px 32px;
      white-space: nowrap;
      transition: background 0.2s;
    }

    .cta-light-btn:hover { background: var(--accent-hot); }

    .cta-light-sub {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.08em;
      color: var(--muted);
    }

    @media (max-width: 700px) {
      .cta-light-inner { grid-template-columns: 1fr; gap: 28px; }
      .cta-light::after { display: none; }
    }

    /* ──────────────────────────────────────────────────────
       SECTION: YOUTUBE VIDEOS
    ────────────────────────────────────────────────────── */
    .video-section {
      padding: 80px 0 64px;
      position: relative;
      z-index: 1;
    }

    .video-header {
      max-width: 640px;
      margin-bottom: 48px;
    }

    .video-header h2 {
      font-family: var(--font-serif);
      font-size: clamp(24px, 3vw, 38px);
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin: 12px 0 14px;
    }

    .video-header .lead {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.7;
    }

    .video-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    /* Video card */
    .video-card {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--border);
      background: var(--surface);
      overflow: hidden;
      transition: border-color 0.2s;
    }

    .video-card:hover { border-color: var(--accent-hot); }

    /* Thumbnail / facade */
    .video-facade {
      position: relative;
      aspect-ratio: 16 / 9;
      background: #1a1a1a;
      overflow: hidden;
      cursor: pointer;
      display: block;
      text-decoration: none;
    }

    .video-thumb-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.85;
      transition: opacity 0.3s, transform 0.4s;
    }

    .video-facade:hover .video-thumb-img {
      opacity: 1;
      transform: scale(1.03);
    }

    /* Play button */
    .video-play-btn {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .video-play-circle {
      width: 56px;
      height: 56px;
      background: rgba(232,51,10,0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s, background 0.2s;
    }

    .video-facade:hover .video-play-circle {
      background: var(--accent-hot);
      transform: scale(1.1);
    }

    .video-play-circle svg {
      width: 20px;
      height: 20px;
      fill: #fff;
      margin-left: 3px;
    }

    /* Duration badge */
    .video-duration {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(0,0,0,0.75);
      color: #fff;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.06em;
      padding: 3px 7px;
    }

    /* Placeholder for when no thumbnail */
    .video-facade.no-thumb {
      background: #111318;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .video-facade.no-thumb .video-thumb-img { display: none; }

    .video-placeholder-label {
      position: absolute;
      bottom: 16px;
      left: 16px;
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.12em;
      color: #4B5563;
      text-transform: uppercase;
    }

    /* Card info */
    .video-info {
      padding: 16px 20px 20px;
      border-top: 1px solid var(--border);
    }

    .video-tag {
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.12em;
      color: var(--accent-hot);
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .video-title {
      font-family: var(--font-ui);
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.4;
      margin-bottom: 4px;
    }

    .video-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.55;
    }

    /* How to use comment */
    .video-usage-hint {
      margin-top: 24px;
      padding: 14px 20px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-left: 3px solid var(--accent-cold);
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .video-usage-hint p {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.04em;
      color: var(--muted);
      line-height: 1.6;
    }

    .video-usage-hint code {
      background: var(--bg);
      border: 1px solid var(--border);
      padding: 1px 5px;
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--accent-cold);
    }

    @media (max-width: 700px) {
      .video-grid { grid-template-columns: 1fr; }
    }

    /* Fix timeline CTA ₿ watermark */
    .trustee-cta-block::before {
      right: auto;
      left: 50%;
      transform: translateY(-50%) translateX(-50%);
      opacity: 0.25;
    }

    /* ─── News section ──────────────────────────────────── */
    .news-section {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .news-layout {
      max-width: 1440px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 340px 1fr;
      align-items: start;
    }

    .news-text-col {
      padding: 64px 48px 64px 32px;
      border-right: 1px solid var(--border);
      position: sticky;
      top: 52px;
    }

    .news-cards-col {
      min-width: 0;
    }

    .news-eyebrow {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent-hot);
      margin: 0 0 14px;
    }

    .news-title {
      font-family: var(--font-serif);
      font-size: clamp(24px, 2.5vw, 36px);
      font-weight: 400;
      line-height: 1.2;
      margin: 0 0 20px;
      color: var(--ink);
    }

    .news-title em {
      font-style: italic;
      color: var(--accent-hot);
    }

    .news-desc {
      font-family: var(--font-ui);
      font-size: 14px;
      line-height: 1.7;
      color: var(--ink-muted);
      margin: 0;
    }

    .news-desc a {
      color: var(--ink);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .news-desc a:hover { color: var(--accent-hot); }

    .news-all-link-wrap {
      padding: 20px 32px 32px;
      text-align: right;
    }

    .news-all-link {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink);
      text-decoration: none;
      border-bottom: 1px solid currentColor;
      padding-bottom: 2px;
      transition: color 0.2s;
    }

    .news-all-link:hover { color: var(--accent-hot); }

    @media (max-width: 860px) {
      .news-layout { grid-template-columns: 1fr; }
      .news-text-col { border-right: none; border-bottom: 1px solid var(--border); position: static; padding: 40px 32px; }
      #incrypted-widget .incrypted-informer {
        justify-items: stretch !important;
        grid-template-columns: 1fr !important;
        margin: 0 auto !important;
        max-width: 480px !important;
      }
      .news-all-link-wrap { text-align: center; }
    }

    /* ─── Incrypted widget override ─────────────────────── */
    #incrypted-widget {
      padding: 32px 0;
      background: var(--bg) !important;
    }

    /* Hide widget's own heading — we have our own */
    #incrypted-widget .incrypted-informer-heading {
      display: none !important;
    }

    /* Dead rule kept for reference */
    #incrypted-widget .incrypted-informer-heading-UNUSED {
      max-width: 1200px;
      margin: 0 auto 28px !important;
      padding: 0 32px !important;
      background: transparent !important;
      font-family: var(--font-mono) !important;
      font-size: 11px !important;
      letter-spacing: 0.08em !important;
      text-transform: uppercase !important;
      color: var(--ink-muted) !important;
      display: flex !important;
      align-items: center !important;
      gap: 8px !important;
    }

    #incrypted-widget .incrypted-informer-heading a {
      color: var(--ink-muted) !important;
      text-decoration: none !important;
      font-family: var(--font-mono) !important;
      font-size: 11px !important;
      letter-spacing: 0.08em !important;
    }

    #incrypted-widget .incrypted-informer-heading a:hover {
      color: var(--accent-hot) !important;
    }

    /* Hide Incrypted logo, keep it subtle */
    #incrypted-widget .incr_title_logo {
      height: 14px !important;
      width: auto !important;
      opacity: 0.4 !important;
      filter: grayscale(1) !important;
    }

    /* Grid */
    #incrypted-widget .incrypted-informer {
      max-width: none !important;
      margin: 0 !important;
      padding: 0 32px !important;
      display: grid !important;
      grid-template-columns: repeat(3, 1fr) !important;
      gap: 16px !important;
      background: transparent !important;
    }

    /* Card */
    #incrypted-widget .incrypted-informer-item {
      background: #fff !important;
      border: 1px solid var(--border) !important;
      border-radius: 0 !important;
      overflow: hidden !important;
      display: flex !important;
      flex-direction: column !important;
      box-shadow: none !important;
    }

    #incrypted-widget .incrypted-informer-item:hover {
      border-color: var(--accent-hot) !important;
    }

    /* Image */
    #incrypted-widget .incrypted-informer-item-image {
      aspect-ratio: 16/9 !important;
      overflow: hidden !important;
    }

    #incrypted-widget .incrypted-informer-item-image img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      display: block !important;
      transition: transform 0.3s ease !important;
    }

    #incrypted-widget .incrypted-informer-item:hover .incrypted-informer-item-image img {
      transform: scale(1.03) !important;
    }

    /* Title */
    #incrypted-widget .incrypted-informer-item-title {
      padding: 14px 16px 8px !important;
      flex: 1 !important;
      background: transparent !important;
    }

    #incrypted-widget .incrypted-informer-item-title a {
      font-family: var(--font-serif) !important;
      font-size: 15px !important;
      line-height: 1.4 !important;
      color: var(--ink) !important;
      text-decoration: none !important;
    }

    #incrypted-widget .incrypted-informer-item-title a:hover {
      color: var(--accent-hot) !important;
    }

    /* Meta / date */
    #incrypted-widget .incrypted-informer-item-meta {
      padding: 0 16px 14px !important;
      background: transparent !important;
    }

    #incrypted-widget .incrypted-informer-item-meta-time {
      font-family: var(--font-mono) !important;
      font-size: 11px !important;
      color: var(--ink-muted) !important;
      background: transparent !important;
    }

    /* Hide "Получить такой информер" */
    #incrypted-widget a[href*="about/#contact"] {
      display: none !important;
    }

