
        :root {
      --gold: #C8A44D;
      --gold-soft: #E8D49A;
      --gold-dim: #8a6f35;
      --black: #0A0A0D;
      --navy: #0F172A;
      --charcoal: #1E293B;
      --glass: rgba(255, 255, 255, 0.05);
      --glass-border: rgba(200, 164, 77, 0.2);
      --text-primary: #F8F4EC;
      --text-secondary: rgba(248, 244, 236, 0.856);
      --text-muted: rgba(248, 244, 236, 1);
      --surface: #111827;
      --surface-2: #1E293B;
      --bg: #0A0A0D;
      --glow: rgba(200, 164, 77, 0.15);
      --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    [data-theme="light"] {
      --black: #FAFAF7;
      --navy: #F5F0E8;
      --charcoal: #EDE8DC;
      --glass: rgba(0, 0, 0, 0.04);
      --glass-border: rgba(200, 164, 77, 0.3);
      --text-primary: #0A0A0D;
      --text-secondary: rgba(10, 10, 13, 0.65);
      --text-muted: rgba(10, 10, 13, 1);
      --surface: #F0EBE0;
      --surface-2: #E8E0D0;
      --bg: #FAFAF7;
      --glow: rgba(200, 164, 77, 0.1);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      width: 100%;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text-primary);
      overflow-x: hidden;
      width: 100%;
      max-width: 100vw;
      transition: background 0.5s, color 0.5s;
    }


    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      line-height: 1.1;
    }

    /* ══════════════════ LOADER ══════════════════ */
    #loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: #030305;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .loader-rings {
      position: relative;
      width: 160px;
      height: 160px;
      margin-bottom: 40px;
    }

    .loader-ring {
      position: absolute;
      border-radius: 50%;
      border: 2px solid transparent;
    }

    .ring-1 {
      inset: 0;
      border-color: var(--gold) transparent transparent transparent;
      animation: spin 1.8s linear infinite;
    }

    .ring-2 {
      inset: 12px;
      border-color: transparent var(--gold-soft) transparent transparent;
      animation: spin 2.4s linear infinite reverse;
    }

    .ring-3 {
      inset: 24px;
      border-color: var(--gold-dim) transparent transparent transparent;
      animation: spin 1.2s linear infinite;
    }

    .ring-crown {
      position: absolute;
      inset: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle, rgba(200, 164, 77, 0.15) 0%, transparent 70%);
      border-radius: 50%;
    }

    .ring-crown svg {
      width: 52px;
      height: 52px;
      filter: drop-shadow(0 0 12px var(--gold));
    }

    .ring-particles {
      position: absolute;
      inset: -20px;
    }

    .ring-particles span {
      position: absolute;
      width: 4px;
      height: 4px;
      background: var(--gold);
      border-radius: 50%;
      opacity: 0;
      animation: particlePulse 2s ease-in-out infinite;
    }

    .ring-particles span:nth-child(1) {
      top: 15%;
      left: 50%;
      animation-delay: 0s;
    }

    .ring-particles span:nth-child(2) {
      top: 50%;
      right: 15%;
      animation-delay: 0.4s;
    }

    .ring-particles span:nth-child(3) {
      bottom: 15%;
      left: 50%;
      animation-delay: 0.8s;
    }

    .ring-particles span:nth-child(4) {
      top: 50%;
      left: 15%;
      animation-delay: 1.2s;
    }

    .ring-particles span:nth-child(5) {
      top: 20%;
      right: 20%;
      animation-delay: 1.6s;
    }

    .ring-particles span:nth-child(6) {
      bottom: 20%;
      left: 20%;
      animation-delay: 2s;
    }

    @keyframes particlePulse {

      0%,
      100% {
        opacity: 0;
        transform: scale(0.5);
      }

      50% {
        opacity: 1;
        transform: scale(1.5);
      }
    }

    .loader-title {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 50%, var(--gold-dim) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 0.3em;
      opacity: 0;
      transform: translateY(20px);
    }

    .loader-sub {
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      font-size: 0.85rem;
      letter-spacing: 0.2em;
      color: var(--text-muted);
      margin-top: 12px;
      text-transform: uppercase;
      opacity: 0;
    }

    .loader-bar {
      width: 200px;
      height: 1px;
      background: rgba(200, 164, 77, 0.15);
      margin-top: 32px;
      overflow: hidden;
      position: relative;
      opacity: 0;
    }

    .loader-bar-fill {
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      animation: barSlide 1.5s ease-in-out infinite;
    }

    @keyframes barSlide {
      to {
        left: 100%;
      }
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    /* ══════════════════ NAVBAR ══════════════════ */

    
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 20px 0;
      transition: var(--transition);
    }

    #navbar.scrolled {
      background: rgba(10, 10, 13, 0.75);
      backdrop-filter: blur(24px) saturate(1.5);
      -webkit-backdrop-filter: blur(24px) saturate(1.5);
      border-bottom: 1px solid var(--glass-border);
      padding: 14px 0;
    }

    [data-theme="light"] #navbar.scrolled {
      background: rgba(250, 250, 247, 0.8);
    }

    .nav-inner {
      width: 100%;
      padding: 0 clamp(20px, 4vw, 64px);
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      flex-shrink: 0;
    }

    /* ── Dual-brand flip logo (matches GenQue) ── */
    .nav-logo-flip-container {
      width: 160px;
      height: 52px;
      position: relative;
      perspective: 800px;
      flex-shrink: 0;
    }

    .nav-logo-flipper {
      width: 100%;
      height: 100%;
      position: relative;
      transform-style: preserve-3d;
      transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-logo-flipper.flipped {
      transform: rotateY(180deg);
    }

    .nav-logo-face {
      position: absolute;
      inset: 0;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }

    .nav-logo-face--back {
      transform: rotateY(180deg);
    }

    .nav-logo-img {
      height: 56px;
      width: auto;
      max-width: 160px;
      display: block;
      object-fit: contain;
    }

    [data-theme="dark"] .nav-logo-img {
      filter: brightness(1.08) drop-shadow(0 0 10px rgba(200, 164, 77, 0.45));
    }

    [data-theme="light"] .nav-logo-img {
      filter: brightness(0.82) contrast(1.15);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      list-style: none;
      flex: 1;
      justify-content: center;
    }

    .nav-links a {
      display: block;
      padding: 8px 16px;
      font-size: rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: var(--text-secondary);
      text-decoration: none;
      border-radius: 100px;
      border: 1px solid transparent;
      position: relative;
      transition: color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.25s, border-color 0.3s;
      white-space: nowrap;
    }

    .nav-links a::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 100px;
      background: linear-gradient(135deg, rgba(200, 164, 77, 0.0), rgba(200, 164, 77, 0.0));
      opacity: 0;
      transition: opacity 0.3s;
    }

    .nav-links a:hover {
      color: var(--gold-soft);
      background: var(--glass);
      border-color: var(--glass-border);
      box-shadow: 0 0 20px rgba(200, 164, 77, 0.15), 0 0 8px rgba(200, 164, 77, 0.1), inset 0 1px 0 rgba(200, 164, 77, 0.12);
      transform: translateY(-2px);
    }

    .nav-links a:hover::before {
      opacity: 1;
    }

    .nav-links a.active {
      color: var(--gold);
      background: var(--glass);
      border-color: var(--glass-border);
      box-shadow: 0 0 20px rgba(200, 164, 77, 0.15), inset 0 1px 0 rgba(200, 164, 77, 0.12);
    }

    [data-theme="light"] .nav-links a.active {
      color: var(--gold-dim);
      background: rgba(200, 164, 77, 0.1);
      border-color: rgba(200, 164, 77, 0.25);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
      margin-left: auto;
    }

    .theme-toggle {
      width: 48px;
      height: 26px;
      border-radius: 13px;
      background: var(--surface-2);
      border: 1px solid var(--glass-border);
      cursor: pointer;
      position: relative;
      transition: var(--transition);
      flex-shrink: 0;
    }

    .theme-toggle-thumb {
      position: absolute;
      top: 3px;
      left: 3px;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--gold);
      transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
    }

    [data-theme="light"] .theme-toggle-thumb {
      transform: translateX(22px);
    }

    .btn-demo {
      display: none;
    }

    /* ══════════════════ FLOATING BROCHURE CTA — CROWN GOLD STYLE ══════════════════ */
    .float-brochure-cta {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%) translateX(0);
      z-index: 500;
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .float-brochure-cta:hover {
      transform: translateY(-50%) translateX(-6px);
    }

    .float-brochure-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
      padding: 1.2rem 0.65rem 1.4rem;
      background: linear-gradient(180deg, var(--gold), var(--gold-dim));
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(200, 164, 77, 0.6);
      border-right: none;
      border-radius: 14px 0 0 14px;
      box-shadow: -4px 0 28px rgba(200, 164, 77, 0.4), -2px 0 12px rgba(200, 164, 77, 0.2), inset 0 1px 0 rgba(232, 212, 154, 0.2);
      position: relative;
      overflow: hidden;
      transition: box-shadow 0.35s, border-color 0.35s, background 0.35s;
    }

    .float-brochure-cta:hover .float-brochure-inner {
      border-color: var(--gold-soft);
      box-shadow: -6px 0 45px rgba(200, 164, 77, 0.55), -2px 0 16px rgba(200, 164, 77, 0.35), inset 0 1px 0 rgba(232, 212, 154, 0.3);
      background: linear-gradient(180deg, var(--gold-soft), var(--gold));
    }

    /* shimmer sweep */
    .float-brochure-inner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.18) 0%, transparent 50%);
      pointer-events: none;
    }

    .float-brochure-icon {
      width: 22px;
      height: 22px;
      color: #0A0A0D;
      flex-shrink: 0;
      transition: transform 0.3s;
      position: relative;
      z-index: 1;
    }

    .float-brochure-cta:hover .float-brochure-icon {
      transform: translateY(-3px) scale(1.12);
    }

    .float-brochure-label {
      writing-mode: vertical-rl;
      text-orientation: mixed;
      transform: rotate(180deg);
      font-family: 'Syne', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #0A0A0D;
      line-height: 1;
      position: relative;
      z-index: 1;
      white-space: nowrap;
    }

    .float-brochure-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(10, 10, 13, 0.7);
      box-shadow: 0 0 6px rgba(10, 10, 13, 0.4);
      animation: blink 2s ease-in-out infinite;
      position: relative;
      z-index: 1;
    }

    @media (max-width: 768px) {
      .float-brochure-cta {
        top: auto;
        bottom: 90px;
        transform: none;
      }

      .float-brochure-cta:hover {
        transform: translateX(-6px);
      }
    }

    /* ══════════════════ HERO ══════════════════ */
    #hero {
      min-height: 100vh;
      width: 100%;
      padding: 140px clamp(20px, 4vw, 64px) 100px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
    }

    .hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.3;
    }

    .orb-1 {
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(200, 164, 77, 0.4) 0%, transparent 70%);
      top: -200px;
      right: -100px;
      animation: orbFloat 8s ease-in-out infinite;
    }

    .orb-2 {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(15, 23, 42, 0.8) 0%, transparent 70%);
      bottom: -100px;
      left: -50px;
      animation: orbFloat 10s ease-in-out infinite reverse;
    }

    @keyframes orbFloat {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      33% {
        transform: translate(20px, -30px) scale(1.05);
      }

      66% {
        transform: translate(-15px, 20px) scale(0.95);
      }
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 6vw, 100px);
      align-items: center;
      width: 100%;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 100px;
      border: 1px solid var(--glass-border);
      background: var(--glass);
      backdrop-filter: blur(12px);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
    }

    .hero-badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      animation: blink 2s ease-in-out infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(200, 164, 77, 0.4);
      }

      50% {
        opacity: 0.5;
        box-shadow: 0 0 0 4px rgba(200, 164, 77, 0);
      }
    }

    .hero-h1 {
      font-size: clamp(2.5rem, 4vw, 3.6rem);
      font-weight: 800;
      line-height: 1.08;
      margin-bottom: 24px;
      letter-spacing: -0.02em;
    }

    .grad-text {
      font-size: 3rem;
      background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 60%, #a07830 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ══════ CROWN SHIMMER HEADING ANIMATION ══════
       Matches GenQue's heading-shimmer-layer technique
       but uses Crown gold brand colors.
    ═══════════════════════════════════════════════ */
    .section-heading-animated {
      position: relative;
      color: var(--text-primary);
    }

    .section-heading-animated .heading-shimmer-layer {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0;
      font-family: inherit;
      font-size: inherit;
      font-weight: inherit;
      line-height: inherit;
      letter-spacing: inherit;
      white-space: inherit;
      word-break: inherit;
      background: linear-gradient(to right,
          var(--gold-dim) 5%,
          var(--gold) 25%,
          var(--gold-soft) 45%,
          #F0DFA0 55%,
          var(--gold) 65%,
          var(--gold-dim) 80%,
          #7a5c28 100%);
      background-size: 300% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    [data-theme="light"] .section-heading-animated .heading-shimmer-layer {
      background: linear-gradient(to right,
          var(--gold-dim) 5%,
          var(--gold) 30%,
          #b8902e 50%,
          var(--gold) 70%,
          var(--gold-dim) 100%);
      background-size: 300% auto;
      -webkit-background-clip: text;
      background-clip: text;
    }

    .section-heading-animated.shimmer-run .heading-shimmer-layer {
      animation: crown-heading-sweep 2.6s cubic-bezier(0.4, 0, 0.2, 1) 1 forwards;
    }

    .section-heading-animated.shimmer-done .heading-shimmer-layer {
      opacity: 1;
      background-position: 100% 50%;
    }

    @keyframes crown-heading-sweep {
      0% {
        background-position: 0% 50%;
        opacity: 0;
      }

      10% {
        opacity: 1;
      }

      100% {
        background-position: 100% 50%;
        opacity: 1;
      }
    }

    .hero-sub {
      font-size: 1.2rem;
      line-height: 1.7;
      color: var(--text-secondary);
      max-width: none;
      margin-bottom: 40px;
      font-weight: 300;
    }

    /* ── Hero Rotating Subheading (GenQue-style) ── */
    .hero-rotating-phrase {
      display: block;
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.4rem, 3.4vw, 2.2rem);
      font-weight: 600;
      letter-spacing: 0.01em;
      color: var(--text-secondary);

      margin-top: -8px;
      overflow: hidden;
      height: 1.5em;
      position: relative;
      max-width: 100%;
    }

    .hero-rotating-static {
      display: inline;
      color: var(--text-secondary);
    }

    .hero-rotating-word {
      display: inline-grid;
      position: relative;
      vertical-align: bottom;
      min-height: 1.2em;
      min-width: 1em;
      max-width: 100%;
    }

    .hero-rword-item {
      grid-area: 1 / 1;
      background: linear-gradient(135deg, var(--gold-soft), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
      white-space: nowrap;
      opacity: 0;
      transform: translateY(100%);
      transition: none;
    }

    [data-theme="light"] .hero-rword-item {
      background: linear-gradient(135deg, var(--gold-dim), var(--gold));
      -webkit-background-clip: text;
      background-clip: text;
    }

    .hero-rword-item.hero-rword-active {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-rword-item.hero-rword-exit {
      opacity: 0;
      transform: translateY(-100%);
    }

    .hero-ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* ══════════════════ VIEW BROCHURE SECTION CTA ══════════════════ */
    .btn-brochure {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 26px;
      border-radius: 100px;
      border: 1px solid var(--glass-border);
      background: var(--glass);
      color: var(--gold-soft);
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: 0.82rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
      backdrop-filter: blur(12px);
      position: relative;
      overflow: hidden;
    }

    .btn-brochure::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(200, 164, 77, 0.12) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .btn-brochure:hover {
      border-color: var(--gold);
      color: var(--gold-soft);
      box-shadow: 0 0 28px rgba(200, 164, 77, 0.25), 0 0 8px rgba(200, 164, 77, 0.12), inset 0 1px 0 rgba(200, 164, 77, 0.15);
      transform: translateY(-2px);
    }

    .btn-brochure:hover::before {
      opacity: 1;
    }

    .btn-brochure svg {
      transition: transform 0.3s;
    }

    .btn-brochure:hover svg {
      transform: translateY(-2px) scale(1.1);
    }

    [data-theme="light"] .btn-brochure {
      color: var(--gold-dim);
    }

    [data-theme="light"] .btn-brochure:hover {
      border-color: var(--gold-dim);
      color: var(--gold-dim);
      box-shadow: 0 0 24px rgba(200, 164, 77, 0.18), inset 0 1px 0 rgba(200, 164, 77, 0.12);
    }

    .btn-primary {
      padding: 16px 32px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
      color: #0A0A0D;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.04em;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
      box-shadow: 0 0 30px rgba(200, 164, 77, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 40px rgba(200, 164, 77, 0.5);
    }

    .btn-outline {
      padding: 16px 32px;
      border-radius: 12px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      color: var(--text-primary);
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.04em;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
      backdrop-filter: blur(12px);
    }

    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    /* Hero Visualization */
    .hero-visual {
      position: relative;
      height: 520px;
      overflow: hidden;
    }

    .credential-ecosystem {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .eco-center {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 110px;
      height: 110px;
      background: radial-gradient(circle, rgba(200, 164, 77, 0.2), transparent 70%);
      border: 1px solid var(--glass-border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(20px);
      box-shadow: 0 0 40px rgba(200, 164, 77, 0.2), inset 0 0 40px rgba(200, 164, 77, 0.05);
      animation: centerPulse 3s ease-in-out infinite;
      z-index: 10;
    }

    @keyframes centerPulse {

      0%,
      100% {
        box-shadow: 0 0 40px rgba(200, 164, 77, 0.2), inset 0 0 40px rgba(200, 164, 77, 0.05);
      }

      50% {
        box-shadow: 0 0 60px rgba(200, 164, 77, 0.35), inset 0 0 60px rgba(200, 164, 77, 0.1);
      }
    }

    .eco-center svg {
      width: 50px;
      height: 50px;
    }

    .eco-orbit {
      position: absolute;
      top: 50%;
      left: 50%;
      border-radius: 50%;
      border: 1px dashed rgba(200, 164, 77, 0.6);
    }

    .orbit-1 {
      width: 200px;
      height: 200px;
      margin: -100px 0 0 -100px;
      animation: orbit 12s linear infinite;
    }

    .orbit-2 {
      width: 320px;
      height: 320px;
      margin: -160px 0 0 -160px;
      animation: orbit 20s linear infinite reverse;
    }

    .orbit-3 {
      width: 440px;
      height: 440px;
      margin: -220px 0 0 -220px;
      animation: orbit 30s linear infinite;
    }

    @keyframes orbit {
      to {
        transform: rotate(360deg);
      }
    }

    .eco-node {
      position: absolute;
      background: rgb(255 255 255 / 21%);
      border: 1px solid var(--glass-border);
      border-radius: 14px;
      padding: 12px 16px;
      backdrop-filter: blur(20px);
      font-size: 0.75rem;
      white-space: nowrap;
      transition: var(--transition);
      cursor: default;
      z-index: 5;
    }

    .eco-node:hover {
      border-color: var(--gold);
      box-shadow: 0 0 20px rgba(200, 164, 77, 0.2);
    }

    .eco-node-icon {
      font-size: 1.1rem;
      margin-bottom: 4px;
    }

    .eco-node-label {
      font-weight: 600;
      color: var(--text-primary);
      font-size: 0.9rem;
    }

    .eco-node-val {
      color: var(--gold);
      font-size: 0.65rem;
      margin-top: 2px;
    }

    .node-cert {
      top: 3%;
      left: 10%;
      animation: float1 6s ease-in-out infinite;
    }

    .node-verify {
      top: 5%;
      right: 10%;
      animation: float2 7s ease-in-out infinite;
    }

    .node-api {
      top: 42%;
      right: 5%;
      animation: float3 5s ease-in-out infinite;
    }

    .node-audit {
      bottom: 8%;
      right: 10%;
      animation: float1 8s ease-in-out infinite reverse;
    }

    .node-analytics {
      bottom: 8%;
      left: 10%;
      animation: float2 6.5s ease-in-out infinite;
    }

    .node-id {
      top: 42%;
      left: 4%;
      animation: float3 7.5s ease-in-out infinite reverse;
    }

    @keyframes float1 {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-12px);
      }
    }

    @keyframes float2 {

      0%,
      100% {
        transform: translateY(0) rotate(1deg);
      }

      50% {
        transform: translateY(-8px) rotate(-1deg);
      }
    }

    @keyframes float3 {

      0%,
      100% {
        transform: translateY(0) scale(1);
      }

      50% {
        transform: translateY(-10px) scale(1.02);
      }
    }

    .pulse-ring {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 130px;
      height: 130px;
      margin: -65px 0 0 -65px;
      border-radius: 50%;
      border: 1px solid rgba(200, 164, 77, 0.4);
      animation: pulseSphere 2.5s ease-out infinite;
    }

    .pulse-ring:nth-child(2) {
      animation-delay: 0.8s;
    }

    .pulse-ring:nth-child(3) {
      animation-delay: 1.6s;
    }

    @keyframes pulseSphere {
      0% {
        transform: scale(1);
        opacity: 0.6;
      }

      100% {
        transform: scale(3);
        opacity: 0;
      }
    }

    .connection-lines {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

   .conn-line {
  stroke: url(#goldGrad);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 8 6;
  opacity: 0.8;
  animation: dashMove 4s linear infinite;
}
    @keyframes dashMove {
      to {
        stroke-dashoffset: -20;
      }
    }

    .metric-badge {
      position: absolute;
      background: linear-gradient(135deg, rgba(200, 164, 77, 0.15), rgba(200, 164, 77, 0.05));
      border: 1px solid rgba(200, 164, 77, 0.3);
      border-radius: 10px;
      padding: 8px 14px;
      font-size: 0.7rem;
      font-weight: 600;
      backdrop-filter: blur(16px);
    }

    .metric-1 {
      top: 30%;
      left: 8%;
      animation: float2 9s ease-in-out infinite;
    }

    .metric-2 {
      bottom: 35%;
      right: 8%;
      animation: float1 8s ease-in-out infinite;
    }

    .metric-val {
      color: var(--gold);
      font-size: 1.1rem;
      font-family: 'Syne', sans-serif;
    }

    /* ══════════════════ SECTIONS SHARED ══════════════════ */
    section {
      padding: 100px clamp(20px, 4vw, 64px);
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    .container {
      width: 100%;
      max-width: 100%;
    }

    .section-label {
      display: inline-block;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .section-title {
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 800;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
      max-width: none;

    }

    .section-title em {

      font-style: normal;



      background: linear-gradient(to right, #cfb06d 5%, var(--gold) 25%, #b3a375 45%, #f0dfa09d 55%, var(--gold) 65%, #b18c3d 80%, #9a7433 100%);

      -webkit-background-clip: text;

      -webkit-text-fill-color: transparent;

      background-clip: text;

    }
    .hero-h1 em {

      font-style: normal;



      background: linear-gradient(to right, #cfb06d 5%, var(--gold) 25%, #b3a375 45%, #f0dfa09d 55%, var(--gold) 65%, #b18c3d 80%, #9a7433 100%);

      -webkit-background-clip: text;

      -webkit-text-fill-color: transparent;

      background-clip: text;

    }



    [data-theme="light"] .section-title em,
    [data-theme="light"] .hero-headline em,
    [data-theme="light"] .cta-headline em {

      background: linear-gradient(to right, var(--gold-dim) 5%, var(--gold) 25%, #83754f 45%, #81680fba 55%, var(--gold) 65%, var(--gold-dim) 80%, #9a7433 100%);

      -webkit-background-clip: text;

      background-clip: text;

    }

    .section-sub {
      font-size: 1.2rem;
      line-height: 1.7;
      color: var(--text-secondary);
      font-weight: 300;
      max-width: 60%;
    }

    /* Particle canvas */
    .particles-canvas {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    /* ══════════════════ PROBLEM ══════════════════ */
    /* Background now set in redesigned section styles below */

    .problem-grid {

      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 6vw, 100px);
      align-items: center;
    }

    @keyframes pipePulse {

      0%,
      100% {
        opacity: 0.3;
      }

      50% {
        opacity: 0.8;
      }
    }

    .warning-badge {
      position: absolute;
      padding: 6px 12px;
      border-radius: 8px;
      background: rgba(239, 68, 68, 0.1);
      border: 1px solid rgba(239, 68, 68, 0.3);
      font-size: 0.7rem;
      color: #f87171;
      font-weight: 500;
    }

    .w1 {
      top: 60%;
      left: 30%;
      animation: float2 4s ease-in-out infinite;
    }

    .w2 {
      top: 8%;
      right: 20%;
      animation: float3 5s ease-in-out infinite;
    }

    .w3 {
      bottom: 20%;
      right: 10%;
      animation: float1 6s ease-in-out infinite reverse;
    }

    /* ══════════════════ HOW IT WORKS ══════════════════ */
    #how-it-works {
      background: var(--bg);
    }

    .timeline-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 60px;
      position: relative;
    }

    .timeline-steps::before {
      content: '';
      position: absolute;
      top: 64px;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .step-card {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 32px 24px;
      backdrop-filter: blur(20px);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .step-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(200, 164, 77, 0.06) 0%, transparent 100%);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .step-card:hover {
      transform: translateY(-8px);
      border-color: var(--gold-dim);
      box-shadow: 0 20px 60px rgba(200, 164, 77, 0.15);
    }

    .step-card:hover::before {
      opacity: 1;
    }

    .step-num {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-dim));
      color: #0A0A0D;
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 0 20px rgba(200, 164, 77, 0.3);
    }

    .step-icon {
      font-size: 2rem;
      margin-bottom: 16px;
    }

    .step-card h3 {
      font-size: 1rem;
      margin-bottom: 12px;
    }

    .step-card p {
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .step-metrics {
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid var(--glass-border);
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .step-metric {
      display: flex;
      justify-content: space-between;
      font-size: 0.72rem;
      color: var(--text-muted);
    }

    .step-metric span:last-child {
      color: var(--gold);
      font-weight: 600;
    }

    /* ══════════════════ WHY CROWN — PREMIUM REDESIGN ══════════════════ */
    #why-crown {
      background: var(--navy);
      overflow: hidden;
    }

    /* Ambient background grid for why-crown */
    .wc-bg-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(200, 164, 77, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 164, 77, 0.03) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
      mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, black 30%, transparent 80%);
    }

    /* Hero intro text for why-crown */
    .wc-intro {
      max-width: none;
      margin-bottom: 80px;
    }

    .wc-intro p {
      font-size: 1.2rem;
      line-height: 1.75;
      color: var(--text-secondary);
      font-weight: 300;
      margin-top: 16px;

    }

    /* ─── Bento Grid Layout ─── */
    .wc-bento {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: auto;
      gap: 20px;
      position: relative;
    }

    /* Shared module card */
    .wc-module {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 24px;
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      overflow: hidden;
      position: relative;
      transition: border-color 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1), transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      cursor: default;
    }

    .wc-module::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(200, 164, 77, 0.08) 0%, transparent 65%);
      opacity: 0;
      transition: opacity 0.4s;
      pointer-events: none;
    }

    .wc-module:hover {
      border-color: rgba(200, 164, 77, 0.5);
      box-shadow: 0 0 0 1px rgba(200, 164, 77, 0.12), 0 24px 64px rgba(200, 164, 77, 0.12), 0 0 40px rgba(200, 164, 77, 0.06);
      transform: translateY(-4px);
    }

    .wc-module:hover::before {
      opacity: 1;
    }

    /* Animated glow border on hover via pseudo */
    .wc-module::after {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: 25px;
      background: linear-gradient(135deg, rgba(200, 164, 77, 0), rgba(200, 164, 77, 0.4), rgba(200, 164, 77, 0));
      opacity: 0;
      transition: opacity 0.4s;
      pointer-events: none;
      z-index: -1;
    }

    .wc-module:hover::after {
      opacity: 1;
    }

    /* Grid positions */
    .wc-m1 {
      grid-column: 1 / 8;
      grid-row: 1;
      min-height: 300px;
    }

    .wc-m2 {
      grid-column: 8 / 13;
      grid-row: 1;
      min-height: 300px;
    }

    .wc-m3 {
      grid-column: 1 / 5;
      grid-row: 2;
      min-height: 280px;
    }

    .wc-m4 {
      grid-column: 5 / 13;
      grid-row: 2;
      min-height: 280px;
    }

    .wc-m5 {
      grid-column: 1 / 7;
      grid-row: 3;
      min-height: 280px;
    }

    .wc-m6 {
      grid-column: 7 / 13;
      grid-row: 3;
      min-height: 280px;
    }

    /* Module inner padding */
    .wc-mod-body {
      padding: 36px 40px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      z-index: 1;
    }

    /* Module number tag */
    .wc-mod-num {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
    }

    .wc-num-badge {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--gold), var(--gold-dim));
      color: #0A0A0D;
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .wc-mod-tag {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .wc-mod-title {
      font-size: 1.45rem;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-bottom: 12px;
    }

    .wc-mod-desc {
      font-size: 0.88rem;
      line-height: 1.65;
      color: var(--text-secondary);
      font-weight: 300;
      margin-bottom: 20px;
    }

    /* Feature bullets */
    .wc-points {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .wc-points li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.82rem;
      color: var(--text-secondary);
    }

    .wc-check {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      border-radius: 5px;
      background: rgba(200, 164, 77, 0.12);
      border: 1px solid rgba(200, 164, 77, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .wc-check svg {
      width: 10px;
      height: 10px;
    }

    /* ─── Module 1: Lifecycle — animated flow diagram ─── */
    .wc-m1 .wc-mod-body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      padding: 36px 40px;
    }

    .wc-m1-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .wc-lifecycle-flow {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
    }

    .wc-flow-step {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 14px;
      border-radius: 10px;
      background: rgba(200, 164, 77, 0.04);
      border: 1px solid rgba(200, 164, 77, 0.1);
      position: relative;
      transition: all 0.3s;
    }

    .wc-flow-step:hover {
      background: rgba(200, 164, 77, 0.09);
      border-color: rgba(200, 164, 77, 0.3);
    }

    .wc-flow-connector {
      width: 2px;
      height: 16px;
      background: linear-gradient(180deg, rgba(200, 164, 77, 0.4), rgba(200, 164, 77, 0.15));
      margin-left: 23px;
      flex-shrink: 0;
      position: relative;
    }

    .wc-flow-connector::after {
      content: '';
      position: absolute;
      top: 0;
      left: -1px;
      width: 4px;
      height: 6px;
      background: var(--gold);
      border-radius: 2px;
      animation: flowPulse 2s ease-in-out infinite;
    }

    .wc-flow-connector:nth-child(2)::after {
      animation-delay: 0.5s;
    }

    .wc-flow-connector:nth-child(4)::after {
      animation-delay: 1s;
    }

    .wc-flow-connector:nth-child(6)::after {
      animation-delay: 1.5s;
    }

    @keyframes flowPulse {

      0%,
      100% {
        transform: translateY(0);
        opacity: 0.3;
      }

      50% {
        transform: translateY(5px);
        opacity: 1;
      }
    }

    .wc-flow-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      box-shadow: 0 0 8px rgba(200, 164, 77, 0.5);
    }

    .wc-flow-label {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--text-primary);
    }

    .wc-flow-sub {
      font-size: 0.68rem;
      color: var(--text-muted);
      margin-left: auto;
    }

    /* Big stat inside m1 right */
    .wc-m1-stat {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      background: rgba(200, 164, 77, 0.04);
      border: 1px solid rgba(200, 164, 77, 0.12);
      border-radius: 18px;
      padding: 32px 24px;
      position: relative;
      overflow: hidden;
    }

    .wc-m1-stat::before {
      content: '';
      position: absolute;
      top: -30%;
      left: -20%;
      width: 140%;
      height: 140%;
      background: radial-gradient(ellipse at 50% 40%, rgba(200, 164, 77, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .wc-stat-big {
      font-family: 'Syne', sans-serif;
      font-size: 3.5rem;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
      position: relative;
    }

    .wc-stat-label {
      font-size: 0.8rem;
      color: var(--text-secondary);
      margin-top: 8px;
      line-height: 1.4;
    }

    /* Bar chart visualization */
    .wc-bars {
      display: flex;
      gap: 6px;
      align-items: flex-end;
      margin-top: 20px;
      height: 48px;
    }

    .wc-bar {
      flex: 1;
      border-radius: 3px 3px 0 0;
      background: linear-gradient(180deg, var(--gold), var(--gold-dim));
      animation: wcBarPulse 2.5s ease-in-out infinite;
      min-height: 8px;
    }

    .wc-bar:nth-child(1) {
      height: 45%;
      animation-delay: 0s;
    }

    .wc-bar:nth-child(2) {
      height: 65%;
      animation-delay: 0.2s;
    }

    .wc-bar:nth-child(3) {
      height: 85%;
      animation-delay: 0.4s;
    }

    .wc-bar:nth-child(4) {
      height: 60%;
      animation-delay: 0.6s;
    }

    .wc-bar:nth-child(5) {
      height: 100%;
      animation-delay: 0.8s;
    }

    .wc-bar:nth-child(6) {
      height: 75%;
      animation-delay: 1s;
    }

    .wc-bar:nth-child(7) {
      height: 90%;
      animation-delay: 1.2s;
    }

    @keyframes wcBarPulse {

      0%,
      100% {
        opacity: 0.65;
      }

      50% {
        opacity: 1;
      }
    }

    /* ─── Module 2: API — terminal style ─── */
    .wc-terminal {
      margin-top: 20px;
      background: var(--glass);
      border: 1px solid rgba(200, 164, 77, 0.12);
      border-radius: 12px;
      overflow: hidden;
    }

    [data-theme="dark"] .wc-terminal {
      background: rgba(0, 0, 0, 0.35);
    }

    .wc-terminal-bar {
      padding: 8px 14px;
      background: rgba(200, 164, 77, 0.06);
      border-bottom: 1px solid rgba(200, 164, 77, 0.08);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .wc-t-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }

    .wc-t-dot:nth-child(1) {
      background: #ff5f57;
    }

    .wc-t-dot:nth-child(2) {
      background: #febc2e;
    }

    .wc-t-dot:nth-child(3) {
      background: #28c840;
    }

    .wc-t-title {
      font-size: 0.65rem;
      color: var(--text-muted);
      margin-left: 4px;
      letter-spacing: 0.06em;
    }

    .wc-api-lines {
      padding: 12px 14px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .wc-api-line {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Courier New', monospace;
      font-size: 0.72rem;
      padding: 6px 10px;
      border-radius: 6px;
      background: rgba(200, 164, 77, 0.03);
      border: 1px solid rgba(200, 164, 77, 0.06);
      animation: apiLineReveal 0.5s ease forwards;
      opacity: 0;
    }

    .wc-api-line:nth-child(1) {
      animation-delay: 0.1s;
    }

    .wc-api-line:nth-child(2) {
      animation-delay: 0.3s;
    }

    .wc-api-line:nth-child(3) {
      animation-delay: 0.5s;
    }

    .wc-api-line:nth-child(4) {
      animation-delay: 0.7s;
    }

    @keyframes apiLineReveal {
      to {
        opacity: 1;
      }
    }

    .wc-api-method {
      color: var(--gold);
      font-weight: 700;
      min-width: 36px;
    }

    .wc-api-path {
      color: #93c5fd;
      flex: 1;
    }

    .wc-api-ping {
      color: #6ee7b7;
      font-size: 0.65rem;
      margin-left: auto;
    }

    .wc-api-live {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 10px;
      padding: 6px 10px;
      font-size: 0.68rem;
      color: var(--text-muted);
    }

    .wc-api-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #6ee7b7;
      animation: apiDotBlink 1.5s ease-in-out infinite;
    }

    @keyframes apiDotBlink {

      0%,
      100% {
        opacity: 1;
        box-shadow: 0 0 6px #6ee7b7;
      }

      50% {
        opacity: 0.3;
        box-shadow: none;
      }
    }

    /* ─── Module 3: Analytics — compact dashboard ─── */
    .wc-dashboard {
      margin-top: 16px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .wc-kpi {
      background: rgba(200, 164, 77, 0.05);
      border: 1px solid rgba(200, 164, 77, 0.12);
      border-radius: 10px;
      padding: 12px 14px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s;
    }

    .wc-kpi:hover {
      background: rgba(200, 164, 77, 0.09);
      border-color: rgba(200, 164, 77, 0.3);
    }

    .wc-kpi-val {
      font-family: 'Syne', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
    }

    .wc-kpi-lbl {
      font-size: 0.65rem;
      color: var(--text-muted);
      margin-top: 4px;
      line-height: 1.3;
    }

    .wc-kpi-trend {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 0.6rem;
      color: #6ee7b7;
      background: rgba(110, 231, 183, 0.1);
      padding: 2px 6px;
      border-radius: 4px;
    }

    /* Sparkline inside kpi */
    .wc-sparkline {
      margin-top: 8px;
      height: 24px;
      position: relative;
      overflow: hidden;
    }

    .wc-sparkline svg {
      width: 100%;
      height: 100%;
    }

    /* ─── Module 4: Candidate Access ─── */
    .wc-m4 .wc-mod-body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      padding: 36px 40px;
    }

    .wc-wallet {
      background: rgba(200, 164, 77, 0.04);
      border: 1px solid rgba(200, 164, 77, 0.12);
      border-radius: 16px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
      overflow: hidden;
    }

    .wc-wallet::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .wc-wallet-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .wc-wallet-title {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .wc-wallet-lock {
      width: 22px;
      height: 22px;
      border-radius: 6px;
      background: rgba(200, 164, 77, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
    }

    .wc-cred-card {
      background: linear-gradient(135deg, rgba(200, 164, 77, 0.12), rgba(200, 164, 77, 0.04));
      border: 1px solid rgba(200, 164, 77, 0.25);
      border-radius: 10px;
      padding: 12px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s;
    }

    .wc-cred-card:hover {
      border-color: var(--gold);
      background: rgba(200, 164, 77, 0.16);
    }

    .wc-cred-icon {
      width: 28px;
      height: 28px;
      border-radius: 7px;
      background: rgba(200, 164, 77, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    .wc-cred-info {
      flex: 1;
    }

    .wc-cred-name {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--text-primary);
    }

    .wc-cred-date {
      font-size: 0.63rem;
      color: var(--text-muted);
      margin-top: 2px;
    }

    .wc-cred-share {
      font-size: 0.6rem;
      color: var(--gold);
      background: rgba(200, 164, 77, 0.1);
      border: 1px solid rgba(200, 164, 77, 0.2);
      padding: 3px 8px;
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.3s;
    }

    .wc-cred-share:hover {
      background: rgba(200, 164, 77, 0.2);
    }

    /* Responsive */
    @media (max-width: 1100px) {

      .wc-m1,
      .wc-m2,
      .wc-m3,
      .wc-m4,
      .wc-m5,
      .wc-m6 {
        grid-column: 1 / -1;
      }

      .wc-m1 .wc-mod-body,
      .wc-m4 .wc-mod-body {
        grid-template-columns: 1fr;
        gap: 24px;
      }
    }

    @media (max-width: 768px) {
      .wc-bento {
        gap: 14px;
      }
    }

    /* Legacy styles used elsewhere — keep compatible */
    .feature-tag {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .fv-api {
      width: 100%;
    }

    .api-line {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 6px 0;
      font-family: monospace;
      font-size: 0.75rem;
      padding: 8px 12px;
      border-radius: 8px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
    }

    .api-method {
      color: var(--gold);
      font-weight: 700;
    }

    .api-path {
      color: #a8d8ea;
    }

    .api-status {
      color: #6ee7b7;
      margin-left: auto;
    }

    /* ══════════════════ COMPARISON — PREMIUM REDESIGN ══════════════════ */
    #comparison {
      background: var(--bg);
      overflow: hidden;
    }

    .cmp-wrap {
      margin-top: 64px;
      position: relative;
    }

    /* Header banner */
    .cmp-header {
      display: grid;
      grid-template-columns: 2fr 1.4fr 1.4fr;
      gap: 0;
      margin-bottom: 0;
      border-radius: 20px 20px 0 0;
      overflow: hidden;
      border: 1px solid var(--glass-border);
      border-bottom: none;
    }

    .cmp-h-cap {
      padding: 24px 28px;
      background: var(--glass);
      display: flex;
      align-items: flex-end;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .cmp-h-crown {
      padding: 20px 28px;
      background: linear-gradient(135deg, rgba(200, 164, 77, 0.15), rgba(200, 164, 77, 0.06));
      border-left: 1px solid rgba(200, 164, 77, 0.25);
      border-right: 1px solid rgba(200, 164, 77, 0.25);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      gap: 6px;
    }

    .cmp-h-crown::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .cmp-badge-rec {
      position: absolute;
      top: -1px;
      right: 20px;
      background: linear-gradient(135deg, var(--gold), var(--gold-dim));
      color: #0A0A0D;
      font-size: 0.55rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 0 0 6px 6px;
    }

    .cmp-h-crown-name {
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 800;
      color: var(--gold);
      letter-spacing: 0.05em;
    }

    .cmp-h-crown-sub {
      font-size: 0.65rem;
      color: rgba(200, 164, 77, 0.6);
      letter-spacing: 0.06em;
    }

    .cmp-h-legacy {
      padding: 24px 28px;
      background: rgba(255, 255, 255, 0.01);
      border-left: 1px solid var(--glass-border);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .cmp-h-legacy-name {
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-muted);
      letter-spacing: 0.03em;
    }

    .cmp-h-legacy-sub {
      font-size: 0.62rem;
      color: rgba(248, 244, 236, 0.25);
      letter-spacing: 0.04em;
    }

    /* Rows container */
    .cmp-rows {
      border: 1px solid var(--glass-border);
      border-radius: 0 0 20px 20px;
      overflow: hidden;
    }

    /* Individual row */
    .cmp-row {
      display: grid;
      grid-template-columns: 2fr 1.4fr 1.4fr;
      gap: 0;
      border-bottom: 1px solid #424242;
      transition: background 0.2s;
      opacity: 0;
      transform: translateX(-20px);
      transition: opacity 0.5s ease, transform 0.5s ease, background 0.2s;
    }
    [data-theme="light"]  .cmp-row {border-bottom: 1px solid #eee;}

    .cmp-row:last-child {
      border-bottom: none;
    }

    .cmp-row:hover {
      background: rgba(255, 255, 255, 0.02);
    }

    .cmp-row.revealed {
      opacity: 1;
      transform: translateX(0);
    }

    /* Row capability label */
    .cmp-cap {
      padding: 20px 28px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-right: 1px solid rgba(255, 255, 255, 0.04);
    }

    .cmp-cap-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      flex-shrink: 0;
      transition: all 0.3s;
    }

    .cmp-row:hover .cmp-cap-icon {
      border-color: rgba(200, 164, 77, 0.3);
      background: rgba(200, 164, 77, 0.06);
    }

    .cmp-cap-text {
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-secondary);
      line-height: 1.3;
    }

    /* Crown cell */
    .cmp-crown-cell {
      padding: 20px 24px;
      background: rgba(200, 164, 77, 0.04);
      border-left: 1px solid rgba(200, 164, 77, 0.18);
      border-right: 1px solid rgba(200, 164, 77, 0.18);
      display: flex;
      align-items: center;
      gap: 10px;
      position: relative;
      transition: background 0.3s;
    }

    .cmp-row:hover .cmp-crown-cell {
      background: rgba(200, 164, 77, 0.08);
    }

    /* Animated check indicator for crown */
    .cmp-check-ring {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 2px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      box-shadow: 0 0 10px rgba(200, 164, 77, 0.25);
      animation: checkRingPulse 3s ease-in-out infinite;
    }

    @keyframes checkRingPulse {

      0%,
      100% {
        box-shadow: 0 0 8px rgba(200, 164, 77, 0.2);
      }

      50% {
        box-shadow: 0 0 16px rgba(200, 164, 77, 0.4);
      }
    }

    .cmp-check-ring svg {
      width: 12px;
      height: 12px;
    }

    .cmp-crown-text {
      font-size: 1rem;
      color: var(--text-primary);
      font-weight: 500;
      line-height: 1.7;
    }

    /* Crown highlight bar on left edge */
    .cmp-crown-cell::before {
      content: '';
      position: absolute;
      left: 0;
      top: 20%;
      bottom: 20%;
      width: 2px;
      background: var(--gold);
      border-radius: 1px;
      opacity: 0.5;
    }

    /* Legacy cell */
    .cmp-legacy-cell {
      padding: 20px 24px;
      border-left: 1px solid rgba(255, 255, 255, 0.04);
      display: flex;
      align-items: center;
      gap: 10px;
      opacity: 1;
    }

    .cmp-cross-ring {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 1px solid rgba(239, 68, 68, 1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: rgba(239, 68, 68, 0.05);
    }

    .cmp-cross-ring svg {
      width: 10px;
      height: 10px;
      stroke: rgba(239, 68, 68, 1);
    }

    .cmp-legacy-text {
      font-size: 1rem;
      color: var(--text-muted);
      font-style: italic;
      line-height: 1.3;
    }

    /* Divider energy beam */
    .cmp-divider-beam {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 1px;
      background: linear-gradient(180deg, transparent 0%, var(--gold) 40%, var(--gold) 60%, transparent 100%);
      opacity: 0.15;
      pointer-events: none;
    }

    /* Bottom CTA row */
    .cmp-footer-row {
      display: grid;
      grid-template-columns: 2fr 1.4fr 1.4fr;
      border-top: 1px solid var(--glass-border);
      background: rgba(200, 164, 77, 0.02);
    }

    .cmp-footer-empty {
      padding: 20px 28px;
    }

    .cmp-footer-crown {
      padding: 20px 24px;
      background: rgba(200, 164, 77, 0.06);
      border-left: 1px solid rgba(200, 164, 77, 0.2);
      border-right: 1px solid rgba(200, 164, 77, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cmp-footer-legacy {
      padding: 20px 24px;
      border-left: 1px solid rgba(255, 255, 255, 0.04);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cmp-score {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .cmp-score-num {
      font-family: 'Syne', sans-serif;
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--gold);
    }

    .cmp-score-label {
      font-size: 0.62rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .cmp-score-legacy {
      font-family: 'Syne', sans-serif;
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--text-muted);
      opacity: 0.4;
    }

    @media (max-width: 768px) {

      .cmp-header,
      .cmp-row,
      .cmp-footer-row {
        grid-template-columns: 1.4fr 1fr 1fr;
      }

      .cmp-cap {
        padding: 14px 16px;
      }

      .cmp-crown-cell,
      .cmp-legacy-cell {
        padding: 14px 12px;
      }

      .cmp-h-cap,
      .cmp-h-crown,
      .cmp-h-legacy {
        padding: 16px 14px;
      }
    }

    /* ══════════════════ REAL IMPACT — old styles kept for reference only ══════════════════ */
    /* background now set in redesign styles below */

    .impact-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 60px;
    }

    .impact-card {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 32px 24px;
      text-align: center;
      backdrop-filter: blur(20px);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .impact-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      transform: scaleX(0);
      transition: transform 0.4s;
    }

    .impact-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(200, 164, 77, 0.1);
    }

    .impact-card:hover::after {
      transform: scaleX(1);
    }

    .impact-num {
      font-family: 'Syne', sans-serif;
      font-size: 3rem;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 8px;
    }

    .impact-card h4 {
      font-size: 1rem;
      margin-bottom: 10px;
    }

    .impact-card p {
      font-size: 0.82rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    .impact-ring {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      position: relative;
    }

    .ring-svg {
      transform: rotate(-90deg);
    }

    .ring-track {
      fill: none;
      stroke: rgba(200, 164, 77, 0.1);
      stroke-width: 6;
    }

    .ring-fill {
      fill: none;
      stroke: var(--gold);
      stroke-width: 6;
      stroke-linecap: round;
      stroke-dasharray: 226;
      stroke-dashoffset: 226;
      transition: stroke-dashoffset 1.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    /* ══════════════════ ABOUT ══════════════════ */
    #about {
      background: var(--bg);
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 6vw, 100px);
      align-items: center;
    }

    .about-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 100px;
      border: 1px solid var(--glass-border);
      background: var(--glass);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gold-soft);
      margin-bottom: 24px;
      backdrop-filter: blur(12px);
    }

    .about-text h2 {
      font-size: clamp(2rem, 3vw, 2.8rem);
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }

    .about-text p {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text-secondary);
      margin-bottom: 16px;
      font-weight: 300;
    }

    .about-pillars {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }

    .pillar {
      padding: 8px 16px;
      border-radius: 100px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      font-size: 0.8rem;
      font-weight: 500;
      backdrop-filter: blur(12px);
    }

    .about-visual {
      position: relative;
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-card {
      width: 100%;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 24px;
      padding: 40px;
      backdrop-filter: blur(20px);
      position: relative;
      overflow: hidden;
    }

    .about-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(200, 164, 77, 0.12) 0%, transparent 60%);
    }

    .about-logo-big {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
      position: relative;
    }

    .about-logo-big svg {
      width: 60px;
      height: 60px;
    }

    .about-logo-big span {
      font-family: 'Syne', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--gold-soft), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .about-company {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 24px;
      position: relative;
    }

    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      position: relative;
    }

    .about-stat {
      background: rgba(200, 164, 77, 0.06);
      border: 1px solid rgba(200, 164, 77, 0.15);
      border-radius: 12px;
      padding: 16px;
    }

    .about-stat .val {
      font-family: 'Syne', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--gold);
    }

    .about-stat .lbl {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 4px;
    }

    /* ══════════════════ HERO CANVAS BACKGROUND ══════════════════ */
    #hero-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0.55;
    }

    .hero-grid-lines {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(200, 164, 77, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 164, 77, 0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 80%);
      animation: gridShimmer 8s ease-in-out infinite;
    }

    [data-theme="light"] .hero-grid-lines {
      background-image:
        linear-gradient(rgba(200, 164, 77, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 164, 77, 0.08) 1px, transparent 1px);
    }

    @keyframes gridShimmer {

      0%,
      100% {
        opacity: 0.7;
      }

      50% {
        opacity: 1;
      }
    }

    /* ══════════════════ FOOTER ══════════════════ */
    footer {
      position: relative;
      overflow: hidden;
      background: var(--navy);
    }

    [data-theme="light"] footer {
      background: #F0EBE0;
    }

    /* Animated footer canvas background */
    #footer-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0.18;
      pointer-events: none;
    }

    /* Top accent line */
    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--gold-dim) 20%, var(--gold) 50%, var(--gold-dim) 80%, transparent 100%);
      z-index: 3;
    }

    /* ---- Credibility Strip ---- */

    .credibility-strip {
      position: relative;
      z-index: 2;

padding: 2.5rem 4rem 2rem;      border-bottom: 1px solid var(--glass-border);
    }

    .credibility-inner {
      max-width: none;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(280px, 420px) auto 1fr;
      gap: 0 2rem;
      align-items: start;
    }

    /* ---- Brand column ---- */
    .cred-brand {
      padding-right: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .cred-logo-lockup {
      margin-bottom: 0;
    }

    /* .cred-logo-lockup {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-bottom: 1rem;
    } */

    .cred-logo-wrap {
      display: inline-block;
      border-radius: 10px;
      padding: 6px 12px;
      transition: background 0.4s ease;
    }

    [data-theme="dark"] .cred-logo-wrap {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255, 255, 255, 0.07);
    }

    [data-theme="light"] .cred-logo-wrap {
      background: transparent;
      border: none;
    }

    .cred-logo-img {
      height: 60px;
      width: auto;
      object-fit: contain;
      display: block;
      transition: filter 0.4s ease;
    }

    /* 
    [data-theme="dark"] .cred-logo-img {
      filter: brightness(1.5) contrast(1.1) drop-shadow(0 0 8px rgba(200,164,77,0.25));
    } */

    [data-theme="light"] .cred-logo-img {
      filter: brightness(0.9) contrast(1.1);
    }

    .cred-desc {
      font-size: 0.875rem;
      color: var(--text-secondary);
      line-height: 1.65;
      margin-bottom: 0;
    }

    /* Social buttons */
    .cred-social {
      display: inline-block;
      float: right;
      margin-top: 20px;
    }

    .cred-social-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.6rem 1.2rem;
      border-radius: 100px;
      border: 1.5px solid var(--glass-border);
      background: var(--glass);
      color: var(--text-dim);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      transition: border-color 0.3s, color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.25s;
      position: relative;
      overflow: hidden;
    }

    .cred-social-btn svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
      flex-shrink: 0;
      transition: transform 0.3s;
    }

    .cred-social-btn:hover {
      border-color: var(--blue-light);
      color: var(--blue-light);
      background: var(--glass-hover);
      box-shadow: 0 0 20px var(--accent-glow), 0 4px 12px rgba(107, 168, 212, 0.12);
      transform: translateY(-3px);
    }

    .cred-social-btn:hover svg {
      transform: scale(1.15);
    }

    [data-theme="light"] .cred-social-btn:hover {
      color: var(--blue-deep);
      border-color: var(--blue-deep);
      box-shadow: 0 0 16px rgba(43, 95, 143, 0.14);
    }

    /* LinkedIn official blue */
    .cred-social-btn--linkedin {
      color: white;
      border-color: rgba(10, 102, 194, 0.35);
      background: #0A66C2;

    }

    [data-theme="light"] .cred-social-btn--linkedin {
      color: white;
      border-color: rgba(10, 102, 194, 0.3);
      background: #0A66C2;
    }

    .cred-social-btn--linkedin:hover {
      color: #ffffff !important;
      border-color: #0A66C2 !important;
      background: #0A66C2 !important;
      box-shadow: 0 0 20px rgba(10, 102, 194, 0.4), 0 4px 12px rgba(10, 102, 194, 0.25) !important;
    }

    [data-theme="light"] .cred-social-btn--linkedin:hover {
      color: #ffffff !important;
      border-color: #0A66C2 !important;
      background: #0A66C2 !important;
      box-shadow: 0 0 20px rgba(10, 102, 194, 0.35), 0 4px 12px rgba(10, 102, 194, 0.2) !important;
    }

    /* X (Twitter) official black */
    .cred-social-btn--twitter {
      color: var(--text-dim);
      border-color: var(--glass-border);
      background: rgba(231, 233, 234, 0.12);

    }

    [data-theme="dark"] .cred-social-btn--twitter {
      color: #E7E9EA;
      border-color: rgba(231, 233, 234, 0.2);
      background: black;
    }

    [data-theme="light"] .cred-social-btn--twitter {
      color: white;
      border-color: rgba(15, 20, 25, 0.22);
      background: black;
    }

    [data-theme="dark"] .cred-social-btn--twitter:hover {
      color: #ffffff !important;
      border-color: rgba(231, 233, 234, 0.5) !important;
      background: black !important;
      box-shadow: 0 0 16px rgba(231, 233, 234, 0.12), 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    }

    [data-theme="light"] .cred-social-btn--twitter:hover {
      color: white !important;
      border-color: rgba(15, 20, 25, 0.5) !important;
      background: black !important;
      box-shadow: 0 0 14px rgba(15, 20, 25, 0.1), 0 4px 10px rgba(15, 20, 25, 0.08) !important;
    }


    /* ---- Vertical divider ---- */
    .cred-vdivider {
      width: 1px;
      align-self: stretch;
      background: var(--glass-border);
      margin: 0 2.5rem;
      min-height: 100px;
    }

    /* ---- Credibility columns ---- */
    .cred-columns {
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 1fr 2fr;
      gap: 0 2.5rem;
      align-items: start;
    }

    @media (max-width: 1400px) {
      .credibility-inner {
        grid-template-columns: minmax(260px, 360px) auto 1fr;
        gap: 0 1.5rem;
      }

      .cred-vdivider {
        margin: 0 1.75rem;
      }

      .cred-columns {
        gap: 0 1.5rem;
      }
    }

    @media (max-width: 1100px) {
      .credibility-inner {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .cred-vdivider {
        display: none;
      }

      .cred-columns {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
      }
    }

    .cred-group {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .cred-group-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.2rem;
    }

    .cred-group-icon {
      width: 30px;
      height: 30px;
      border-radius: 7px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      flex-shrink: 0;
    }

    [data-theme="light"] .cred-group-icon {
      color: var(--gold-dim);
    }

    .cred-group-label {
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
    }

    [data-theme="light"] .cred-group-label {
      color: var(--gold-dim);
    }

    .cred-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
    }

    .cred-badge-item {
      display: flex;
      align-items: center;
      text-decoration: none;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--glass-border);
      background: var(--glass);
      transition: all 0.28s;
      cursor: pointer;
      width: 76px;
      height: 76px;
    }

    [data-theme="dark"] .cred-badge-item {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(200, 164, 77, 0.22);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .cred-badge-item:hover {
      border-color: var(--gold);
      box-shadow: 0 6px 24px rgba(200, 164, 77, 0.2);
      transform: translateY(-3px) scale(1.04);
    }

    [data-theme="dark"] .cred-badge-item:hover {
      background: rgba(255, 255, 255, 0.18);
      box-shadow: 0 6px 28px rgba(200, 164, 77, 0.25), 0 0 12px rgba(200, 164, 77, 0.1), inset 0 0 0 1px rgba(200, 164, 77, 0.2);
    }

    .cred-badge-img-wrap {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px;
    }

    .cred-badge-img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    [data-theme="dark"] .cred-badge-img {
      filter: brightness(1.3) contrast(1.05);
    }

    [data-theme="dark"] .cred-badge-item:hover .cred-badge-img {
      filter: brightness(1.5) contrast(1.1) drop-shadow(0 0 4px rgba(200, 164, 77, 0.3));
    }

    /* ---- Main footer navigation columns ---- */

    /* ---- Footer Bottom Bar ---- */
    .footer-bottom--enhanced {
      position: relative;
      z-index: 2;
      padding: 1.25rem 4rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      border-top: 1px solid var(--glass-border);
      margin: 0 auto;
    padding: 1.25rem 4rem;
    }

    .footer-bottom-left p {
      font-size: 0.8rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    .footer-hq {
      font-size: 0.72rem !important;
      color: var(--text-muted) !important;
      margin-top: 2px;
    }

    .footer-bottom-links {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      flex-wrap: wrap;
    }

    .footer-bottom-links--center {
      justify-content: center;
    }

    .footer-bottom-links--right {
      justify-content: flex-end;
    }

    .footer-bottom-links a {
      font-size: 0.78rem;
      color: var(--text-secondary);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-bottom-links a:hover {
      color: var(--gold);
    }

    [data-theme="light"] .footer-bottom-links a:hover {
      color: var(--gold-dim);
    }

    .footer-sep {
      color: var(--text-muted);
      font-size: 0.7rem;
    }

    @media (max-width: 768px) {
      .footer-bottom--enhanced {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
      }

      .footer-bottom-links--center,
      .footer-bottom-links--right {
        justify-content: center;
      }
    }

    /* Animated scan line across footer */
    .footer-scan-line {
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(200, 164, 77, 0.03), transparent);
      animation: footerScan 8s ease-in-out infinite;
      pointer-events: none;
      z-index: 1;
    }

    @keyframes footerScan {
      0% {
        left: -60%;
      }

      100% {
        left: 110%;
      }
    }

    /* ---- Old footer CSS removed ---- */
    .footer-cta {
      background: linear-gradient(135deg, rgba(200, 164, 77, 0.1), rgba(200, 164, 77, 0.05));
      border: 1px solid rgba(200, 164, 77, 0.25);
      border-radius: 24px;
      padding: clamp(40px, 5vw, 72px);
      text-align: center;
      margin-bottom: 60px;
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    .footer-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(200, 164, 77, 0.1) 0%, transparent 60%);
    }

    .footer-cta h2 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      margin-bottom: 12px;
      position: relative;
    }

    .footer-cta p {
      font-size: 1rem;
      color: var(--text-secondary);
      margin-bottom: 28px;
      position: relative;
    }

    .footer-cta .btn-primary {
      position: relative;
    }

    /* ══════════════════ FINAL CTA SECTION — PREMIUM REDESIGN ══════════════════ */
    .final-cta-section {
      position: relative;
      overflow: hidden;
      padding: 100px clamp(20px, 4vw, 64px) 100px;
      background: var(--bg);
    }

    /* Ambient grid */
    .final-cta-bg-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(200, 164, 77, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 164, 77, 0.03) 1px, transparent 1px);
      background-size: 56px 56px;
      pointer-events: none;
      mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 80%);
    }

    /* Ambient glow orbs */
    .final-cta-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(70px);
    }

    .final-cta-orb-1 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(200, 164, 77, 0.12) 0%, transparent 65%);
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      animation: ctaOrbPulse1 7s ease-in-out infinite;
    }

    .final-cta-orb-2 {
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(200, 164, 77, 0.08) 0%, transparent 70%);
      bottom: -60px;
      left: 10%;
      animation: ctaOrbPulse2 9s ease-in-out infinite reverse;
    }

    .final-cta-orb-3 {
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(200, 164, 77, 0.06) 0%, transparent 70%);
      top: 20%;
      right: 8%;
      animation: ctaOrbPulse2 11s ease-in-out infinite;
    }

    @keyframes ctaOrbPulse1 {

      0%,
      100% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
      }

      50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
      }
    }

    @keyframes ctaOrbPulse2 {

      0%,
      100% {
        opacity: 0.5;
        transform: scale(1);
      }

      50% {
        opacity: 0.9;
        transform: scale(1.12);
      }
    }

    /* Inner container */
    .final-cta-inner {
      position: relative;
      z-index: 2;
      max-width: none;
      margin: 0 auto;
      text-align: center;
      background: rgba(15, 23, 42, 0.55);
      border: 1px solid rgba(200, 164, 77, 0.22);
      border-radius: 32px;
      padding: clamp(48px, 6vw, 88px) clamp(32px, 5vw, 80px);
      backdrop-filter: blur(32px);
      -webkit-backdrop-filter: blur(32px);
      box-shadow:
        0 0 0 1px rgba(200, 164, 77, 0.06) inset,
        0 48px 120px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(200, 164, 77, 0.06);
      overflow: hidden;
    }

    [data-theme="light"] .final-cta-inner {
      background: rgba(255, 255, 255, 0.75);
      border-color: rgba(200, 164, 77, 0.28);
      box-shadow: 0 0 0 1px rgba(200, 164, 77, 0.1) inset, 0 40px 100px rgba(0, 0, 0, 0.1), 0 0 60px rgba(200, 164, 77, 0.08);
    }

    /* Animated top-border sweep on inner card */
    .final-cta-inner::before {
      content: '';
      position: absolute;
      top: 0;
      left: -60%;
      width: 40%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      animation: ctaTopSweep 5s ease-in-out infinite;
      z-index: 3;
    }

    @keyframes ctaTopSweep {
      0% {
        left: -40%;
        opacity: 0;
      }

      15% {
        opacity: 1;
      }

      85% {
        opacity: 1;
      }

      100% {
        left: 110%;
        opacity: 0;
      }
    }

    /* Badge */
    .final-cta-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      border-radius: 100px;
      border: 1px solid rgba(200, 164, 77, 0.28);
      background: rgba(200, 164, 77, 0.08);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
      backdrop-filter: blur(8px);
    }

    .final-cta-badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      animation: blink 2s ease-in-out infinite;
    }

    /* Headline */
    .final-cta-headline {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 3.8vw, 3.4rem);
      font-weight: 800;
      line-height: 1.12;
      letter-spacing: -0.025em;
      color: var(--text-primary);
      margin-bottom: 24px;
    }

    .final-cta-headline-grad {
      background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 55%, var(--gold-dim) 100%);
      background-size: 200% 100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: ctaGradShift 4s ease-in-out infinite;
    }

    @keyframes ctaGradShift {

      0%,
      100% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }
    }

    /* Body */
    .final-cta-body {
      font-size: clamp(1rem, 1.3vw, 1.15rem);
      line-height: 1.75;
      color: var(--text-secondary);
      max-width: none;
      margin: 0 auto 36px;
      font-weight: 300;
    }

    /* CTA actions */
    .final-cta-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .final-cta-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 40px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
      color: #0A0A0D;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.04em;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s;
      box-shadow: 0 0 40px rgba(200, 164, 77, 0.35), 0 8px 24px rgba(200, 164, 77, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
      position: relative;
      overflow: hidden;
    }

    .final-cta-btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
      border-radius: 14px;
      pointer-events: none;
    }

    .final-cta-btn-primary:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 0 60px rgba(200, 164, 77, 0.55), 0 16px 40px rgba(200, 164, 77, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    /* Proof points */
    .final-cta-proof {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
      row-gap: 12px;
    }

    .final-cta-proof-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: var(--text-secondary);
      font-weight: 500;
      padding: 0 20px;
    }

    .final-cta-proof-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(200, 164, 77, 0.12);
      border: 1px solid rgba(200, 164, 77, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .final-cta-proof-icon svg {
      width: 10px;
      height: 10px;
    }

    .final-cta-proof-sep {
      width: 1px;
      height: 16px;
      background: rgba(200, 164, 77, 0.2);
      flex-shrink: 0;
    }

    @media (max-width: 768px) {
      .final-cta-section {
        padding: 72px 1.5rem;
      }

      .final-cta-inner {
        padding: 48px 28px;
        border-radius: 20px;
      }

      .final-cta-headline {
        font-size: clamp(1.75rem, 5.5vw, 2.4rem);
      }

      .final-cta-proof {
        flex-direction: column;
        gap: 8px;
      }

      .final-cta-proof-sep {
        display: none;
      }
    }

    /* ══════════════════ MASCOT ENTRY OVERLAY ══════════════════ */
    #mascot-entry-overlay {
      position: fixed;
      inset: 0;
      z-index: 9000;
      display: flex;
      align-items: center;
      justify-content: center;
      /* Cinematic frosted-glass background over the entire website */
      background: rgba(5, 5, 10, 0.72);
      backdrop-filter: blur(18px) saturate(0.8);
      -webkit-backdrop-filter: blur(18px) saturate(0.8);
      transition: backdrop-filter 1.2s cubic-bezier(0.23, 1, 0.32, 1),
        background 1.2s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.8s ease;
      /* Ambient gold radial glow at center */
      pointer-events: auto;
    }

    #mascot-entry-overlay::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 55% at 58% 52%, rgba(200, 164, 77, 0.09) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Scanline cinematic texture */
    #mascot-entry-overlay::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(0deg,
          transparent,
          transparent 3px,
          rgba(200, 164, 77, 0.012) 3px,
          rgba(200, 164, 77, 0.012) 4px);
      pointer-events: none;
      animation: scanlineScroll 8s linear infinite;
    }

    @keyframes scanlineScroll {
      from {
        background-position: 0 0;
      }

      to {
        background-position: 0 -200px;
      }
    }

    /* Stage: center-right positioning */
    #mascot-entry-stage {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      opacity: 0;
      transform: scale(0.82) translateY(36px);
      pointer-events: none;
      /* Slight right offset for cinematic composition */
      margin-left: 6vw;
    }

    /* Gold ambient glow ring around mascot */
    #mascot-entry-stage::before {
      content: '';
      position: absolute;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200, 164, 77, 0.13) 0%, rgba(200, 164, 77, 0.04) 45%, transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -45%);
      animation: entryGlowPulse 3s ease-in-out infinite;
      pointer-events: none;
      z-index: -1;
    }

    @keyframes entryGlowPulse {

      0%,
      100% {
        opacity: 0.7;
        transform: translate(-50%, -45%) scale(1);
      }

      50% {
        opacity: 1;
        transform: translate(-50%, -45%) scale(1.08);
      }
    }

    /* Outer depth ring */
    #mascot-entry-stage::after {
      content: '';
      position: absolute;
      width: 560px;
      height: 240px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(200, 164, 77, 0.07) 0%, transparent 70%);
      bottom: -40px;
      left: 50%;
      transform: translateX(-50%);
      filter: blur(20px);
      pointer-events: none;
    }

    #mascot-entry-figure {
      width: clamp(320px, 30vw, 480px);
      height: auto;
      display: block;
      animation: mascotEntryFloat 3.8s ease-in-out infinite paused;
      filter:
        drop-shadow(0 0 40px rgba(200, 164, 77, 0.45)) drop-shadow(0 0 80px rgba(200, 164, 77, 0.18)) drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
      transform-origin: center bottom;
    }

    @keyframes mascotEntryFloat {

      0%,
      100% {
        transform: translateY(0) rotate(0deg);
      }

      25% {
        transform: translateY(-16px) rotate(0.4deg);
      }

      50% {
        transform: translateY(-9px) rotate(-0.3deg);
      }

      75% {
        transform: translateY(-20px) rotate(0.2deg);
      }
    }

    /* Premium cloud speech bubble */
    #mascot-entry-bubble {
      position: absolute;
      top: -88px;
      left: 50%;
      transform: translateX(-50%) scale(0.88) translateY(10px);
      opacity: 0;
      /* Glassmorphism cloud style */
      background: linear-gradient(135deg, rgba(15, 20, 40, 0.92) 0%, rgba(22, 30, 55, 0.88) 100%);
      border: 1px solid rgba(200, 164, 77, 0.45);
      border-radius: 22px 22px 22px 6px;
      padding: 14px 26px;
      font-size: 0.9rem;
      white-space: nowrap;
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      color: var(--gold-soft);
      backdrop-filter: blur(24px) saturate(1.4);
      -webkit-backdrop-filter: blur(24px) saturate(1.4);
      box-shadow:
        0 0 0 1px rgba(200, 164, 77, 0.12),
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(200, 164, 77, 0.15),
        inset 0 1px 0 rgba(200, 164, 77, 0.2);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-size: 0.78rem;
      animation: entryBubbleFloat 2.8s ease-in-out infinite paused;
      min-width: 260px;
      text-align: center;
    }

    /* Typewriter cursor */
    #mascot-entry-bubble.typing::after {
      content: '▋';
      color: var(--gold);
      animation: cursorBlink 0.75s step-end infinite;
      margin-left: 2px;
    }

    @keyframes cursorBlink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0;
      }
    }

    [data-theme="light"] #mascot-entry-bubble {
      background: linear-gradient(135deg, rgba(245, 240, 225, 0.95) 0%, rgba(255, 252, 242, 0.92) 100%);
      color: var(--gold-dim);
      border-color: rgba(200, 164, 77, 0.5);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 30px rgba(200, 164, 77, 0.12);
    }

    /* Bubble tail */
    #mascot-entry-bubble::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 9px solid transparent;
      border-right: 9px solid transparent;
      border-top: 10px solid rgba(200, 164, 77, 0.45);
    }

    /* Inner glow line on bubble */
    #mascot-entry-bubble::before {
      content: '';
      position: absolute;
      top: 0;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(200, 164, 77, 0.5), transparent);
      border-radius: 1px;
    }

    @keyframes entryBubbleFloat {

      0%,
      100% {
        transform: translateX(-50%) translateY(0) scale(1);
      }

      50% {
        transform: translateX(-50%) translateY(-7px) scale(1.015);
      }
    }

    /* Bottom "skip" hint */
    #mascot-entry-skip {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(200, 164, 77, 0.4);
      cursor: pointer;
      font-family: 'Syne', sans-serif;
      transition: color 0.3s;
      user-select: none;
      padding: 8px 20px;
      border: 1px solid rgba(200, 164, 77, 0.15);
      border-radius: 100px;
      backdrop-filter: blur(8px);
    }

    #mascot-entry-skip:hover {
      color: rgba(200, 164, 77, 0.8);
      border-color: rgba(200, 164, 77, 0.35);
    }

    /* Boot status line */
    #mascot-entry-status {
      position: absolute;
      bottom: 90px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(200, 164, 77, 0.35);
      font-family: 'Syne', sans-serif;
    }

    #mascot-entry-status-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
      opacity: 0.6;
      animation: statusPulse 1.4s ease-in-out infinite;
    }

    @keyframes statusPulse {

      0%,
      100% {
        opacity: 0.3;
        transform: scale(0.8);
      }

      50% {
        opacity: 1;
        transform: scale(1.3);
      }
    }

    /* ══════════════════ FLOATING MASCOT ══════════════════ */
    #mascot-main {
      position: fixed;
      bottom: -10px;
      right: 50px;
      z-index: 500;
      animation: crownMascotFloat 4s ease-in-out infinite;
      filter: drop-shadow(0 20px 40px rgba(200, 164, 77, 0.3)) drop-shadow(0 0 20px rgba(200, 164, 77, 0.12));
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    [data-theme="light"] #mascot-main {
      filter: drop-shadow(0 20px 40px rgba(200, 164, 77, 0.2));
    }

    #mascot-main.mascot-hidden {
      opacity: 0;
      pointer-events: none;
      transform: translateY(70px) scale(0.8);
    }

    #mascot-main img {
      width: 160px;
      height: auto;
      display: block;
    }

    @keyframes crownMascotFloat {

      0%,
      100% {
        transform: translateY(0) rotate(-1.5deg);
      }

      25% {
        transform: translateY(-14px) rotate(1deg);
      }

      50% {
        transform: translateY(-8px) rotate(-1deg);
      }

      75% {
        transform: translateY(-18px) rotate(1.5deg);
      }
    }

    @keyframes mascot-wave {

      0%,
      100% {
        transform: translateY(0) rotate(-1.5deg);
      }

      30% {
        transform: translateY(-18px) rotate(8deg);
      }

      60% {
        transform: translateY(-10px) rotate(-5deg);
      }
    }

    @keyframes mascot-bounce {

      0%,
      100% {
        transform: translateY(0) scale(1) rotate(-1.5deg);
      }

      40% {
        transform: translateY(-22px) scale(1.05) rotate(2deg);
      }

      70% {
        transform: translateY(-8px) scale(0.98) rotate(-1deg);
      }
    }

    @keyframes mascot-nod {

      0%,
      100% {
        transform: translateY(0) rotate(-1.5deg);
      }

      30% {
        transform: translateY(-6px) rotate(-6deg);
      }

      60% {
        transform: translateY(-12px) rotate(4deg);
      }
    }

    #mascot-main.mascot-section-wave {
      animation: mascot-wave 1.2s ease-in-out 1, crownMascotFloat 4s ease-in-out 1.2s infinite;
    }

    #mascot-main.mascot-section-bounce {
      animation: mascot-bounce 0.9s cubic-bezier(0.36, 0.07, 0.19, 0.97) 1, crownMascotFloat 4s ease-in-out 0.9s infinite;
    }

    #mascot-main.mascot-section-nod {
      animation: mascot-nod 1s ease-in-out 1, crownMascotFloat 4s ease-in-out 1s infinite;
    }

    #mascot-main.mascot-section-idle {
      animation: crownMascotFloat 4s ease-in-out infinite;
    }

    /* Cloud speech bubble above floating mascot */
    .mascot-float-bubble {
      position: absolute;
      top: -58px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(17, 24, 39, 0.9);
      border: 1px solid rgba(200, 164, 77, 0.3);
      border-radius: 14px;
      padding: 7px 14px;
      font-size: 0.76rem;
      color: var(--gold-soft);
      white-space: nowrap;
      font-family: 'Syne', sans-serif;
      font-weight: 600;
      backdrop-filter: blur(12px);
      box-shadow: 0 8px 24px rgba(200, 164, 77, 0.18);
      animation: crownBubblePop 3s ease-in-out infinite;
      letter-spacing: 0.03em;
    }

    [data-theme="light"] .mascot-float-bubble {
      background: rgba(255, 250, 240, 0.92);
      color: var(--gold-dim);
      border-color: rgba(200, 164, 77, 0.4);
    }

    .mascot-float-bubble::after {
      content: '';
      position: absolute;
      bottom: -7px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-top: 7px solid rgba(200, 164, 77, 0.3);
    }

    @keyframes crownBubblePop {

      0%,
      80%,
      100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
      }

      40% {
        transform: translateX(-50%) scale(1.04);
      }
    }

    /* Overlay reveal transition */
    #mascot-entry-overlay.mascot-overlay-revealing {
      background: rgba(5, 5, 10, 0) !important;
      backdrop-filter: blur(0px) !important;
      -webkit-backdrop-filter: blur(0px) !important;
      opacity: 0;
      pointer-events: none;
    }

    /* ══════════════════ WEBSITE CINEMATIC BLUR STATE ══════════════════ */
    /* Applied to body while mascot intro is playing */
    body.mascot-intro-active #navbar,
    body.mascot-intro-active #hero,
    body.mascot-intro-active section,
    body.mascot-intro-active footer {
      filter: blur(6px);
      opacity: 0.45;
      transition: filter 1.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 1.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    body.mascot-intro-active .hero-bg {
      filter: blur(6px);
      opacity: 0.45;
      transition: filter 1.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 1.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    /* Reveal transition — these are set on exit */
    body.mascot-intro-revealing #navbar,
    body.mascot-intro-revealing #hero,
    body.mascot-intro-revealing section,
    body.mascot-intro-revealing footer,
    body.mascot-intro-revealing .hero-bg {
      filter: blur(0px);
      opacity: 1;
      transition: filter 1.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 1.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    /* ══════════════════ SCROLL ANIMATIONS ══════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
    }

    .reveal.visible {
      animation: revealUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    }

    @keyframes revealUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .stagger-1 {
      animation-delay: 0.1s !important;
    }

    .stagger-2 {
      animation-delay: 0.2s !important;
    }

    .stagger-3 {
      animation-delay: 0.3s !important;
    }

    .stagger-4 {
      animation-delay: 0.4s !important;
    }

    /* ══════════════════ AMBIENT GRID ══════════════════ */
    .ambient-grid {
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.04;
      background-image:
        linear-gradient(var(--gold) 1px, transparent 1px),
        linear-gradient(90deg, var(--gold) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    /* ══════════════════ HAMBURGER MENU ══════════════════ */
    .hamburger-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 42px;
      height: 42px;
      border: 1px solid var(--glass-border);
      border-radius: 10px;
      background: var(--glass);
      backdrop-filter: blur(12px);
      cursor: pointer;
      gap: 5px;
      padding: 10px;
      transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
      flex-shrink: 0;
      position: relative;
      z-index: 1001;
    }

    .hamburger-btn:hover {
      border-color: var(--gold-dim);
      background: rgba(200, 164, 77, 0.08);
      box-shadow: 0 0 16px rgba(200, 164, 77, 0.15);
    }

    .hamburger-line {
      display: block;
      width: 20px;
      height: 1.5px;
      background: var(--text-primary);
      border-radius: 2px;
      transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease, background 0.3s;
      transform-origin: center;
    }

    .hamburger-btn.open .hamburger-line:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
      background: var(--gold);
    }

    .hamburger-btn.open .hamburger-line:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .hamburger-btn.open .hamburger-line:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
      background: var(--gold);
    }

    /* Mobile overlay backdrop */
    .mobile-menu-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 998;
      background: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      opacity: 0;
      transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      pointer-events: none;
    }

    .mobile-menu-backdrop.visible {
      opacity: 1;
      pointer-events: all;
    }

    /* Mobile slide-in drawer */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: rgba(10, 10, 13, 0.92);
      backdrop-filter: blur(32px) saturate(1.8);
      -webkit-backdrop-filter: blur(32px) saturate(1.8);
      border-bottom: 1px solid rgba(200, 164, 77, 0.25);
      padding: 0;
      transform: translateY(-100%);
      transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s ease;
      opacity: 0;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(200, 164, 77, 0.08) inset;
    }

    [data-theme="light"] .mobile-menu {
      background: rgba(250, 250, 247, 0.95);
      border-bottom-color: rgba(200, 164, 77, 0.3);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(200, 164, 77, 0.1) inset;
    }

    .mobile-menu.open {
      transform: translateY(0);
      opacity: 1;
    }

    /* Mobile menu top header bar (matches nav height) */
    .mobile-menu-header {
      height: 76px;
      display: flex;
      align-items: center;
      padding: 0 clamp(20px, 5vw, 40px);
      border-bottom: 1px solid rgba(200, 164, 77, 0.1);
      flex-shrink: 0;
    }

    /* Mobile menu nav links */
    .mobile-menu-nav {
      padding: 24px clamp(20px, 5vw, 40px);
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .mobile-menu-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      border-radius: 12px;
      text-decoration: none;
      color: var(--text-secondary);
      font-family: 'Syne', sans-serif;
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      border: 1px solid transparent;
      transition: color 0.25s, background 0.25s, border-color 0.25s, opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1), transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateX(-16px);
    }

    .mobile-menu.open .mobile-menu-link {
      opacity: 1;
      transform: translateX(0);
    }

    .mobile-menu.open .mobile-menu-link:nth-child(1) {
      transition-delay: 0.08s;
    }

    .mobile-menu.open .mobile-menu-link:nth-child(2) {
      transition-delay: 0.12s;
    }

    .mobile-menu.open .mobile-menu-link:nth-child(3) {
      transition-delay: 0.16s;
    }

    .mobile-menu.open .mobile-menu-link:nth-child(4) {
      transition-delay: 0.20s;
    }

    .mobile-menu.open .mobile-menu-link:nth-child(5) {
      transition-delay: 0.24s;
    }

    .mobile-menu.open .mobile-menu-link:nth-child(6) {
      transition-delay: 0.28s;
    }

    .mobile-menu.open .mobile-menu-link:nth-child(7) {
      transition-delay: 0.32s;
    }

    .mobile-menu-link:hover,
    .mobile-menu-link.active {
      color: var(--gold-soft);
      background: rgba(200, 164, 77, 0.07);
      border-color: rgba(200, 164, 77, 0.2);
    }

    .mobile-menu-link-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      opacity: 0;
      transition: opacity 0.2s;
    }

    .mobile-menu-link:hover .mobile-menu-link-dot,
    .mobile-menu-link.active .mobile-menu-link-dot {
      opacity: 1;
    }

    /* Mobile menu CTA */
    .mobile-menu-cta {
      padding: 0 clamp(20px, 5vw, 40px) 32px;
      border-top: 1px solid rgba(200, 164, 77, 0.1);
      padding-top: 20px;
      margin-top: 4px;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.4s ease 0.36s, transform 0.4s ease 0.36s;
    }

    .mobile-menu.open .mobile-menu-cta {
      opacity: 1;
      transform: translateY(0);
    }

    .mobile-menu-cta .btn-primary {
      width: 100%;
      justify-content: center;
      padding: 16px 24px;
    }

    /* Gold accent line at top of mobile menu */
    .mobile-menu::before {
      content: '';
      position: absolute;
      top: 0;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0.6;
    }


    /* Typewriter cursor */
    .typewriter::after {
      content: '|';
      color: var(--gold);
      animation: blink 0.7s step-end infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0;
      }
    }

    /* ══════════════════ HERO TYPEWRITER ══════════════════ */
    .hero-typewriter-wrap {
      font-size: 3rem;
      display: inline;
      position: relative;
    }

    .hero-typewriter-text {
      background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 60%, #a07830 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      background-size: 200% 100%;
      animation: twShimmer 3s ease-in-out infinite;
      position: relative;
    }

    @keyframes twShimmer {
      0% {
        background-position: 100% 50%;
      }

      50% {
        background-position: 0% 50%;
      }

      100% {
        background-position: 100% 50%;
      }
    }

    .hero-typewriter-text::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0.5;
      animation: twUnderline 0.4s ease forwards;
      transform-origin: left;
    }

    @keyframes twUnderline {
      from {
        transform: scaleX(0);
        opacity: 0;
      }

      to {
        transform: scaleX(1);
        opacity: 0.5;
      }
    }

    .hero-typewriter-cursor {
      display: inline-block;
      width: 3px;
      height: 0.85em;
      background: linear-gradient(180deg, var(--gold-soft), var(--gold));
      margin-left: 4px;
      vertical-align: middle;
      border-radius: 2px;
      animation: twBlink 0.65s step-end infinite;
      -webkit-text-fill-color: initial;
      box-shadow: 0 0 8px rgba(200, 164, 77, 0.8), 0 0 20px rgba(200, 164, 77, 0.35);
    }

    @keyframes twBlink {

      0%,
      100% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(200, 164, 77, 0.8), 0 0 20px rgba(200, 164, 77, 0.35);
      }

      50% {
        opacity: 0;
        box-shadow: none;
      }
    }

    .hero-typewriter-cursor.done {
      animation: twBlinkSlow 1.4s step-end infinite;
      box-shadow: 0 0 12px rgba(200, 164, 77, 0.9), 0 0 28px rgba(200, 164, 77, 0.45);
    }

    @keyframes twBlinkSlow {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.15;
      }
    }

    .hero-typewriter-cursor.hidden {
      display: none;
    }

    /* Gold glow pulse behind the typewriter text once typing completes */
    .hero-typewriter-wrap.tw-complete::before {
      content: '';
      position: absolute;
      inset: -6px -12px;
      background: radial-gradient(ellipse at center, rgba(200, 164, 77, 0.12) 0%, transparent 70%);
      border-radius: 8px;
      animation: twGlowPulse 2.5s ease-in-out infinite;
      pointer-events: none;
      z-index: -1;
    }

    @keyframes twGlowPulse {

      0%,
      100% {
        opacity: 0.6;
        transform: scale(1);
      }

      50% {
        opacity: 1;
        transform: scale(1.04);
      }
    }

    /* ══════════════════ STATS COUNT-UP GLOW PULSE ══════════════════ */
    @keyframes statNumGlowPulse {

      0%,
      100% {
        text-shadow: 0 0 0px rgba(200, 164, 77, 0);
        filter: brightness(1);
      }

      50% {
        text-shadow: 0 0 18px rgba(200, 164, 77, 0.55), 0 0 32px rgba(200, 164, 77, 0.25);
        filter: brightness(1.15);
      }
    }

    .stat-num-counting {
      animation: statNumGlowPulse 0.6s ease-in-out infinite;
    }

    /* ══════════════════ PREMIUM STATS SECTION — HORIZONTAL ROW ══════════════════ */
    #premium-stats {
      background: var(--bg);
      overflow: hidden;
      position: relative;
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .stats-bg-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(200, 164, 77, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 164, 77, 0.025) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
    }

    /* Ambient glow orbs behind stats */
    #premium-stats::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 200px;
      background: radial-gradient(ellipse, rgba(200, 164, 77, 0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .stats-section-header {
      text-align: center;
      margin-bottom: 56px;
      position: relative;
      z-index: 1;
    }

    .stats-section-header h2 {
      font-size: clamp(1.8rem, 3.2vw, 2.8rem);
      letter-spacing: -0.02em;
      margin-top: 14px;
    }

    /* ─── Single horizontal row layout ─── */
    .stats-row {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: stretch;
      gap: 0;
      border: 1px solid rgba(200, 164, 77, 0.18);
      border-radius: 24px;
      overflow: hidden;
      background: var(--glass);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      box-shadow:
        0 0 0 1px rgba(200, 164, 77, 0.05) inset,
        0 40px 80px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(200, 164, 77, 0.05);
    }

    [data-theme="dark"] .stats-row {
      background: rgba(15, 23, 42, 0.6);
    }

    [data-theme="light"] .stats-row {
      background: rgba(255, 255, 255, 0.7);
      border-color: rgba(200, 164, 77, 0.25);
      box-shadow: 0 0 0 1px rgba(200, 164, 77, 0.08) inset, 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 40px rgba(200, 164, 77, 0.06);
    }

    /* Animated top border light sweep */
    .stats-row::before {
      content: '';
      position: absolute;
      top: 0;
      left: -60%;
      width: 40%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      animation: statsTopSweep 4s ease-in-out infinite;
      z-index: 2;
    }

    @keyframes statsTopSweep {
      0% {
        left: -40%;
        opacity: 0;
      }

      20% {
        opacity: 1;
      }

      80% {
        opacity: 1;
      }

      100% {
        left: 100%;
        opacity: 0;
      }
    }

    /* Individual stat item */
    .stat-item {
      flex: 1;
      position: relative;
      padding: 48px 36px 44px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      cursor: default;
      transition: background 0.4s ease;
    }

    .stat-item:hover {
      background: rgba(200, 164, 77, 0.04);
    }

    /* Vertical divider between items */
    .stat-item+.stat-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 24px;
      bottom: 24px;
      width: 1px;
      background: linear-gradient(180deg, transparent, rgba(200, 164, 77, 0.2), transparent);
    }

    /* Icon badge */
    .stat-item-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(200, 164, 77, 0.15), rgba(200, 164, 77, 0.05));
      border: 1px solid rgba(200, 164, 77, 0.22);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      transition: box-shadow 0.3s;
    }

    .stat-item:hover .stat-item-icon {
      box-shadow: 0 0 20px rgba(200, 164, 77, 0.25);
    }

    .stat-item-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--gold);
    }

    /* Big number */
    .stat-item-num {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.8rem, 4vw, 4rem);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.04em;
      background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 55%, var(--gold-dim) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 10px;
    }

    /* Label */
    .stat-item-label {
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-primary);
      line-height: 1.6;
      margin-bottom: 10px;
      max-width: none;
    }

    /* Description */
    .stat-item-desc {
      font-size: 0.78rem;
      color: var(--text-secondary);
      line-height: 1.6;
      flex: 1;
      max-width: 220px;
    }

    /* Bottom pulse badge */
    .stat-item-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: 100px;
      background: rgba(200, 164, 77, 0.08);
      border: 1px solid rgba(200, 164, 77, 0.18);
      font-size: 0.66rem;
      color: var(--gold);
      font-weight: 600;
      letter-spacing: 0.05em;
      margin-top: 18px;
    }

    .stat-item-badge-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
      animation: statDotPulse 1.8s ease-in-out infinite;
    }

    /* Glow accent line at item bottom */
    .stat-item::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 24px;
      right: 24px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(200, 164, 77, 0.2), transparent);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .stat-item:hover::after {
      opacity: 1;
    }

    @keyframes statDotPulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.4;
        transform: scale(1.4);
      }
    }

    @media (max-width: 900px) {
      .stats-row {
        flex-direction: column;
        gap: 0;
      }

      .stat-item+.stat-item::before {
        top: 0;
        left: 24px;
        right: 24px;
        bottom: auto;
        width: auto;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(200, 164, 77, 0.2), transparent);
      }

      .stat-item {
        padding: 36px 32px;
      }

      .stat-item-desc {
        max-width: 100%;
      }

      .stat-item-label {
        max-width: 100%;
      }
    }

    /* Keep old classes for legacy selectors that may still exist */
    .stat-card {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 40px 36px;
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      position: relative;
      overflow: hidden;
      transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      cursor: default;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 30% 20%, rgba(200, 164, 77, 0.07) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .stat-card:hover {
      border-color: rgba(200, 164, 77, 0.5);
      box-shadow: 0 20px 60px rgba(200, 164, 77, 0.12), 0 0 0 1px rgba(200, 164, 77, 0.08);
      transform: translateY(-6px);
    }

    .stat-card:hover::before {
      opacity: 1;
    }

    /* Main large card — spans 2 rows */
    .stat-card-main {
      grid-column: 1;
      grid-row: 1 / 3;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 380px;
    }

    .stat-card-wide {
      grid-column: 2 / 4;
      grid-row: 1;
    }

    .stat-card-sm1 {
      grid-column: 2;
      grid-row: 2;
    }

    .stat-card-sm2 {
      grid-column: 3;
      grid-row: 2;
    }

    .stat-number {
      font-family: 'Syne', sans-serif;
      font-size: clamp(3.5rem, 6vw, 5.5rem);
      font-weight: 800;
      line-height: 1;
      background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 60%, var(--gold-dim) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.03em;
    }

    .stat-suffix {
      font-size: 0.5em;
      vertical-align: super;
    }

    .stat-label {
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--text-primary);
      margin-top: 12px;
      line-height: 1.4;
    }

    .stat-desc {
      font-size: 0.82rem;
      color: var(--text-secondary);
      line-height: 1.65;
      margin-top: 8px;
    }

    .stat-icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(200, 164, 77, 0.18), rgba(200, 164, 77, 0.06));
      border: 1px solid rgba(200, 164, 77, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }

    .stat-icon-wrap svg {
      width: 22px;
      height: 22px;
      stroke: var(--gold);
    }

    /* Floating data badge inside card */
    .stat-float-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 12px;
      border-radius: 100px;
      background: rgba(200, 164, 77, 0.1);
      border: 1px solid rgba(200, 164, 77, 0.2);
      font-size: 0.7rem;
      color: var(--gold);
      font-weight: 600;
      letter-spacing: 0.04em;
      margin-top: 16px;
    }

    .stat-float-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
      animation: statDotPulse 1.8s ease-in-out infinite;
    }

    @keyframes statDotPulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.4;
        transform: scale(1.4);
      }
    }

    /* Connection lines SVG overlay */
    .stats-connections {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .stats-conn-line {
      stroke: var(--gold);
      stroke-width: 0.8;
      fill: none;
      stroke-dasharray: 4 6;
      opacity: 0.12;
      animation: statsLineMove 4s linear infinite;
    }

    .stats-conn-line:nth-child(2) {
      animation-delay: -1.3s;
      opacity: 0.08;
    }

    .stats-conn-line:nth-child(3) {
      animation-delay: -2.7s;
      opacity: 0.06;
    }

    @keyframes statsLineMove {
      to {
        stroke-dashoffset: -40;
      }
    }

    /* Wide card layout */
    .stat-card-wide-inner {
      display: flex;
      align-items: center;
      gap: 48px;
    }

    .stat-card-wide-left {
      flex: 0 0 auto;
    }

    .stat-card-wide-right {
      flex: 1;
    }

    .stat-progress-bar {
      height: 4px;
      background: rgba(200, 164, 77, 0.12);
      border-radius: 2px;
      overflow: hidden;
      margin-top: 16px;
    }

    .stat-progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-soft));
      border-radius: 2px;
      width: 0%;
      transition: width 1.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .stat-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 14px;
    }

    .stat-tag {
      font-size: 0.68rem;
      padding: 4px 10px;
      border-radius: 6px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      color: var(--text-muted);
      letter-spacing: 0.06em;
    }

    @media (max-width: 900px) {
      .stats-dashboard {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .stat-card-main {
        grid-column: 1 / 3;
        grid-row: 1;
        min-height: 260px;
        flex-direction: row;
      }

      .stat-card-wide {
        grid-column: 1 / 3;
        grid-row: 2;
      }

      .stat-card-sm1 {
        grid-column: 1;
        grid-row: 3;
      }

      .stat-card-sm2 {
        grid-column: 2;
        grid-row: 3;
      }
    }

    @media (max-width: 600px) {
      .stats-dashboard {
        grid-template-columns: 1fr;
      }

      .stat-card-main,
      .stat-card-wide,
      .stat-card-sm1,
      .stat-card-sm2 {
        grid-column: 1;
        grid-row: auto;
      }

      .stat-card-wide-inner {
        flex-direction: column;
        gap: 24px;
      }

      section {
        padding: 72px 1.25rem;
      }

      footer {
        padding: 60px 1.25rem 32px;
      }

      #hero {
        padding: 120px 1.25rem 72px;
      }

      .nav-inner {
        padding: 0 1.25rem;
      }

      .credibility-strip {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
      }
    }

    /* ══════════════════ VIDEO SHOWCASE SECTION ══════════════════ */
    #video-showcase {
      background: var(--bg);
      overflow: hidden;
      position: relative;
    }

    [data-theme="light"] #video-showcase {
      background: var(--navy);
    }

    .video-bg-gradient {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(200, 164, 77, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .video-section-header {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      z-index: 1;
    }

    .video-section-header h2 {
      font-size: clamp(1.8rem, 3.2vw, 2.8rem);
      letter-spacing: -0.02em;
      margin-top: 14px;
    }

    .video-section-header p {
      font-size: 1rem;
      color: var(--text-secondary);
      max-width: none;
      margin: 16px auto 0;
      line-height: 1.7;
      font-weight: 300;
    }

    /* Video container */
    .video-container {
      position: relative;
      z-index: 1;
      max-width: 1000px;
      margin: 0 auto;
      border-radius: 20px;
      overflow: hidden;
      background: var(--surface);
      border: 1px solid rgba(200, 164, 77, 0.2);
      box-shadow:
        0 0 0 1px rgba(200, 164, 77, 0.06),
        0 40px 100px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(200, 164, 77, 0.08);
      opacity: 0;
      transform: translateY(40px) scale(0.97);
      transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
    }

    [data-theme="light"] .video-container {
      box-shadow: 0 0 0 1px rgba(200, 164, 77, 0.1), 0 40px 100px rgba(0, 0, 0, 0.15), 0 0 60px rgba(200, 164, 77, 0.08);
    }

    .video-container.revealed {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .video-aspect {
      position: relative;
      aspect-ratio: 16/9;
      background: var(--surface-2);
    }

    .video-aspect iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Custom controls overlay */
    .video-controls-bar {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 20px;
      background: var(--surface);
      backdrop-filter: blur(20px);
      border-top: 1px solid rgba(200, 164, 77, 0.1);
    }

    .vid-btn {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(200, 164, 77, 0.08);
      border: 1px solid rgba(200, 164, 77, 0.15);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
      flex-shrink: 0;
    }

    .vid-btn:hover {
      background: rgba(200, 164, 77, 0.16);
      border-color: rgba(200, 164, 77, 0.35);
      transform: scale(1.08);
    }

    .vid-btn svg {
      width: 14px;
      height: 14px;
    }

    .vid-seek-wrap {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .vid-time {
      font-size: 0.68rem;
      color: var(--text-muted);
      font-variant-numeric: tabular-nums;
      white-space: nowrap;
      min-width: 36px;
    }

    .vid-seek-bar {
      flex: 1;
      height: 3px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 2px;
      position: relative;
      cursor: pointer;
    }

    .vid-seek-fill {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      background: linear-gradient(90deg, var(--gold-dim), var(--gold));
      border-radius: 2px;
      width: 0%;
      transition: width 0.3s linear;
      pointer-events: none;
    }

    .vid-seek-thumb {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 8px rgba(200, 164, 77, 0.5);
      left: 0%;
      pointer-events: none;
      transition: left 0.3s linear;
    }

    .vid-vol-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .vid-vol-slider {
      -webkit-appearance: none;
      appearance: none;
      width: 72px;
      height: 3px;
      background: rgba(200, 164, 77, 0.2);
      border-radius: 2px;
      outline: none;
      cursor: pointer;
    }

    .vid-vol-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--gold);
      cursor: pointer;
      box-shadow: 0 0 6px rgba(200, 164, 77, 0.5);
    }

    .vid-vol-slider::-moz-range-thumb {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--gold);
      cursor: pointer;
      border: none;
      box-shadow: 0 0 6px rgba(200, 164, 77, 0.5);
    }

    .vid-fs-icon-enter,
    .vid-fs-icon-exit {
      display: block;
    }

    .vid-fs-icon-exit {
      display: none;
    }

    /* ══════════════════ PROBLEM REDESIGN ══════════════════ */
    #problem {
      background: var(--bg);
      overflow: hidden;
    }

    [data-theme="dark"] #problem {
      background: #060810;
    }

    [data-theme="light"] #problem {
      background: var(--navy);
    }

    .problem-header {
      text-align: center;
      max-width: none;
      margin: 0 auto 80px;
      position: relative;
      z-index: 2;
    }

       .video-section-header h2 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin: 14px 0 20px;
      line-height: 1.2;
    }

    .problem-header h2 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin: 14px 0 20px;
      line-height: 1.2;
    }

    .problem-header p {
      font-size: 1.2rem;
      line-height: 1.75;
      color: var(--text-secondary);
      font-weight: 300;
    }

    /* Architecture diagram */
    .problem-diagram {
      position: relative;
      z-index: 2;
      max-width: 960px;
      margin: 0 auto;
    }

    .problem-arch {
      position: relative;
      min-height: 520px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Central broken hub */
    .arch-center {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 5;
    }

    .arch-center-ring {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: #3c3c3c;
      border: 2px dashed rgba(239, 68, 68, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      animation: brokenPulse 2.5s ease-in-out infinite;
    }
     [data-theme="light"] .arch-center-ring {
      background: #fff3f3;
    }

    @keyframes brokenPulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.2);
        border-color: rgba(239, 68, 68, 0.4);
      }

      50% {
        box-shadow: 0 0 30px 10px rgba(239, 68, 68, 0.08);
        border-color: rgba(239, 68, 68, 0.65);
      }
    }

    .arch-center-label {
      font-size: 0.65rem;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #f87171;
      text-align: center;
      line-height: 1.3;
    }

    .arch-center-icon {
      font-size: 1.4rem;
      margin-bottom: 1.2px;
      margin-left: 1.4rem;
    }

    /* Satellite nodes */
    .arch-node {
      position: absolute;
      background: var(--surface);
      border-radius: 14px;
      padding: 16px 18px;
      min-width: 150px;
      border: 1px solid rgba(200, 164, 77, 0.15);
      backdrop-filter: blur(16px);
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    [data-theme="dark"] .arch-node {
      background: rgb(66 66 66 / 90%);
    }

    .arch-node:hover {
      border-color: rgba(239, 68, 68, 0.4);
      box-shadow: 0 8px 30px rgba(239, 68, 68, 0.08);
    }

    .arch-node-icon {
      font-size: 1.2rem;
      margin-bottom: 6px;
    }

    .arch-node-title {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 4px;
    }

    .arch-node-sub {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .arch-node-error {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 0.6rem;
      color: #f87171;
      margin-top: 6px;
      padding: 2px 7px;
      background: rgba(239, 68, 68, 0.1);
      border-radius: 4px;
    }

    .arch-node-error-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #f87171;
      animation: errDot 1.5s ease-in-out infinite;
    }

    @keyframes errDot {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.2;
      }
    }

    /* Positions */
    .arch-node-1 {
      top: 5%;
      left: 10%;
    }

    .arch-node-2 {
      top: 5%;
      right: 10%;
    }

    .arch-node-3 {
      top: 50%;
      left: 0%;
      transform: translateY(-50%);
    }

    .arch-node-4 {
      top: 50%;
      right: 0%;
      transform: translateY(-50%);
    }

    .arch-node-5 {
      bottom: 5%;
      left: 10%;
    }

    .arch-node-6 {
      bottom: 5%;
      right: 10%;
    }

    /* Broken connection lines */
    .arch-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      /* pointer-events: none;
      z-index: 3; */
    }

    .arch-broken-line {
          stroke: rgb(239 68 68 / 60%);
      stroke-width: 1.5;
      fill: none;
      stroke-dasharray: 5 5;
      animation: brokenDash 2s linear infinite;
    }

    .arch-broken-line:nth-child(even) {
          stroke: rgb(239 68 68 / 60%);
      animation-direction: reverse;
    }

    @keyframes brokenDash {
      to {
        stroke-dashoffset: -20;
      }
    }

    .arch-error-flash {
      fill: rgba(239, 68, 68, 0.5);
      animation: flashNode 3s ease-in-out infinite;
    }

    @keyframes flashNode {

      0%,
      80%,
      100% {
        opacity: 0;
      }

      85%,
      95% {
        opacity: 1;
      }
    }

    /* Warning badges floating */
    .arch-warning {
      position: absolute;
      padding: 5px 11px;
      border-radius: 8px;
      background: #f4dfd7;
      border: 1px solid rgba(239, 68, 68, 0.3);
      font-size: 0.65rem;
      color: #f87171;
      font-weight: 500;
      z-index: 6;
      white-space: nowrap;
      backdrop-filter: blur(12px);
    }

    .arch-warning-1 {
      top: 30%;
      left: 30%;
      animation: float1 4s ease-in-out infinite;
    }

    .arch-warning-2 {
      top: 30%;
      right: 30%;
      animation: float2 5s ease-in-out infinite;
    }

    .arch-warning-3 {
      bottom: 25%;
      right: 28%;
      animation: float3 6s ease-in-out infinite;
    }

    .arch-warning-4 {
      bottom: 20%;
      left: 28%;
      animation: float1 4.5s ease-in-out infinite reverse;
    }

    /* Problem architecture diagram: switch from absolute orbit
       layout to a flowing card grid below the broken hub */
    @media (max-width: 1024px) {
      .problem-arch {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding: 20px 0;
      }

      .arch-svg {
        display: none;
      }

      .arch-center {
        position: static;
        transform: none;
      }

      .arch-node {
        position: static;
        min-width: 0;
        width: 100%;
        transform: none !important;
      }

      .problem-diagram .arch-node-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        width: 100%;
      }

      .arch-warning {
        display: none;
      }
    }

    @media (max-width: 600px) {
      .problem-diagram .arch-node-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Bottom text block */
    .problem-text-bottom {
      max-width: none;
      margin: 60px auto 0;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .problem-text-bottom p {
      font-size: 1.2rem;
      line-height: 1.8;
      color: var(--text-secondary);
      font-weight: 300;
    }

    .problem-text-bottom p+p {
      margin-top: 16px;
    }

    .problem-highlight {
      color: #f87171;
      font-weight: 500;
    }

    /* ══════════════════ REAL IMPACT — OPERATIONAL TRANSFORMATION JOURNEY ══════════════════ */
    #real-impact {
      background: var(--navy);
      overflow: hidden;
      position: relative;
    }

    [data-theme="dark"] #real-impact {
      background: #040609;
    }

    /* Ambient background mesh */
    #real-impact::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 40% at 20% 30%, rgba(200, 164, 77, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 70%, rgba(200, 164, 77, 0.04) 0%, transparent 60%);
      pointer-events: none;
    }

    /* Fine dot grid */
    #real-impact::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(200, 164, 77, 0.12) 1px, transparent 1px);
      background-size: 32px 32px;
      opacity: 0.35;
      mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 75%);
      pointer-events: none;
    }

    .impact-intro {
      position: relative;
      z-index: 2;
      max-width: none;
      margin: 0 auto 80px;
      text-align: center;
    }

    .impact-intro h2 {
      font-size: clamp(1.9rem, 3.2vw, 2.9rem);
      font-weight :800;
      letter-spacing: -0.02em;
      margin: 14px 0 22px;
      line-height: 1.15;
    }

    .impact-intro p {
      font-size: 1.2rem;
      line-height: 1.8;
      color: var(--text-secondary);
      font-weight: 300;
    }

    /* ─── Journey Canvas ─── */
    .impact-journey {
      position: relative;
      z-index: 2;
    }

    /* ─── Central spine line ─── */
    .impact-spine {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 1px;
      transform: translateX(-50%);
      background: linear-gradient(180deg, transparent, rgba(200, 164, 77, 0.3) 10%, rgba(200, 164, 77, 0.3) 90%, transparent);
      pointer-events: none;
    }

    .impact-spine::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, transparent, var(--gold), transparent);
      animation: spineFlow 3s ease-in-out infinite;
      opacity: 0.4;
    }

    @keyframes spineFlow {
      0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
      }

      40% {
        opacity: 0.6;
      }

      100% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 0;
      }
    }

    /* ─── Outcome row ─── */
    .impact-outcome {
      display: grid;
      grid-template-columns: 1fr 60px 1fr;
      align-items: center;
      gap: 0 0;
      margin-bottom: 0;
      position: relative;
    }

    /* Alternate alignment */
    .impact-outcome:nth-child(even) .impact-outcome-content {
      grid-column: 3;
      text-align: left;
    }

    .impact-outcome:nth-child(even) .impact-outcome-spacer {
      grid-column: 1;
      /* grid-row: 1;
      order: -1; */
    }

    .impact-outcome:nth-child(even) .impact-outcome-node {
      grid-column: 2;
    }

    .impact-outcome-spacer {
      min-height: 120px;
    }

    /* Central node dot */
    .impact-outcome-node {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 3;
      padding: 16px 0;
    }

    .impact-node-dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--gold);
      border: 3px solid rgba(200, 164, 77, 0.3);
      box-shadow: 0 0 0 0 rgba(200, 164, 77, 0.4);
      transition: box-shadow 0.4s;
    }

    .impact-outcome:hover .impact-node-dot {
      box-shadow: 0 0 0 8px rgba(200, 164, 77, 0.12), 0 0 20px rgba(200, 164, 77, 0.4);
    }

    /* Horizontal connector from dot to content */
    .impact-node-connector {
      position: absolute;
      top: 50%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(200, 164, 77, 0.3));
      width: 60px;
      transform: translateY(-50%);
    }

    .impact-outcome:nth-child(odd) .impact-node-connector {
      right: 100%;
      background: linear-gradient(270deg, transparent, rgba(200, 164, 77, 0.3));
    }

    .impact-outcome:nth-child(even) .impact-node-connector {
      left: 100%;
      background: linear-gradient(90deg, transparent, rgba(200, 164, 77, 0.3));
    }

    /* Content panels */
    .impact-outcome-content {
      padding: 10px 0;
      position: relative;
    }

    .impact-outcome:nth-child(odd) .impact-outcome-content {
      grid-column: 1;
      text-align: right;
      padding-right: 48px;
    }

    .impact-outcome:nth-child(even) .impact-outcome-content {
      grid-column: 3;
      text-align: left;
      padding-left: 48px;
    }

    .impact-outcome-metric {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.5rem, 4vw, 3.8rem);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.04em;
      background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 55%, var(--gold-dim) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 8px;
      transition: filter 0.4s;
    }

    .impact-outcome:hover .impact-outcome-metric {
      filter: drop-shadow(0 0 12px rgba(200, 164, 77, 0.5));
    }

    .impact-outcome-title {
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .impact-outcome-desc {
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.65;
    }

    .impact-outcome-tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-top: 14px;
    }

    .impact-outcome:nth-child(odd) .impact-outcome-tags {
      justify-content: flex-end;
    }

    .impact-outcome-tag {
      font-size: 0.62rem;
      padding: 3px 9px;
      border-radius: 5px;
      background: rgba(200, 164, 77, 0.07);
      border: 1px solid rgba(200, 164, 77, 0.16);
      color: var(--gold);
      letter-spacing: 0.06em;
      font-weight: 600;
    }

    /* ─── Separator between outcomes ─── */
    .impact-outcome-sep {
      display: flex;
      align-items: center;
      justify-content: center;
      grid-column: 2;
      height: 40px;
      position: relative;
    }

    .impact-outcome-sep::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 1px;
      transform: translateX(-50%);
      background: rgba(200, 164, 77, 0.2);
    }

    /* ─── Bottom summary bar ─── */
    .impact-summary-bar {
      position: relative;
      z-index: 2;
      margin-top: 72px;
      border: 1px solid rgba(200, 164, 77, 0.2);
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(200, 164, 77, 0.05), rgba(200, 164, 77, 0.02));
      backdrop-filter: blur(20px);
      padding: 36px 48px;
      display: flex;
      align-items: center;
      gap: 48px;
      flex-wrap: wrap;
      overflow: hidden;
    }

    .impact-summary-bar::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0.4;
    }

    .impact-summary-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(200, 164, 77, 0.18), rgba(200, 164, 77, 0.06));
      border: 1px solid rgba(200, 164, 77, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .impact-summary-icon svg {
      width: 22px;
      height: 22px;
      stroke: var(--gold);
    }

    .impact-summary-text {
      flex: 1;
      min-width: 200px;
    }

    .impact-summary-text h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .impact-summary-text p {
      font-size: 0.82rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .impact-summary-pills {
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex-shrink: 0;
    }

    .impact-summary-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.72rem;
      color: var(--gold);
      font-weight: 600;
      letter-spacing: 0.04em;
    }

    .impact-summary-pill-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      animation: statDotPulse 1.8s ease-in-out infinite;
    }

    .impact-summary-pill:nth-child(2) .impact-summary-pill-dot {
      animation-delay: 0.6s;
    }

    .impact-summary-pill:nth-child(3) .impact-summary-pill-dot {
      animation-delay: 1.2s;
    }

    @media (max-width: 900px) {
      .impact-spine {
        display: none;
      }

      .impact-outcome {
        grid-template-columns: 1fr;
        margin-bottom: 24px;
      }

      .impact-outcome:nth-child(odd) .impact-outcome-content,
      .impact-outcome:nth-child(even) .impact-outcome-content {
        grid-column: 1;
        text-align: left;
        padding: 28px 24px;
      }

      .impact-outcome:nth-child(odd) .impact-outcome-tags,
      .impact-outcome:nth-child(even) .impact-outcome-tags {
        justify-content: flex-start;
      }

      .impact-outcome-spacer,
      .impact-outcome-node {
        display: none;
      }

      .impact-summary-bar {
        padding: 28px 24px;
        gap: 24px;
      }

      .impact-outcome-content {
        border-left: 2px solid rgba(200, 164, 77, 0.25);
        border-radius: 0 12px 12px 0;
        background: rgba(200, 164, 77, 0.03);
      }
    }

    /* ══════════════════ FOOTER LOGO VISIBILITY — PREMIUM TREATMENT ══════════════════ */
    /* Brand logo in footer (OpenEyes) */
    .cred-logo-wrap {
      display: inline-block;
      border-radius: 10px;
      padding: 6px 12px;
      transition: background 0.4s ease, border-color 0.4s ease;
    }

    [data-theme="dark"] .cred-logo-wrap {
      background: rgba(255, 255, 255, 0.10);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    [data-theme="light"] .cred-logo-wrap {
      background: transparent;
      border: none;
    }

    /* [data-theme="dark"] .cred-logo-img {
      filter: brightness(1.6) contrast(1.05) drop-shadow(0 0 10px rgba(200,164,77,0.2));
      opacity: 1;
    } */
    [data-theme="light"] .cred-logo-img {
      filter: brightness(0.85) contrast(1.1);
      opacity: 1;
    }

    /* Badge image wrappers — white card for dark mode logo legibility */
    [data-theme="dark"] .cred-badge-item {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(200, 164, 77, 0.2);
    }

    [data-theme="dark"] .cred-badge-img-wrap {
      background: rgba(255, 255, 255, 0.94);
      border-radius: 8px;
      padding: 7px;
    }

    [data-theme="light"] .cred-badge-img-wrap {
      background: rgba(255, 255, 255, 0.75);
      border-radius: 8px;
      padding: 7px;
    }

    /* In dark mode the white card background means logos render at full fidelity — no filter needed */
    [data-theme="dark"] .cred-badge-img {
      filter: none;
      opacity: 1;
    }

    [data-theme="dark"] .cred-badge-item:hover .cred-badge-img {
      filter: drop-shadow(0 0 4px rgba(200, 164, 77, 0.35));
    }

    [data-theme="dark"] .cred-badge-item:hover {
      border-color: rgba(200, 164, 77, 0.45);
      box-shadow: 0 6px 28px rgba(200, 164, 77, 0.15);
      transform: translateY(-3px) scale(1.03);
    }

    [data-theme="light"] .cred-badge-img {
      filter: none;
      opacity: 1;
    }

    [data-theme="light"] .cred-badge-item:hover .cred-badge-img {
      filter: drop-shadow(0 0 4px rgba(200, 164, 77, 0.25));
    }

    /* ══════════════════ FAQ SECTION ══════════════════ */
    #faq {
      background: var(--bg);
      overflow: hidden;
      position: relative;
    }

    #faq::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(200, 164, 77, 0.25), transparent);
      pointer-events: none;
    }

    .faq-bg-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(200, 164, 77, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 164, 77, 0.025) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
    }

    .faq-header {
      text-align: center;
      margin-bottom: 64px;
      position: relative;
      z-index: 1;
    }

    .faq-header h2 {
      font-weight:800;
      font-size: clamp(1.8rem, 3.2vw, 2.8rem);
      letter-spacing: -0.02em;
      margin-top: 14px;
    }

    .faq-list {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 0;
      max-width: 860px;
      margin: 0 auto;
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      overflow: hidden;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      background: var(--glass);
    }

    [data-theme="dark"] .faq-list {
      background: rgba(15, 23, 42, 0.45);
    }

    [data-theme="light"] .faq-list {
      background: rgba(255, 255, 255, 0.6);
      border-color: rgba(200, 164, 77, 0.25);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06), 0 0 40px rgba(200, 164, 77, 0.06);
    }

    .faq-item {
      border-bottom: 1px solid var(--glass-border);
      position: relative;
      transition: background 0.3s ease;
    }

    .faq-item:last-child {
      border-bottom: none;
    }

    .faq-item.faq-open {
      background: rgba(200, 164, 77, 0.04);
    }

    [data-theme="light"] .faq-item.faq-open {
      background: rgba(200, 164, 77, 0.05);
    }

    .faq-question {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 26px 32px;
      cursor: pointer;
      user-select: none;
      position: relative;
    }

    .faq-q-icon {
      width: 32px;
      height: 32px;
      border-radius: 9px;
      background: linear-gradient(135deg, rgba(200, 164, 77, 0.15), rgba(200, 164, 77, 0.05));
      border: 1px solid rgba(200, 164, 77, 0.22);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-family: 'Syne', sans-serif;
      font-size: 0.7rem;
      font-weight: 800;
      color: var(--gold);
      transition: background 0.3s, box-shadow 0.3s;
    }

    .faq-item.faq-open .faq-q-icon {
      background: linear-gradient(135deg, rgba(200, 164, 77, 0.3), rgba(200, 164, 77, 0.12));
      box-shadow: 0 0 16px rgba(200, 164, 77, 0.2);
    }

    .faq-q-text {
      flex: 1;
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-primary);
      line-height: 1.35;
      transition: color 0.3s;
    }

    .faq-item.faq-open .faq-q-text {
      color: var(--gold-soft);
    }

    [data-theme="light"] .faq-item.faq-open .faq-q-text {
      color: var(--gold-dim);
    }

    .faq-toggle {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(200, 164, 77, 0.08);
      border: 1px solid rgba(200, 164, 77, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.3s, border-color 0.3s, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .faq-toggle svg {
      width: 13px;
      height: 13px;
      stroke: var(--gold);
      transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .faq-item.faq-open .faq-toggle {
      background: rgba(200, 164, 77, 0.18);
      border-color: rgba(200, 164, 77, 0.45);
    }

    .faq-item.faq-open .faq-toggle svg {
      transform: rotate(45deg);
    }

    .faq-answer {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .faq-answer-inner {
      padding: 0 32px 28px 84px;
      font-size: 0.98rem;
      line-height: 1.75;
      color: var(--text-secondary);
      font-weight: 300;
      border-top: 1px solid rgba(200, 164, 77, 0.08);
      padding-top: 20px;
    }

    @media (max-width: 768px) {
      .faq-question {
        padding: 22px 20px;
        gap: 14px;
      }

      .faq-answer-inner {
        padding: 20px 20px 24px 20px;
      }
    }

    /* ══════════════════ RELOCATED RESPONSIVE BLOCK (moved to end for correct cascade order) ══════════════════ */
    /* ══════════════════ RESPONSIVE ══════════════════ */
    @media (max-width: 1200px) {
      .hero-grid {
        grid-template-columns: 55fr 45fr;
      }
    }

    @media (max-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
      }

      .hero-visual {
        height: 420px;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
      }

      .problem-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .about-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .feature-row.reverse {
        direction: ltr;
      }

      .timeline-steps {
        grid-template-columns: 1fr 1fr;
      }

      .impact-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }

      /* Tablet: show hamburger */
      .hamburger-btn {
        display: flex;
      }

      .mobile-menu {
        display: block;
      }

      .mobile-menu-backdrop {
        display: block;
      }

      .nav-links {
        display: none !important;
      }

      .nav-actions {
        gap: 10px;
      }
    }

    @media (max-width: 768px) {

      
      section {
        padding: 72px 1.5rem;
      }

      footer {
        padding: 60px 1.5rem 32px;
      }

      #hero {
        padding: 120px 1.5rem 72px;
      }

      .nav-inner {
        padding: 0 1.5rem;
      }

      .credibility-strip {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }

      .nav-links {
        display: none !important;
      }

      .hamburger-btn {
        display: flex;
      }

      .mobile-menu {
        display: block;
      }

      .mobile-menu-backdrop {
        display: block;
      }

      .timeline-steps {
        grid-template-columns: 1fr;
      }

      .impact-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }

      .hero-h1 {
        font-size: clamp(1.9rem, 5.5vw, 2.6rem);
      }

      .hero-rotating-phrase {
        font-size: clamp(1.3rem, 4.4vw, 1.8rem);
        height: 1.6em;
      }

      .section-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
      }

      .timeline-steps::before {
        display: none;
      }

      .footer-cta {
        border-radius: 16px;
      }

      /* Bento grid responsive */
      .wc-bento {
        grid-template-columns: 1fr;
      }

      .wc-m1,
      .wc-m2,
      .wc-m3,
      .wc-m4,
      .wc-m5,
      .wc-m6 {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: auto;
      }

      .wc-m1 .wc-mod-body {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .wc-m4 .wc-mod-body {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      /* Impact journey responsive */
      .impact-spine {
        display: none;
      }

      .impact-outcome {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .impact-outcome-spacer {
        display: none;
      }

      .impact-outcome-node {
        display: none;
      }

      .impact-outcome:nth-child(odd) .impact-outcome-content,
      .impact-outcome:nth-child(even) .impact-outcome-content {
        grid-column: 1;
        text-align: left;
        padding: 24px 0;
      }

      .impact-outcome:nth-child(odd) .impact-outcome-tags,
      .impact-outcome:nth-child(even) .impact-outcome-tags {
        justify-content: flex-start;
      }

      /* Stats row */
      .stats-row {
        flex-direction: column;
      }

      .stat-item+.stat-item::before {
        top: 0;
        left: 24px;
        right: 24px;
        bottom: auto;
        width: auto;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(200, 164, 77, 0.2), transparent);
      }

      /* Comparison table mobile */
      .cmp-cap-text {
        font-size: 0.82rem;
      }

      .cmp-crown-text,
      .cmp-legacy-text {
        font-size: 0.82rem;
      }

      /* Credibility strip */
      .credibility-inner {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .cred-columns {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      /* Section sub max-width */
      .section-sub {
        max-width: 100%;
      }

      /* Video controls on mobile */
      .vid-vol-wrap {
        display: none;
      }

      .vid-seek-wrap {
        min-width: 0;
        flex: 1;
      }

      /* Float brochure position */
      .float-brochure-cta {
        top: auto;
        bottom: 90px;
        transform: none;
      }

      .float-brochure-cta:hover {
        transform: translateX(-6px);
      }
    }

    @media (max-width: 480px) {
      .impact-grid {
        grid-template-columns: 1fr;
      }

      .hero-ctas {
        flex-direction: column;
      }

      .btn-primary,
      .btn-outline {
        width: 100%;
        justify-content: center;
      }

      .hero-sub {
        font-size: 1rem;
      }

      .hero-rotating-phrase {
        font-size: clamp(1.1rem, 6.2vw, 1.5rem);
        height: 1.6em;
      }

      /* Bento module body padding */
      .wc-mod-body {
        padding: 24px 20px;
      }

      /* Comparison table compact */
      .cmp-wrap {
        overflow-x: auto;
      }

      .cmp-header,
      .cmp-row,
      .cmp-footer-row {
        grid-template-columns: 1.2fr 1fr 1fr;
        min-width: 360px;
      }

      .cmp-cap {
        padding: 12px 10px;
      }

      .cmp-crown-cell,
      .cmp-legacy-cell {
        padding: 12px 8px;
      }

      .cmp-cap-text {
        font-size: 0.72rem;
      }

      .cmp-crown-text,
      .cmp-legacy-text {
        font-size: 0.72rem;
      }

      .cmp-cap-icon {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
      }

      .cmp-check-ring,
      .cmp-cross-ring {
        width: 18px;
        height: 18px;
      }

      /* Impact outcome text sizes */
      .impact-outcome-metric {
        font-size: clamp(2rem, 8vw, 3rem);
      }

      /* Footer CTA text */
      .footer-cta h2 {
        font-size: clamp(1.6rem, 5vw, 2rem);
      }

      /* Stat numbers */
      .stat-item-num {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
      }
    }

    /* Tablet-specific tweaks (768–1024px) */
    @media (min-width: 768px) and (max-width: 1024px) {
      .hero-visual {
        height: 380px;
      }

      /* Bento grid 2-col on tablet */
      .wc-bento {
        grid-template-columns: repeat(6, 1fr);
      }

      .wc-m1,
      .wc-m2 {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: auto;
      }

      .wc-m3,
      .wc-m4 {
        grid-column: span 3;
        grid-row: auto;
        min-height: auto;
      }

      .wc-m5,
      .wc-m6 {
        grid-column: span 3;
        grid-row: auto;
        min-height: auto;
      }

      .wc-m1 .wc-mod-body {
        grid-template-columns: 1fr;
      }

      .wc-m4 .wc-mod-body {
        grid-template-columns: 1fr;
      }

      /* Impact timeline: single column on tablet */
      .impact-spine {
        display: none;
      }

      .impact-outcome {
        grid-template-columns: 1fr;
      }

      .impact-outcome-spacer {
        display: none;
      }

      .impact-outcome-node {
        display: none;
      }

      .impact-outcome:nth-child(odd) .impact-outcome-content,
      .impact-outcome:nth-child(even) .impact-outcome-content {
        grid-column: 1;
        text-align: left;
        padding: 20px 0;
      }

      .impact-outcome:nth-child(odd) .impact-outcome-tags,
      .impact-outcome:nth-child(even) .impact-outcome-tags {
        justify-content: flex-start;
      }

      /* Comparison table */
      .cmp-header,
      .cmp-row,
      .cmp-footer-row {
        grid-template-columns: 1.4fr 1fr 1fr;
      }
    }

    /* Laptop (1024–1440px) */
    @media (min-width: 1024px) and (max-width: 1440px) {
      .wc-bento {
        grid-template-columns: repeat(12, 1fr);
      }
    }

    /* Ultra-wide scaling */
    @media (min-width: 1920px) {

      .stats-row {
        max-width: 1800px;
        margin: 0 auto;
      }

      .wc-bento {
        max-width: 1800px;
        margin: 0 auto;
      }
    }

    /* ══════════════════════════════════════════════════════════════
       RESPONSIVE AUDIT FIXES — 320px minimum support
       Sections: Hero word-rotation, Hero visual, Video controls,
       Why Crown bento, Comparison table, Real Impact lines, FAQ
       ══════════════════════════════════════════════════════════════ */

    /* Safety net: guarantee no horizontal scroll anywhere */
    html, body {
      overflow-x: hidden;
      max-width: 100%;
    }

    /* ── 1. HERO — rotating word fix (was clipped on small screens) ── */
    .hero-rotating-phrase {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      row-gap: 2px;
      height: auto;
      min-height: 1.5em;
      overflow: visible;
      white-space: normal;
    }

    .hero-rotating-word {
      display: inline-grid;
      max-width: 100%;
    }

    .hero-rword-item {
      white-space: normal;
      word-break: break-word;
      line-height: 1.15;
    }

    @media (max-width: 480px) {
      .hero-rotating-phrase {
        font-size: clamp(1.05rem, 6vw, 1.4rem);
        line-height: 1.3;
      }

      .hero-rword-item {
        white-space: normal;
      }
    }

    /* ── eco-node-grid: invisible wrapper on desktop (nodes use absolute pos) ── */
    .eco-node-grid {
      display: contents; /* transparent on desktop — nodes remain absolutely positioned */
    }

    /* ── 1b. HERO VISUAL — tablet: gentle scale ── */
    @media (max-width: 1024px) {
      .hero-visual {
        height: 460px;
      }

      .credential-ecosystem {
        transform: scale(0.92);
        transform-origin: center center;
      }
    }

    /* ── HERO VISUAL mobile: switch to stacked hub + card grid (mirrors Problem section) ── */
    @media (max-width: 768px) {
      /* Visual container becomes auto-height, no overflow clipping */
      .hero-visual {
        height: auto !important;
        overflow: visible;
        max-width: 100%;
      }

      /* Ecosystem switches from absolute-position orbit to vertical flex column */
      .credential-ecosystem {
        position: relative;
        transform: none !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 8px 0 4px;
        width: 100%;
        height: auto;
      }

      /* Hide orbital rings, SVG lines, pulse rings, and metric badges — too cluttered at small size */
      .eco-orbit,
      .connection-lines,
      .pulse-ring,
      .metric-badge {
        display: none;
      }

      /* Center hub: static, not absolute */
      .eco-center {
        position: static;
        transform: none;
        width: 96px;
        height: 96px;
        flex-shrink: 0;
        /* keep its animations & glow */
      }

      .eco-center svg {
        width: 44px;
        height: 44px;
      }

      /* eco-node-grid: become a 2-column CSS grid, just like .arch-node-grid in Problem */
      .eco-node-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
      }

      /* Nodes: reset absolute positioning, become regular grid cells */
      .eco-node {
        position: static !important;
        transform: none !important;
        animation: none !important;
        /* keep visual styling */
        font-size: 0.78rem;
        padding: 12px 14px;
        border-radius: 12px;
        white-space: normal;
        line-height: 1.4;
        min-width: 0;
        width: 100%;
        /* restore gentle float just on the grid version */
        animation: float1 6s ease-in-out infinite !important;
      }

      /* Stagger float animation per card so it feels alive */
      .eco-node:nth-child(1) { animation-delay: 0s !important; }
      .eco-node:nth-child(2) { animation-delay: 0.4s !important; }
      .eco-node:nth-child(3) { animation-delay: 0.8s !important; }
      .eco-node:nth-child(4) { animation-delay: 1.2s !important; }
      .eco-node:nth-child(5) { animation-delay: 1.6s !important; }
      .eco-node:nth-child(6) { animation-delay: 2.0s !important; }

      .eco-node-icon {
        font-size: 1rem;
        margin-bottom: 4px;
      }

      .eco-node-label {
        font-size: 0.82rem;
        font-weight: 600;
      }

      .eco-node-val {
        font-size: 0.68rem;
        margin-top: 3px;
      }
    }

    /* ── Very small phones: single column ── */
    @media (max-width: 400px) {
      .eco-node-grid {
        grid-template-columns: 1fr;
      }

      .eco-center {
        width: 84px;
        height: 84px;
      }

      .eco-center svg {
        width: 38px;
        height: 38px;
      }
    }

    /* ── 2. VIDEO SECTION — controls fully responsive ── */
    .video-controls-bar {
      flex-wrap: wrap;
      row-gap: 8px;
    }

    .vid-label {
      font-size: 0.7rem;
      color: var(--text-muted);
      white-space: nowrap;
      flex-shrink: 0;
    }

    @media (max-width: 640px) {
      .video-container {
        border-radius: 14px;
      }

      .video-controls-bar {
        padding: 10px 12px;
        gap: 8px;
        justify-content: center;
      }

      .vid-btn {
        width: 32px;
        height: 32px;
      }

      .vid-btn svg {
        width: 13px;
        height: 13px;
      }

      .vid-seek-wrap {
        order: 5;
        flex-basis: 100%;
        width: 100%;
        min-width: 0;
      }

      .vid-time {
        font-size: 0.62rem;
        min-width: 30px;
      }

      .vid-vol-wrap {
        display: none;
      }

      .vid-label {
        order: 4;
        flex-basis: 100%;
        text-align: center;
        margin-top: -2px;
      }
    }

    @media (max-width: 380px) {
      .video-controls-bar {
        gap: 6px;
        padding: 8px 10px;
      }

      .vid-btn {
        width: 28px;
        height: 28px;
      }

      .vid-btn svg {
        width: 12px;
        height: 12px;
      }
    }

    /* ── 3. WHY CROWN — bento card alignment & spacing fixes ── */
    @media (max-width: 768px) {
      .wc-mod-body {
        padding: 24px 20px !important;
        gap: 24px;
      }

      .wc-mod-title {
        font-size: 1.2rem;
      }

      .wc-m1 .wc-mod-body,
      .wc-m4 .wc-mod-body {
        padding: 24px 20px !important;
      }

      /* API terminal lines: stop horizontal overflow */
      .wc-api-line {
        flex-wrap: wrap;
        font-size: 0.68rem;
        row-gap: 2px;
      }

      .wc-api-path {
        flex-basis: 100%;
        order: 3;
        white-space: normal;
        word-break: break-all;
      }

      .wc-api-ping {
        margin-left: 0;
      }

      /* Credential wallet cards: prevent share badge overlap */
      .wc-cred-card {
        flex-wrap: wrap;
        row-gap: 8px;
      }

      .wc-cred-info {
        min-width: 0;
      }

      .wc-cred-name {
        word-break: break-word;
      }

      .wc-cred-share {
        flex-shrink: 0;
        margin-left: auto;
      }

      .wc-dashboard {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }

      .wc-kpi-val {
        font-size: 1.25rem;
      }
    }

    @media (max-width: 400px) {
      .wc-flow-step {
        flex-wrap: wrap;
        row-gap: 2px;
      }

      .wc-flow-sub {
        margin-left: 0;
        flex-basis: 100%;
        padding-left: 20px;
      }

      .wc-dashboard {
        grid-template-columns: 1fr;
      }
    }

    /* ── 4. COMPARISON TABLE — fully responsive, no clipped text ── */
    @media (max-width: 900px) {
      .cmp-header,
      .cmp-row,
      .cmp-footer-row {
        grid-template-columns: 1.3fr 1fr 1fr;
      }

      .cmp-cap-text,
      .cmp-crown-text,
      .cmp-legacy-text {
        font-size: 0.85rem;
        line-height: 1.35;
      }
    }

    @media (max-width: 640px) {
      .cmp-wrap {
        margin-top: 40px;
      }

      .cmp-header,
      .cmp-row,
      .cmp-footer-row {
        grid-template-columns: 1fr;
      }

      .cmp-header {
        border-radius: 16px 16px 0 0;
      }

      .cmp-h-cap {
        display: none;
      }

      .cmp-h-crown,
      .cmp-h-legacy {
        padding: 14px 16px;
        border-left: none;
        border-right: none;
      }

      .cmp-h-crown {
        border-radius: 0;
      }

      .cmp-row {
        display: flex;
        flex-direction: column;
        padding: 18px 18px 20px;
        gap: 12px;
      }

      .cmp-cap {
        padding: 0;
        border-right: none;
        border-bottom: 1px solid rgba(200, 164, 77, 0.12);
        padding-bottom: 12px;
      }

      .cmp-cap-text {
        font-size: 0.92rem;
        font-weight: 600;
      }

      .cmp-crown-cell,
      .cmp-legacy-cell {
        padding: 10px 14px;
        border: 1px solid rgba(200, 164, 77, 0.14);
        border-radius: 10px;
        align-items: flex-start;
      }

      .cmp-crown-cell {
        border-left: 1px solid rgba(200, 164, 77, 0.18);
      }

      .cmp-crown-cell::before {
        display: none;
      }

      .cmp-legacy-cell {
        border-left: 1px solid rgba(255, 255, 255, 0.08);
      }

      .cmp-crown-text,
      .cmp-legacy-text {
        font-size: 0.85rem;
        line-height: 1.45;
        word-break: normal;
      }

      .cmp-check-ring,
      .cmp-cross-ring {
        margin-top: 1px;
      }

      .cmp-footer-row {
        display: flex;
        flex-direction: column;
      }

      .cmp-footer-empty {
        display: none;
      }

      .cmp-footer-crown,
      .cmp-footer-legacy {
        padding: 14px 18px;
        border-left: none;
        border-right: none;
        justify-content: flex-start;
      }
    }

    /* ── 5. REAL IMPACT — connecting lines no longer touch content ── */
    @media (max-width: 900px) {
      .impact-outcome-content {
        padding: 24px 24px !important;
        border-left: 2px solid rgba(200, 164, 77, 0.25);
        border-radius: 0 12px 12px 0;
        background: rgba(200, 164, 77, 0.03);
        margin-bottom: 8px;
      }

      .impact-outcome {
        margin-bottom: 20px;
      }

      .impact-outcome-metric {
        font-size: clamp(2rem, 6vw, 2.8rem);
      }
    }

    @media (max-width: 480px) {
      .impact-summary-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
      }

      .impact-summary-pills {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
      }
    }

    /* ── 6. FAQ — spacing, alignment, accordion smoothness on mobile ── */
    @media (max-width: 640px) {
      .faq-header {
        margin-bottom: 40px;
      }

      .faq-list {
        border-radius: 16px;
      }

      .faq-question {
        padding: 18px 16px;
        gap: 12px;
        align-items: flex-start;
      }

      .faq-q-icon {
        width: 26px;
        height: 26px;
        font-size: 0.62rem;
        margin-top: 2px;
      }

      .faq-q-text {
        font-size: 0.92rem;
        line-height: 1.4;
      }

      .faq-toggle {
        width: 24px;
        height: 24px;
        margin-top: 2px;
      }

      .faq-toggle svg {
        width: 11px;
        height: 11px;
      }

      .faq-answer-inner {
        padding: 14px 16px 20px !important;
        font-size: 0.88rem;
        line-height: 1.65;
      }
    }

    /* ── General overflow safety for absolutely positioned / transformed elements ── */
    #hero,
    .hero-visual,
    .credential-ecosystem,
    .wc-bento,
    .cmp-wrap,
    #real-impact,
    #premium-stats,
    #video-showcase,
    #faq {
      max-width: 100%;
    }

    section,
    footer {
      max-width: 100vw;
    }

