    /* ── Tech Hero: Layered atmospheric depth (Cycle 2) ── */
    .tech-hero {
      position: relative;
      overflow: hidden;
    }

    /* Layer 1: Multi-gradient vignette backdrop */
    .tech-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 65% at 50% 80%, rgba(231, 65, 50, 0.07), transparent 60%),
        radial-gradient(ellipse 70% 45% at 75% 20%, rgba(231, 65, 50, 0.04), transparent 50%),
        radial-gradient(ellipse 45% 50% at 25% 55%, rgba(231, 65, 50, 0.03), transparent 55%),
        linear-gradient(180deg, transparent 0%, transparent 55%, rgba(26, 15, 10, 0.5) 78%, rgba(26, 15, 10, 0.92) 100%);
      pointer-events: none;
      z-index: 0;
    }

    /* Layer 2: SVG noise texture for grain */
    .tech-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.032;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 256px 256px;
      pointer-events: none;
      z-index: 1;
    }

    /* Layer 3: Atmospheric glow orb */
    .tech-hero-glow {
      position: absolute;
      width: 650px;
      height: 420px;
      top: 35%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: radial-gradient(ellipse at center, rgba(231, 65, 50, 0.055), transparent 70%);
      filter: blur(65px);
      pointer-events: none;
      z-index: 0;
    }

    .tech-hero .hero-label,
    .tech-hero .hero-heading,
    .tech-hero .hero-body {
      position: relative;
      z-index: 2;
    }

    /* Layer 4: Text shadow stacking for heading drama (enhanced) */
    .tech-hero .hero-heading {
      text-shadow:
        0 0 20px rgba(231, 65, 50, 0.18),
        0 0 50px rgba(231, 65, 50, 0.12),
        0 0 100px rgba(231, 65, 50, 0.06),
        0 0 160px rgba(231, 65, 50, 0.03),
        0 2px 8px rgba(0, 0, 0, 0.5);
    }

    /* Layer 5: Background photograph (Cycle 43) */
    .tech-hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('/assets/backgrounds/technology-hero-bg.webp');
      background-image: image-set(
        url('/assets/backgrounds/technology-hero-bg.avif') type('image/avif'),
        url('/assets/backgrounds/technology-hero-bg.webp') type('image/webp')
      );
      background-size: cover;
      background-position: center;
      transform: scale(1.3);
      opacity: 0.12;
      pointer-events: none;
      z-index: 0;
    }

    @media (max-width: 768px) {
      .tech-hero-bg {
        background-image: url('/assets/backgrounds/technology-hero-bg-mobile.webp');
        background-image: image-set(
          url('/assets/backgrounds/technology-hero-bg-mobile.avif') type('image/avif'),
          url('/assets/backgrounds/technology-hero-bg-mobile.webp') type('image/webp')
        );
      }
    }

    /* ── Tech Hero: Circuit-board grid pattern ── */
    .tech-hero-grid {
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(0deg, rgba(245,240,235,0.025) 0px, transparent 1px, transparent 60px),
        repeating-linear-gradient(90deg, rgba(245,240,235,0.025) 0px, transparent 1px, transparent 60px);
      mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, rgba(0,0,0,0.5) 0%, transparent 70%);
      -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, rgba(0,0,0,0.5) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }


    /* ── Tech Hero: Bottom stat indicators ── */
    .tech-hero-stats {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      margin-top: 3.5rem;
      position: relative;
      z-index: 2;
    }
    .tech-hero-stat {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.35rem;
    }
    .tech-hero-stat-value {
      font-family: var(--font-accent);
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 400;
      color: var(--brand-red);
      letter-spacing: -0.02em;
      line-height: 1;
      text-shadow: 0 0 40px rgba(231, 65, 50, 0.3), 0 0 80px rgba(231, 65, 50, 0.1);
    }
    .tech-hero-stat-label {
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .tech-hero-stat-divider {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, transparent, rgba(231, 65, 50, 0.15), transparent);
    }
    @media (max-width: 768px) {
      .tech-hero-stats {
        gap: 1.5rem;
        margin-top: 2.5rem;
      }
      .tech-hero-stat-divider {
        height: 30px;
      }
    }

    /* ── Section transition accent (Cycle 27) ── */
    .section-transition-accent {
      position: relative;
      z-index: 6;
      height: 1px;
      background: linear-gradient(to right, transparent 5%, rgba(231, 65, 50, 0.28) 35%, rgba(231, 65, 50, 0.4) 50%, rgba(231, 65, 50, 0.28) 65%, transparent 95%);
      box-shadow: 0 0 12px rgba(231, 65, 50, 0.15), 0 0 32px rgba(231, 65, 50, 0.06);
    }

    /* ── Section label ── */
    .section-label {
      display: block;
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--brand-red);
      margin-bottom: 1.25rem;
    }

    /* ── Card Visual: Fractional Segments ── */
    .token-fraction-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 200px;
      height: 80px;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .bento-card:hover .token-fraction-visual { transform: scale(1.1); }
    .token-bar {
      display: flex;
      gap: 3px;
      width: 100%;
      height: 32px;
      align-items: stretch;
    }
    .token-segment {
      flex: 1;
      background: rgba(245, 240, 235, 0.06);
      border: 1px solid rgba(245, 240, 235, 0.08);
      border-radius: 3px;
      transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
    }
    .token-segment-active {
      background: rgba(231, 65, 50, 0.15);
      border-color: rgba(231, 65, 50, 0.3);
    }
    .bento-card:hover .token-segment-active {
      background: rgba(231, 65, 50, 0.22);
      border-color: rgba(231, 65, 50, 0.4);
    }

    /* ── Card Visual: Governance Node Ring ── */
    .token-governance-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 180px;
      height: 80px;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .bento-card:hover .token-governance-visual { transform: scale(1.1); }
    .governance-ring {
      width: 100%;
      height: 100%;
    }
    .gov-line {
      stroke: rgba(245, 240, 235, 0.08);
      stroke-width: 1;
      transition: stroke 0.5s var(--ease-out);
    }
    .gov-spoke {
      stroke: rgba(245, 240, 235, 0.05);
      stroke-width: 0.75;
      stroke-dasharray: 2 2;
      transition: stroke 0.5s var(--ease-out);
    }
    .gov-covenant {
      fill: rgba(231, 65, 50, 0.1);
      stroke: rgba(231, 65, 50, 0.2);
      stroke-width: 0.75;
      transition: fill 0.5s var(--ease-out), stroke 0.5s var(--ease-out);
    }
    .gov-node {
      fill: rgba(245, 240, 235, 1);
      stroke: rgba(245, 240, 235, 1);
      stroke-width: 1;
      animation: gov-pulse 4s var(--ease-out) infinite;
    }
    .gov-node-1 { animation-delay: 0s; }
    .gov-node-2 { animation-delay: 1s; }
    .gov-node-3 { animation-delay: 2s; }
    .gov-node-4 { animation-delay: 3s; }

    @keyframes gov-pulse {
      0%, 100% {
        fill: rgba(245, 240, 235, 1);
        stroke: rgba(245, 240, 235, 1);
        filter: drop-shadow(0 0 0 transparent);
      }
      25% {
        fill: rgba(231, 65, 50, 1);
        stroke: rgba(231, 65, 50, 1);
        filter: drop-shadow(0 0 6px rgba(231, 65, 50, 0.3));
      }
      50% {
        fill: rgba(231, 65, 50, 1);
        stroke: rgba(231, 65, 50, 1);
        filter: drop-shadow(0 0 2px rgba(231, 65, 50, 0.1));
      }
    }

    /* Hover intensification */
    .bento-card:hover .gov-node {
      fill: rgba(245, 240, 235, 1);
      stroke: rgba(245, 240, 235, 1);
    }
    .bento-card:hover .gov-line {
      stroke: rgba(245, 240, 235, 0.12);
    }
    .bento-card:hover .gov-spoke {
      stroke: rgba(245, 240, 235, 0.08);
    }
    .bento-card:hover .gov-covenant {
      fill: rgba(231, 65, 50, 0.18);
      stroke: rgba(231, 65, 50, 0.35);
    }

    /* ── Collateral Monitoring Section ── */
    .monitoring-section {
      position: relative;
      overflow: hidden;
    }
    .monitoring-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(26, 15, 10, 0.45) 0%, rgba(26, 15, 10, 0.15) 8%, transparent 18%),
        radial-gradient(ellipse 130% 150% at 0% 20%, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.65) 50%, transparent 85%),
        radial-gradient(ellipse 50% 40% at 20% 30%, rgba(231, 65, 50, 0.05), transparent 65%),
        radial-gradient(ellipse 45% 55% at 80% 70%, rgba(245, 240, 235, 0.02), transparent 55%),
        linear-gradient(to bottom, transparent 55%, rgba(26, 15, 10, 0.5) 78%, rgba(26, 15, 10, 0.92) 100%);
      pointer-events: none;
      z-index: 0;
    }
    .monitoring-section::after {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.032;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 256px 256px;
      pointer-events: none;
      z-index: 1;
    }
    .monitoring-glow {
      position: absolute;
      top: 15%;
      left: 50%;
      transform: translateX(-50%);
      width: 520px;
      height: 360px;
      background: radial-gradient(ellipse at center, rgba(231, 65, 50, 0.10) 0%, rgba(231, 65, 50, 0.03) 45%, transparent 70%);
      filter: blur(58px);
      pointer-events: none;
      z-index: 0;
    }
    .monitoring-section .section-heading {
      text-shadow:
        0 0 40px rgba(231, 65, 50, 0.15),
        0 0 80px rgba(231, 65, 50, 0.06),
        0 2px 16px rgba(0,0,0,0.7);
    }
    .monitoring-section .section-container {
      position: relative;
      z-index: 2;
    }
    .monitoring-section .bento-card {
      box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,240,235,0.04);
      transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
    }
    .monitoring-section .bento-card:hover {
      box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(231, 65, 50, 0.08);
    }

    /* Dark bento treatment: matches investors page pattern.
       Two cards flip to dark charcoal; one keeps cream as
       a deliberate light accent for dramatic contrast. */
    .monitoring-section .bento-card:not(.bento-card--light-accent) {
      background: rgba(10, 8, 6, 0.92);
      border-color: rgba(245, 240, 235, 0.06);
    }
    .monitoring-section .bento-card--light-accent {
      background: rgba(245, 240, 235, 0.07);
      border-color: rgba(245, 240, 235, 0.09);
    }

    /* ── Monitoring: Heading accent rule ── */
    .monitoring-section .section-heading::before {
      content: '';
      display: block;
      width: 40px;
      height: 2px;
      background: var(--brand-red);
      margin-bottom: 1.25rem;
      border-radius: 1px;
      box-shadow: 0 0 10px rgba(231, 65, 50, 0.2);
    }

    /* ── Monitoring: Stat Highlight ── */
    .monitoring-stat-highlight {
      display: flex;
      justify-content: center;
      margin-top: 2rem;
      margin-bottom: 3rem;
    }
    .monitoring-stat-compare {
      display: flex;
      align-items: center;
      gap: 2rem;
      padding: 1.5rem 2.5rem;
      background: rgba(245, 240, 235, 0.02);
      border: 1px solid rgba(245, 240, 235, 0.06);
      border-radius: 12px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    }
    .monitoring-stat-old, .monitoring-stat-new {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.3rem;
    }
    .monitoring-stat-number {
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: clamp(1.8rem, 3.5vw, 2.5rem);
      font-weight: 400;
      color: var(--text-primary);
      line-height: 1;
      letter-spacing: -0.02em;
      display: inline-block;
      transform-origin: center;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .monitoring-stat-compare:hover .monitoring-stat-number {
      transform: scale(1.1);
    }
    .monitoring-stat-new .monitoring-stat-number {
      color: var(--brand-red);
      text-shadow: 0 0 30px rgba(231, 65, 50, 0.25);
    }
    .monitoring-stat-desc {
      font-family: var(--font-body);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-dim);
    }
    .monitoring-stat-arrow {
      color: rgba(245, 240, 235, 0.15);
      flex-shrink: 0;
    }
    @media (max-width: 768px) {
      .monitoring-stat-compare {
        gap: 1.2rem;
        padding: 1.2rem 1.5rem;
      }
    }

    /* ── Comparison Visual ── */
    .monitor-comparison {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      width: 100%;
      max-width: 420px;
    }
    .monitor-side {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .monitor-label {
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .monitor-track {
      height: 8px;
      border-radius: 4px;
      background: rgba(245, 240, 235, 0.06);
      overflow: hidden;
    }
    .monitor-fill {
      height: 100%;
      border-radius: 4px;
      transition: width 1.2s var(--ease-out);
    }
    .monitor-fill-industry {
      width: 5%;
      background: rgba(245, 240, 235, 0.2);
    }
    .monitor-fill-pamgia {
      width: 100%;
      background: linear-gradient(90deg, var(--brand-red), rgba(231, 65, 50, 0.6));
      box-shadow: 0 0 12px rgba(231, 65, 50, 0.2);
    }
    .monitor-pct {
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 400;
      color: var(--text-muted);
      letter-spacing: 0.02em;
    }
    .monitor-divider {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.25rem;
      flex-shrink: 0;
    }
    .monitor-vs {
      font-family: var(--font-body);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-dim);
    }

    /* ── Quality Visual: Layered Data Bars ── */
    .monitor-quality-visual {
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      gap: 10px;
      width: 100%;
      max-width: 200px;
    }
    .monitor-data-row {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .monitor-data-label {
      font-family: var(--font-body);
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-muted);
      width: 70px;
      flex-shrink: 0;
      text-align: right;
    }
    .monitor-data-bar {
      flex: 1;
      height: 6px;
      border-radius: 3px;
      background: rgba(245, 240, 235, 0.06);
      overflow: hidden;
    }
    .monitor-data-fill {
      height: 100%;
      border-radius: 3px;
      transition: width 1s var(--ease-out),
                  background 0.4s var(--ease-out),
                  box-shadow 0.4s var(--ease-out);
    }
    .monitor-data-fill-condition {
      width: 88%;
      background: linear-gradient(90deg, rgba(231, 65, 50, 0.5), rgba(231, 65, 50, 0.2));
    }
    .monitor-data-fill-storage {
      width: 95%;
      background: linear-gradient(90deg, rgba(231, 65, 50, 0.4), rgba(231, 65, 50, 0.15));
    }
    .monitor-data-fill-maturation {
      width: 72%;
      background: linear-gradient(90deg, rgba(231, 65, 50, 0.35), rgba(231, 65, 50, 0.12));
    }
    /* Hover: brighten the bars + soft glow */
    .bento-card:hover .monitor-data-fill-condition {
      background: linear-gradient(90deg, rgba(231, 65, 50, 0.95), rgba(231, 65, 50, 0.55));
      box-shadow: 0 0 8px rgba(231, 65, 50, 0.35);
    }
    .bento-card:hover .monitor-data-fill-storage {
      background: linear-gradient(90deg, rgba(231, 65, 50, 0.9), rgba(231, 65, 50, 0.5));
      box-shadow: 0 0 8px rgba(231, 65, 50, 0.35);
    }
    .bento-card:hover .monitor-data-fill-maturation {
      background: linear-gradient(90deg, rgba(231, 65, 50, 0.85), rgba(231, 65, 50, 0.45));
      box-shadow: 0 0 8px rgba(231, 65, 50, 0.35);
    }
    .bento-card:hover .monitor-quality-visual { transform: scale(1.1); }

    /* Hover: oscillating-length interplay (skipped under reduced motion) */
    @media (prefers-reduced-motion: no-preference) {
      @keyframes quality-pulse-condition {
        0%   { width: 86.5%; }
        100% { width: 89.5%; }
      }
      @keyframes quality-pulse-storage {
        0%   { width: 93.5%; }
        100% { width: 96.5%; }
      }
      @keyframes quality-pulse-maturation {
        0%   { width: 70.5%; }
        100% { width: 73.5%; }
      }
      .bento-card:hover .monitor-data-fill-condition {
        animation: quality-pulse-condition 2.4s ease-in-out 0s infinite alternate backwards;
      }
      .bento-card:hover .monitor-data-fill-storage {
        animation: quality-pulse-storage 1.8s ease-in-out 0.7s infinite alternate backwards;
      }
      .bento-card:hover .monitor-data-fill-maturation {
        animation: quality-pulse-maturation 2.8s ease-in-out 0.3s infinite alternate backwards;
      }
    }

    /* ── Quarterly Visual: Cycle Indicators ── */
    .monitor-cycle-visual {
      display: flex;
      align-items: center;
      gap: 12px;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .bento-card:hover .monitor-cycle-visual { transform: scale(1.1); }
    .monitor-quarter {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }
    .monitor-quarter-ring {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1.5px solid rgba(245, 240, 235, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--text-muted);
      transition: border-color 0.4s var(--ease-out), color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    }
    .monitor-quarter-active .monitor-quarter-ring {
      border-color: var(--brand-red);
      color: var(--text-primary);
      box-shadow: 0 0 16px rgba(231, 65, 50, 0.15);
    }
    .monitor-quarter-label {
      font-family: var(--font-body);
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-dim);
    }
    .monitor-quarter-active .monitor-quarter-label {
      color: var(--text-muted);
    }
    .monitor-quarter-connector {
      width: 16px;
      height: 1.5px;
      background: rgba(245, 240, 235, 0.08);
      flex-shrink: 0;
    }

    /* ── Cask Verification Grid (Cycle 12 — Signature Element) ── */
    .cask-verify-container {
      position: relative;
      width: 100%;
      max-width: 520px;
      margin: 0 auto 1.5rem;
      padding: 2rem 1.5rem 1rem;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .bento-card:hover .cask-verify-container { transform: scale(1.1); }

    /* Grid of cask dots */
    .cask-verify-grid {
      display: grid;
      grid-template-columns: repeat(10, 1fr);
      gap: 10px;
      justify-items: center;
      align-items: center;
    }

    .cask-verify-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(245, 240, 235, 0.10);
      border: 1px solid rgba(245, 240, 235, 0.08);
      /* will-change hint for GSAP perf */
      will-change: opacity, box-shadow;
    }

    /* Verified state (applied by GSAP) */
    .cask-verify-dot.is-verified {
      background: var(--brand-red);
      border-color: rgba(231, 65, 50, 0.5);
      box-shadow: 0 0 8px rgba(231, 65, 50, 0.3), 0 0 20px rgba(231, 65, 50, 0.1);
    }

    /* Scanning beam overlay */
    .cask-verify-beam {
      position: absolute;
      top: 0;
      left: 0;
      width: 60px;
      height: 100%;
      background: linear-gradient(90deg, transparent 0%, rgba(231, 65, 50, 0.08) 40%, rgba(231, 65, 50, 0.12) 50%, rgba(231, 65, 50, 0.08) 60%, transparent 100%);
      pointer-events: none;
      opacity: 0;
      z-index: 2;
    }

    /* Quarter labels row */
    .cask-verify-labels {
      display: flex;
      justify-content: space-between;
      margin-top: 1rem;
      padding: 0 0.25rem;
    }

    .cask-verify-qlabel {
      font-family: var(--font-body);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-dim);
      opacity: 0;
      transition: color 0.4s var(--ease-out);
    }

    .cask-verify-qlabel.is-active {
      color: var(--brand-red);
    }

    /* Final "100% Verified" label */
    .cask-verify-complete {
      text-align: center;
      margin-top: 0.75rem;
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand-red);
      opacity: 0;
      text-shadow: 0 0 20px rgba(231, 65, 50, 0.3);
    }

    /* Mobile: smaller dots, tighter gap */
    @media (max-width: 768px) {
      .cask-verify-container {
        max-width: 340px;
        padding: 1.5rem 1rem 0.75rem;
      }
      .cask-verify-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 8px;
      }
      .cask-verify-dot {
        width: 10px;
        height: 10px;
      }
      .cask-verify-beam {
        width: 40px;
      }
    }

    /* ── Borrower Intelligence Section ── */
    .intelligence-section {
      position: relative;
      overflow: hidden;
    }

    /* Layer 1: Multi-gradient vignette backdrop */
    .intelligence-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 0.15) 8%, transparent 18%),
        radial-gradient(ellipse 50% 55% at 50% 15%, rgba(231, 65, 50, 0.045), transparent 60%),
        radial-gradient(ellipse 45% 40% at 85% 50%, rgba(231, 65, 50, 0.03), transparent 55%),
        radial-gradient(ellipse 40% 45% at 10% 60%, rgba(245, 240, 235, 0.02), transparent 50%),
        linear-gradient(to bottom, transparent 55%, rgba(10, 10, 10, 0.5) 78%, rgba(10, 10, 10, 0.92) 100%);
      pointer-events: none;
      z-index: 0;
    }

    /* Layer 2: SVG noise texture for grain */
    .intelligence-section::after {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.033;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 256px 256px;
      pointer-events: none;
      z-index: 1;
    }

    /* Layer 3: Atmospheric glow orb */
    .intelligence-glow {
      position: absolute;
      width: 500px;
      height: 350px;
      top: 25%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: radial-gradient(ellipse at center, rgba(231, 65, 50, 0.05), transparent 70%);
      filter: blur(58px);
      pointer-events: none;
      z-index: 0;
    }

    .intelligence-section .section-container {
      position: relative;
      z-index: 2;
    }

    /* Layer 4: Heading text-shadow stacking */
    .intelligence-section .section-heading {
      text-shadow:
        0 0 40px rgba(231, 65, 50, 0.12),
        0 0 80px rgba(231, 65, 50, 0.05),
        0 2px 16px rgba(0, 0, 0, 0.7),
        0 4px 32px rgba(0, 0, 0, 0.4);
    }

    .intelligence-section .section-body {
      position: relative;
      z-index: 2;
    }

    /* Layer 5: Enhanced bento card shadows within this section */
    .intelligence-section .bento-card {
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(245, 240, 235, 0.04);
      transition: box-shadow 0.5s var(--ease-out), transform 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
    }
    .intelligence-section .bento-card:hover {
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(231, 65, 50, 0.08);
    }

    /* ── Card Visual: Stock Bar Chart ── */
    .intel-stock-visual {
      display: flex;
      align-items: flex-end;
      gap: 4px;
      height: 80px;
      width: 100%;
      max-width: 200px;
      position: relative;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .bento-card:hover .intel-stock-visual { transform: scale(1.1); }
    .intel-stock-bar {
      flex: 1;
      border-radius: 3px 3px 0 0;
      background: rgba(245, 240, 235, 0.08);
      transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    }
    .intel-stock-bar-active {
      background: linear-gradient(0deg, rgba(231, 65, 50, 0.15), rgba(231, 65, 50, 0.3));
    }
    .intel-stock-avg {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 52px;
      border-top: 1px dashed rgba(245, 240, 235, 0.1);
    }
    .bento-card:hover .intel-stock-bar-active {
      background: linear-gradient(0deg, rgba(231, 65, 50, 0.25), rgba(231, 65, 50, 0.45));
    }
    .bento-card:hover .intel-stock-bar-active:last-child {
      box-shadow: 0 0 12px rgba(231, 65, 50, 0.2);
    }

    /* ── Card Visual: Inventory Grid ── */
    .intel-condition-visual {
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      display: grid;
      grid-template-columns: repeat(4, 36px);
      gap: 8px;
      justify-content: center;
    }
    .intel-cask-cell {
      width: 36px;
      height: 36px;
      background: rgba(245, 240, 235, 0.06);
      border: 1px solid rgba(245, 240, 235, 0.12);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.4s var(--ease-out);
    }
    .intel-cask-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(245, 240, 235, 0.35);
      transition:
        background 0.7s var(--ease-out),
        box-shadow 0.7s var(--ease-out);
    }
    .intel-cask-dot-flagged {
      background: rgba(231, 65, 50, 0.65);
      box-shadow: 0 0 6px rgba(231, 65, 50, 0.2);
      animation: intel-cask-dot-pulse 0.7s var(--ease-out);
    }
    @keyframes intel-cask-dot-pulse {
      from {
        background: rgba(245, 240, 235, 0.35);
        box-shadow: 0 0 0 rgba(231, 65, 50, 0);
      }
      to {
        background: rgba(231, 65, 50, 0.65);
        box-shadow: 0 0 6px rgba(231, 65, 50, 0.2);
      }
    }
    .bento-card:hover .intel-cask-dot {
      background: rgba(245, 240, 235, 0.45);
    }
    .bento-card:hover .intel-cask-dot-flagged {
      background: rgba(231, 65, 50, 0.7);
      box-shadow: 0 0 8px rgba(231, 65, 50, 0.25);
    }
    .bento-card:hover .intel-condition-visual { transform: scale(1.1); }

    /* ── Card Visual: Market Benchmark Tracks ── */
    .intel-market-visual {
      display: flex;
      flex-direction: column;
      gap: 18px;
      width: 100%;
      max-width: 200px;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .bento-card:hover .intel-market-visual { transform: scale(1.1); }
    .intel-market-row {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .intel-market-label {
      font-family: var(--font-body);
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .intel-market-track {
      position: relative;
      height: 3px;
      background: rgba(245, 240, 235, 0.1);
      border-radius: 2px;
      width: 100%;
    }
    .intel-market-tick {
      position: absolute;
      top: -5px;
      width: 3px;
      height: 13px;
      border-radius: 2px;
      transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    }
    .intel-market-tick-avg {
      background: rgba(245, 240, 235, 0.3);
    }
    .intel-market-tick-yours {
      background: var(--brand-red);
      opacity: 0.85;
      box-shadow: 0 0 6px rgba(231, 65, 50, 0.2);
    }
    .bento-card:hover .intel-market-tick-yours {
      opacity: 1;
      box-shadow: 0 0 8px rgba(231, 65, 50, 0.3);
    }

    /* Market Context: hover-only tick drift (subtle "live data" feel) */
    @media (prefers-reduced-motion: no-preference) {
      @keyframes market-tick-drift-1 {
        0%   { transform: translateX(-3px); }
        100% { transform: translateX(3px); }
      }
      @keyframes market-tick-drift-2 {
        0%   { transform: translateX(-4px); }
        100% { transform: translateX(2px); }
      }
      @keyframes market-tick-drift-3 {
        0%   { transform: translateX(-2px); }
        100% { transform: translateX(4px); }
      }
      .bento-card:hover .intel-market-row:nth-child(1) .intel-market-tick-yours {
        animation: market-tick-drift-1 2.4s ease-in-out 0s infinite alternate;
      }
      .bento-card:hover .intel-market-row:nth-child(2) .intel-market-tick-yours {
        animation: market-tick-drift-2 1.8s ease-in-out 0.7s infinite alternate;
      }
      .bento-card:hover .intel-market-row:nth-child(3) .intel-market-tick-yours {
        animation: market-tick-drift-3 2.8s ease-in-out 0.3s infinite alternate;
      }
    }

    /* ── Borrower Intelligence: Free badge callout ── */
    .intel-free-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      margin-top: 1.25rem;
      margin-bottom: 2rem;
      padding: 0.5rem 1rem;
      background: rgba(231, 65, 50, 0.06);
      border: 1px solid rgba(231, 65, 50, 0.15);
      border-radius: 6px;
    }
    .intel-free-badge-icon {
      color: var(--brand-red);
      flex-shrink: 0;
      display: flex;
    }
    .intel-free-badge-text {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--text-muted);
    }

    /* ── Borrower Intelligence: Diagonal accent lines ── */
    .intel-accent-lines {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 0;
    }
    .intel-accent-lines::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 1px;
      height: 140%;
      background: linear-gradient(180deg, transparent, rgba(231, 65, 50, 0.08) 30%, rgba(231, 65, 50, 0.12) 50%, rgba(231, 65, 50, 0.08) 70%, transparent);
      transform: rotate(15deg);
    }
    .intel-accent-lines::after {
      content: '';
      position: absolute;
      top: -20%;
      right: 5%;
      width: 1px;
      height: 140%;
      background: linear-gradient(180deg, transparent, rgba(231, 65, 50, 0.04) 30%, rgba(231, 65, 50, 0.06) 50%, rgba(231, 65, 50, 0.04) 70%, transparent);
      transform: rotate(15deg);
    }

    /* ── Borrower Intelligence: Card visual min-height ── */
    .intelligence-section .bento-visual {
      min-height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ── Investor Transparency Section ── */
    .transparency-section {
      position: relative;
      overflow: hidden;
    }
    .transparency-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(26, 15, 10, 0.45) 0%, rgba(26, 15, 10, 0.15) 8%, transparent 18%),
        radial-gradient(ellipse 60% 50% at 50% 15%, rgba(231, 65, 50, 0.045), transparent 70%),
        radial-gradient(ellipse 40% 55% at 85% 45%, rgba(245, 240, 235, 0.02), transparent 60%),
        radial-gradient(ellipse 35% 50% at 10% 55%, rgba(245, 240, 235, 0.015), transparent 55%),
        linear-gradient(to bottom, transparent 55%, rgba(26, 15, 10, 0.5) 78%, rgba(26, 15, 10, 0.92) 100%);
      pointer-events: none;
      z-index: 0;
    }
    .transparency-section::after {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.033;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 256px 256px;
      pointer-events: none;
      z-index: 1;
    }
    .transparency-glow {
      position: absolute;
      top: 25%;
      left: 45%;
      width: 500px;
      height: 350px;
      background: radial-gradient(ellipse at center, rgba(231, 65, 50, 0.10), transparent 70%);
      filter: blur(58px);
      pointer-events: none;
      z-index: 0;
    }
    .transparency-section .section-heading {
      text-shadow:
        0 0 40px rgba(231, 65, 50, 0.18),
        0 0 80px rgba(231, 65, 50, 0.08),
        0 2px 16px rgba(0, 0, 0, 0.7),
        0 4px 32px rgba(0, 0, 0, 0.4);
    }
    .transparency-section .section-container {
      position: relative;
      z-index: 2;
    }
    .transparency-section .bento-card {
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(245, 240, 235, 0.04);
      transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-out), border-color 0.4s var(--ease-out);
    }
    .transparency-section .bento-card:hover {
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(231, 65, 50, 0.06), 0 0 60px rgba(231, 65, 50, 0.04);
    }

    /* ── Transparency: Half-card visual sizing (merged tokenization cards) ── */
    .transparency-section .bento-card-half .bento-visual {
      min-height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ── Card Visual: Dashboard Mockup ── */
    .transparency-dashboard {
      display: flex;
      flex-direction: column;
      gap: 8px;
      width: 100%;
      max-width: 340px;
    }
    .transparency-dash-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(245, 240, 235, 0.06);
    }
    .transparency-dash-tabs {
      display: flex;
      gap: 12px;
    }
    .transparency-dash-tab {
      font-family: var(--font-body);
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-dim);
      transition: color 0.4s var(--ease-out);
    }
    .transparency-dash-tab-active {
      color: var(--brand-red);
    }
    .transparency-live-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--brand-red);
      box-shadow: 0 0 8px rgba(231, 65, 50, 0.4);
      animation: transparency-pulse 2.5s ease-in-out infinite;
    }
    @keyframes transparency-pulse {
      0%, 100% { opacity: 0.6; box-shadow: 0 0 8px rgba(231, 65, 50, 0.3); }
      50% { opacity: 1; box-shadow: 0 0 14px rgba(231, 65, 50, 0.55); }
    }
    .transparency-dash-rows {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .transparency-dash-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 6px 0;
    }
    .transparency-dash-label {
      font-family: var(--font-body);
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-muted);
      width: 68px;
      flex-shrink: 0;
      text-align: right;
    }
    .transparency-dash-bar {
      flex: 1;
      height: 8px;
      border-radius: 4px;
      background: rgba(245, 240, 235, 0.05);
      overflow: hidden;
      position: relative;
    }
    .transparency-dash-fill {
      height: 100%;
      border-radius: 4px;
      transition: width 1s var(--ease-out), opacity 0.4s var(--ease-out);
    }
    .transparency-dash-fill-a {
      width: 58%;
      background: linear-gradient(90deg, rgba(231, 65, 50, 0.45), rgba(231, 65, 50, 0.15));
    }
    .transparency-dash-fill-b {
      width: 52%;
      background: linear-gradient(90deg, rgba(231, 65, 50, 0.35), rgba(231, 65, 50, 0.1));
    }
    .transparency-dash-fill-c {
      width: 63%;
      background: linear-gradient(90deg, rgba(231, 65, 50, 0.4), rgba(231, 65, 50, 0.12));
    }
    .transparency-dash-fill-d {
      width: 55%;
      background: linear-gradient(90deg, rgba(231, 65, 50, 0.3), rgba(231, 65, 50, 0.08));
    }
    .transparency-dash-ltv-label {
      font-family: var(--font-body);
      font-size: 0.55rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(231, 65, 50, 0.5);
      margin-bottom: 8px;
    }
    .transparency-dash-value {
      font-family: var(--font-body);
      font-size: 0.65rem;
      font-weight: 500;
      color: var(--text-muted);
      width: 32px;
      text-align: right;
      flex-shrink: 0;
    }
    .bento-card:hover .transparency-dash-fill-a { width: 61%; }
    .bento-card:hover .transparency-dash-fill-b { width: 54%; }
    .bento-card:hover .transparency-dash-fill-c { width: 65%; }
    .bento-card:hover .transparency-dash-fill-d { width: 57%; }
    .bento-card:hover .transparency-dash-tab-active {
      text-shadow: 0 0 8px rgba(231, 65, 50, 0.3);
    }

    /* ── Parallax Data Layer Peel (Cycle 13) ── */
    .parallax-card {
      overflow: visible !important;
    }
    .parallax-card .bento-visual {
      margin-bottom: 3.5rem;
    }
    .parallax-layer {
      position: relative;
      padding: 8px 12px;
      border-radius: 6px;
      border: 1px solid transparent;
      will-change: transform;
    }
    .parallax-layer-front {
      z-index: 3;
    }
    .parallax-layer-mid {
      z-index: 2;
    }
    .parallax-layer-back {
      z-index: 1;
    }
    .parallax-layer-label {
      position: absolute;
      right: 8px;
      top: 4px;
      font-family: var(--font-body);
      font-size: 0.42rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--brand-red);
      opacity: 0;
      white-space: nowrap;
      pointer-events: none;
    }
    .parallax-raw-data {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .raw-row {
      display: flex;
      gap: 10px;
      align-items: center;
      font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
      font-size: 0.48rem;
      letter-spacing: 0.02em;
    }
    .raw-hash {
      color: rgba(245, 240, 235, 0.22);
    }
    .raw-type {
      color: rgba(231, 65, 50, 0.3);
      font-weight: 500;
    }
    .raw-ts {
      color: rgba(245, 240, 235, 0.12);
      margin-left: auto;
    }
    @media (max-width: 768px) {
      .parallax-card .bento-visual {
        margin-bottom: 2.5rem;
      }
    }

    /* ── Card Visual: Audit Ledger ── */
    .transparency-ledger {
      display: flex;
      flex-direction: column;
      gap: 6px;
      width: 100%;
      max-width: 220px;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .bento-card:hover .transparency-ledger { transform: scale(1.1); }
    .transparency-ledger-entry {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 7px 10px;
      background: rgba(245, 240, 235, 0.03);
      border: 1px solid rgba(245, 240, 235, 0.05);
      border-radius: 5px;
      transition: border-color 0.4s var(--ease-out), background 0.4s var(--ease-out);
    }
    .transparency-ledger-check {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      border: 1.5px solid rgba(245, 240, 235, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: border-color 0.4s var(--ease-out), background 0.4s var(--ease-out);
    }
    .transparency-ledger-check-verified {
      border-color: rgba(231, 65, 50, 0.4);
      background: rgba(231, 65, 50, 0.08);
    }
    .transparency-ledger-check-verified::after {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--brand-red);
      opacity: 0.7;
      transition: opacity 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    }
    .transparency-ledger-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1px;
    }
    .transparency-ledger-type {
      font-family: var(--font-body);
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-primary);
      opacity: 0.7;
    }
    .transparency-ledger-detail {
      font-family: var(--font-body);
      font-size: 0.55rem;
      font-weight: 400;
      letter-spacing: 0.04em;
      color: var(--text-dim);
    }
    .transparency-ledger-hash {
      font-family: var(--font-body);
      font-size: 0.5rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      color: var(--text-dim);
      flex-shrink: 0;
    }
    .bento-card:hover .transparency-ledger-entry {
      border-color: rgba(245, 240, 235, 0.08);
      background: rgba(245, 240, 235, 0.04);
    }
    .bento-card:hover .transparency-ledger-check-verified::after {
      opacity: 1;
      box-shadow: 0 0 6px rgba(231, 65, 50, 0.3);
    }

    /* ── Card Visual: Position → Cask Mapping ── */
    .transparency-mapping {
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      gap: 0;
      width: 100%;
      max-width: 320px;
      position: relative;
    }
    .transparency-position-block {
      padding: 8px 12px;
      background: rgba(231, 65, 50, 0.06);
      border: 1px solid rgba(231, 65, 50, 0.15);
      border-radius: 6px;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: border-color 0.4s var(--ease-out), background 0.4s var(--ease-out);
    }
    .transparency-position-icon {
      width: 10px;
      height: 10px;
      border-radius: 2px;
      background: rgba(231, 65, 50, 0.35);
      flex-shrink: 0;
    }
    .transparency-position-label {
      font-family: var(--font-body);
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-primary);
      opacity: 0.8;
    }
    .transparency-connector {
      display: flex;
      align-items: stretch;
      margin-left: 18px;
      height: 20px;
      position: relative;
    }
    .transparency-connector::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 1px;
      background: rgba(231, 65, 50, 0.15);
    }
    .transparency-connector::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 14px;
      height: 1px;
      background: rgba(231, 65, 50, 0.15);
    }
    .transparency-cask-group {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-left: 32px;
    }
    .transparency-cask-row {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 5px 10px;
      background: rgba(245, 240, 235, 0.025);
      border: 1px solid rgba(245, 240, 235, 0.05);
      border-radius: 4px;
      position: relative;
      transition: border-color 0.4s var(--ease-out), background 0.4s var(--ease-out);
    }
    .transparency-cask-row::before {
      content: "";
      position: absolute;
      right: 100%;
      top: 50%;
      width: 14px;
      height: 1px;
      background: rgba(231, 65, 50, 0.12);
    }
    .transparency-cask-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(245, 240, 235, 0.3);
      flex-shrink: 0;
      transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    }
    .transparency-cask-id {
      font-family: var(--font-body);
      font-size: 0.55rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .transparency-cask-status {
      font-family: var(--font-body);
      font-size: 0.5rem;
      font-weight: 400;
      letter-spacing: 0.04em;
      color: var(--text-dim);
      margin-left: auto;
    }
    .bento-card:hover .transparency-position-block {
      border-color: rgba(231, 65, 50, 0.25);
      background: rgba(231, 65, 50, 0.09);
    }
    .bento-card:hover .transparency-cask-row {
      border-color: rgba(245, 240, 235, 0.08);
      background: rgba(245, 240, 235, 0.035);
    }
    .bento-card:hover .transparency-cask-dot {
      background: rgba(231, 65, 50, 0.5);
      box-shadow: 0 0 6px rgba(231, 65, 50, 0.2);
    }
    .bento-card:hover .transparency-connector::before,
    .bento-card:hover .transparency-connector::after {
      background: rgba(231, 65, 50, 0.25);
    }
    .bento-card:hover .transparency-cask-row::before {
      background: rgba(231, 65, 50, 0.2);
    }
    .bento-card:hover .transparency-mapping { transform: scale(1.1); }

    /* Section 6 CTA rules removed — CTA now uses canonical .section-cta
       pattern defined in shared/css/shared.css (same lamp stack as landing).
       Un-scoped .lamp-* rules here previously leaked across pages via global
       scope; they are now properly namespaced under .section-cta in shared. */

    @media (max-width: 768px) {
      /* Hero + section atmospheric glows */
      .tech-hero-glow { width: 300px; height: 210px; filter: blur(48px); }
      .monitoring-glow { width: 280px; height: 200px; filter: blur(44px); }
      .intelligence-glow {
        width: 260px;
        height: 180px;
        filter: blur(42px);
      }
      .transparency-glow {
        width: 260px;
        height: 180px;
        left: 50%;
        transform: translateX(-50%);
        filter: blur(42px);
      }
    }

    @media (max-width: 480px) {
      .tech-hero-glow { width: 230px; height: 160px; filter: blur(38px); }
      .monitoring-glow { width: 220px; height: 150px; filter: blur(36px); }
      .intelligence-glow { width: 210px; height: 140px; filter: blur(34px); }
      .transparency-glow { width: 210px; height: 140px; filter: blur(34px); }
    }

    /* ── Mobile minimum font-size overrides (audit fix) ───────────────────
       All of the following labels render below 12px on desktop (decorative
       sizing). On mobile viewports they drop to illegible sizes. Floor each
       to 0.75rem (12px) so they stay readable without changing desktop look.
    ─────────────────────────────────────────────────────────────────────── */
    @media (max-width: 768px) {
      .tech-hero-stat-label    { font-size: 0.75rem; }
      .monitoring-stat-desc    { font-size: 0.75rem; }
      .monitor-data-label      { font-size: 0.75rem; }
      .monitor-quarter-label   { font-size: 0.75rem; }
      .intel-market-label      { font-size: 0.75rem; }
      .transparency-dash-tab   { font-size: 0.75rem; }

      /* v3: tiny-text floor — Pamgia_Mobile_UX_Audit_v3 flagged 46 sub-12px
         elements on technology, smallest at 7.68px. Bump decorative ledger
         spans to 12px while keeping the monospace "blockchain ledger" look. */
      .raw-hash,
      .raw-type,
      .raw-ts { font-size: 0.75rem; }
      .transparency-ledger-hash,
      .transparency-ledger-detail,
      .transparency-ledger-type { font-size: 0.75rem; }
      .transparency-dash-label,
      .transparency-dash-value { font-size: 0.75rem; }
      .transparency-cask-status,
      .transparency-cask-id { font-size: 0.75rem; }
      .transparency-position-label { font-size: 0.75rem; }
      .monitor-quarter-ring { font-size: 0.75rem; }

      /* v3 section viewport fit — trim padding so heading + first card
         fit within ~650px visible area. */
      .static-section .section-container { padding: 3rem 5vw 2.5rem; }
    }
