/* ================================================
   KAZEL MEDICA — Design System
   Colors: Teal #17A6A7 | Navy #19315A | Off-white #E9ECE8
   Font: Geist (Google Fonts)
   ================================================ */

   @import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&display=swap');

  :root {
     /* Brand Colors */
     --teal:        #17A6A7;
     --teal-light:  #1DBFBF;
     --teal-dark:   #0E8A8B;
     --navy:        #19315A;
     --navy-light:  #253F72;
     --navy-dark:   #111F3A;
     --offwhite:    #E9ECE8;
     --offwhite-dark: #D8DBD7;
     --white:       #FFFFFF;
   
   /* Semantic - dark default */
   --bg-primary:    var(--navy);
   --bg-secondary:  var(--navy-light);
   --bg-light:      var(--offwhite);
   --surface-card:  rgba(255,255,255,0.04);
   --surface-soft:  rgba(255,255,255,0.03);
   --surface-glass: rgba(10, 28, 57, 0.85);
   --footer-bg:     var(--navy-dark);
   --dropdown-bg:   var(--navy-light);
   --menu-bg:       var(--navy-dark);
   --overlay-bg:    rgba(0,0,0,0.5);
   --border-soft:   rgba(255,255,255,0.12);
   --text-primary:  #ffffff;
   --text-muted:    rgba(255,255,255,0.72);
   --text-dark:     var(--navy);
   --accent:        var(--teal);
   --focus-ring:    rgba(23,166,167,0.45);
   --shadow-elev:   0 14px 34px rgba(0,0,0,0.25);
   
     /* Typography */
     --font: 'Geist', sans-serif;
   
    /* Spacing */
    --section-py: 72px;
     --container:  1200px;
     --radius:     12px;
     --radius-lg:  20px;
   
     /* Transitions */
     --transition: 0.3s ease;
   }


   /* ── Reset ── */
   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
   html { scroll-behavior: smooth; }
   ::selection {
     background: rgba(23,166,167,0.25);
     color: #fff;
   }
   body {
     font-family: var(--font);
     background: var(--bg-primary);
     color: var(--text-primary);
     line-height: 1.6;
     overflow-x: hidden;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
   }
   a { text-underline-offset: 3px; }
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  select:focus-visible,
  textarea:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 2px;
  }
   .site-main { min-height: 50vh; }
   .site-main > .section {
    border-top: 1px solid var(--border-soft);
   }
   
   /* ── Container ── */
   .container {
     max-width: var(--container);
     margin: 0 auto;
     padding: 0 24px;
   }
   
   /* ── Typography ── */
   h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; line-height: 1.1; }
   h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 600; line-height: 1.2; }
   h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 500; }
   p  { font-size: 1rem; font-weight: 300; opacity: 0.85; }
   
   /* ── Buttons ── */
   .btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 14px 32px;
     border-radius: 8px;
     font-family: var(--font);
     font-size: 0.95rem;
     font-weight: 500;
     cursor: pointer;
     border: none;
     text-decoration: none;
     transition: var(--transition);
   }
   .btn-primary {
     background: var(--teal);
     color: var(--white);
   }
   .btn-primary:hover {
     background: var(--teal-light);
     transform: translateY(-2px);
     box-shadow: 0 8px 24px rgba(23,166,167,0.35);
   }
   .btn-outline {
     background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-soft);
   }
   .btn-outline:hover {
     border-color: var(--teal);
     color: var(--teal);
     transform: translateY(-2px);
   }
   
   /* ── Section ── */
   .section { padding: var(--section-py) 0; }
   .section.cta-section { padding-bottom: var(--section-py); }
   .section-label {
     display: inline-block;
     font-size: 0.75rem;
     font-weight: 600;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     color: var(--teal);
     margin-bottom: 16px;
   }
   
   /* ── Navbar ── */
   .navbar {
     position: fixed;
     top: 0; left: 0; right: 0;
     z-index: 1000;
     padding: 20px 0;
     transition: var(--transition);
   }
   .navbar.scrolled {
    background: var(--surface-glass);
     backdrop-filter: blur(12px);
     padding: 14px 0;
    border-bottom: 1px solid var(--border-soft);
   }
   .navbar-inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
   }
   .navbar-logo {
     text-decoration: none;
     display: inline-flex;
    align-items: center;
   }
  .brand-logo-img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
  }
  .brand-logo-img--nav {
    height: 32px;
  }
  .brand-logo-img--footer {
    height: 30px;
  }
  .brand-logo-img--sidebar {
    height: 26px;
    opacity: 0.95;
  }
  .brand-logo-img--auth {
    height: 30px;
    margin: 0 auto;
  }
 .theme-logo--light { display: none; }
  .auth-logo-wrap {
    text-align: center;
    margin-bottom: 8px;
  }
   .navbar-links {
     display: flex;
     align-items: center;
     gap: 36px;
     list-style: none;
   }
   .navbar-links a {
    color: var(--text-muted);
     text-decoration: none;
     font-size: 0.88rem;
     font-weight: 400;
     transition: var(--transition);
   }
   .navbar-links a:hover { color: var(--teal); }
   .navbar-actions {
     display: flex;
     align-items: center;
     gap: 12px;
   }
   .lang-switcher {
     background: rgba(255,255,255,0.08);
     border: 1px solid rgba(255,255,255,0.15);
     color: var(--white);
     padding: 6px 12px;
     border-radius: 8px;
     font-family: var(--font);
     font-size: 0.85rem;
     cursor: pointer;
   }
   
   /* ── Hero ── */
   .hero {
     min-height: 100vh;
     display: flex;
     align-items: center;
     position: relative;
     overflow: hidden;
     padding-top: 76px;
     padding-bottom: 48px;
   }
   .hero-bg {
     position: absolute;
     inset: 0;
     background:
       radial-gradient(ellipse 60% 60% at 70% 50%, rgba(23,166,167,0.12) 0%, transparent 70%),
       radial-gradient(ellipse 40% 40% at 20% 80%, rgba(23,166,167,0.07) 0%, transparent 60%),
       var(--navy);
   }
   .hero-copy {
     position: relative;
     z-index: 0;
   }
   .hero-copy::before {
     content: '';
     position: absolute;
     left: -8%;
     top: 18%;
     width: 85%;
     height: 72%;
     z-index: -1;
     pointer-events: none;
     background: radial-gradient(ellipse 70% 65% at 40% 45%, rgba(23,166,167,0.09) 0%, rgba(23,166,167,0.03) 45%, transparent 72%);
   }
   .hero-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
     position: relative;
     z-index: 1;
   }
   .hero-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: rgba(23,166,167,0.12);
     border: 1px solid rgba(23,166,167,0.3);
     border-radius: 100px;
     padding: 6px 16px;
     font-size: 0.8rem;
     color: var(--teal);
     margin-bottom: 24px;
   }
   .hero-badge::before {
     content: '';
     width: 6px; height: 6px;
     background: var(--teal);
     border-radius: 50%;
     animation: pulse 2s infinite;
   }
   .hero h1 {
     margin-bottom: 20px;
     font-size: clamp(2.8rem, 4.5vw, 3.6rem);
     font-weight: 600;
     line-height: 1.08;
   }
   .hero h1 span { color: var(--teal); }
   .hero p {
     font-size: 1.05rem;
     margin-bottom: 32px;
     max-width: 420px;
     opacity: 0.7;
     font-weight: 400;
   }
   .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
   .hero-stats {
     display: flex;
     gap: 40px;
     margin-top: 40px;
     padding-top: 28px;
     border-top: 1px solid rgba(255,255,255,0.1);
   }
   .hero-stat-num {
     font-size: 2rem;
     font-weight: 700;
     color: var(--teal);
   }
   .hero-stat-label {
     font-size: 0.8rem;
     opacity: 0.6;
     margin-top: 2px;
   }
   .hero-visual {
     display: flex;
     justify-content: center;
     align-items: center;
   }
   .hero-visual-stack-wrap {
     position: relative;
     width: min(100%, 420px);
     min-height: 440px;
     display: flex;
     justify-content: center;
     align-items: center;
   }
   .hero-visual-stack-wrap .hero-photo {
     position: absolute;
     z-index: 0;
     width: 88%;
     max-width: 380px;
     aspect-ratio: 4 / 3;
     left: 50%;
     top: 52%;
     transform: translate(-50%, -50%);
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
     background-color: var(--navy);
   }
   .hero-visual-stack-wrap .hero-card-stack {
     position: relative;
     z-index: 1;
   }
   .hero-card-stack {
     position: relative;
     width: 360px;
     height: 420px;
   }
   .hero-card {
     position: absolute;
     background: rgba(255,255,255,0.05);
     border: 1px solid rgba(23,166,167,0.2);
     border-radius: var(--radius-lg);
     backdrop-filter: blur(8px);
     padding: 28px;
   }
   .hero-card-main {
     width: 300px;
     top: 40px; left: 30px;
     z-index: 2;
   }
   .hero-card-back {
     width: 280px;
     top: 20px; left: 50px;
     z-index: 1;
     opacity: 0.5;
     transform: rotate(3deg);
   }
   .hero-card-tag {
     font-size: 0.7rem;
     color: var(--teal);
     font-weight: 600;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     margin-bottom: 12px;
   }
   .hero-card-title {
     font-size: 1.1rem;
     font-weight: 600;
     margin-bottom: 8px;
   }
   .hero-card-sub {
     font-size: 0.85rem;
     opacity: 0.6;
     margin-bottom: 20px;
   }
   .match-score {
     display: flex;
     align-items: center;
     gap: 10px;
     background: rgba(23,166,167,0.1);
     border-radius: 8px;
     padding: 10px 14px;
   }
   .match-score-num {
     font-size: 1.4rem;
     font-weight: 700;
     color: var(--teal);
   }
   .match-score-label { font-size: 0.8rem; opacity: 0.7; }
   
   /* ── Exhibitions ── */
   .exhibitions { background: rgba(255,255,255,0.02); }
   .exhibitions-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
     margin-top: 56px;
   }
   .expo-card {
     background: rgba(255,255,255,0.04);
     border: 1px solid rgba(255,255,255,0.08);
     border-radius: var(--radius-lg);
     padding: 32px;
     padding-top: 40px;
     transition: border-color 0.3s ease, box-shadow 0.3s ease;
     position: relative;
     overflow: hidden;
   }
   .expo-card::before {
     content: '';
     position: absolute;
     top: 0; left: 0; right: 0;
     height: 3px;
     background: var(--teal);
     opacity: 0;
     transition: var(--transition);
   }
   .expo-card:hover {
     box-shadow: 0 0 0 1px rgba(23,166,167,0.4);
   }
   .expo-card:hover::before { opacity: 1; }
   .expo-card.active { border-color: rgba(23,166,167,0.4); }
   .expo-card.active::before { opacity: 1; }
   .expo-locale {
     position: absolute;
     top: 20px;
     right: 20px;
     display: inline-flex;
     align-items: center;
     gap: 6px;
     font-size: 0.75rem;
     font-weight: 600;
     letter-spacing: 0.06em;
     color: rgba(255,255,255,0.55);
     line-height: 1;
   }
   .expo-locale-emoji {
     font-size: 1.15rem;
     line-height: 1;
   }
   .expo-locale-code {
     padding: 3px 7px;
     border-radius: 6px;
     border: 1px solid rgba(255,255,255,0.12);
     background: rgba(255,255,255,0.04);
     color: rgba(255,255,255,0.75);
     font-size: 0.65rem;
   }
   .expo-city { font-size: 1.6rem; font-weight: 700; margin-bottom: 4px; padding-right: 72px; }
   .expo-date { color: var(--teal); font-size: 0.9rem; font-weight: 500; margin-bottom: 16px; }
   .expo-badge {
     display: inline-block;
     background: rgba(23,166,167,0.15);
     color: var(--teal);
     font-size: 0.7rem;
     font-weight: 600;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     padding: 4px 10px;
     border-radius: 100px;
     margin-bottom: 20px;
   }
   .expo-badge.soon {
     background: rgba(255,255,255,0.06);
     color: rgba(255,255,255,0.4);
   }
   
   /* ── AI Matchmaking ── */
   .ai-section {
     position: relative;
     overflow: hidden;
   }
   .ai-section-bg {
     position: absolute;
     inset: 0;
     background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(23,166,167,0.08) 0%, transparent 70%);
   }
   .ai-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
     position: relative;
     z-index: 1;
   }
   .ai-steps { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
   .ai-step {
     display: flex;
     gap: 16px;
     align-items: flex-start;
   }
   .ai-step-num {
     width: 32px; height: 32px;
     background: rgba(23,166,167,0.15);
     border: 1px solid rgba(23,166,167,0.3);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.8rem;
     font-weight: 600;
     color: var(--teal);
     flex-shrink: 0;
   }
   .ai-step-title { font-size: 0.95rem; font-weight: 500; margin-bottom: 4px; }
   .ai-step-text { font-size: 0.85rem; opacity: 0.6; }
   .ai-visual {
     background: rgba(255,255,255,0.03);
     border: 1px solid rgba(23,166,167,0.2);
     border-radius: var(--radius-lg);
     padding: 32px;
   }
   .ai-match-item {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 14px 0;
     border-bottom: 1px solid rgba(255,255,255,0.06);
   }
   .ai-match-item:last-child { border-bottom: none; }
   .ai-match-name { font-size: 0.9rem; font-weight: 500; }
   .ai-match-type { font-size: 0.75rem; opacity: 0.5; }
   .ai-match-pct {
     font-size: 1rem;
     font-weight: 700;
     color: var(--teal);
   }
   
   /* ── Who Exhibits ── */
   .who-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
     margin-top: 56px;
   }
   .who-card {
     background: rgba(255,255,255,0.03);
     border: 1px solid rgba(255,255,255,0.07);
     border-radius: var(--radius-lg);
     padding: 0;
     overflow: hidden;
     transition: var(--transition);
   }
   .who-card-inner { padding: 24px 28px 36px; }
   .who-card-thumb {
     position: relative;
     height: 100px;
     width: 100%;
     background-color: var(--navy);
   }
   .who-card-thumb.img-overlay::after { opacity: 0.75; }
   .who-card:hover { border-color: rgba(23,166,167,0.25); transform: translateY(-4px); }
   .who-icon {
     width: 48px; height: 48px;
     background: rgba(23,166,167,0.06);
     border: 1px solid rgba(23,166,167,0.2);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
     color: var(--teal);
   }
   .who-icon svg {
     width: 22px;
     height: 22px;
     stroke: currentColor;
     fill: none;
     stroke-width: 1.5;
     stroke-linecap: round;
     stroke-linejoin: round;
   }
   .who-card h3 { margin-bottom: 10px; }
   .who-card p { font-size: 0.9rem; }
   
   /* ── Trust Strip ── */
   .trust-strip {
     background: rgba(23,166,167,0.06);
     border-top: 1px solid rgba(23,166,167,0.35);
     border-bottom: 1px solid rgba(23,166,167,0.15);
     padding: 40px 0;
   }
   .trust-inner {
     display: flex;
     justify-content: space-around;
     align-items: center;
     flex-wrap: wrap;
     gap: 32px;
   }
   .trust-item { text-align: center; }
   .trust-num { font-size: 2.2rem; font-weight: 700; color: var(--teal); }
   .trust-label { font-size: 0.8rem; opacity: 0.6; margin-top: 4px; }
   
   /* ── Chatbot widget (km-chat-*) ── */
   @keyframes km-tl-pulse {
     0%, 100% { opacity: 1; transform: scale(1); }
     50% { opacity: 0.55; transform: scale(0.92); }
   }
   .km-chat-wrap {
     position: fixed !important;
     bottom: 28px !important;
     right: 28px !important;
     left: auto !important;
     z-index: 9999;
     display: flex;
     flex-direction: column;
     align-items: flex-end;
     gap: 12px;
   }
   .km-chat-tooltip {
     background: #0a1628;
     color: #fff;
     font-size: 13px;
     font-weight: 500;
     padding: 10px 16px;
     border-radius: 20px;
     border: 1px solid rgba(45,212,191,0.2);
     white-space: nowrap;
     opacity: 0;
     transform: translateY(6px);
     transition: opacity 0.3s ease, transform 0.3s ease;
     pointer-events: none;
   }
   .km-chat-tooltip.km-chat-tooltip-visible {
     opacity: 1;
     transform: translateY(0);
   }
   .km-chat-bubble {
     width: 56px;
     height: 56px;
     border-radius: 50%;
     background: var(--aw-teal, var(--teal));
     border: none;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #0a1628;
     position: relative;
     transition: transform 0.2s ease, box-shadow 0.2s ease;
     box-shadow: 0 4px 20px rgba(45,212,191,0.35);
   }
   .km-chat-bubble:hover {
     transform: scale(1.06);
     box-shadow: 0 6px 28px rgba(45,212,191,0.5);
   }
   .km-chat-notif {
     position: absolute;
     top: -2px;
     right: -2px;
     width: 14px;
     height: 14px;
     background: #ff4757;
     border-radius: 50%;
     border: 2px solid #fff;
     display: none;
   }
   .km-chat-notif.visible {
     display: block;
   }
   .km-chat-panel {
     width: 360px;
     height: 520px;
     background: #0a1628;
     border-radius: 20px;
     border: 1px solid rgba(255,255,255,0.08);
     box-shadow: 0 24px 64px rgba(0,0,0,0.4);
     display: flex;
     flex-direction: column;
     overflow: hidden;
     position: absolute;
     bottom: 72px;
     right: 0;
   }
   .km-chat-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 16px 18px;
     border-bottom: 1px solid rgba(255,255,255,0.06);
     background: #0d1f3c;
     flex-shrink: 0;
   }
   .km-chat-header-left {
     display: flex;
     align-items: center;
     gap: 10px;
   }
   .km-chat-avatar {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     background: var(--aw-teal, var(--teal));
     color: #0a1628;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
   }
   .km-chat-name {
     font-size: 14px;
     font-weight: 700;
     color: #fff;
     line-height: 1;
   }
   .km-chat-status {
     display: flex;
     align-items: center;
     gap: 5px;
     font-size: 11px;
     color: rgba(255,255,255,0.4);
     margin-top: 3px;
   }
   .km-chat-status span {
     transition: color 0.3s ease;
   }
   .km-chat-status-dot {
     width: 7px;
     height: 7px;
     border-radius: 50%;
     background: #2dd4bf;
     animation: km-tl-pulse 2s ease-in-out infinite;
     flex-shrink: 0;
   }
   .km-chat-header-right {
     display: flex;
     align-items: center;
     gap: 10px;
   }
   .km-chat-lang-badge {
     font-size: 10px;
     font-weight: 700;
     color: var(--aw-teal, var(--teal));
     background: rgba(45,212,191,0.1);
     border: 1px solid rgba(45,212,191,0.25);
     padding: 3px 8px;
     border-radius: 6px;
     letter-spacing: 0.08em;
   }
   .km-chat-close {
     background: none;
     border: none;
     color: rgba(255,255,255,0.4);
     cursor: pointer;
     padding: 4px;
     display: flex;
     align-items: center;
     transition: color 0.2s;
   }
   .km-chat-close:hover {
     color: #fff;
   }
   .km-chat-messages {
     flex: 1;
     min-height: 0;
     overflow-y: auto;
     padding: 16px;
     display: flex;
     flex-direction: column;
     gap: 12px;
     scrollbar-width: thin;
     scrollbar-color: rgba(255,255,255,0.1) transparent;
   }
   .km-chat-welcome {
     display: flex;
     flex-direction: column;
     gap: 12px;
   }
   .km-chat-messages .chat-msg {
     display: flex;
     flex-direction: column;
     max-width: 85%;
   }
   .km-chat-messages .chat-msg.bot {
     align-self: flex-start;
   }
   .km-chat-messages .chat-msg.user {
     align-self: flex-end;
   }
   .km-chat-messages .chat-msg-bubble {
     font-size: 13px;
     line-height: 1.6;
     padding: 10px 14px;
     border-radius: 14px;
   }
   .km-chat-messages .chat-msg.bot .chat-msg-bubble {
     background: rgba(255,255,255,0.06);
     color: rgba(255,255,255,0.85);
     border-bottom-left-radius: 4px;
   }
   .km-chat-messages .chat-msg.user .chat-msg-bubble {
     background: var(--aw-teal, var(--teal));
     color: #0a1628;
     font-weight: 500;
     border-bottom-right-radius: 4px;
   }
   .km-chat-quick-replies {
     display: flex;
     flex-direction: column;
     gap: 6px;
     padding-left: 0;
   }
   .km-chat-quick-btn {
     background: transparent;
     border: 1px solid rgba(45,212,191,0.25);
     color: var(--aw-teal, var(--teal));
     font-size: 12px;
     padding: 8px 14px;
     border-radius: 20px;
     cursor: pointer;
     text-align: left;
     transition: background 0.2s, border-color 0.2s;
     font-family: inherit;
   }
   .km-chat-quick-btn:hover {
     background: rgba(45,212,191,0.08);
     border-color: rgba(45,212,191,0.5);
   }
   .km-chat-input-row {
     display: flex;
     gap: 8px;
     padding: 12px 14px;
     border-top: 1px solid rgba(255,255,255,0.06);
     background: #0d1f3c;
     flex-shrink: 0;
   }
   .km-chat-input {
     flex: 1;
     background: rgba(255,255,255,0.05);
     border: 1px solid rgba(255,255,255,0.1);
     border-radius: 10px;
     padding: 10px 14px;
     font-size: 13px;
     color: #fff;
     font-family: inherit;
     outline: none;
     transition: border-color 0.2s;
   }
   .km-chat-input::placeholder {
     color: rgba(255,255,255,0.25);
   }
   .km-chat-input:focus {
     border-color: rgba(45,212,191,0.4);
   }
   .km-chat-send {
     width: 40px;
     height: 40px;
     border-radius: 10px;
     background: var(--aw-teal, var(--teal));
     border: none;
     color: #0a1628;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: opacity 0.2s, transform 0.2s;
     flex-shrink: 0;
   }
   .km-chat-send:hover {
     opacity: 0.88;
     transform: scale(1.04);
   }
   .km-chat-send:disabled,
   .km-chat-input:disabled {
     opacity: 0.5;
     cursor: not-allowed;
   }
   .km-agent-initials {
     font-size: 13px;
     font-weight: 700;
     color: #0a1628;
   }
   .km-typing-indicator {
     display: flex;
     align-items: flex-end;
     gap: 8px;
     padding: 4px 0;
   }
   .km-typing-avatar {
     width: 28px;
     height: 28px;
     border-radius: 50%;
     background: var(--aw-teal, var(--teal));
     color: #0a1628;
     font-size: 10px;
     font-weight: 700;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
   }
   .km-typing-bubble {
     background: rgba(255,255,255,0.06);
     border-radius: 14px;
     border-bottom-left-radius: 4px;
     padding: 12px 16px;
     display: flex;
     align-items: center;
     gap: 5px;
   }
   .km-typing-dot {
     width: 7px;
     height: 7px;
     border-radius: 50%;
     background: rgba(255,255,255,0.4);
     animation: km-typing-bounce 1.2s ease-in-out infinite;
   }
   .km-typing-dot:nth-child(1) {
     animation-delay: 0s;
   }
   .km-typing-dot:nth-child(2) {
     animation-delay: 0.2s;
   }
   .km-typing-dot:nth-child(3) {
     animation-delay: 0.4s;
   }
   @keyframes km-typing-bounce {
     0%, 60%, 100% {
       transform: translateY(0);
       opacity: 0.4;
     }
     30% {
       transform: translateY(-6px);
       opacity: 1;
     }
   }
   @media (max-width: 480px) {
     .km-chat-panel {
       width: calc(100vw - 32px);
       right: -14px;
       height: 480px;
     }
     .km-chat-wrap {
       bottom: 20px !important;
       right: 20px !important;
     }
   }
   
   /* ── Footer (km-footer) ── */
   .km-footer {
     background: #070f1f;
     border-top: 1px solid rgba(255, 255, 255, 0.06);
     padding: 64px 32px 0;
   }
   .km-footer-main {
     display: grid;
     grid-template-columns: 1.8fr 1fr 1.4fr;
     gap: 48px;
     max-width: var(--container, 1200px);
     margin: 0 auto;
     padding-bottom: 56px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.06);
   }
   .km-footer-logo img {
     height: 32px;
     width: auto;
     margin-bottom: 16px;
     display: block;
     opacity: 0.9;
   }
   .km-footer-tagline {
     font-size: 13px;
     color: rgba(255, 255, 255, 0.35);
     line-height: 1.7;
     max-width: 280px;
     margin-bottom: 24px;
   }
   .km-footer-social {
     display: flex;
     gap: 12px;
   }
   .km-footer-social-link {
     width: 36px;
     height: 36px;
     border-radius: 8px;
     border: 1px solid rgba(255, 255, 255, 0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     color: rgba(255, 255, 255, 0.4);
     text-decoration: none;
     transition: border-color 0.2s, color 0.2s;
   }
   .km-footer-social-link:hover {
     border-color: var(--aw-teal, var(--teal));
     color: var(--aw-teal, var(--teal));
   }
   .km-footer-col-title {
     font-size: 10px;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.3);
     font-weight: 600;
     margin-bottom: 20px;
   }
   .km-footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-direction: column;
     gap: 12px;
   }
   .km-footer-links a {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.55);
     text-decoration: none;
     transition: color 0.2s;
   }
   .km-footer-links a:hover {
     color: #fff;
   }
   .km-footer-col--contact {
     min-width: 0;
   }
   .km-footer-contact-card {
     padding: 16px;
     border-radius: var(--radius, 12px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     background: rgba(255, 255, 255, 0.035);
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
   }
   .km-footer-contact-actions {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-top: 0;
   }
   .km-footer-contact-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     padding: 10px 16px;
     border-radius: 10px;
     font-size: 13px;
     font-weight: 600;
     text-decoration: none;
     transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
   }
   button.km-footer-contact-btn {
     appearance: none;
     -webkit-appearance: none;
     font-family: var(--font, inherit);
     cursor: pointer;
   }
   .km-footer-contact-btn:active {
     transform: scale(0.98);
   }
   .km-footer-contact-btn-icon {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
   }
   .km-footer-contact-btn--primary {
     background: rgba(23, 166, 167, 0.18);
     border: 1px solid rgba(23, 166, 167, 0.45);
     color: var(--aw-teal, var(--teal));
   }
   .km-footer-contact-btn--primary:hover {
     background: rgba(23, 166, 167, 0.28);
     border-color: rgba(23, 166, 167, 0.65);
     color: #fff;
   }
   .km-footer-contact-btn--secondary {
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.14);
     color: rgba(255, 255, 255, 0.88);
   }
   .km-footer-contact-btn--secondary:hover {
     background: rgba(255, 255, 255, 0.1);
     border-color: rgba(255, 255, 255, 0.22);
     color: #fff;
   }
   .km-footer-contact-btn--whatsapp {
     background: rgba(37, 211, 102, 0.12);
     border: 1px solid rgba(37, 211, 102, 0.35);
     color: #b8f5c8;
   }
   .km-footer-contact-btn--whatsapp:hover {
     background: rgba(37, 211, 102, 0.22);
     border-color: rgba(37, 211, 102, 0.55);
     color: #fff;
   }
   .km-footer-email-modal {
     position: fixed;
     inset: 0;
     z-index: 10050;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 24px;
     box-sizing: border-box;
   }
   .km-footer-email-modal[hidden] {
     display: none !important;
   }
   .km-footer-email-modal__backdrop {
     position: absolute;
     inset: 0;
     background: rgba(4, 8, 15, 0.72);
     backdrop-filter: blur(6px);
   }
   .km-footer-email-modal__dialog {
     position: relative;
     z-index: 1;
     width: 100%;
     max-width: 440px;
     border-radius: var(--radius-lg, 16px);
     border: 1px solid rgba(255, 255, 255, 0.12);
     background: var(--navy, #19315a);
     box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
     padding: 20px 20px 16px;
     outline: none;
   }
   .km-footer-email-modal__head {
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     gap: 12px;
     margin-bottom: 16px;
   }
   .km-footer-email-modal__title {
     margin: 0;
     font-size: 1.05rem;
     font-weight: 600;
     line-height: 1.35;
     color: rgba(255, 255, 255, 0.95);
     padding-right: 8px;
   }
   .km-footer-email-modal__close {
     flex-shrink: 0;
     width: 36px;
     height: 36px;
     margin: -6px -6px 0 0;
     border: none;
     border-radius: 8px;
     background: rgba(255, 255, 255, 0.08);
     color: rgba(255, 255, 255, 0.85);
     font-size: 1.35rem;
     line-height: 1;
     cursor: pointer;
     transition: background 0.2s, color 0.2s;
   }
   .km-footer-email-modal__close:hover {
     background: rgba(255, 255, 255, 0.14);
     color: #fff;
   }
   .km-footer-email-modal__close:focus-visible {
     outline: 2px solid var(--aw-teal, var(--teal));
     outline-offset: 2px;
   }
   .km-footer-email-modal__list {
     list-style: none;
     margin: 0;
     padding: 0;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 10px;
   }
   .km-footer-email-modal__list > li {
     margin: 0;
     padding: 0;
     min-width: 0;
   }
   .km-footer-email-modal__provider {
     width: 100%;
     box-sizing: border-box;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     gap: 12px;
     padding: 18px 12px 16px;
     min-height: 132px;
     border-radius: 12px;
     border: 1px solid rgba(255, 255, 255, 0.12);
     background: rgba(255, 255, 255, 0.05);
     color: rgba(255, 255, 255, 0.92);
     font-family: var(--font, inherit);
     cursor: pointer;
     transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
   }
   .km-footer-email-modal__provider:hover {
     border-color: rgba(23, 166, 167, 0.5);
     background: rgba(23, 166, 167, 0.12);
     color: #fff;
     transform: translateY(-1px);
   }
   .km-footer-email-modal__provider:active {
     transform: translateY(0);
   }
   .km-footer-email-modal__provider:focus-visible {
     outline: 2px solid var(--aw-teal, var(--teal));
     outline-offset: 2px;
   }
   .km-footer-email-modal__logo-wrap {
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
   }
   .km-footer-email-modal__logo {
     display: block;
     width: 56px;
     height: 56px;
     object-fit: contain;
   }
   .km-footer-email-modal__provider-label {
     font-size: 0.82rem;
     font-weight: 600;
     line-height: 1.25;
     padding: 0 4px;
   }
   @media (max-width: 400px) {
     .km-footer-email-modal__list {
       grid-template-columns: 1fr;
     }
     .km-footer-email-modal__provider {
       flex-direction: row;
       justify-content: flex-start;
       text-align: start;
       min-height: 0;
       padding: 14px 16px;
       gap: 16px;
     }
     .km-footer-email-modal__logo {
       width: 48px;
       height: 48px;
     }
   }
   .km-footer-next-expo {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     margin-top: 24px;
     padding: 14px 16px;
     border: 1px solid rgba(255, 255, 255, 0.07);
     border-radius: 10px;
     background: rgba(255, 255, 255, 0.02);
   }
   .km-footer-expo-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: var(--aw-teal, var(--teal));
     flex-shrink: 0;
     margin-top: 4px;
     animation: km-tl-pulse 2s ease-in-out infinite;
   }
   .km-footer-expo-label {
     font-size: 10px;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.3);
     margin-bottom: 4px;
   }
   .km-footer-expo-date {
     font-size: 13px;
     font-weight: 600;
     color: #fff;
   }
   .km-footer-bottom {
     max-width: var(--container, 1200px);
     margin: 0 auto;
     padding: 20px 0 24px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 12px;
   }
   .km-footer-copy {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.2);
   }
   .km-footer-legal {
     display: flex;
     align-items: center;
     gap: 10px;
   }
   .km-footer-legal a {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.2);
     text-decoration: none;
     transition: color 0.2s;
   }
   .km-footer-legal a:hover {
     color: rgba(255, 255, 255, 0.5);
   }
   .km-footer-legal-sep {
     color: rgba(255, 255, 255, 0.15);
     font-size: 12px;
   }
   .km-footer-c2b-tag {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.15);
     font-style: italic;
   }
   @media (max-width: 900px) {
     .km-footer-main {
       grid-template-columns: 1fr 1fr;
     }
     .km-footer-brand {
       grid-column: 1 / -1;
     }
   }
   @media (max-width: 600px) {
     .km-footer {
       padding: 48px 24px 0;
     }
     .km-footer-main {
       grid-template-columns: 1fr;
       gap: 36px;
     }
     .km-footer-bottom {
       flex-direction: column;
       align-items: flex-start;
       gap: 8px;
     }
     .km-footer-contact-actions {
       flex-direction: column;
       align-items: stretch;
     }
     .km-footer-contact-btn {
       width: 100%;
     }
   }

   /* ── Animations ── */
   @keyframes pulse {
     0%, 100% { opacity: 1; transform: scale(1); }
     50% { opacity: 0.5; transform: scale(1.4); }
   }
   @keyframes fadeUp {
     from { opacity: 0; transform: translateY(30px); }
     to   { opacity: 1; transform: translateY(0); }
   }
   .fade-up { animation: fadeUp 0.7s ease forwards; }
   
   /* ── Responsive ── */
   @media (max-width: 1024px) {
     .hero-grid, .ai-grid { grid-template-columns: 1fr; gap: 48px; }
     .hero-visual { display: none; }
     .exhibitions-grid, .who-grid { grid-template-columns: repeat(2, 1fr); }
   }
   @media (max-width: 640px) {
     .exhibitions-grid, .who-grid { grid-template-columns: 1fr; }
     .hero-stats { gap: 24px; flex-wrap: wrap; }
   }

   /* ── Nav: mobile + language ── */
   .nav-link-login {
    color: var(--text-muted);
     text-decoration: none;
     font-size: 0.9rem;
     font-weight: 500;
     transition: var(--transition);
   }
   .nav-link-login:hover { color: var(--teal); }
   .btn-nav-apply { padding: 10px 20px; font-size: 0.85rem; border-radius: 8px; }
   .navbar-burger {
     display: none;
     flex-direction: column;
     justify-content: center;
     gap: 5px;
     width: 44px; height: 44px;
     background: transparent;
    border: 1px solid var(--border-soft);
     border-radius: 8px;
     cursor: pointer;
     margin-left: 8px;
    color: var(--text-primary);
   }
   .navbar-burger span {
     display: block;
     height: 2px;
     width: 20px;
     margin: 0 auto;
    background: currentColor;
     transition: var(--transition);
   }
   .lang-dropdown { position: relative; }
   .lang-dropdown-btn {
     display: inline-flex;
     align-items: center;
     gap: 6px;
    background: var(--surface-soft);
    border: 1px solid var(--border-soft);
    color: var(--text-primary);
     padding: 8px 12px;
     border-radius: 8px;
     font-family: var(--font);
     font-size: 0.8rem;
     font-weight: 600;
     cursor: pointer;
     transition: var(--transition);
   }
   .lang-dropdown-btn:hover { border-color: rgba(23,166,167,0.4); }
   .lang-dropdown-list {
     position: absolute;
     top: calc(100% + 8px);
     right: 0;
     min-width: 140px;
    background: var(--dropdown-bg);
    border: 1px solid var(--border-soft);
     border-radius: 12px;
     padding: 8px;
     list-style: none;
     z-index: 1002;
     box-shadow: 0 16px 40px rgba(0,0,0,0.35);
   }
   .lang-dropdown-list button {
     width: 100%;
     text-align: left;
     background: transparent;
     border: none;
    color: var(--text-primary);
     padding: 10px 12px;
     border-radius: 8px;
     font-family: var(--font);
     font-size: 0.85rem;
     cursor: pointer;
     transition: var(--transition);
   }
   .lang-dropdown-list button:hover {
     background: rgba(23,166,167,0.15);
     color: var(--teal);
   }
   .navbar-mobile-overlay {
     position: fixed;
     inset: 0;
    background: var(--overlay-bg);
     z-index: 998;
   }
   @media (max-width: 960px) {
     .navbar-burger { display: inline-flex; }
     .navbar-nav-wrap {
       position: fixed;
       top: 0;
       right: 0;
       width: min(320px, 88vw);
       height: 100vh;
      background: var(--menu-bg);
       border-left: 1px solid rgba(23,166,167,0.2);
       padding: 88px 24px 24px;
       transform: translateX(100%);
       transition: transform 0.35s ease;
       z-index: 1001;
     }
     .navbar.menu-open .navbar-nav-wrap { transform: translateX(0); }
     .navbar-links {
       flex-direction: column;
       gap: 0;
       align-items: stretch;
     }
    .navbar-links li { border-bottom: 1px solid var(--border-soft); }
     .navbar-links a {
       display: block;
       padding: 16px 0;
       font-size: 1rem;
     }
     .nav-link-login { display: none; }
     .btn-nav-apply { display: none; }
   }

   /* ── Reveal on scroll ── */
   .reveal {
     opacity: 0;
     transform: translateY(20px);
     transition: opacity 0.55s ease, transform 0.55s ease;
   }
   .reveal.visible {
     opacity: 1;
     transform: translateY(0);
   }
   .reveal-delay-1 { transition-delay: 0.08s; }
   .reveal-delay-2 { transition-delay: 0.16s; }

   /* ── Page hero ── */
   .page-hero {
     position: relative;
     padding: 140px 0 56px;
     overflow: hidden;
   }
   .page-hero--exhibitions {
     padding-bottom: 40px;
   }
   .page-hero-bg {
     position: absolute;
     inset: 0;
     background:
       radial-gradient(ellipse 50% 60% at 80% 20%, rgba(23,166,167,0.12) 0%, transparent 55%),
       var(--navy);
     z-index: 0;
   }
   .page-hero .container { position: relative; z-index: 1; }
   .page-hero h1 {
     font-size: clamp(2rem, 4vw, 3rem);
     font-weight: 600;
     line-height: 1.1;
     letter-spacing: -0.02em;
     margin-bottom: 12px;
   }
   .page-hero p {
     font-size: 1rem;
     opacity: 0.55;
     max-width: 480px;
   }

   /* ── Section alt backgrounds ── */
   .section-alt { background: rgba(255,255,255,0.02); }
   .section-alt-2 { background: linear-gradient(180deg, var(--navy) 0%, #1a2d52 50%, var(--navy) 100%); }

   /* ── CTA banner (home) ── */
   .cta-banner {
     position: relative;
     padding: 48px 32px;
     text-align: center;
     border-radius: 20px;
     background: rgba(23,166,167,0.06);
     border: 1px solid rgba(23,166,167,0.2);
     max-width: 100%;
   }
   .cta-banner h2 { color: var(--white); margin-bottom: 12px; }
   .cta-banner p { color: var(--white); opacity: 0.85; max-width: 560px; margin: 0 auto 24px; }
   .cta-banner .btn-outline {
     border: 1px solid rgba(255,255,255,0.55);
     color: var(--white);
   }
   .cta-banner .btn-outline:hover {
     background: rgba(255,255,255,0.08);
     border-color: var(--white);
     color: var(--white);
     transform: none;
   }

   /* ── Filter bar ── */
   .filter-bar {
     display: flex;
     flex-wrap: wrap;
     gap: 24px;
     align-items: center;
     margin-bottom: 40px;
     background: rgba(255,255,255,0.04);
     border: 1px solid rgba(255,255,255,0.08);
     border-radius: 12px;
     padding: 16px 24px;
   }
   .filter-bar label {
     font-size: 0.75rem;
     font-weight: 600;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--teal);
     margin-right: 4px;
   }
   .filter-select {
     background: rgba(255,255,255,0.06);
     border: 1px solid rgba(255,255,255,0.1);
     color: var(--white);
     padding: 8px 12px;
     border-radius: 8px;
     font-family: inherit;
     font-size: 0.9rem;
     min-width: 160px;
   }
   .filter-select:focus {
     outline: none;
     border-color: var(--teal);
     box-shadow: 0 0 0 3px rgba(23,166,167,0.2);
   }

   .filter-pills {
     display: flex;
     gap: 8px;
     margin-bottom: 32px;
     flex-wrap: wrap;
   }
   .pill {
     background: rgba(255,255,255,0.05);
     border: 1px solid rgba(255,255,255,0.1);
     color: rgba(255,255,255,0.6);
     padding: 6px 16px;
     border-radius: 100px;
     font-size: 0.85rem;
     cursor: pointer;
     font-family: inherit;
     transition: 0.2s;
   }
   .filter-pills a.pill {
     text-decoration: none;
     display: inline-block;
   }
   .pill.active,
   .pill.is-active,
   .pill:hover {
     background: rgba(23,166,167,0.15);
     border-color: rgba(23,166,167,0.4);
     color: #17a6a7;
   }

   /* ── Exhibition grid page cards ── */
   .ex-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
     gap: 24px;
   }
   .ex-page-card {
     background: rgba(255,255,255,0.04);
     border: 1px solid rgba(255,255,255,0.08);
     border-radius: var(--radius-lg);
     padding: 0;
     transition: border-color 0.25s ease, box-shadow 0.25s ease;
     position: relative;
     overflow: hidden;
     display: flex;
     flex-direction: column;
   }
   .ex-page-card-inner {
     padding: 24px 28px 28px;
     display: flex;
     flex-direction: column;
     flex: 1;
     min-height: 0;
   }
   .ex-page-card--open .ex-page-card-inner {
     border-top: 3px solid var(--teal);
     padding-top: 21px;
   }
   .ex-page-card-thumb {
     position: relative;
     height: 160px;
     flex-shrink: 0;
     background-color: var(--navy);
   }
   .ex-page-card-thumb.img-overlay::after {
     opacity: 0.85;
   }
   .ex-page-card:hover {
     border-color: rgba(23,166,167,0.35);
     box-shadow: 0 0 0 1px rgba(23,166,167,0.25);
   }
   .ex-page-card .expo-badge.soon { margin-bottom: 12px; }
   .ex-page-card .expo-badge:not(.soon) {
     background: rgba(23,166,167,0.15);
     color: var(--teal);
     border: 1px solid rgba(23,166,167,0.3);
   }
   .ex-page-card .expo-badge.soon {
     background: rgba(255,255,255,0.05);
     color: rgba(255,255,255,0.4);
     border: 1px solid rgba(255,255,255,0.08);
   }
   .ex-page-venue {
     font-size: 0.85rem;
     opacity: 0.55;
     margin-bottom: 8px;
     display: flex;
     align-items: center;
     gap: 6px;
   }
   .venue-pin {
     color: var(--teal);
     font-size: 0.65rem;
     opacity: 0.9;
     flex-shrink: 0;
   }
   .ex-page-card p { font-size: 0.92rem; margin: 12px 0 20px; flex: 1; }
   .ex-page-card-ctas {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-top: auto;
   }
   .ex-page-card-ctas .btn { border-radius: 8px; padding: 12px 22px; font-size: 0.88rem; }
   .ex-page-card-inner > .btn { margin-top: auto; align-self: flex-start; border-radius: 8px; padding: 12px 22px; font-size: 0.88rem; }

   .exhibitor-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
     margin-top: 0;
   }
   @media (max-width: 1024px) {
     .exhibitor-grid { grid-template-columns: repeat(2, 1fr); }
   }
   @media (max-width: 640px) {
     .exhibitor-grid { grid-template-columns: 1fr; }
   }
   .exhibitor-card {
     background: rgba(255,255,255,0.03);
     border: 1px solid rgba(255,255,255,0.07);
     border-radius: var(--radius-lg);
     padding: 36px 28px;
     transition: border-color 0.2s ease, box-shadow 0.2s ease;
   }
   .exhibitor-card:hover {
     border-color: rgba(23,166,167,0.35);
     box-shadow: 0 0 0 1px rgba(23,166,167,0.2);
   }
   .exhibitor-card .who-icon {
     font-size: 1.4rem;
     background: rgba(23,166,167,0.12);
     border: none;
     width: 52px;
     height: 52px;
   }
   .exhibitors-cta-wrap {
     text-align: center;
     margin-top: 48px;
     max-width: 640px;
     margin-left: auto;
     margin-right: auto;
   }
   .exhibitors-cta-text {
     margin-bottom: 16px;
     opacity: 0.85;
     line-height: 1.55;
   }

   .about-text-block {
     border-left: 2px solid rgba(23,166,167,0.4);
     padding-left: 28px;
     max-width: 640px;
   }
   .about-approach .section-label {
     margin-bottom: 12px;
   }
   .about-approach h2 {
     font-size: clamp(1.6rem, 3vw, 2.2rem);
     margin-bottom: 16px;
     line-height: 1.2;
   }
   .about-list {
     list-style: none;
     margin: 0;
     padding: 0;
   }
   .about-list li {
     padding: 10px 0 10px 20px;
     border-bottom: 1px solid rgba(255,255,255,0.06);
     position: relative;
     opacity: 0.88;
   }
   .about-list li::before {
     content: '';
     position: absolute;
     left: 0;
     top: 18px;
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--teal);
   }
   .ai-visual.leadership-card {
     border-top: 3px solid var(--teal);
     padding: 28px;
   }

   .blog-card-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
     margin-top: 0;
   }
   @media (max-width: 1024px) {
     .blog-card-grid { grid-template-columns: repeat(2, 1fr); }
   }
   @media (max-width: 640px) {
     .blog-card-grid { grid-template-columns: 1fr; }
   }
   .blog-card {
     position: relative;
     background: rgba(255,255,255,0.04);
     border: 1px solid rgba(255,255,255,0.08);
     border-radius: 12px;
     overflow: hidden;
     transition: border-color 0.2s ease, box-shadow 0.2s ease;
   }
   .blog-card-img {
     position: relative;
     height: 160px;
     overflow: hidden;
     border-radius: 12px 12px 0 0;
     background-color: var(--navy);
   }
   .blog-card-img.img-overlay::after { z-index: 2; opacity: 0.55; }
   .blog-card:hover {
     border-color: rgba(23,166,167,0.3);
   }
   .blog-card-body { padding: 22px; }
   .blog-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
   .blog-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 2px;
     background: var(--teal);
     opacity: 0;
     transition: opacity 0.2s ease;
     border-radius: var(--radius-lg) var(--radius-lg) 0 0;
     z-index: 3;
   }
   .blog-card:hover::before {
     opacity: 1;
   }
   .blog-card-read {
     font-size: 0.8rem;
     opacity: 0.4;
     margin-top: 8px;
   }
   .blog-card-author {
     font-size: 0.78rem;
     opacity: 0.45;
     margin-top: 4px;
   }

   .map-placeholder {
     background: rgba(255,255,255,0.03);
     border: 1px solid rgba(255,255,255,0.08);
     border-radius: 12px;
     height: 220px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-top: 20px;
   }
   .contact-info-line {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     margin-top: 10px;
   }
   .contact-info-line svg {
     width: 8px;
     height: 8px;
     flex-shrink: 0;
     margin-top: 6px;
     fill: var(--teal);
     opacity: 0.7;
   }
   .contact-layout .field label {
     margin-bottom: 6px;
     font-size: 0.85rem;
     opacity: 0.7;
     display: block;
   }
   .contact-layout .field input,
   .contact-layout .field textarea {
     background: rgba(255,255,255,0.05);
     border: 1px solid rgba(255,255,255,0.1);
     border-radius: 8px;
     padding: 12px 16px;
     width: 100%;
     color: var(--white);
     font-family: inherit;
     font-size: 0.95rem;
     transition: border-color 0.2s;
   }
   .contact-layout .field input:focus,
   .contact-layout .field textarea:focus {
     border-color: rgba(23,166,167,0.6);
     outline: none;
     box-shadow: none;
   }
   .contact-form::after {
     content: '';
     display: table;
     clear: both;
   }
   .contact-form-actions {
     overflow: hidden;
     margin-top: 4px;
   }
   .btn-contact-submit {
     width: auto;
     float: right;
     padding: 12px 32px;
   }

   .apply-form-block {
     margin-top: -20px;
   }
   .progress-steps {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0;
     margin-bottom: 48px;
     flex-wrap: wrap;
   }
   .progress-steps .step {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
   }
   .progress-steps .step-num {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     border: 1.5px solid rgba(255,255,255,0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.85rem;
     font-weight: 500;
     color: rgba(255,255,255,0.85);
   }
   .progress-steps .step.active .step-num {
     background: var(--teal);
     border-color: var(--teal);
     color: var(--white);
   }
   .progress-steps .step.done .step-num {
     background: rgba(23,166,167,0.2);
     border-color: var(--teal);
     color: var(--teal);
   }
   .progress-steps .step-label {
     font-size: 0.75rem;
     opacity: 0.5;
     white-space: nowrap;
     color: rgba(255,255,255,0.65);
   }
   .progress-steps .step.active .step-label {
     opacity: 1;
     color: var(--teal);
   }
   .step-line {
     flex: 1;
     height: 1px;
     background: rgba(255,255,255,0.1);
     min-width: 40px;
     margin: 0 4px;
     align-self: flex-start;
     margin-top: 18px;
   }
   @media (max-width: 640px) {
     .step-line { min-width: 24px; }
     .progress-steps .step-label { font-size: 0.68rem; white-space: normal; text-align: center; max-width: 72px; }
   }
   .type-card {
     background: rgba(255,255,255,0.04);
     border: 1.5px solid rgba(255,255,255,0.1);
     border-radius: 16px;
     padding: 28px 24px;
     cursor: pointer;
     transition: 0.2s;
     text-align: center;
     display: block;
     position: relative;
     font-weight: 500;
     color: rgba(255,255,255,0.88);
     font-family: inherit;
   }
   .type-card:hover {
     border-color: rgba(23,166,167,0.4);
   }
   .type-card.selected {
     border-color: var(--teal);
     background: rgba(23,166,167,0.08);
   }
   .type-card-icon {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: rgba(23,166,167,0.1);
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 14px;
     font-size: 1.1rem;
     color: var(--teal);
     font-weight: 600;
     line-height: 1;
   }
   .type-card input {
     position: absolute;
     opacity: 0;
     pointer-events: none;
   }
   .apply-type-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 12px;
   }
   @media (max-width: 720px) {
     .apply-type-grid { grid-template-columns: 1fr; }
   }

   body.page-portal-login {
     background-color: var(--navy);
     background-image:
       radial-gradient(circle at 30% 40%, rgba(23,166,167,0.07) 0%, transparent 50%),
       radial-gradient(circle at 70% 80%, rgba(25,49,90,0.8) 0%, transparent 50%);
   }
   .page-portal-login .auth-page {
     background: transparent;
   }
   .page-portal-login .auth-card {
     background: rgba(255,255,255,0.04);
     border: 1px solid rgba(23,166,167,0.2);
     border-radius: 20px;
     padding: 48px 40px;
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
   }
   .page-portal-login .auth-card .field label {
     margin-bottom: 6px;
     font-size: 0.85rem;
     opacity: 0.7;
   }
   .page-portal-login .auth-card .field input {
     background: rgba(255,255,255,0.05);
     border: 1px solid rgba(255,255,255,0.1);
     border-radius: 8px;
     padding: 12px 16px;
     font-family: inherit;
     font-size: 0.95rem;
     transition: border-color 0.2s;
   }
   .page-portal-login .auth-card .field input:focus {
     border-color: rgba(23,166,167,0.6);
     outline: none;
     box-shadow: none;
   }
   .page-portal-login .auth-card .btn-primary {
     letter-spacing: 0.03em;
     font-size: 0.95rem;
     font-weight: 500;
   }
   .login-card-tagline {
     text-align: center;
     font-size: 0.75rem;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: var(--teal);
     margin-bottom: 20px;
   }

   /* ── Forms ── */
   .form-grid {
     display: grid;
     gap: 16px;
   }
   .form-row-2 { grid-template-columns: repeat(2, 1fr); }
   @media (max-width: 640px) { .form-row-2 { grid-template-columns: 1fr; } }
   .field label {
     display: block;
     font-size: 0.8rem;
     font-weight: 500;
     margin-bottom: 6px;
     color: rgba(255,255,255,0.75);
   }
   .field input, .field textarea, .field select {
     width: 100%;
     padding: 12px 14px;
     border-radius: 8px;
     border: 1px solid rgba(255,255,255,0.12);
     background: rgba(255,255,255,0.05);
     color: var(--white);
     font-family: var(--font);
     font-size: 0.95rem;
     transition: var(--transition);
   }
   .field input:focus, .field textarea:focus, .field select:focus {
     outline: none;
     border-color: var(--teal);
     box-shadow: 0 0 0 3px rgba(23,166,167,0.15);
   }
   .field textarea { min-height: 140px; resize: vertical; }

   /* ── Apply multi-step ── */
   .apply-wrap { max-width: 720px; margin: 0 auto; }
   .apply-panel { display: none; }
   .apply-panel.is-active { display: block; }
   .apply-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 28px; flex-wrap: wrap; }

   /* ── Contact layout ── */
   .contact-layout {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 48px;
     align-items: start;
   }
   @media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
   .map-embed {
     margin-top: 20px;
     border-radius: 12px;
     overflow: hidden;
     border: 1px solid rgba(255,255,255,0.1);
     min-height: 280px;
     background: rgba(255,255,255,0.03);
     display: flex;
     align-items: center;
     justify-content: center;
     color: rgba(255,255,255,0.4);
     font-size: 0.9rem;
     text-align: center;
     padding: 24px;
   }

   /* ── Auth card ── */
   .auth-page {
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 120px 24px 80px;
     background:
       radial-gradient(ellipse 50% 50% at 50% 0%, rgba(23,166,167,0.15) 0%, transparent 55%),
       var(--navy);
   }
   .auth-card {
     width: 100%;
     max-width: 420px;
     background: rgba(255,255,255,0.04);
     border: 1px solid rgba(255,255,255,0.1);
     border-radius: var(--radius-lg);
     padding: 40px 36px;
     box-shadow: 0 24px 60px rgba(0,0,0,0.35);
   }
   .auth-card h1 { font-size: 1.5rem; margin-bottom: 8px; }
   .auth-card .footer-note { margin-top: 20px; font-size: 0.85rem; opacity: 0.55; text-align: center; }
   .auth-card a { color: var(--teal); }

   /* ── Portal / Admin shell ── */
   .app-shell {
     display: grid;
     grid-template-columns: 260px 1fr;
     min-height: 100vh;
     padding-top: 72px;
   }
   @media (max-width: 900px) {
     .app-shell { grid-template-columns: 1fr; }
     .app-sidebar { position: sticky; top: 72px; z-index: 50; }
   }
   .app-sidebar {
     background: var(--navy-dark);
     border-right: 1px solid rgba(255,255,255,0.06);
     padding: 28px 20px;
   }
   .app-sidebar .side-logo {
     font-weight: 700;
     font-size: 1.1rem;
     margin-bottom: 28px;
     display: block;
     text-decoration: none;
   }
   .app-sidebar nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
   .app-sidebar nav a {
     display: block;
     padding: 12px 14px;
     border-radius: 8px;
     color: rgba(255,255,255,0.65);
     text-decoration: none;
     font-size: 0.9rem;
     font-weight: 500;
     transition: var(--transition);
   }
   .app-sidebar nav a:hover, .app-sidebar nav a.active {
     background: rgba(23,166,167,0.12);
     color: var(--teal);
   }
   .app-main {
     padding: 32px 28px 48px;
     background: linear-gradient(180deg, var(--navy) 0%, #162a4d 100%);
   }
   .app-main h1 { font-size: 1.75rem; margin-bottom: 8px; }
   .kpi-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
     gap: 16px;
     margin: 28px 0;
   }
   .kpi-card {
     background: rgba(255,255,255,0.04);
     border: 1px solid rgba(255,255,255,0.08);
     border-radius: 12px;
     padding: 20px;
     transition: var(--transition);
   }
   .kpi-card:hover { transform: translateY(-3px); border-color: rgba(23,166,167,0.25); }
   .kpi-card .num { font-size: 1.75rem; font-weight: 700; color: var(--teal); }
   .kpi-card .lbl { font-size: 0.8rem; opacity: 0.55; margin-top: 4px; }
   .data-table-wrap {
     overflow-x: auto;
     border-radius: 12px;
     border: 1px solid rgba(255,255,255,0.08);
     margin-top: 16px;
   }
   .data-table {
     width: 100%;
     border-collapse: collapse;
     font-size: 0.88rem;
   }
   .data-table th, .data-table td {
     padding: 14px 16px;
     text-align: left;
     border-bottom: 1px solid rgba(255,255,255,0.06);
   }
   .data-table th {
     background: rgba(255,255,255,0.04);
     font-weight: 600;
     color: var(--teal);
     font-size: 0.72rem;
     letter-spacing: 0.06em;
     text-transform: uppercase;
   }
   .match-rows .match-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 14px 0;
     border-bottom: 1px solid rgba(255,255,255,0.06);
   }
   .pill-ok {
     display: inline-block;
     padding: 4px 10px;
     border-radius: 100px;
     font-size: 0.7rem;
     font-weight: 600;
     background: rgba(23,166,167,0.15);
     color: var(--teal);
   }
   .quick-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

   /* ── Matchmaking API results ── */
   .mm-results {
     margin-top: 24px;
     background: rgba(255,255,255,0.03);
     border: 1px solid rgba(255,255,255,0.08);
     border-radius: 12px;
     padding: 20px;
   }
   .mm-item {
     padding: 16px 0;
     border-bottom: 1px solid rgba(255,255,255,0.06);
   }
   .mm-item:last-child { border-bottom: none; }
   .mm-item-top { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
   .mm-results-heading { margin: 0 0 12px; font-size: 1rem; font-weight: 600; }
   .mm-segment-title { font-weight: 600; }
   .mm-detail-rows { margin-top: 8px; }
   .mm-row { font-size: 0.8rem; opacity: 0.55; margin-top: 4px; }
   .mm-row-label { font-weight: 500; margin-right: 4px; opacity: 0.9; }
   .mm-score-block { flex-shrink: 0; text-align: right; }
   .mm-score-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.45; margin-bottom: 2px; }
   .mm-pct { font-size: 1.25rem; font-weight: 700; color: var(--teal); flex-shrink: 0; }
   .mm-meta { font-size: 0.8rem; opacity: 0.55; margin-top: 6px; }
   .mm-reason { font-size: 0.88rem; opacity: 0.75; margin-top: 10px; line-height: 1.5; }
   .mm-reason-label { font-weight: 600; opacity: 0.85; margin-right: 4px; }

   /* .footer-social / .social-icon: contact.php vb. */
   .footer-social { display: flex; gap: 12px; align-items: center; }
   .social-icon {
     width: 36px; height: 36px;
     border-radius: 8px;
     border: 1px solid rgba(255,255,255,0.12);
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     color: rgba(255,255,255,0.6);
     transition: var(--transition);
   }
   .social-icon svg {
     width: 18px;
     height: 18px;
     fill: currentColor;
   }
   .social-icon:hover {
     border-color: var(--teal);
     color: var(--teal);
     transform: translateY(-2px);
   }

   .alert-success {
     background: rgba(23,166,167,0.12);
     border: 1px solid rgba(23,166,167,0.35);
     color: var(--offwhite);
     padding: 14px 16px;
     border-radius: 8px;
     margin-bottom: 20px;
     font-size: 0.9rem;
   }

   /* ── Exhibition detail ── */
   .expo-detail-hero {
     padding: 140px 0 72px;
     position: relative;
     overflow: hidden;
     background: var(--navy);
   }
   .expo-detail-hero-bg {
     position: absolute;
     inset: 0;
     pointer-events: none;
     background-color: var(--navy);
   }
   .expo-detail-hero-bg.img-overlay::after {
     background:
       radial-gradient(ellipse 55% 50% at 88% 12%, rgba(23,166,167,0.18) 0%, transparent 55%),
       radial-gradient(ellipse 42% 40% at 12% 88%, rgba(23,166,167,0.1) 0%, transparent 50%),
       linear-gradient(165deg, rgba(25, 49, 90, 0.88) 0%, rgba(25, 49, 90, 0.72) 45%, rgba(23, 166, 167, 0.22) 100%);
     opacity: 1;
   }
   .expo-detail-hero-photo {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
   }
   .expo-detail-hero-grid {
     display: grid;
     grid-template-columns: 1fr minmax(240px, 280px);
     gap: 48px;
     align-items: start;
     position: relative;
     z-index: 1;
   }
   .expo-detail-title {
     font-size: clamp(2.2rem, 4vw, 3.2rem);
     font-weight: 700;
     line-height: 1.1;
     margin: 0 0 16px;
   }
   .expo-detail-flag { margin-right: 8px; }
   .expo-detail-meta-line {
     font-size: 0.95rem;
     opacity: 0.65;
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     gap: 8px;
     margin-bottom: 20px;
   }
   .expo-detail-dot { opacity: 0.4; }
   .expo-status-badge {
     display: inline-flex;
     align-items: center;
     font-size: 0.68rem;
     font-weight: 700;
     letter-spacing: 0.12em;
     padding: 4px 12px;
     border-radius: 100px;
   }
   .expo-status-badge--open {
     background: rgba(46, 204, 113, 0.15);
     color: #6ee7a8;
     border: 1px solid rgba(46, 204, 113, 0.35);
   }
   .expo-status-badge--soon {
     background: rgba(255,255,255,0.06);
     color: rgba(255,255,255,0.45);
     border: 1px solid rgba(255,255,255,0.12);
   }
   .expo-detail-sub {
     font-size: 1.05rem;
     line-height: 1.65;
     opacity: 0.72;
     max-width: 560px;
     margin-bottom: 28px;
   }
   .expo-detail-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
   .breadcrumb { font-size: 0.8rem; opacity: 0.45; margin-bottom: 24px; }
   .breadcrumb a { color: inherit; text-decoration: none; }
   .breadcrumb a:hover { color: var(--teal); }
   .expo-stat-mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
   .expo-stat-mini {
     background: rgba(255,255,255,0.04);
     border: 1px solid rgba(255,255,255,0.08);
     border-radius: 12px;
     padding: 16px 20px;
   }
   .expo-stat-mini-num { font-size: 1.4rem; font-weight: 700; color: var(--teal); }
   .expo-stat-mini-label { font-size: 0.75rem; opacity: 0.5; margin-top: 2px; }
   .expo-section-title { font-size: clamp(1.4rem, 2.5vw, 1.85rem); margin-top: 8px; margin-bottom: 32px; }
   .expo-about-grid {
     display: grid;
     grid-template-columns: 1fr minmax(280px, 340px);
     gap: 48px;
     align-items: start;
   }
   .expo-about-lead { font-size: 1.02rem; line-height: 1.75; opacity: 0.82; margin-bottom: 24px; }
   .expo-highlights-list {
     list-style: none;
     margin: 0;
     padding: 0;
     display: flex;
     flex-direction: column;
     gap: 12px;
   }
   .expo-highlights-list li {
     position: relative;
     padding-left: 20px;
     font-size: 0.95rem;
     line-height: 1.55;
     opacity: 0.78;
   }
   .expo-highlights-list li::before {
     content: '';
     position: absolute;
     left: 0;
     top: 9px;
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--teal);
   }
   .expo-venue-card {
     background: rgba(255,255,255,0.04);
     border: 1px solid rgba(255,255,255,0.08);
     border-radius: 16px;
     padding: 24px;
   }
   .expo-venue-row {
     display: flex;
     gap: 16px;
     padding: 16px 0;
     border-bottom: 1px solid rgba(255,255,255,0.06);
   }
   .expo-venue-row:last-child { border-bottom: none; padding-bottom: 0; }
   .expo-venue-row:first-child { padding-top: 0; }
   .expo-venue-icon { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
   .expo-venue-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.45; margin-bottom: 4px; }
   .expo-venue-value { font-size: 0.95rem; opacity: 0.88; line-height: 1.45; }

   /* Schedule tabs */
   .schedule-tabs { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
   .schedule-tab {
     background: rgba(255,255,255,0.05);
     border: 1px solid rgba(255,255,255,0.1);
     color: rgba(255,255,255,0.6);
     padding: 8px 20px;
     border-radius: 100px;
     font-size: 0.85rem;
     cursor: pointer;
     font-family: inherit;
     transition: 0.2s;
   }
   .schedule-tab.active {
     background: rgba(23,166,167,0.15);
     border-color: rgba(23,166,167,0.4);
     color: #17A6A7;
   }
   .schedule-day { display: none; }
   .schedule-day.active { display: block; }
   .schedule-timeline {
     position: relative;
     padding-left: 20px;
     margin-left: 8px;
     border-left: 2px solid rgba(23,166,167,0.35);
   }
   .timeline-entry { display: flex; gap: 20px; padding: 14px 0;
     border-bottom: 1px solid rgba(255,255,255,0.05); position: relative; }
   .timeline-entry:last-child { border-bottom: none; }
   .timeline-entry::before {
     content: '';
     position: absolute;
     left: -26px;
     top: 20px;
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: var(--teal);
     border: 2px solid var(--navy-dark, #19315A);
   }
   .timeline-time {
     font-size: 0.8rem;
     color: var(--teal);
     font-weight: 500;
     min-width: 48px;
     padding-top: 2px;
   }
   .timeline-event { font-size: 0.9rem; opacity: 0.85; }

   /* Packages */
   .packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
   .package-card {
     background: rgba(255,255,255,0.04);
     border: 1px solid rgba(255,255,255,0.08);
     border-radius: 16px;
     padding: 32px 24px;
     position: relative;
     transition: 0.2s;
     display: flex;
     flex-direction: column;
   }
   .package-card:hover { border-color: rgba(23,166,167,0.3); }
   .package-card.featured { border-color: rgba(23,166,167,0.4); box-shadow: 0 0 0 1px rgba(23,166,167,0.12); }
   .package-popular {
     position: absolute;
     top: -12px;
     left: 50%;
     transform: translateX(-50%);
     background: var(--teal);
     color: white;
     font-size: 0.7rem;
     font-weight: 600;
     padding: 4px 14px;
     border-radius: 100px;
     white-space: nowrap;
     letter-spacing: 0.05em;
   }
   .package-name {
     font-size: 0.85rem;
     font-weight: 600;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: rgba(255,255,255,0.5);
     margin-bottom: 8px;
   }
   .package-price { font-size: 2rem; font-weight: 700; color: var(--teal); margin-bottom: 4px; }
   .package-size { font-size: 0.8rem; opacity: 0.4; margin-bottom: 24px; }
   .package-features {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 10px;
     margin-bottom: 28px;
     flex: 1;
   }
   .package-features li { font-size: 0.875rem; opacity: 0.75; padding-left: 18px; position: relative; }
   .package-features li::before {
     content: '';
     position: absolute;
     left: 0;
     top: 8px;
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--teal);
   }

   /* FAQ accordion */
   .faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
   .faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
   .faq-question {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
     padding: 20px 0;
     cursor: pointer;
     font-size: 0.95rem;
     font-weight: 500;
     background: none;
     border: none;
     color: inherit;
     font-family: inherit;
     text-align: left;
     gap: 16px;
   }
   .faq-chevron { color: var(--teal); transition: transform 0.3s; font-size: 1rem; flex-shrink: 0; }
   .faq-item.open .faq-chevron { transform: rotate(180deg); }
   .faq-answer {
     font-size: 0.9rem;
     opacity: 0.65;
     line-height: 1.75;
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.35s ease, padding 0.2s;
   }
   .faq-answer p { margin: 0; }
   .faq-item.open .faq-answer { max-height: 480px; padding-bottom: 20px; }

   .expo-bottom-cta { text-align: center; }
   .expo-bottom-cta-inner { max-width: 640px; margin: 0 auto; text-align: center; }
   .expo-bottom-cta-inner h2 { margin-bottom: 20px; font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
   .expo-other-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
   .expo-other-card {
     background: rgba(255,255,255,0.04);
     border: 1px solid rgba(255,255,255,0.08);
     border-radius: 12px;
     padding: 20px 22px;
     text-decoration: none;
     color: inherit;
     transition: 0.2s;
     display: block;
   }
   .expo-other-card:hover { border-color: rgba(23,166,167,0.35); }
   .expo-other-flag { font-size: 1.5rem; margin-bottom: 8px; }
   .expo-other-city { font-size: 1.1rem; margin-bottom: 6px; }
   .expo-other-date { font-size: 0.85rem; opacity: 0.5; margin-bottom: 12px; }
   .expo-other-link { font-size: 0.82rem; color: var(--teal); }

   /* About page */
   .about-page-hero .about-hero-sub { max-width: 560px; opacity: 0.7; font-size: 1.05rem; }
   .about-mission-row {
     display: grid;
     grid-template-columns: 1fr minmax(220px, 38%);
     gap: 40px;
     align-items: center;
   }
   @media (max-width: 900px) {
     .about-mission-row { grid-template-columns: 1fr; }
   }
   .about-mission-quote {
     font-size: clamp(1.2rem, 2vw, 1.7rem);
     font-weight: 300;
     line-height: 1.6;
     max-width: none;
     margin: 0;
     border-left: 3px solid var(--teal);
     padding-left: 32px;
     color: rgba(255,255,255,0.88);
   }
   .about-mission-photo {
     border-radius: 16px;
     overflow: hidden;
     min-height: 220px;
     background-color: var(--navy);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
   }
   .about-mission-photo.img-overlay::after { opacity: 0.8; }
   .about-timeline-wrap { max-width: 900px; margin: 0 auto; }
   .timeline-deco {
     border-radius: 14px;
     overflow: hidden;
     height: 160px;
     margin-bottom: 28px;
     background-color: var(--navy);
   }
   .timeline-deco.img-overlay::after { opacity: 0.75; }
   .impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
   .impact-item { text-align: center; }
   .impact-num { font-size: 2.4rem; font-weight: 700; color: var(--teal); }
   .impact-label { font-size: 0.8rem; opacity: 0.5; margin-top: 4px; }
   .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
   .feature-box {
     background: rgba(255,255,255,0.03);
     border: 1px solid rgba(255,255,255,0.07);
     border-radius: 14px;
     padding: 28px 24px;
     transition: 0.2s;
   }
   .feature-box:hover { border-color: rgba(23,166,167,0.25); }
   .feature-box-icon {
     width: 40px;
     height: 40px;
     background: rgba(23,166,167,0.1);
     border: 1px solid rgba(23,166,167,0.2);
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 16px;
     color: var(--teal);
   }
   .feature-box h3 { font-size: 0.95rem; font-weight: 500; margin-bottom: 8px; }
   .feature-box p { font-size: 0.85rem; opacity: 0.55; line-height: 1.6; }
   .timeline { position: relative; padding-left: 32px; }
   .timeline::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 2px;
     background: rgba(23,166,167,0.3);
   }
   .timeline-item { position: relative; padding-bottom: 32px; }
   .timeline-item::before {
     content: '';
     position: absolute;
     left: -36px;
     top: 6px;
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: var(--teal);
     border: 2px solid var(--navy-dark, #19315A);
   }
   .timeline-date { font-size: 0.8rem; color: var(--teal); font-weight: 600; margin-bottom: 4px; }
   .timeline-text { font-size: 0.95rem; opacity: 0.8; }
   .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
   .team-card {
     background: rgba(255,255,255,0.03);
     border: 1px solid rgba(255,255,255,0.07);
     border-top: 2px solid var(--teal);
     border-radius: 14px;
     padding: 28px 24px;
   }
   .team-avatar {
     width: 52px;
     height: 52px;
     border-radius: 50%;
     background: rgba(23,166,167,0.15);
     border: 1px solid rgba(23,166,167,0.3);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1rem;
     font-weight: 600;
     color: var(--teal);
     margin-bottom: 16px;
   }
   .team-avatar--photo {
     position: relative;
     overflow: hidden;
     padding: 0;
     border: 2px solid rgba(23, 166, 167, 0.35);
   }
   .team-avatar--tone-1 { background-color: #1a3d5c; }
   .team-avatar--tone-2 { background-color: #134d4d; }
   .team-avatar--tone-3 { background-color: #2a3158; }
   .team-avatar-photo {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: 0.35;
     filter: saturate(0.85);
   }
   .team-avatar-initials {
     position: relative;
     z-index: 1;
     letter-spacing: 0.02em;
   }
   .team-title { font-size: 0.9rem; font-weight: 500; margin-bottom: 8px; }
   .team-desc { font-size: 0.82rem; opacity: 0.5; line-height: 1.6; }
   .partner-logos { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; align-items: center; }
   .partner-logo-box {
     background: rgba(255,255,255,0.04);
     border: 1px solid rgba(255,255,255,0.08);
     border-radius: 8px;
     padding: 12px 24px;
     font-size: 0.75rem;
     opacity: 0.35;
   }

   /* Blog post */
   .blog-post-hero { padding: 0; max-width: none; }
   .blog-post-hero .container { max-width: 760px; }
   .blog-post-hero--cover { padding-top: 100px; }
   .blog-post-hero-cover {
     position: relative;
     min-height: 320px;
     display: flex;
     align-items: flex-end;
     background-color: var(--navy);
   }
   .blog-post-hero-cover .img-cover {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
   }
   .blog-post-hero-cover.img-overlay::after {
     z-index: 1;
     background: linear-gradient(180deg, rgba(25, 49, 90, 0.2) 0%, rgba(25, 49, 90, 0.88) 72%, rgba(15, 28, 52, 0.95) 100%);
   }
   .blog-post-hero-inner {
     position: relative;
     z-index: 2;
     max-width: 760px;
     margin: 0 auto;
     padding: 32px 24px 48px;
     width: 100%;
   }
   .blog-post-hero h1 { max-width: 760px; font-size: clamp(1.75rem, 3.5vw, 2.35rem); line-height: 1.2; margin-top: 0; }
   .blog-post-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 24px; flex-wrap: wrap; }
   .blog-post-read, .blog-post-date { font-size: 0.82rem; opacity: 0.45; }
   .blog-post-intro {
     font-size: 1.15rem;
     line-height: 1.7;
     opacity: 0.65;
     max-width: 640px;
     margin: 16px 0 12px;
   }
   .blog-post-author { font-size: 0.82rem; opacity: 0.4; }
   .article-body { max-width: 720px; margin: 0 auto; padding: 56px 0 80px; }
   .article-body p { font-size: 1.05rem; line-height: 1.85; opacity: 0.82; margin-bottom: 20px; }
   .article-body h2 {
     font-size: 1.2rem;
     font-weight: 600;
     margin: 40px 0 16px;
     padding-left: 16px;
     border-left: 3px solid #17A6A7;
     color: white;
   }
   .related-posts { padding: 56px 0; border-top: 1px solid rgba(255,255,255,0.07); }
   .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }

   @media (max-width: 1024px) {
     .expo-detail-hero-grid { grid-template-columns: 1fr; }
     .expo-about-grid { grid-template-columns: 1fr; }
     .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
     .impact-grid { grid-template-columns: repeat(2, 1fr); }
     .features-grid { grid-template-columns: repeat(2, 1fr); }
     .team-grid { grid-template-columns: 1fr 1fr; }
     .related-grid { grid-template-columns: 1fr 1fr; }
     .expo-other-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
   }
   @media (max-width: 640px) {
     .features-grid, .team-grid, .related-grid { grid-template-columns: 1fr; }
     .impact-grid { grid-template-columns: repeat(2, 1fr); }
     .expo-stat-mini-grid { grid-template-columns: repeat(2, 1fr); }
   }

   /* ── Admin panel ── */
   .admin-body { margin: 0; background: #111f3a; color: #fff; font-family: var(--font); }
   .admin-wrap { display: flex; min-height: 100vh; }
   .admin-sidebar {
     width: 240px;
     background: #111f3a;
     border-right: 1px solid rgba(255,255,255,0.06);
     display: flex;
     flex-direction: column;
     position: fixed;
     top: 0;
     left: 0;
     bottom: 0;
     overflow-y: auto;
     z-index: 200;
   }
  .admin-sidebar-logo { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .admin-logo-link { text-decoration: none; display: inline-flex; align-items: center; }
   .admin-logo-sub { font-size: 0.68rem; color: rgba(255,255,255,0.35); margin-top: 6px; letter-spacing: 0.08em; text-transform: uppercase; }
   .admin-nav { padding: 16px 0; flex: 1; display: flex; flex-direction: column; gap: 2px; }
   .admin-nav-item {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 10px 20px;
     color: rgba(255,255,255,0.5);
     text-decoration: none;
     font-size: 0.875rem;
     transition: 0.2s;
     border-left: 3px solid transparent;
   }
   .admin-nav-item:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.03); }
   .admin-nav-item.active { color: #17A6A7; background: rgba(23,166,167,0.1); border-left-color: #17A6A7; }
   .admin-nav-icon { width: 16px; height: 16px; opacity: 0.7; flex-shrink: 0; }
   .admin-nav-item.active .admin-nav-icon { opacity: 1; }
   .admin-nav-text { flex: 1; }
   .admin-nav-badge {
     margin-left: auto;
     background: #17A6A7;
     color: #fff;
     font-size: 0.65rem;
     padding: 1px 7px;
     border-radius: 100px;
     font-weight: 600;
   }
   .admin-sidebar-footer {
     padding: 16px 20px;
     border-top: 1px solid rgba(255,255,255,0.06);
     font-size: 0.75rem;
     color: rgba(255,255,255,0.3);
   }
   .admin-main { margin-left: 240px; flex: 1; display: flex; flex-direction: column; min-height: 100vh; width: calc(100% - 240px); }
   .admin-topbar {
     background: #111f3a;
     border-bottom: 1px solid rgba(255,255,255,0.06);
     padding: 0 32px;
     height: 60px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     position: sticky;
     top: 0;
     z-index: 100;
   }
   .admin-topbar-title { font-size: 1rem; font-weight: 500; color: #fff; margin: 0; }
   .admin-topbar-right { display: flex; align-items: center; gap: 16px; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
   .admin-badge {
     background: rgba(23,166,167,0.15);
     color: #17A6A7;
     padding: 3px 10px;
     border-radius: 100px;
     font-size: 0.75rem;
   }
   .admin-content {
     padding: 32px;
     flex: 1;
     background: var(--navy-light);
     color: rgba(255,255,255,0.92);
   }
   .admin-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
   .admin-muted { opacity: 0.5; font-size: 0.9rem; }
   .admin-h2-plain { font-size: 1.05rem; font-weight: 600; margin: 0 0 8px; }
   .admin-h3-plain { font-size: 0.95rem; margin: 0 0 16px; }
   .admin-link-all { color: var(--teal); font-size: 0.85rem; text-decoration: none; }
   .admin-link-all:hover { text-decoration: underline; }

   .admin-kpi-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 16px;
     margin-bottom: 32px;
   }
   .admin-kpi-card {
     background: rgba(255,255,255,0.04);
     border: 1px solid rgba(255,255,255,0.08);
     border-radius: 14px;
     padding: 24px 20px;
   }
   .admin-kpi-num { font-size: 2rem; font-weight: 700; margin-bottom: 4px; }
   .admin-kpi-num--teal { color: #17A6A7; }
   .admin-kpi-num--amber { color: #eab308; }
   .admin-kpi-num--coral { color: #e05a2b; }
   .admin-kpi-num--blue { color: #60a5fa; }
   .admin-kpi-label { font-size: 0.78rem; opacity: 0.45; text-transform: uppercase; letter-spacing: 0.08em; }
   .admin-unread-pill { display: inline-block; margin-left: 6px; font-size: 0.65rem; color: #17A6A7; text-transform: none; letter-spacing: 0; }

   .admin-dash-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; align-items: start; }
   .admin-panel-hd { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
   .admin-panel-hd h2 { font-size: 1rem; font-weight: 600; margin: 0; }
   .admin-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid rgba(255,255,255,0.06); }
   .admin-empty-cell { opacity: 0.45; padding: 24px !important; text-align: center; }
   .admin-msg-preview { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
   .admin-msg-preview:last-child { border-bottom: none; }
   .admin-msg-preview-body { font-size: 0.88rem; opacity: 0.75; margin-top: 6px; line-height: 1.5; }
   .admin-msg-preview-meta { font-size: 0.75rem; opacity: 0.4; margin-top: 8px; }

   .admin-expo-mini-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
   .admin-expo-mini {
     flex: 1;
     min-width: 160px;
     background: rgba(255,255,255,0.04);
     border: 1px solid rgba(255,255,255,0.08);
     border-radius: 12px;
     padding: 16px 18px;
     text-decoration: none;
     color: inherit;
     transition: 0.2s;
   }
   .admin-expo-mini:hover { border-color: rgba(23,166,167,0.35); }
   .admin-expo-mini-city { font-weight: 600; margin-bottom: 6px; }
   .admin-expo-mini-badge { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.55; }
   .admin-expo-mini-badge--open { color: #6ee7a8; }
   .admin-expo-mini-badge--coming_soon { color: #eab308; }
   .admin-expo-mini-badge--closed { color: #e05a2b; }
   .admin-expo-mini-count { font-size: 0.8rem; opacity: 0.45; margin-top: 8px; }

   .admin-badge-status { display: inline-block; padding: 4px 10px; border-radius: 100px; font-size: 0.72rem; font-weight: 600; }
   .admin-badge-status--pending { background: rgba(234,179,8,0.15); color: #eab308; }
   .admin-badge-status--approved { background: rgba(23,166,167,0.15); color: #17A6A7; }
   .admin-badge-status--rejected { background: rgba(224,90,43,0.15); color: #e05a2b; }

   .admin-filter-bar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 16px; }
   .admin-search-input {
     flex: 1;
     min-width: 200px;
     max-width: 360px;
     padding: 10px 14px;
     border-radius: 8px;
     border: 1px solid rgba(255,255,255,0.12);
     background: rgba(255,255,255,0.05);
     color: #fff;
     font-family: inherit;
     font-size: 0.88rem;
   }
   .admin-search-btn { padding: 10px 18px; font-size: 0.85rem; border-radius: 8px; }
   .admin-tabs { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 12px; }
   .admin-tab { font-size: 0.88rem; color: rgba(255,255,255,0.45); text-decoration: none; padding-bottom: 8px; border-bottom: 2px solid transparent; margin-bottom: -13px; }
   .admin-tab:hover { color: rgba(255,255,255,0.8); }
   .admin-tab--active { color: #17A6A7; border-bottom-color: #17A6A7; }
   .admin-expo-filter { margin-bottom: 12px; }
   .admin-select {
     padding: 8px 12px;
     border-radius: 8px;
     border: 1px solid rgba(255,255,255,0.12);
     background: rgba(255,255,255,0.05);
     color: #fff;
     font-family: inherit;
     font-size: 0.85rem;
   }
   .admin-results-count { font-size: 0.85rem; opacity: 0.45; margin-bottom: 16px; }
   .admin-empty-state { text-align: center; padding: 48px 24px; opacity: 0.55; }
   .admin-empty-icon { font-size: 2rem; margin-bottom: 12px; }
   .admin-table-scroll { overflow-x: auto; border-radius: 12px; border: 1px solid rgba(255,255,255,0.06); }
   .admin-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
   .admin-table th {
     padding: 10px 14px;
     text-align: left;
     font-size: 0.7rem;
     font-weight: 600;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: rgba(255,255,255,0.35);
     border-bottom: 1px solid rgba(255,255,255,0.07);
   }
   .admin-table td { padding: 14px; border-bottom: 1px solid rgba(255,255,255,0.05); vertical-align: middle; }
   .admin-table tr:hover td { background: rgba(255,255,255,0.02); }
   .admin-table-sub { font-size: 0.78rem; opacity: 0.45; margin-top: 4px; word-break: break-all; }
   .admin-type-pill { font-size: 0.75rem; opacity: 0.75; text-transform: capitalize; }
   .admin-pill-expo { display: inline-block; padding: 3px 10px; border-radius: 100px; background: rgba(23,166,167,0.12); color: #17A6A7; font-size: 0.78rem; }
   .admin-actions-cell { display: flex; flex-wrap: wrap; gap: 6px; }
   .btn-approve {
     background: rgba(23,166,167,0.15);
     color: #17A6A7;
     border: 1px solid rgba(23,166,167,0.3);
     padding: 5px 12px;
     border-radius: 6px;
     font-size: 0.78rem;
     cursor: pointer;
     font-family: inherit;
     transition: 0.2s;
   }
   .btn-approve:hover { background: rgba(23,166,167,0.25); }
   .btn-reject {
     background: rgba(224,90,43,0.12);
     color: #e05a2b;
     border: 1px solid rgba(224,90,43,0.25);
     padding: 5px 12px;
     border-radius: 6px;
     font-size: 0.78rem;
     cursor: pointer;
     font-family: inherit;
     transition: 0.2s;
   }
   .btn-delete {
     background: rgba(255,255,255,0.05);
     color: rgba(255,255,255,0.35);
     border: 1px solid rgba(255,255,255,0.1);
     padding: 5px 12px;
     border-radius: 6px;
     font-size: 0.78rem;
     cursor: pointer;
     font-family: inherit;
     transition: 0.2s;
   }
   .btn-delete:hover { color: rgba(255,255,255,0.6); }

   .admin-page-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
   .admin-add-expo-form {
     background: rgba(255,255,255,0.04);
     border: 1px solid rgba(255,255,255,0.08);
     border-radius: 14px;
     padding: 24px;
     margin-bottom: 24px;
   }
   .admin-form-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; align-items: end; }
   .admin-form-grid .field label { display: block; margin-bottom: 6px; font-size: 0.82rem; opacity: 0.65; }
   .admin-form-grid input, .admin-form-grid select {
     width: 100%;
     padding: 10px 12px;
     border-radius: 8px;
     border: 1px solid rgba(255,255,255,0.12);
     background: rgba(0,0,0,0.2);
     color: #fff;
     font-family: inherit;
   }

   .expo-admin-card {
     background: rgba(255,255,255,0.04);
     border: 1px solid rgba(255,255,255,0.08);
     border-radius: 14px;
     padding: 24px 28px;
     margin-bottom: 16px;
     display: grid;
     grid-template-columns: 2fr 1.2fr minmax(200px, 0.8fr);
     gap: 24px;
     align-items: center;
   }
   .expo-admin-city { font-size: 1.3rem; font-weight: 600; margin-bottom: 4px; }
   .expo-admin-meta { font-size: 0.82rem; opacity: 0.45; }
   .expo-admin-mid { display: flex; justify-content: space-around; gap: 12px; flex-wrap: wrap; }
   .expo-admin-stat { text-align: center; }
   .expo-admin-stat-num { font-size: 1.4rem; font-weight: 700; color: #17A6A7; }
   .expo-admin-stat-label { font-size: 0.72rem; opacity: 0.4; margin-top: 2px; }
   .expo-admin-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
   .expo-status-form .admin-select { min-width: 140px; }

   .message-card {
     background: rgba(255,255,255,0.04);
     border: 1px solid rgba(255,255,255,0.08);
     border-radius: 12px;
     padding: 20px 24px;
     margin-bottom: 12px;
   }
   .message-card--unread { border-color: rgba(23,166,167,0.3); border-left: 3px solid #17A6A7; padding-left: 21px; }
   .message-card-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
   .message-card-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; font-size: 0.8rem; opacity: 0.45; text-align: right; }
   .message-card-body { font-size: 0.9rem; line-height: 1.65; opacity: 0.85; }
   .message-card-actions { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }

   .admin-settings-card {
     background: rgba(255,255,255,0.04);
     border: 1px solid rgba(255,255,255,0.08);
     border-radius: 14px;
     padding: 28px;
     max-width: 640px;
   }

   @media (max-width: 1200px) {
     .admin-kpi-grid { grid-template-columns: repeat(3, 1fr); }
     .expo-admin-card { grid-template-columns: 1fr; }
     .expo-admin-actions { align-items: flex-start; }
   }
   @media (max-width: 960px) {
     .admin-kpi-grid { grid-template-columns: repeat(2, 1fr); }
     .admin-dash-grid { grid-template-columns: 1fr; }
     .admin-wrap { overflow-x: auto; }
   }

   /* ── Exhibitor portal (shares admin shell) ── */
   .portal-body .portal-sidebar .portal-user-card {
     background: rgba(23, 166, 167, 0.08);
     border: 1px solid rgba(23, 166, 167, 0.18);
     border-radius: 10px;
     padding: 12px 14px;
     margin: 0 16px 12px;
   }
   .portal-user-row { display: flex; align-items: center; gap: 12px; }
   .portal-avatar {
     width: 40px;
     height: 40px;
     border-radius: 10px;
     background: rgba(23, 166, 167, 0.2);
     color: #17a6a7;
     font-size: 0.75rem;
     font-weight: 700;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
   }
   .portal-user-name { font-size: 0.85rem; font-weight: 600; color: #fff; }
   .portal-user-badge {
     display: inline-block;
     margin-top: 4px;
     font-size: 0.65rem;
     text-transform: uppercase;
     letter-spacing: 0.06em;
     color: rgba(255, 255, 255, 0.35);
   }
   .portal-sidebar-expo .portal-expo-name {
     font-size: 0.8rem;
     font-weight: 500;
     color: #fff;
     margin-bottom: 2px;
   }
   .portal-sidebar-expo .portal-expo-status { font-size: 0.72rem; color: #17a6a7; }
   .portal-bell {
     display: flex;
     opacity: 0.35;
     cursor: default;
   }
   .portal-welcome { margin-bottom: 24px; }
   .portal-welcome-title { font-size: 1.35rem; font-weight: 600; margin: 0 0 8px; }
   .portal-welcome-sub { font-size: 0.9rem; opacity: 0.55; margin: 0; }
   .portal-kpi-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 16px;
     margin-bottom: 24px;
   }
   .portal-kpi-card {
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 14px;
     padding: 22px 20px;
   }
   .portal-kpi-label {
     font-size: 0.72rem;
     opacity: 0.4;
     text-transform: uppercase;
     letter-spacing: 0.08em;
     margin-bottom: 12px;
   }
   .portal-kpi-num { font-size: 2rem; font-weight: 700; color: #17a6a7; }
   .portal-kpi-num--teal { color: #17a6a7; }
   .portal-kpi-hint { font-size: 0.78rem; opacity: 0.4; margin: 8px 0 0; }
   .progress-circle-wrap { display: flex; align-items: center; }
   .progress-circle { position: relative; width: 64px; height: 64px; }
   .progress-circle-svg { width: 64px; height: 64px; display: block; }
   .progress-circle-pct {
     position: absolute;
     inset: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.85rem;
     font-weight: 600;
   }
   .portal-quick-actions {
     display: flex;
     flex-wrap: wrap;
     gap: 12px;
     margin-bottom: 32px;
   }
   .portal-qa-btn { border-radius: 8px !important; }
   .portal-section { margin-bottom: 36px; }
   .portal-section-head {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 14px;
   }
   .portal-empty-card {
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 14px;
     padding: 28px 24px;
     text-align: center;
   }
   .portal-match-list { border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.06); overflow: hidden; }
   .portal-match-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 16px 18px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
   }
   .portal-match-row:last-child { border-bottom: none; }
   .portal-match-seg { font-weight: 600; }
   .portal-match-meta { font-size: 0.8rem; opacity: 0.45; margin-top: 4px; }
   .portal-match-pct { font-size: 1.25rem; font-weight: 700; color: #17a6a7; }
   .portal-timeline { list-style: none; margin: 0; padding: 0; }
   .portal-timeline-item {
     display: flex;
     gap: 16px;
     padding: 12px 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
     font-size: 0.88rem;
   }
   .portal-timeline-item--teal {
     color: #17a6a7;
     font-weight: 500;
   }
   .portal-timeline-date { min-width: 56px; opacity: 0.45; font-size: 0.8rem; }
   .portal-profile-grid {
     display: grid;
     grid-template-columns: 1fr minmax(260px, 32%);
     gap: 28px;
     align-items: start;
   }
   .portal-form-block {
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 14px;
     padding: 22px 24px;
     margin-bottom: 20px;
   }
   .portal-form-block-title { font-size: 0.95rem; font-weight: 600; margin: 0 0 16px; }
   .portal-field-span { grid-column: 1 / -1; }
   .portal-btn-profile-save { border-radius: 8px; margin-top: 8px; }
   .portal-password-form-grid { max-width: 480px; }
   .portal-btn-update-pw { border-radius: 8px; }
   .portal-match-lead { opacity: 0.65; max-width: 560px; margin: 0 0 12px; }
   .portal-match-empty-hint { font-size: 0.875rem; margin: 0 0 20px; max-width: 560px; }
   .portal-match-form { max-width: 640px; }
   .portal-mm-output { margin-top: 24px; }
   .portal-match-submit { border-radius: 8px; align-self: flex-start; }
   .portal-meetings-h2 { margin: 0; }
   .portal-meetings-lead { margin: 8px 0 4px; }
   .portal-meetings-meta { margin: 0 0 16px; }
   .portal-meetings-empty { text-align: center; padding: 40px 24px 20px; }
   .portal-meetings-empty-icon { font-size: 2.5rem; margin-bottom: 16px; opacity: 0.3; }
   .portal-meetings-empty-title { font-size: 1.1rem; font-weight: 500; margin-bottom: 8px; }
   .portal-meetings-empty-text { font-size: 0.875rem; opacity: 0.45; max-width: 320px; margin: 0 auto 24px; }
   .portal-meetings-cta { border-radius: 8px; }
   .portal-meetings-demo-heading { margin-top: 32px; }
   .portal-meetings-demo-sub { margin-bottom: 16px; }
   .portal-meeting-details-btn { border-radius: 8px; font-size: 0.78rem; padding: 6px 12px; }
   .portal-readonly {
     opacity: 0.65;
     cursor: not-allowed;
     background: rgba(0, 0, 0, 0.15) !important;
   }
   .portal-password-block { margin-top: 28px; }
   .portal-preview-card {
     position: sticky;
     top: 88px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(23, 166, 167, 0.2);
     border-radius: 14px;
     padding: 24px;
   }
   .portal-preview-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.4; margin: 0 0 12px; }
   .portal-preview-name { font-size: 1.35rem; font-weight: 700; margin: 0 0 8px; }
   .portal-preview-type {
     display: inline-block;
     font-size: 0.72rem;
     padding: 4px 10px;
     border-radius: 100px;
     background: rgba(23, 166, 167, 0.15);
     color: #17a6a7;
   }
   .portal-preview-country { margin: 12px 0 16px; opacity: 0.55; font-size: 0.9rem; }
   .portal-pill-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
   .portal-pill {
     font-size: 0.72rem;
     padding: 4px 10px;
     border-radius: 100px;
     background: rgba(255, 255, 255, 0.08);
   }
   .portal-pill--muted { opacity: 0.55; }
   .portal-preview-progress { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
   .portal-preview-progress-label { font-size: 0.75rem; opacity: 0.45; margin-bottom: 8px; }
   .portal-preview-bar {
     height: 6px;
     border-radius: 100px;
     background: rgba(255, 255, 255, 0.08);
     overflow: hidden;
   }
   .portal-preview-bar span {
     display: block;
     height: 100%;
     border-radius: 100px;
     background: linear-gradient(90deg, #17a6a7, #2ee6e8);
   }
   .portal-preview-progress-pct { font-size: 0.78rem; opacity: 0.5; margin-top: 6px; }
   .portal-alert {
     border-radius: 10px;
     padding: 12px 16px;
     margin-bottom: 20px;
     font-size: 0.88rem;
   }
   .portal-alert--ok {
     background: rgba(23, 166, 167, 0.1);
     border: 1px solid rgba(23, 166, 167, 0.25);
     color: #6ee7d8;
   }
   .portal-alert--err {
     background: rgba(224, 90, 43, 0.1);
     border: 1px solid rgba(224, 90, 43, 0.25);
     color: #e8a090;
   }
   .meeting-card {
     background: rgba(255, 255, 255, 0.04);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 12px;
     padding: 20px 24px;
     margin-bottom: 12px;
     display: grid;
     grid-template-columns: auto 1fr auto;
     gap: 20px;
     align-items: center;
   }
   .meeting-card-date {
     background: rgba(23, 166, 167, 0.15);
     border-radius: 10px;
     padding: 10px 14px;
     text-align: center;
     min-width: 64px;
   }
   .meeting-card-day { display: block; font-size: 1.35rem; font-weight: 700; color: #17a6a7; line-height: 1.1; }
   .meeting-card-mon { font-size: 0.72rem; opacity: 0.55; text-transform: uppercase; }
   .meeting-card-title { font-weight: 600; font-size: 0.95rem; }
   .meeting-card-sub { font-size: 0.82rem; opacity: 0.45; margin-top: 4px; }
   .meeting-card-aside { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
   .meeting-card-status { font-size: 0.72rem; padding: 4px 10px; border-radius: 100px; font-weight: 600; }
   .meeting-card-status--ok { background: rgba(34, 197, 94, 0.15); color: #6ee7a8; }
   .meeting-card-status--pending { background: rgba(234, 179, 8, 0.12); color: #eab308; }
   @media (max-width: 960px) {
     .portal-kpi-grid { grid-template-columns: 1fr; }
     .portal-profile-grid { grid-template-columns: 1fr; }
     .portal-preview-card { position: static; }
     .meeting-card { grid-template-columns: 1fr; }
     .meeting-card-aside { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
   }

   /* ── Image utilities (Unsplash / CDN) ── */
   .img-cover {
     width: 100%;
     max-width: 100%;
     height: auto;
     display: block;
     object-fit: cover;
   }
   .img-overlay {
     position: relative;
     background-color: var(--navy);
     overflow: hidden;
   }
   .img-overlay > img.img-cover,
   .img-overlay > img {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     max-width: none;
     object-fit: cover;
     display: block;
   }
   .img-overlay::after {
     content: '';
     position: absolute;
     inset: 0;
     z-index: 2;
     pointer-events: none;
     background: linear-gradient(
       135deg,
       rgba(25, 49, 90, 0.82) 0%,
       rgba(23, 166, 167, 0.28) 48%,
       rgba(25, 49, 90, 0.5) 100%
     );
   }
   .hero-photo.img-overlay::after {
     background: linear-gradient(
       125deg,
       rgba(25, 49, 90, 0.75) 0%,
       rgba(23, 166, 167, 0.22) 50%,
       rgba(25, 49, 90, 0.65) 100%
     );
   }
   @media (max-width: 640px) {
     .hero-visual-stack-wrap { min-height: 400px; }
     .hero-visual-stack-wrap .hero-photo {
       width: 92%;
       max-width: none;
     }
     .blog-post-hero-cover { min-height: 280px; }
   }
   figure.hero-photo,
   .who-card-thumb,
   .about-mission-photo,
   .timeline-deco {
     margin: 0;
   }
   .blog-post-hero-cover.img-overlay::after {
     z-index: 1;
   }

  /* ================================================
     HOME V2 — Premium expo homepage
     Scope: index.php only (.km-home-v2)
     ================================================ */
  .km-home-v2 {
    --wc-bg: #071330;
    --wc-bg-alt: #0a1f45;
    --wc-card: rgba(255, 255, 255, 0.05);
    --wc-card-border: rgba(255, 255, 255, 0.13);
    --wc-text: #f3f7ff;
    --wc-text-dim: rgba(232, 240, 255, 0.72);
    --wc-teal: #18b7b8;
    --wc-teal-strong: #2ce2e3;
    --wc-transition: 0.34s cubic-bezier(0.2, 0.65, 0.2, 1);
    --wc-reveal-distance: 40px;
    --wc-reveal-duration: 0.7s;
    color: var(--wc-text);
    background: var(--wc-bg);
    text-rendering: optimizeLegibility;
  }

  .km-home-v2 .btn {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  }
  .km-home-v2 .btn:hover { transform: translateY(-2px); }

  .km-home-v2 .hero-cinematic {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 110px 0 74px;
    background: linear-gradient(165deg, #06142e 0%, #0a1f45 52%, #071330 100%);
  }
  .km-home-v2 .hero-intro {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity 0.66s cubic-bezier(0.2, 0.65, 0.2, 1), transform 0.66s cubic-bezier(0.2, 0.65, 0.2, 1);
    will-change: opacity, transform;
  }
  .km-home-v2 .hero-cinematic.is-ready .hero-intro {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  .km-home-v2 .hero-cinematic.is-ready .hero-intro-1 { transition-delay: 80ms; }
  .km-home-v2 .hero-cinematic.is-ready .hero-intro-2 { transition-delay: 160ms; }
  .km-home-v2 .hero-cinematic.is-ready .hero-intro-3 { transition-delay: 240ms; }
  .km-home-v2 .hero-cinematic.is-ready .hero-intro-4 { transition-delay: 320ms; }
  .km-home-v2 .hero-cinematic.is-ready .hero-intro-5 { transition-delay: 410ms; }
  .km-home-v2 .hero-cinematic.is-ready .hero-intro-6 { transition-delay: 480ms; }
  .km-home-v2 .hero-mesh-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }
  .km-home-v2 .mesh-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.82;
    background: radial-gradient(circle at center, rgba(44, 226, 227, 0.25) 0%, rgba(44, 226, 227, 0.02) 66%, transparent 100%);
    animation: wcMesh 11s ease-in-out infinite;
  }
  .km-home-v2 .mesh-orb-1 { width: 44vw; height: 44vw; left: -10vw; top: -16vw; }
  .km-home-v2 .mesh-orb-2 { width: 40vw; height: 40vw; right: -12vw; top: -9vw; animation-delay: -3s; }
  .km-home-v2 .mesh-orb-3 { width: 32vw; height: 32vw; left: 24vw; bottom: -11vw; animation-delay: -2s; }
  .km-home-v2 .mesh-orb-4 { width: 36vw; height: 36vw; right: 16vw; bottom: -15vw; animation-delay: -5s; }

  .km-home-v2 .hero-cinematic-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
    gap: 44px;
    align-items: center;
  }
  .km-home-v2 .hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid rgba(44, 226, 227, 0.48);
    background: rgba(44, 226, 227, 0.12);
    color: #a9ffff;
    padding: 7px 16px;
    font-size: 0.76rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .km-home-v2 .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5ff;
    animation: wcBlink 1.8s ease-in-out infinite;
  }
  .km-home-v2 .hero-cinematic-copy h1 {
    margin: 16px 0 0;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    max-width: 14ch;
  }
  .km-home-v2 .hero-accent {
    color: var(--wc-teal-strong);
    position: relative;
    display: inline-block;
  }
  .km-home-v2 .hero-accent::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 4px;
    border-radius: 99px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, rgba(44, 226, 227, 0.2) 0%, rgba(44, 226, 227, 1) 50%, rgba(44, 226, 227, 0.2) 100%);
    animation: wcUnderline 1s cubic-bezier(0.2, 0.65, 0.2, 1) 0.28s forwards;
  }
  .km-home-v2 .hero-cinematic-copy > p {
    margin: 22px 0 0;
    color: var(--wc-text-dim);
    max-width: 60ch;
  }

  .km-home-v2 .hero-route-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .km-home-v2 .hero-route-item {
    border: 1px solid var(--wc-card-border);
    background: rgba(255, 255, 255, 0.045);
    border-radius: 10px;
    padding: 11px;
    min-height: 86px;
  }
  .km-home-v2 .hero-route-title {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9af;
    margin-bottom: 6px;
    font-weight: 700;
  }
  .km-home-v2 .hero-route-text {
    font-size: 0.79rem;
    line-height: 1.45;
    color: rgba(232, 240, 255, 0.72);
  }

  .km-home-v2 .hero-cinematic-ctas {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .km-home-v2 .btn-cinematic-primary {
    background: linear-gradient(135deg, var(--wc-teal) 0%, #2ce2e3 100%);
    color: #032129;
    border: 1px solid rgba(44, 226, 227, 0.8);
    box-shadow: 0 14px 30px rgba(17, 184, 185, 0.25);
  }
  .km-home-v2 .btn-cinematic-glass {
    background: rgba(255, 255, 255, 0.07);
    color: #eaf7ff;
    border: 1px solid rgba(255, 255, 255, 0.23);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .km-home-v2 .btn-cinematic-ghost {
    background: transparent;
    color: #9df;
    border: 1px dashed rgba(44, 226, 227, 0.45);
  }

  .km-home-v2 .hero-proof-ticker {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .km-home-v2 .proof-pill {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 0.74rem;
    color: rgba(232, 240, 255, 0.85);
  }
  .km-home-v2 .proof-pill strong { color: #90ffff; }

  .km-home-v2 .hero-cinematic-stats {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .km-home-v2 .stat-chip {
    border: 1px solid var(--wc-card-border);
    border-radius: 12px;
    background: var(--wc-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 13px 15px;
  }
  .km-home-v2 .stat-chip-num {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 700;
    line-height: 1;
    color: var(--wc-teal-strong);
  }
  .km-home-v2 .stat-chip-label {
    margin-top: 6px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(232, 240, 255, 0.64);
  }

  .km-home-v2 .hero-cinematic-visual {
    position: relative;
    display: grid;
    justify-items: center;
  }
  .km-home-v2 .parallax-layer {
    --parallax-y: 0px;
  }
  .km-home-v2 .hero-photo-cinematic {
    width: min(560px, 94%);
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    margin: 0;
    overflow: hidden;
    clip-path: polygon(0 10%, 13% 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translate3d(0, var(--parallax-y), 0) rotate(-2deg);
    transition: transform var(--wc-transition), box-shadow var(--wc-transition);
    box-shadow: 0 42px 70px rgba(0, 0, 0, 0.47);
  }
  .km-home-v2 .hero-photo-cinematic::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(7, 19, 48, 0.18) 0%, rgba(44, 226, 227, 0.2) 100%);
    pointer-events: none;
  }
  .km-home-v2 .hero-photo-cinematic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .km-home-v2 .hero-cinematic-visual:hover .hero-photo-cinematic {
    transform: translate3d(0, calc(var(--parallax-y) - 5px), 0) rotate(0deg);
  }

  .km-home-v2 .hero-floating-card {
    position: absolute;
    right: -2px;
    bottom: 16px;
    width: min(320px, 78%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(8, 28, 64, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 16px;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.4);
    transform: translate3d(0, var(--parallax-y), 0);
    transition: transform var(--wc-transition), box-shadow var(--wc-transition);
  }
  .km-home-v2 .hero-floating-label {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8fffff;
  }
  .km-home-v2 .hero-floating-title {
    margin-top: 6px;
    font-size: 1rem;
    font-weight: 600;
  }
  .km-home-v2 .hero-floating-score {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .km-home-v2 .hero-floating-score-num {
    font-size: 1.65rem;
    font-weight: 700;
    color: #8bffff;
  }
  .km-home-v2 .hero-floating-score-label {
    font-size: 0.76rem;
    color: rgba(232, 240, 255, 0.7);
  }

  .km-home-v2 .hero-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: 34px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }
  .km-home-v2 .hero-scroll-indicator span {
    width: 4px;
    height: 10px;
    border-radius: 999px;
    background: var(--wc-teal-strong);
    animation: wcBounce 1.7s ease-in-out infinite;
  }

  .km-home-v2 .home-authority-strip {
    background: linear-gradient(120deg, rgba(24, 183, 184, 0.16) 0%, rgba(24, 183, 184, 0.06) 40%, rgba(8, 26, 61, 0.5) 100%);
    border-top: 1px solid rgba(44, 226, 227, 0.2);
    border-bottom: 1px solid rgba(44, 226, 227, 0.12);
    padding: 20px 0 24px;
  }
  .km-home-v2 .authority-strip-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
  }
  .km-home-v2 .authority-kicker {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #98ffff;
    font-weight: 700;
  }
  .km-home-v2 .authority-strip-head p {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(232, 240, 255, 0.74);
    max-width: 70ch;
  }
  .km-home-v2 .authority-grid {
    display: grid;
    gap: 12px;
  }
  .km-home-v2 .authority-grid--proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .km-home-v2 .authority-proof {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 14px 14px 15px;
    min-height: 148px;
  }
  .km-home-v2 .authority-proof h3 {
    margin: 0 0 10px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8dffff;
  }
  .km-home-v2 .authority-logo-carousel {
    overflow: hidden;
    width: min(100%, 210px);
    margin: 0 auto;
    mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  }
  .km-home-v2 .authority-logo-track,
  .km-home-v2 .logo-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 0;
    width: max-content;
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }
  .km-home-v2 .partner-logo-item {
    flex: 0 0 210px;
    width: 210px;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .km-home-v2 .partner-logo-img {
    display: block;
    max-height: 40px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    opacity: 0.9;
  }
  .km-home-v2 .partner-logo-fallback {
    font-size: 0.73rem;
    color: rgba(232, 240, 255, 0.72);
    white-space: nowrap;
  }
  .km-home-v2 .authority-proof-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
  }
  .km-home-v2 .authority-proof-list li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: rgba(232, 240, 255, 0.75);
    font-size: 0.74rem;
    line-height: 1.35;
  }
  .km-home-v2 .authority-proof-list strong {
    color: #8dffff;
    font-size: 0.95rem;
    min-width: 42px;
    letter-spacing: -0.01em;
  }
  .km-home-v2 .authority-highlight-list {
    display: grid;
    gap: 7px;
  }
  .km-home-v2 .authority-highlight {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 7px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
  }
  .km-home-v2 .authority-highlight:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .km-home-v2 .authority-highlight span {
    font-size: 0.73rem;
    color: rgba(232, 240, 255, 0.64);
  }
  .km-home-v2 .authority-highlight strong {
    font-size: 0.74rem;
    color: rgba(236, 246, 255, 0.9);
    text-align: right;
  }

  .km-home-v2 .authority-proof--ecosystem {
    min-height: 0;
  }
  .km-home-v2 .authority-proof-list--eco-stats li strong {
    color: var(--aw-teal, var(--teal));
    font-size: 0.98rem;
    min-width: 3.75rem;
  }
  .km-home-v2 .authority-proof-footnote {
    margin: 10px 0 0;
    font-size: 0.68rem;
    line-height: 1.45;
    color: rgba(232, 240, 255, 0.52);
  }
  .km-home-v2 .authority-cost-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 4px;
  }
  @media (max-width: 520px) {
    .km-home-v2 .authority-cost-split {
      grid-template-columns: 1fr;
    }
  }
  .km-home-v2 .authority-cost-block {
    border-radius: 10px;
    padding: 10px 10px 11px;
  }
  .km-home-v2 .authority-cost-block--ads {
    background: rgba(8, 26, 61, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .km-home-v2 .authority-cost-block--pkg {
    background: rgba(23, 166, 167, 0.1);
    border: 1px solid rgba(23, 166, 167, 0.42);
  }
  .km-home-v2 .authority-cost-headline {
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(236, 246, 255, 0.92);
    margin: 0 0 4px;
  }
  .km-home-v2 .authority-cost-headline--teal {
    color: var(--aw-teal, var(--teal));
  }
  .km-home-v2 .authority-cost-sub {
    margin: 0 0 8px;
    font-size: 0.66rem;
    line-height: 1.35;
    color: rgba(232, 240, 255, 0.58);
  }
  .km-home-v2 .authority-cost-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 5px;
  }
  .km-home-v2 .authority-cost-list li {
    display: flex;
    gap: 6px;
    align-items: flex-start;
    font-size: 0.66rem;
    line-height: 1.38;
    color: rgba(232, 240, 255, 0.55);
  }
  .km-home-v2 .authority-cost-list--pkg li {
    color: rgba(220, 248, 248, 0.88);
  }
  .km-home-v2 .authority-cost-icon {
    flex-shrink: 0;
    font-weight: 700;
    line-height: 1.25;
  }
  .km-home-v2 .authority-cost-icon--bad {
    color: rgba(255, 170, 170, 0.75);
  }
  .km-home-v2 .authority-cost-icon--good {
    color: var(--aw-teal, var(--teal));
  }
  .km-home-v2 .authority-cal-section-label {
    margin: 0 0 6px;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(232, 240, 255, 0.48);
  }
  .km-home-v2 .authority-cal-section-label--spaced {
    margin-top: 12px;
  }
  .km-home-v2 .authority-cal-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  }
  .km-home-v2 .authority-cal-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }
  .km-home-v2 .authority-cal-flag {
    font-size: 1.12rem;
    line-height: 1.2;
    flex-shrink: 0;
  }
  .km-home-v2 .authority-cal-body {
    flex: 1;
    min-width: 0;
  }
  .km-home-v2 .authority-cal-city {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(236, 246, 255, 0.94);
  }
  .km-home-v2 .authority-cal-date {
    display: block;
    margin-top: 2px;
    font-size: 0.69rem;
    color: rgba(232, 240, 255, 0.6);
  }
  .km-home-v2 .authority-cal-badge {
    flex-shrink: 0;
    font-size: 0.64rem;
    font-weight: 600;
    white-space: nowrap;
    align-self: center;
  }
  .km-home-v2 .authority-cal-badge--active {
    color: var(--aw-teal, var(--teal));
  }
  .km-home-v2 .authority-cal-badge--soon {
    color: rgba(232, 240, 255, 0.45);
  }
  .km-home-v2 .authority-cal-planned-list {
    margin: 0;
    font-size: 0.68rem;
    line-height: 1.5;
    color: rgba(232, 240, 255, 0.55);
  }

  .km-home-v2 .section-diagonal {
    height: 64px;
    width: 100%;
    z-index: 3;
    background: linear-gradient(180deg, #071330 0%, #092043 100%);
  }
  .km-home-v2 .section-diagonal-down { clip-path: polygon(0 0, 100% 0, 100% 56%, 0 100%); }
  .km-home-v2 .section-diagonal-up { clip-path: polygon(0 36%, 100% 0, 100% 100%, 0 100%); }

  .km-home-v2 .home-section { padding: 92px 0; }
  .km-home-v2 .home-section:nth-of-type(even) { background: rgba(255, 255, 255, 0.02); }

  /* Geçici: “Canlı fırsat odası” + “İş sonuçları” — tekrar göstermek için bu bloğu silin */
  .km-home-v2 .home-deal-room,
  .km-home-v2 .home-outcomes {
    display: none !important;
  }
  .km-home-v2 .section-kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8ff;
  }
  .km-home-v2 .home-section h2 {
    font-size: clamp(1.9rem, 3.2vw, 3.1rem);
    letter-spacing: -0.02em;
    line-height: 1.05;
  }
  .km-home-v2 .section-intro {
    margin-top: 14px;
    color: var(--wc-text-dim);
    max-width: 60ch;
  }

  .km-home-v2 .home-exhibitions .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .km-home-v2 .home-exhibitions h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
  }

  .km-home-v2 .ex-countdown-bar {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    margin-bottom: 0;
    padding: 12px 24px;
    background: rgba(23, 166, 167, 0.08);
    border: 1px solid rgba(23, 166, 167, 0.22);
    border-radius: 44px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
  }
  .km-home-v2 .ex-countdown-fair {
    font-weight: 700;
    color: #17a6a7;
    letter-spacing: 0.02em;
  }
  .km-home-v2 .ex-countdown-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #17a6a7;
    line-height: 1;
    min-width: 2.5ch;
    text-align: center;
  }
  .km-home-v2 .ex-countdown-sep { opacity: 0.3; }
  .km-home-v2 .ex-countdown-date { opacity: 0.55; font-size: 0.82rem; }
  .km-home-v2 .ex-countdown-mid {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0;
    white-space: normal;
  }
  .km-home-v2 .ex-countdown-mid .ex-countdown-value {
    margin: 0 0.12em;
  }

  .km-home-v2 .home-exhibitions .cinematic-ex-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .km-home-v2 .cinematic-ex-grid {
    margin-top: 40px;
    display: grid;
    align-items: stretch;
    gap: 16px;
    grid-template-columns: 1.65fr 1fr 1fr;
  }
  .km-home-v2 .cinematic-ex-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    min-height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: transform var(--wc-transition), box-shadow var(--wc-transition);
    display: flex;
    flex-direction: column;
  }
  .km-home-v2 .cinematic-ex-card-featured { min-height: 540px; }
  .km-home-v2 .cinematic-ex-card img,
  .km-home-v2 .ex-spotlight,
  .km-home-v2 .cinematic-ex-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .km-home-v2 .cinematic-ex-card img { object-fit: cover; display: block; }
  .km-home-v2 .ex-spotlight {
    z-index: 1;
    background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.24) 48%, transparent 58%);
    transform: translate3d(-125%, 0, 0);
    opacity: 0;
    transition: transform 0.9s cubic-bezier(0.2, 0.65, 0.2, 1), opacity 0.36s ease;
  }
  .km-home-v2 .cinematic-ex-overlay {
    background: linear-gradient(180deg, rgba(7, 18, 43, 0.24) 0%, rgba(7, 18, 43, 0.9) 72%, rgba(7, 18, 43, 0.96) 100%);
    transition: background var(--wc-transition);
  }
  .km-home-v2 .cinematic-ex-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
    padding: 18px;
  }
  .km-home-v2 .cinematic-ex-card-featured .cinematic-ex-content {
    justify-content: flex-end;
  }
  .km-home-v2 .cinematic-status {
    align-self: flex-start;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(44, 226, 227, 0.56);
    background: rgba(44, 226, 227, 0.18);
    color: #9effff;
    font-weight: 700;
  }
  .km-home-v2 .cinematic-status.is-muted {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(245, 251, 255, 0.85);
  }
  .km-home-v2 .cinematic-ex-content h3 {
    margin: 8px 0 4px;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .km-home-v2 .cinematic-ex-card-featured .cinematic-ex-content h3 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 6px;
  }
  .km-home-v2 .cinematic-ex-card-featured .cinematic-ex-content p {
    font-size: 1rem;
  }
  .km-home-v2 .cinematic-ex-content p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(232, 240, 255, 0.88);
  }
  .km-home-v2 .cinematic-deadline {
    margin-top: 8px !important;
    font-size: 0.76rem !important;
    color: #9bffff !important;
  }
  .km-home-v2 .cinematic-deadline-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
  }
  .km-home-v2 .cinematic-deadline-icon { font-size: 0.85rem; opacity: 0.7; }
  .km-home-v2 .cinematic-deadline-wrap .cinematic-deadline {
    margin-top: 0 !important;
    margin-bottom: 0;
  }

  .km-home-v2 .cinematic-avail-widget {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 14px;
    margin-top: 0;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .km-home-v2 .cinematic-ex-card-featured .cinematic-avail-widget {
    margin-bottom: auto;
  }
  .km-home-v2 .cinematic-avail-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
  }
  .km-home-v2 .cinematic-avail-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
  }
  .km-home-v2 .cinematic-avail-pct {
    font-size: 0.72rem;
    color: #17a6a7;
    font-weight: 700;
    opacity: 0.8;
  }
  .km-home-v2 .cinematic-avail-track {
    position: relative;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: visible;
    margin-bottom: 8px;
  }
  .km-home-v2 .cinematic-avail-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--avail-pct, 5%);
    background: linear-gradient(90deg, #17a6a7, #1dd6c4);
    border-radius: 4px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .km-home-v2 .cinematic-avail-glow {
    position: absolute;
    top: 50%;
    left: var(--avail-pct, 5%);
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #17a6a7;
    border-radius: 50%;
    box-shadow: 0 0 8px 3px rgba(23, 166, 167, 0.5);
    transition: left 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .km-home-v2 .cinematic-avail-slots {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
  }
  .km-home-v2 .cinematic-avail-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .km-home-v2 .cinematic-avail-dot--taken {
    background: rgba(23, 166, 167, 0.7);
    box-shadow: 0 0 4px rgba(23, 166, 167, 0.4);
  }
  .km-home-v2 .cinematic-ex-card-featured:hover .cinematic-avail-glow {
    animation: km-avail-pulse 1.5s ease-in-out infinite;
  }
  @keyframes km-avail-pulse {
    0%,
    100% {
      box-shadow: 0 0 8px 3px rgba(23, 166, 167, 0.5);
    }
    50% {
      box-shadow: 0 0 14px 6px rgba(23, 166, 167, 0.8);
    }
  }

  .km-home-v2 .cinematic-ex-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: auto;
    padding-top: 14px;
  }
  .km-home-v2 .cinematic-ex-actions .cinematic-ex-cta {
    margin-top: 0;
  }

  .km-home-v2 .cinematic-ex-cta {
    margin-top: 14px;
    text-decoration: none;
    color: #90ffff;
    font-size: 0.82rem;
    transform: translateY(8px);
    opacity: 0;
    transition: transform var(--wc-transition), opacity var(--wc-transition);
  }
  .km-home-v2 .cinematic-ex-cta--primary {
    display: inline-block;
    flex: 0 0 auto;
    padding: 12px 28px;
    background: #17a6a7;
    color: #fff;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    margin-top: 0;
    opacity: 1;
    transform: translateY(0);
  }
  .km-home-v2 .cinematic-ex-cta--primary:hover {
    background: #15909f;
    transform: translateY(-1px);
  }
  .km-home-v2 .cinematic-ex-cta--secondary {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    padding: 9px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    background: rgba(255, 255, 255, 0.04);
    margin-top: 0;
    opacity: 1;
    transform: translateY(0);
  }
  .km-home-v2 .cinematic-ex-cta--secondary::after {
    content: '→';
    opacity: 0.6;
    transition: transform 0.2s, opacity 0.2s;
  }
  .km-home-v2 .cinematic-ex-cta--secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
  }
  .km-home-v2 .cinematic-ex-cta--secondary:hover::after {
    transform: translateX(3px);
    opacity: 1;
  }
  .km-home-v2 .cinematic-ex-cta--waitlist {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #17a6a7;
    text-decoration: none;
    padding: 9px 18px;
    border: 1px solid rgba(23, 166, 167, 0.35);
    border-radius: 10px;
    background: rgba(23, 166, 167, 0.06);
    transition: background 0.2s, border-color 0.2s;
    margin-bottom: 8px;
    margin-top: 0;
    opacity: 1;
    transform: translateY(0);
  }
  .km-home-v2 .cinematic-ex-cta--waitlist::after {
    content: '→';
    opacity: 0.6;
    transition: transform 0.2s;
  }
  .km-home-v2 .cinematic-ex-cta--waitlist:hover {
    background: rgba(23, 166, 167, 0.14);
    border-color: #17a6a7;
  }
  .km-home-v2 .cinematic-ex-cta--waitlist:hover::after {
    transform: translateX(3px);
  }

  .km-home-v2 .cinematic-ex-card:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 48px rgba(0, 0, 0, 0.44);
  }
  .km-home-v2 .cinematic-ex-card:hover .ex-spotlight {
    opacity: 1;
    transform: translate3d(125%, 0, 0);
  }
  .km-home-v2 .cinematic-ex-card:hover .cinematic-ex-overlay {
    background: linear-gradient(180deg, rgba(7, 18, 43, 0.35) 0%, rgba(7, 18, 43, 0.95) 78%, rgba(7, 18, 43, 0.98) 100%);
  }
  .km-home-v2 .cinematic-ex-card:hover .cinematic-ex-cta {
    opacity: 1;
    transform: translateY(0);
  }
  .km-home-v2 .cinematic-ex-card:hover .cinematic-ex-cta--primary {
    transform: translateY(-1px);
  }
  .km-home-v2 .cinematic-ex-card:hover .cinematic-ex-cta--secondary,
  .km-home-v2 .cinematic-ex-card:hover .cinematic-ex-cta--waitlist {
    transform: translateY(0);
  }

  .km-home-v2 .ex-planned-strip {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
  }
  .km-home-v2 .ex-planned-label {
    flex: 0 0 auto;
    font-size: 0.78rem;
    color: rgba(232, 240, 255, 0.48);
    letter-spacing: 0.04em;
  }
  .km-home-v2 .ex-planned-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }
  .km-home-v2 .ex-planned-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    line-height: 1.25;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  @media (max-width: 900px) {
    .km-home-v2 .cinematic-ex-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .km-home-v2 .cinematic-ex-card,
    .km-home-v2 .cinematic-ex-card-featured {
      min-height: 360px;
    }
  }

  .km-home-v2 .home-outcomes .outcomes-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  .km-home-v2 .outcome-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    padding: 22px;
    transition: transform var(--wc-transition), border-color var(--wc-transition), background-color var(--wc-transition);
  }
  .km-home-v2 .outcome-card:hover {
    transform: translate3d(0, -5px, 0);
    border-color: rgba(44, 226, 227, 0.42);
    background: rgba(255, 255, 255, 0.07);
  }
  .km-home-v2 .outcome-num {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #8effff;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .km-home-v2 .outcome-card h3 {
    margin-top: 12px;
    font-size: 1.02rem;
  }
  .km-home-v2 .outcome-card p {
    margin-top: 8px;
    font-size: 0.88rem;
    color: rgba(232, 240, 255, 0.7);
  }

  /* REMOVED: .home-ai, .live-match-*, .accuracy-meter, .ai-signal-*, .ai-micro-meta, .home-who, .who-v2-* (sections removed from index; keep for reference)
  .km-home-v2 .home-ai {
    position: relative;
    background: linear-gradient(180deg, #0a1f45 0%, #081738 100%);
  }
  .km-home-v2 .home-ai::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 32px 32px;
  }
  .km-home-v2 .home-ai-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
  }
  .km-home-v2 .accuracy-meter {
    margin-top: 26px;
    border: 1px solid rgba(44, 226, 227, 0.3);
    background: rgba(44, 226, 227, 0.1);
    border-radius: 14px;
    padding: 19px;
  }
  .km-home-v2 .accuracy-value {
    font-size: clamp(3rem, 6.5vw, 4.9rem);
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 700;
    color: #95ffff;
  }
  .km-home-v2 .accuracy-caption {
    margin-top: 8px;
    font-size: 0.84rem;
    color: rgba(232, 240, 255, 0.78);
  }
  .km-home-v2 .ai-micro-meta {
    margin-top: 10px;
    font-size: 0.75rem;
    color: rgba(232, 240, 255, 0.56);
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }
  .km-home-v2 .ai-signal-strip {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
    padding: 6px 10px;
  }
  .km-home-v2 .ai-signal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7effff;
    box-shadow: 0 0 0 0 rgba(126, 255, 255, 0.5);
    animation: wcPulseDot 1.9s ease-in-out infinite;
  }
  .km-home-v2 .ai-signal-label {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(232, 240, 255, 0.74);
  }
  .km-home-v2 .ai-sparkline {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 12px;
  }
  .km-home-v2 .ai-sparkline span {
    width: 2px;
    border-radius: 999px;
    background: rgba(144, 255, 255, 0.92);
    animation: wcSpark 1.4s ease-in-out infinite;
  }
  .km-home-v2 .ai-sparkline span:nth-child(1) { height: 4px; animation-delay: 0ms; }
  .km-home-v2 .ai-sparkline span:nth-child(2) { height: 8px; animation-delay: 120ms; }
  .km-home-v2 .ai-sparkline span:nth-child(3) { height: 5px; animation-delay: 220ms; }
  .km-home-v2 .ai-sparkline span:nth-child(4) { height: 10px; animation-delay: 320ms; }
  .km-home-v2 .ai-sparkline span:nth-child(5) { height: 6px; animation-delay: 430ms; }
  .km-home-v2 .ai-sparkline span:nth-child(6) { height: 9px; animation-delay: 540ms; }
  .km-home-v2 .live-match-feed {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 18px;
  }
  .km-home-v2 .live-match-item {
    opacity: 0;
    transform: translateY(12px);
    transition: transform var(--wc-transition), opacity var(--wc-transition);
    padding: 14px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .km-home-v2 .live-match-item:last-child { border-bottom: none; }
  .km-home-v2 .live-match-item.is-live { opacity: 1; transform: translateY(0); }
  .km-home-v2 .live-match-name { font-size: 0.95rem; font-weight: 600; }
  .km-home-v2 .live-match-meta { font-size: 0.76rem; color: rgba(232, 240, 255, 0.56); margin-top: 3px; }
  .km-home-v2 .live-match-item span { color: #8fffff; font-weight: 700; font-size: 1.12rem; }

  .km-home-v2 .home-who .who-v2-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
  }
  .km-home-v2 .who-v2-card {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid rgba(24, 183, 184, 0.6);
    transition: border-left-width 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  }
  .km-home-v2 .who-v2-card:hover {
    border-left-width: 7px;
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-4px);
  }
  .km-home-v2 .who-v2-card img { width: 100%; height: 170px; object-fit: cover; display: block; }
  .km-home-v2 .who-v2-content { padding: 17px 17px 19px; }
  .km-home-v2 .who-v2-content h3 { font-size: 1.02rem; margin-bottom: 7px; }
  .km-home-v2 .who-v2-content p { font-size: 0.87rem; color: rgba(232, 240, 255, 0.72); margin: 0; }
  .km-home-v2 .who-v2-card.tone-1 { border-left-color: rgba(24, 183, 184, 0.9); }
  .km-home-v2 .who-v2-card.tone-2 { border-left-color: rgba(57, 227, 227, 0.8); }
  .km-home-v2 .who-v2-card.tone-3 { border-left-color: rgba(18, 170, 214, 0.85); }
  */

  .km-home-v2 .home-social-proof {
    position: relative;
    overflow: hidden;
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .km-home-v2 .home-roi-proof + .home-social-proof {
    padding-top: 28px;
    padding-bottom: 52px;
  }
  .km-home-v2 .social-proof-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
      radial-gradient(ellipse 50% 80% at 0% 30%, rgba(23, 166, 167, 0.12), transparent 55%),
      radial-gradient(ellipse 45% 70% at 100% 70%, rgba(25, 49, 90, 0.45), transparent 50%);
    opacity: 0.9;
  }
  .km-home-v2 .social-proof-inner {
    position: relative;
    z-index: 1;
  }
  .km-home-v2 .social-proof-head {
    max-width: 760px;
    margin-bottom: 8px;
  }
  .km-home-v2 .social-proof-head .section-kicker {
    display: block;
    margin-bottom: 0.35em;
  }
  .km-home-v2 .social-proof-head h2 {
    margin: 0 0 0.4em;
  }
  .km-home-v2 .social-proof-lead {
    margin: 12px 0 0;
    color: rgba(226, 238, 255, 0.82);
    line-height: 1.55;
    max-width: 680px;
  }
  .km-home-v2 .social-proof-logos-block {
    margin-top: 28px;
    margin-bottom: 8px;
    padding: 22px 20px 20px;
    border-radius: var(--radius-lg, 20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(7, 21, 47, 0.55) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  }
  .km-home-v2 .social-proof-logos-label {
    margin: 0 0 16px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: rgba(157, 255, 255, 0.88);
  }
  .km-home-v2 .km-trust-logos-carousel {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }
  .km-home-v2 .km-trust-logos-track {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(20px, 3.5vw, 36px);
    width: max-content;
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }
  .km-home-v2 .social-proof-logo-item {
    flex: 0 0 clamp(160px, 22vw, 220px);
    width: clamp(160px, 22vw, 220px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
  }
  .km-home-v2 .social-proof-logo-img {
    max-height: 44px;
    max-width: min(200px, 42vw);
    width: auto;
    height: auto;
    filter: grayscale(1) brightness(1.15);
    opacity: 0.78;
    transition: filter 0.35s ease, opacity 0.35s ease;
  }
  .km-home-v2 .social-proof-logos-block:hover .social-proof-logo-img {
    filter: grayscale(0.35) brightness(1.05);
    opacity: 0.95;
  }
  .km-home-v2 .kms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    margin: 40px 0;
  }
  .km-home-v2 .kms-card {
    background: #0d1e38;
    padding: 40px 36px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: relative;
    transition: background 0.25s ease;
  }
  .km-home-v2 .kms-card:hover {
    background: #0f2244;
  }
  .km-home-v2 .kms-card--accent {
    background: #0c2236;
    border-top: 2px solid var(--aw-teal, var(--teal));
  }
  .km-home-v2 .kms-card--accent:hover {
    background: #0e2840;
  }
  .km-home-v2 .kms-top {
    margin-bottom: 28px;
    min-height: 28px;
  }
  .km-home-v2 .kms-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 4px 12px;
    border-radius: 20px;
    max-width: 100%;
  }
  .km-home-v2 .kms-tag--accent {
    color: var(--aw-teal, var(--teal));
    border-color: rgba(45, 212, 191, 0.35);
    background: rgba(45, 212, 191, 0.06);
  }
  .km-home-v2 .kms-main {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .km-home-v2 .kms-figure {
    font-size: clamp(32px, 3.2vw, 48px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.025em;
  }
  .km-home-v2 .kms-card--accent .kms-figure {
    color: var(--aw-teal, var(--teal));
  }
  .km-home-v2 .kms-figure-sub {
    font-size: clamp(20px, 2.05vw, 32px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.08;
    margin-top: 6px;
    letter-spacing: -0.03em;
  }
  .km-home-v2 .kms-figure-sub--teal {
    color: var(--aw-teal, var(--teal));
    opacity: 0.85;
  }
  .km-home-v2 .kms-divider {
    width: 36px;
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
    margin: 28px 0 20px;
    border-radius: 2px;
  }
  .km-home-v2 .kms-divider--accent {
    background: var(--aw-teal, var(--teal));
    width: 52px;
    opacity: 0.7;
  }
  .km-home-v2 .kms-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    flex: 1;
  }
  .km-home-v2 .kms-desc--accent {
    color: rgba(255, 255, 255, 0.6);
  }
  @media (max-width: 900px) {
    .km-home-v2 .kms-grid {
      grid-template-columns: 1fr;
      background: transparent;
      gap: 12px;
    }
    .km-home-v2 .kms-card {
      border-radius: 16px;
    }
    .km-home-v2 .kms-card--accent {
      border-top-width: 2px;
    }
  }
  .km-home-v2 .km-trust-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
    padding: 0;
    list-style: none;
  }
  .km-home-v2 .km-trust-card {
    margin: 0;
    padding: 20px 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg, 20px);
    background: rgba(7, 21, 47, 0.72);
    box-sizing: border-box;
  }
  .km-home-v2 .km-trust-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-bottom: 12px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: var(--aw-teal, var(--teal));
  }
  .km-home-v2 .km-trust-card-title {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.95);
  }
  .km-home-v2 .km-trust-card-text {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.58);
  }

  .km-home-v2 .home-trust-strip {
    padding: 40px 0;
    background: linear-gradient(120deg, rgba(24, 183, 184, 0.16) 0%, rgba(24, 183, 184, 0.04) 45%, rgba(8, 20, 46, 0.34) 100%);
    border-top: 1px solid rgba(44, 226, 227, 0.22);
    border-bottom: 1px solid rgba(44, 226, 227, 0.12);
  }
  .km-home-v2 .home-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }
  .km-home-v2 .home-trust-item {
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 11px;
    padding: 13px 10px;
  }
  .km-home-v2 .home-trust-num {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 700;
    color: #89ffff;
    line-height: 1;
  }
  .km-home-v2 .home-trust-label {
    margin-top: 8px;
    font-size: 0.73rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(232, 240, 255, 0.68);
  }

  .km-home-v2 .home-cta {
    position: relative;
    padding: 0;
    overflow: visible;
    background: transparent;
  }
  .km-home-v2 .km-cta-final {
    background: #060d1f;
    padding: 100px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .km-home-v2 .km-cta-final::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .km-home-v2 .km-cta-final-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .km-home-v2 .km-cta-final-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--aw-teal, var(--teal));
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 28px;
  }
  .km-home-v2 .km-cta-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--aw-teal, var(--teal));
    animation: km-tl-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
  }
  .km-home-v2 .km-cta-final-title {
    font-size: clamp(28px, 3.8vw, 48px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
  }
  .km-home-v2 .km-cta-final-title span {
    color: var(--aw-teal, var(--teal));
  }
  .km-home-v2 .km-cta-final-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 0 auto 40px;
    max-width: 520px;
  }
  .km-home-v2 .km-cta-final-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }
  .km-home-v2 .km-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--aw-teal, var(--teal));
    color: #060d1f;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .km-home-v2 .km-cta-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }
  .km-home-v2 .km-cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    font-weight: 500;
    padding: 16px 36px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
  }
  .km-home-v2 .km-cta-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
  }
  @media (max-width: 600px) {
    .km-home-v2 .km-cta-final {
      padding: 72px 24px;
    }
  }
  .km-home-v2 .btn-pulse { animation: wcPulseBtn 2.4s ease-in-out infinite; }

  .km-home-v2 .conversion-rail {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .km-home-v2 .conversion-rail-btn {
    display: inline-flex;
    justify-content: center;
    min-width: 110px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(9, 27, 63, 0.75);
    color: #eaf8ff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translate3d(var(--mx, 0px), var(--my, 0px), 0);
    transition: transform 0.22s cubic-bezier(0.2, 0.65, 0.2, 1), border-color 0.2s ease, box-shadow 0.22s ease;
  }
  .km-home-v2 .conversion-rail-btn:hover {
    border-color: rgba(44, 226, 227, 0.5);
  }
  .km-home-v2 .conversion-rail-btn.is-magnetic {
    box-shadow: 0 16px 30px rgba(7, 18, 43, 0.35);
  }
  .km-home-v2 .conversion-rail-btn--primary {
    background: linear-gradient(135deg, #18b7b8 0%, #2ce2e3 100%);
    color: #032129;
    border-color: rgba(44, 226, 227, 0.9);
  }

  .km-home-v2 .mobile-conversion-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    padding: 8px;
    gap: 8px;
    background: rgba(7, 18, 43, 0.9);
    border-top: 1px solid rgba(44, 226, 227, 0.24);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .km-home-v2 .mobile-conversion-bar a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #eaf8ff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 11px 12px;
  }
  .km-home-v2 .mobile-conversion-bar a:first-child {
    background: linear-gradient(135deg, #18b7b8 0%, #2ce2e3 100%);
    color: #032129;
    border-color: rgba(44, 226, 227, 0.9);
  }
  .km-home-v2 .mobile-conversion-bar .mobile-action-link {
    transition: transform 0.14s ease, filter 0.14s ease, background-color 0.14s ease;
  }
  .km-home-v2 .mobile-conversion-bar .mobile-action-link:active {
    transform: scale(0.97);
    filter: brightness(1.06);
  }

  .km-home-v2 .fx-reveal {
    opacity: 0;
    transform: translateY(var(--wc-reveal-distance));
    transition: transform var(--wc-reveal-duration) cubic-bezier(0.2, 0.65, 0.2, 1), opacity var(--wc-reveal-duration) cubic-bezier(0.2, 0.65, 0.2, 1);
  }
  .km-home-v2 .fx-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .km-home-v2 .fx-reveal-delay-1 { transition-delay: 110ms; }
  .km-home-v2 .fx-reveal-delay-2 { transition-delay: 180ms; }

  @keyframes wcMesh {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(2vw, -1.4vw, 0) scale(1.08); }
  }
  @keyframes wcUnderline {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
  }
  @keyframes wcBlink {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(95, 255, 255, 0.62); }
    50% { opacity: 0.55; box-shadow: 0 0 0 8px rgba(95, 255, 255, 0); }
  }
  @keyframes wcBounce {
    0%, 100% { transform: translateY(0); opacity: 0.96; }
    50% { transform: translateY(8px); opacity: 0.55; }
  }
  @keyframes wcPulseBtn {
    0%, 100% { box-shadow: 0 12px 30px rgba(6, 27, 58, 0.3); }
    50% { box-shadow: 0 20px 40px rgba(6, 27, 58, 0.45); }
  }
  @keyframes wcPulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(126, 255, 255, 0.45); opacity: 1; }
    50% { box-shadow: 0 0 0 7px rgba(126, 255, 255, 0); opacity: 0.55; }
  }
  @keyframes wcSpark {
    0%, 100% { transform: scaleY(0.8); opacity: 0.68; }
    50% { transform: scaleY(1.28); opacity: 1; }
  }
  @keyframes wcAmbientDrift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(2vw, -1.6vw, 0) scale(1.1); }
  }

  .km-home-v2 .home-deal-room {
    padding: 58px 0 84px;
    background: radial-gradient(1000px 380px at 20% 0%, rgba(44, 226, 227, 0.12), transparent 60%),
      linear-gradient(180deg, rgba(5, 18, 42, 0.9) 0%, rgba(3, 12, 30, 0.96) 100%);
  }
  .km-home-v2 .deal-room-head { max-width: 760px; margin-bottom: 24px; }
  .km-home-v2 .deal-room-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
  }
  .km-home-v2 .deal-room-card {
    border: 1px solid rgba(108, 186, 206, 0.26);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(10, 30, 67, 0.85), rgba(7, 20, 45, 0.84));
    padding: 18px;
  }
  .km-home-v2 .deal-room-num { font-size: clamp(1.5rem, 3.6vw, 2rem); font-weight: 700; color: #9dfcff; }
  .km-home-v2 .deal-room-label { font-size: 0.9rem; font-weight: 600; margin-top: 6px; color: #d8f8ff; }
  .km-home-v2 .deal-room-card p { margin: 8px 0 0; font-size: 0.82rem; color: rgba(220, 242, 255, 0.76); }
  .km-home-v2 .deal-room-ticker {
    border-radius: 999px;
    border: 1px solid rgba(44, 226, 227, 0.28);
    background: rgba(8, 25, 56, 0.7);
    padding: 9px 14px;
    font-size: 0.86rem;
    color: #e6fbff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .km-home-v2 .deal-room-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #52f1f3;
    box-shadow: 0 0 0 0 rgba(82, 241, 243, 0.45);
    animation: wcPulseDot 1.8s ease-in-out infinite;
  }

  .km-home-v2 .home-roi-proof {
    position: relative;
    overflow: hidden;
    padding-top: 48px;
    padding-bottom: 16px;
  }
  .km-home-v2 .roi-proof-ambient {
    position: absolute;
    inset: -15% -12% auto;
    height: 75%;
    max-height: 520px;
    pointer-events: none;
    z-index: 0;
    background:
      radial-gradient(ellipse 55% 70% at 12% 28%, rgba(23, 166, 167, 0.14), transparent 58%),
      radial-gradient(ellipse 50% 65% at 88% 40%, rgba(29, 191, 191, 0.1), transparent 55%),
      radial-gradient(ellipse 40% 50% at 50% 85%, rgba(25, 49, 90, 0.35), transparent 60%);
    opacity: 0.95;
  }
  .km-home-v2 .roi-proof-container {
    position: relative;
    z-index: 1;
  }
  .km-home-v2 .roi-proof-head {
    max-width: 720px;
    margin-bottom: 8px;
  }
  .km-home-v2 .roi-proof-head .section-kicker,
  .km-home-v2 .roi-proof-head h2 {
    margin-bottom: 0.35em;
  }
  .km-home-v2 .roi-proof-lead {
    margin-top: 12px;
    margin-bottom: 10px;
    color: rgba(226, 243, 255, 0.88);
  }
  .km-home-v2 .roi-proof-method {
    margin: 0 0 8px;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(200, 220, 235, 0.55);
    max-width: 640px;
  }
  .km-home-v2 .roi-proof-method--source {
    margin-top: 4px;
    margin-bottom: 20px;
    padding: 12px 14px 12px 16px;
    max-width: 100%;
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(210, 228, 240, 0.78);
    border-left: 3px solid var(--teal);
    border-radius: 0 var(--radius) var(--radius) 0;
    background: rgba(23, 166, 167, 0.07);
  }
  .km-home-v2 .roi-proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(14px, 2vw, 22px);
    margin-top: 22px;
  }
  @media (min-width: 768px) and (max-width: 1023px) {
    .km-home-v2 .roi-proof-grid {
      grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    .km-home-v2 .roi-proof-card:nth-child(1),
    .km-home-v2 .roi-proof-card:nth-child(2),
    .km-home-v2 .roi-proof-card:nth-child(3) {
      grid-column: span 2;
    }
    .km-home-v2 .roi-proof-card:nth-child(4) {
      grid-column: 2 / span 2;
    }
    .km-home-v2 .roi-proof-card:nth-child(5) {
      grid-column: 4 / span 2;
    }
  }
  @media (min-width: 1024px) {
    .km-home-v2 .roi-proof-grid {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .km-home-v2 .roi-proof-card:nth-child(1),
    .km-home-v2 .roi-proof-card:nth-child(2),
    .km-home-v2 .roi-proof-card:nth-child(3),
    .km-home-v2 .roi-proof-card:nth-child(4),
    .km-home-v2 .roi-proof-card:nth-child(5) {
      grid-column: auto;
    }
  }
  .km-home-v2 .roi-proof-card {
    --roi-accent: var(--teal);
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg, 20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 21, 47, 0.82);
    padding: 0;
    overflow: hidden;
    transition:
      border-color 0.35s ease,
      box-shadow 0.35s ease,
      transform 0.35s ease;
  }
  .km-home-v2 .roi-proof-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    flex-shrink: 0;
    overflow: hidden;
    background: rgba(7, 19, 48, 0.9);
  }
  .km-home-v2 .roi-proof-card--featured .roi-proof-card-media {
    aspect-ratio: 5 / 3;
  }
  .km-home-v2 .roi-proof-card-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 2;
    background: linear-gradient(90deg, var(--roi-accent), rgba(23, 166, 167, 0.12));
  }
  .km-home-v2 .roi-proof-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 35%, rgba(7, 21, 47, 0.55) 100%);
  }
  .km-home-v2 .roi-proof-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.03);
    transition: transform 0.55s cubic-bezier(0.2, 0.65, 0.2, 1);
  }
  .km-home-v2 .roi-proof-card:hover .roi-proof-card-img {
    transform: scale(1.07);
  }
  .km-home-v2 .roi-proof-card-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
  }
  .km-home-v2 .roi-proof-card--hospital {
    --roi-accent: var(--teal);
  }
  .km-home-v2 .roi-proof-card--clinic {
    --roi-accent: var(--teal-light);
  }
  .km-home-v2 .roi-proof-card--physician {
    --roi-accent: #5ee0e2;
  }
  .km-home-v2 .roi-proof-card--featured {
    border-color: rgba(23, 166, 167, 0.42);
    background:
      linear-gradient(155deg, rgba(23, 166, 167, 0.12) 0%, rgba(7, 21, 47, 0.92) 42%),
      rgba(7, 21, 47, 0.78);
    box-shadow:
      0 0 0 1px rgba(23, 166, 167, 0.18),
      0 22px 48px rgba(0, 0, 0, 0.35);
  }
  .km-home-v2 .roi-proof-card:hover {
    border-color: rgba(23, 166, 167, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  }
  .km-home-v2 .roi-proof-card--featured:hover {
    box-shadow:
      0 0 0 1px rgba(29, 191, 191, 0.35),
      0 26px 56px rgba(0, 0, 0, 0.38);
  }
  .km-home-v2 .roi-proof-featured-tag {
    position: absolute;
    top: 12px;
    inset-inline-end: 12px;
    z-index: 3;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(7, 25, 48, 0.95);
    background: linear-gradient(120deg, var(--teal-light), #8af0f1);
    padding: 4px 9px;
    border-radius: 999px;
    line-height: 1.2;
  }
  .km-home-v2 .roi-proof-card-body h3 {
    margin: 0 0 10px;
    font-size: 1.06rem;
    line-height: 1.28;
    letter-spacing: -0.01em;
  }
  .km-home-v2 .roi-proof-grid .roi-proof-card-body h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: clamp(13px, 1.1vw, 16px);
  }
  .km-home-v2 .roi-proof-card-body p {
    margin: 0;
    color: rgba(226, 243, 255, 0.82);
    font-size: 0.88rem;
    line-height: 1.5;
  }
  .km-home-v2 .roi-proof-stat {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .km-home-v2 .roi-proof-value-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .km-home-v2 .roi-proof-value-line {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    direction: ltr;
    unicode-bidi: isolate;
    font-variant-numeric: tabular-nums;
  }
  .km-home-v2 .roi-proof-prefix {
    font-size: clamp(1.5rem, 3.5vw, 1.85rem);
    font-weight: 700;
    color: var(--teal-light);
    line-height: 1;
  }
  .km-home-v2 .roi-proof-num {
    font-size: clamp(1.5rem, 3.5vw, 1.85rem);
    font-weight: 700;
    color: #a5fcff;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .km-home-v2 .roi-proof-num [data-counter] {
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
  }
  .km-home-v2 .roi-proof-label {
    font-size: 0.82rem;
    line-height: 1.35;
    color: rgba(230, 245, 255, 0.78);
    max-width: 280px;
  }
  .km-home-v2 .roi-proof-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 28px;
    padding-top: 8px;
  }
  @media (hover: none) {
    .km-home-v2 .roi-proof-card:hover .roi-proof-card-img {
      transform: scale(1.03);
    }
  }

  .km-home-v2 .home-persona-switch {
    position: relative;
    overflow: hidden;
    padding-top: 48px;
    padding-bottom: 8px;
  }
  .km-home-v2 .persona-switch-ambient {
    position: absolute;
    inset: -20% -10% auto;
    height: 70%;
    pointer-events: none;
    z-index: 0;
    background:
      radial-gradient(ellipse 55% 80% at 18% 40%, rgba(23, 166, 167, 0.14), transparent 55%),
      radial-gradient(ellipse 50% 70% at 92% 55%, rgba(44, 226, 227, 0.08), transparent 50%);
    opacity: 0.95;
  }
  .km-home-v2 .home-persona-switch .container {
    position: relative;
    z-index: 1;
  }
  .km-home-v2 .persona-head {
    max-width: 720px;
  }
  .km-home-v2 .persona-head-lead {
    margin-top: 12px;
  }
  .km-home-v2 .persona-switch-body {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .km-home-v2 .persona-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 19, 48, 0.72);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(23, 166, 167, 0.35) transparent;
  }
  .km-home-v2 .persona-tabs::-webkit-scrollbar {
    height: 6px;
  }
  .km-home-v2 .persona-tabs::-webkit-scrollbar-thumb {
    background: rgba(23, 166, 167, 0.35);
    border-radius: 6px;
  }
  .km-home-v2 .persona-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    white-space: nowrap;
    gap: 0;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: rgba(255, 255, 255, 0.52);
    padding: 11px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.18s ease;
  }
  .km-home-v2 .persona-tab:hover:not(.is-active) {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
  }
  .km-home-v2 .persona-tab.is-active {
    border-color: var(--aw-teal, var(--teal));
    background: var(--aw-teal, var(--teal));
    color: #07132e;
    box-shadow: 0 6px 20px rgba(23, 166, 167, 0.25);
  }
  .km-home-v2 .persona-panels {
    position: relative;
    min-height: 320px;
  }
  .km-home-v2 .persona-panel {
    display: none;
    border-radius: 20px;
    border: 1px solid rgba(23, 166, 167, 0.22);
    background: linear-gradient(155deg, rgba(12, 32, 72, 0.92) 0%, rgba(6, 16, 38, 0.96) 48%, rgba(7, 22, 52, 0.94) 100%);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    padding: 0;
    overflow: hidden;
  }
  .km-home-v2 .persona-panel.is-active {
    display: block;
    animation: km-persona-panel-in 0.45s cubic-bezier(0.2, 0.65, 0.2, 1) both;
  }
  @keyframes km-persona-panel-in {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .km-home-v2 .persona-panel-inner {
    display: grid;
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
    gap: clamp(20px, 3.5vw, 36px);
    align-items: start;
    padding: clamp(22px, 3vw, 32px);
    position: relative;
  }
  .km-home-v2 .persona-panel-inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, #17a6a7, rgba(23, 166, 167, 0.25));
    opacity: 0.85;
  }
  .km-home-v2 .persona-panel-visual {
    position: relative;
    width: 100%;
    max-width: 200px;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(23, 166, 167, 0.35);
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.35),
      0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    background: rgba(7, 19, 48, 0.6);
  }
  .km-home-v2 .persona-panel-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(165deg, transparent 45%, rgba(7, 19, 48, 0.55) 100%);
    box-shadow: inset 0 0 0 1px rgba(23, 166, 167, 0.12);
  }
  .km-home-v2 .persona-panel-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform 0.5s cubic-bezier(0.2, 0.65, 0.2, 1);
  }
  .km-home-v2 .persona-panel.is-active .persona-panel-visual:hover .persona-panel-img {
    transform: scale(1.06);
  }
  .km-home-v2 .persona-panel-copy {
    min-width: 0;
    padding-left: 8px;
  }
  .km-home-v2 .persona-panel h3 {
    margin: 0 0 16px;
    font-size: clamp(1.2rem, 2.1vw, 1.45rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: rgba(248, 252, 255, 0.98);
    line-height: 1.2;
  }
  .km-home-v2 .persona-panel-points {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .km-home-v2 .persona-panel-points li {
    position: relative;
    padding-left: 1.35rem;
    font-size: 0.93rem;
    font-weight: 500;
    line-height: 1.45;
    color: rgba(232, 244, 255, 0.92);
  }
  .km-home-v2 .persona-panel-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #17a6a7;
    box-shadow: 0 0 0 2px rgba(23, 166, 167, 0.25);
  }
  .km-home-v2 .persona-panel-text {
    margin: 0 0 20px;
    font-size: 0.88rem;
    line-height: 1.62;
    color: rgba(200, 220, 240, 0.78);
    max-width: 62ch;
  }
  .km-home-v2 .persona-panel-summary {
    margin: 0 0 20px;
    font-size: 0.88rem;
    line-height: 1.62;
    font-style: italic;
    color: rgba(200, 220, 240, 0.52);
    max-width: 62ch;
  }
  .km-home-v2 .persona-panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    color: #07132e;
    background: linear-gradient(135deg, #17a6a7, #1dc4c5);
    box-shadow: 0 8px 24px rgba(23, 166, 167, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  }
  .km-home-v2 .persona-panel-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(23, 166, 167, 0.38);
    filter: brightness(1.05);
  }

  @media (max-width: 1280px) {
    .km-home-v2 .conversion-rail { display: none; }
  }
  @media (max-width: 1120px) {
    .km-home-v2 {
      --wc-reveal-distance: 28px;
      --wc-reveal-duration: 0.56s;
    }
    .km-home-v2 .hero-cinematic-grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .km-home-v2 .hero-cinematic-copy h1 { max-width: 100%; }
    .km-home-v2 .hero-route-grid { grid-template-columns: 1fr; }
    .km-home-v2 .hero-photo-cinematic {
      width: min(620px, 100%);
      aspect-ratio: 16 / 10;
    }
    .km-home-v2 .hero-floating-card {
      right: 10px;
      bottom: 10px;
      width: min(320px, 68%);
    }
    .km-home-v2 .authority-grid,
    .km-home-v2 .home-trust-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .km-home-v2 .cinematic-ex-grid,
    .km-home-v2 .home-outcomes .outcomes-grid,
    .km-home-v2 .deal-room-grid {
      grid-template-columns: 1fr;
    }
    .km-home-v2 .km-trust-cards {
      grid-template-columns: 1fr;
    }
    /* REMOVED: .home-who .who-v2-grid
    .km-home-v2 .home-who .who-v2-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    */
  }
  @media (max-width: 720px) {
    .km-home-v2 {
      --wc-reveal-distance: 16px;
      --wc-reveal-duration: 0.44s;
    }
    .km-home-v2 .hero-cinematic {
      min-height: auto;
      padding: 96px 0 58px;
    }
    .km-home-v2 .hero-cinematic-copy > p { font-size: 0.96rem; }
    .km-home-v2 .authority-strip-head {
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 10px;
    }
    .km-home-v2 .hero-cinematic-stats,
    .km-home-v2 .authority-grid,
    .km-home-v2 .home-trust-grid {
      grid-template-columns: 1fr;
    }
    /* REMOVED: .home-who .who-v2-grid was in group above */
    .km-home-v2 .hero-photo-cinematic {
      aspect-ratio: 4 / 3;
      transform: rotate(-1deg);
    }
    .km-home-v2 .hero-floating-card {
      position: static;
      width: 100%;
      margin-top: 12px;
    }
    .km-home-v2 .section-diagonal { height: 40px; }
    .km-home-v2 .home-section { padding: 72px 0; }
    .km-home-v2 .mobile-conversion-bar { display: flex; }
    .km-home-v2 .hero-scroll-indicator { bottom: 12px; }
    .km-home-v2 .ex-spotlight {
      display: none;
    }
    /* REMOVED: .km-home-v2 .ai-sparkline { display: none; } */
    .km-home-v2 .social-proof-logos-block {
      padding: 18px 16px 16px;
    }
    .km-home-v2 .persona-tabs {
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
    }
    .km-home-v2 .persona-tab {
      justify-content: center;
    }
    .km-home-v2 .persona-panel-inner {
      grid-template-columns: 1fr;
      padding: 22px 20px;
    }
    .km-home-v2 .persona-panel-inner::before {
      display: none;
    }
    .km-home-v2 .persona-panel-visual {
      max-width: min(280px, 100%);
      margin: 0 auto 8px;
      aspect-ratio: 16 / 10;
    }
    .km-home-v2 .persona-panel-copy {
      padding-left: 0;
    }
    .km-home-v2 .persona-panel-cta {
      width: 100%;
      justify-content: center;
    }
  }
  @media (max-width: 640px) {
    .km-home-v2 .ex-countdown-bar {
      flex-wrap: wrap;
      font-size: 0.8rem;
      padding: 8px 14px;
      gap: 6px;
    }
    .km-home-v2 .cinematic-avail-widget {
      padding: 8px 12px;
    }
    .km-home-v2 .cinematic-ex-actions {
      flex-direction: column;
      align-items: stretch;
    }
    .km-home-v2 .cinematic-ex-cta--primary,
    .km-home-v2 .cinematic-ex-cta--waitlist,
    .km-home-v2 .cinematic-ex-cta--secondary {
      text-align: center;
      width: 100%;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .km-home-v2 .mesh-orb,
    .km-home-v2 .hero-accent::after,
    .km-home-v2 .live-dot,
    .km-home-v2 .hero-scroll-indicator span,
    .km-home-v2 .btn-pulse,
    /* REMOVED: .ai-signal-dot, .ai-sparkline span */
    .km-home-v2 .km-cta-dot {
      animation: none !important;
    }
    .km-home-v2 .hero-photo-cinematic,
    .km-home-v2 .hero-floating-card,
    .km-home-v2 .cinematic-ex-card,
    /* REMOVED: .who-v2-card, .live-match-item */
    .km-home-v2 .outcome-card,
    .km-home-v2 .fx-reveal,
    .km-home-v2 .conversion-rail-btn,
    .km-home-v2 [data-parallax] {
      transition: none !important;
      transform: none !important;
      opacity: 1 !important;
    }
    .km-home-v2 .cinematic-ex-card-featured:hover .cinematic-avail-glow {
      animation: none !important;
    }
    .km-home-v2 .persona-panel.is-active {
      animation: none !important;
    }
    .km-home-v2 .persona-panel-img {
      transform: none !important;
      transition: none !important;
    }
    .km-home-v2 .roi-proof-card:hover {
      transform: none !important;
    }
    .km-home-v2 .roi-proof-card:hover .roi-proof-card-img {
      transform: scale(1.03) !important;
    }
    .km-home-v2 .hero-intro {
      opacity: 1 !important;
      transform: none !important;
    }
  }

  /* ── GSAP Premium Motion Layer ── */
  .cinematic-ex-card, .ex-card, .who-card {
    transform-style: preserve-3d;
    will-change: transform;
  }
  /* REMOVED: .who-v2-card from preserve-3d batch (home-who section removed) */

  @media (max-width: 768px), (hover: none) {
    .cinematic-ex-card,
    .ex-card,
    .who-card {
      transform-style: flat;
      will-change: auto;
    }
  }

  /* ── C2B Section ── */
  .km-home-v2 .home-c2b {
    background: linear-gradient(
      180deg,
      rgba(23, 166, 167, 0.04) 0%,
      rgba(25, 49, 90, 0) 100%
    );
    border-top: 1px solid rgba(23, 166, 167, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .km-home-v2 .home-c2b h2 {
    line-height: 1.2;
  }
  .km-home-v2 .c2b-title-accent {
    color: var(--teal);
    display: block;
  }
  .km-home-v2 .c2b-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  @media (max-width: 900px) {
    .km-home-v2 .c2b-split {
      grid-template-columns: 1fr;
      gap: 48px;
    }
  }
  .km-home-v2 .c2b-expo-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    align-items: center;
  }
  .km-home-v2 .c2b-expo-cta__btn {
    padding: 12px 22px;
    font-size: 0.9rem;
    border-radius: 10px;
  }
  .km-home-v2 .c2b-expo-cta__btn--ig {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(
      135deg,
      rgba(225, 48, 108, 0.12) 0%,
      rgba(253, 29, 29, 0.1) 35%,
      rgba(245, 133, 41, 0.1) 70%,
      rgba(131, 58, 180, 0.12) 100%
    );
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.22);
  }
  .km-home-v2 .c2b-expo-cta__ig-icon {
    flex-shrink: 0;
    opacity: 0.95;
  }
  .km-home-v2 .c2b-expo-cta__ig-label {
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
  }
  .km-home-v2 .c2b-expo-cta__btn--ig:hover {
    border-color: rgba(225, 48, 108, 0.45);
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
      0 8px 28px rgba(0, 0, 0, 0.28),
      0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  }
  .km-home-v2 .c2b-expo-cta__btn--ig:hover .c2b-expo-cta__ig-icon {
    opacity: 1;
  }
  .km-home-v2 .c2b-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .km-home-v2 .c2b-stat strong {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--teal);
    display: block;
    line-height: 1.1;
  }
  .km-home-v2 .c2b-stat-caption {
    font-size: 0.82rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-top: 6px;
    max-width: 11rem;
  }
  .km-home-v2 .c2b-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .km-home-v2 .c2b-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
  }
  .km-home-v2 .c2b-flow-node {
    width: 100%;
    max-width: 380px;
    padding: 22px 28px;
    border-radius: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 16px;
    box-sizing: border-box;
  }
  .km-home-v2 .c2b-flow-node--festival {
    border-color: rgba(23, 166, 167, 0.3);
    min-height: 108px;
    align-items: stretch;
  }
  .km-home-v2 .c2b-flow-node--festival .c2b-flow-body {
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .km-home-v2 .c2b-flow-node--festival .c2b-flow-sub {
    margin-top: 0;
    text-align: center;
  }
  .km-home-v2 .c2b-flow-node--patient {
    border-color: rgba(23, 166, 167, 0.6);
    background: rgba(23, 166, 167, 0.08);
    box-shadow: 0 0 32px rgba(23, 166, 167, 0.15);
  }
  .km-home-v2 .c2b-flow-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
  }
  .km-home-v2 .c2b-flow-icon {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
  }
  .km-home-v2 .c2b-flow-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
  }
  .km-home-v2 .c2b-flow-label--logo {
    line-height: 0;
    margin-bottom: 2px;
  }
  .km-home-v2 .c2b-flow-logo-img {
    display: block;
    height: auto;
    width: min(100%, 168px);
    max-height: 38px;
    object-fit: contain;
    object-position: center center;
    margin-inline: auto;
  }
  .km-home-v2 .c2b-flow-sub {
    font-size: 0.78rem;
    opacity: 0.6;
    margin-top: 2px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.85);
  }
  .km-home-v2 .c2b-flow-arrow {
    height: auto;
    min-height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 0;
  }
  .km-home-v2 .c2b-flow-arrow-svg {
    width: 24px;
    height: 40px;
    color: var(--teal);
    flex-shrink: 0;
  }
  .km-home-v2 .c2b-flow-arrow-label {
    font-size: 0.68rem;
    color: var(--teal);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    max-width: 160px;
    line-height: 1.3;
    white-space: normal;
    word-break: keep-all;
  }
  .km-home-v2 .c2b-vs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
    width: 100%;
    max-width: 380px;
    box-sizing: border-box;
  }
  @media (max-width: 400px) {
    .km-home-v2 .c2b-vs {
      grid-template-columns: 1fr;
    }
  }
  .km-home-v2 .c2b-vs-item {
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 0.8rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.88);
  }
  .km-home-v2 .c2b-vs-them {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .km-home-v2 .c2b-vs-us {
    background: rgba(23, 166, 167, 0.1);
    border: 1px solid rgba(23, 166, 167, 0.25);
  }
  .km-home-v2 .c2b-vs-label {
    display: block;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
  }
  .km-home-v2 .c2b-vs-them .c2b-vs-label {
    opacity: 0.5;
    color: rgba(255, 255, 255, 0.85);
  }
  .km-home-v2 .c2b-vs-us .c2b-vs-label {
    color: var(--teal);
  }

  /* ── Kazel Expo full-bleed video (under C2B split, above city marquee) ── */
  .km-home-v2 .home-kazel-expo {
    --aw-navy: var(--navy);
    --aw-teal: var(--teal);
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 48px;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .km-home-v2 .kex-video-full {
    position: relative;
    width: 100%;
  }
  .km-home-v2 .kex-video-frame {
    position: relative;
    width: 100%;
    height: clamp(240px, 56.25vw, 88vh);
    overflow: hidden;
    background: var(--aw-navy, var(--navy));
  }
  .km-home-v2 .kex-video-el {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  @media (max-width: 720px) {
    .km-home-v2 .home-kazel-expo {
      margin-top: 40px;
    }
    .km-home-v2 .kex-video-frame {
      height: clamp(200px, 58vw, 72vh);
    }
  }

  .km-home-v2 .c2b-cities {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .km-home-v2 .c2b-cities--overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    margin-top: 0;
    padding: 24px clamp(16px, 4vw, 48px) 28px;
    border-top: none;
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(7, 19, 48, 0.5) 32%,
      rgba(7, 19, 48, 0.92) 100%
    );
    pointer-events: none;
  }
  .km-home-v2 .c2b-cities--overlay .c2b-marquee-wrap {
    pointer-events: auto;
  }
  .km-home-v2 .c2b-cities-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.45;
    margin-bottom: 16px;
    max-width: none;
    color: rgba(255, 255, 255, 0.8);
  }
  .km-home-v2 .c2b-marquee-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .km-home-v2 .c2b-marquee-track {
    display: flex;
    gap: 12px;
    width: max-content;
  }
  .km-home-v2 .c2b-marquee-track--fwd {
    animation: c2b-scroll-fwd 28s linear infinite;
  }
  .km-home-v2 .c2b-marquee-track--rev {
    animation: c2b-scroll-rev 22s linear infinite;
  }
  @keyframes c2b-scroll-fwd {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @keyframes c2b-scroll-rev {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .km-home-v2 .c2b-marquee-track {
      animation: none;
    }
  }
  .km-home-v2 .c2b-city-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    transition: border-color 0.2s, color 0.2s;
  }
  .km-home-v2 .c2b-city-chip:hover {
    border-color: rgba(23, 166, 167, 0.5);
    color: rgba(255, 255, 255, 0.95);
  }

  /* ── Portal Dashboard Onboarding ── */
  .pd-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
  }
  .pd-welcome-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .pd-welcome-name {
    font-size: 1.25rem;
    font-weight: 600;
  }
  .pd-welcome-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 100px;
  }
  .pd-welcome-tag--pending {
    background: rgba(234, 179, 8, 0.12);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.25);
  }
  .pd-welcome-tag--approved {
    background: rgba(23, 166, 167, 0.12);
    color: #17a6a7;
    border: 1px solid rgba(23, 166, 167, 0.25);
  }
  .pd-welcome-tag--rejected {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
  }
  .pd-welcome-meta {
    font-size: 0.83rem;
    opacity: 0.5;
  }
  .pd-welcome-apply-link {
    color: var(--teal);
    margin-inline-start: 8px;
    text-decoration: underline;
    text-underline-offset: 2px;
    opacity: 1;
  }
  .pd-welcome-apply-link:hover {
    opacity: 0.85;
  }

  .pd-onboard {
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 28px;
  }
  .pd-onboard--pending {
    background: rgba(234, 179, 8, 0.05);
    border: 1px solid rgba(234, 179, 8, 0.15);
  }
  .pd-onboard--approved {
    background: rgba(23, 166, 167, 0.05);
    border: 1px solid rgba(23, 166, 167, 0.2);
  }
  .pd-onboard--rejected {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.18);
  }
  .pd-onboard-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .pd-onboard-icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .pd-onboard-header h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .pd-onboard-header p {
    font-size: 0.83rem;
    opacity: 0.6;
  }
  .pd-onboard-progress {
    margin-left: auto;
    text-align: right;
    flex-shrink: 0;
  }
  @media (max-width: 640px) {
    .pd-onboard-progress {
      margin-left: 0;
      width: 100%;
      text-align: left;
    }
  }
  .pd-onboard-pct {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--teal);
    display: block;
  }
  .pd-onboard-ready-label {
    font-size: 0.75rem;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .pd-onboard-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .pd-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s, border-color 0.2s;
  }
  a.pd-step:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(23, 166, 167, 0.3);
  }
  .pd-step--done {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
    opacity: 0.7;
  }
  .pd-step--active {
    background: rgba(23, 166, 167, 0.06);
    border-color: rgba(23, 166, 167, 0.2);
  }
  .pd-step--locked {
    opacity: 0.35;
    cursor: default;
  }
  .pd-step-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
  }
  .pd-step--done .pd-step-icon {
    background: rgba(23, 166, 167, 0.2);
    color: #17a6a7;
  }
  .pd-step--active .pd-step-icon {
    background: rgba(23, 166, 167, 0.15);
    color: #17a6a7;
  }

  .pd-step-icon--pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #eab308;
    box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.4);
    animation: pd-pulse 1.8s ease-in-out infinite;
  }
  @keyframes pd-pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.4);
    }
    70% {
      box-shadow: 0 0 0 8px rgba(234, 179, 8, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(234, 179, 8, 0);
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .pd-step-icon--pulse {
      animation: none;
    }
  }

  .pd-step-body {
    flex: 1;
    min-width: 0;
  }
  .pd-step-body strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
  }
  .pd-step-body span {
    display: block;
    font-size: 0.78rem;
    opacity: 0.55;
    margin-top: 2px;
  }
  .pd-step-arrow {
    color: var(--teal);
    opacity: 0.6;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .pd-onboard-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
  }
  .pd-onboard-link:hover {
    color: var(--teal);
  }

  .portal-progress-circle-svg {
    transform: rotate(-90deg);
  }
  .portal-kpi-num--expo {
    font-size: 1.25rem;
  }
  .portal-btn-match-empty {
    margin-top: 16px;
    border-radius: 8px;
  }
  .portal-timeline-lead {
    margin-bottom: 16px;
  }

  /* ── Exhibitor Tags ── */
  .exhibitor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
  }
  .exhibitor-tag {
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid rgba(23, 166, 167, 0.25);
    color: rgba(255, 255, 255, 0.6);
    background: rgba(23, 166, 167, 0.06);
  }
  .exhibitor-empty {
    text-align: center;
    padding: 60px 20px;
    opacity: 0.5;
    grid-column: 1 / -1;
  }

  /* ── Waitlist Section ── */
  .xd-waitlist-section {
    padding: var(--section-py) 0;
  }
  .xd-waitlist-section .section-kicker {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
  }
  .xd-waitlist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  @media (max-width: 900px) {
    .xd-waitlist-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }
  .xd-waitlist-info h2 {
    margin-bottom: 16px;
  }
  .xd-waitlist-info p {
    opacity: 0.7;
    margin-bottom: 32px;
  }
  .xd-waitlist-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .xd-waitlist-perks li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .xd-waitlist-perk-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .xd-waitlist-perks strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 3px;
  }
  .xd-waitlist-perks span {
    font-size: 0.8rem;
    opacity: 0.55;
  }

  .xd-waitlist-form-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px;
  }
  .xd-waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .xd-wl-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .xd-wl-field label {
    font-size: 0.82rem;
    font-weight: 500;
    opacity: 0.8;
  }
  .xd-wl-field input,
  .xd-wl-field select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: border-color 0.2s;
  }
  .xd-wl-field input:focus,
  .xd-wl-field select:focus {
    border-color: var(--teal);
    outline: none;
  }
  .xd-wl-field select option {
    background: var(--navy);
  }
  .xd-wl-btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }

  .xd-waitlist-success {
    text-align: center;
    padding: 48px 24px;
  }
  .xd-waitlist-success span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
    color: var(--teal);
  }
  .xd-waitlist-success h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .xd-waitlist-success p {
    opacity: 0.6;
    font-size: 0.9rem;
  }
  .xd-waitlist-error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: #fca5a5;
    margin-bottom: 16px;
  }

/* Home — world map section (Leaflet + section chrome; legacy SVG rules kept for reference) */
.km-worldmap-section {
  background: #060d1f;
  border-radius: 16px;
  padding: 40px 32px 32px;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.km-worldmap-header {
  text-align: center;
  margin-bottom: 24px;
}

.km-worldmap-kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--aw-teal, var(--teal));
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  border: 1px solid rgba(45, 212, 191, 0.28);
  padding: 4px 14px;
  border-radius: 20px;
}

.km-worldmap-title {
  font-size: clamp(1.25rem, 3.5vw, 1.65rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.km-worldmap-title span {
  color: var(--aw-teal, var(--teal));
}

.km-worldmap-stage {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #060d1f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.km-worldmap-svg {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.km-worldmap-coastline {
  fill: none;
  stroke: #ffffff;
  stroke-opacity: 0.1;
  stroke-width: 0.45;
  vector-effect: non-scaling-stroke;
}

.km-map-pin {
  pointer-events: all;
  cursor: pointer;
}

.km-map-pin:focus {
  outline: none;
}

.km-map-pin:focus-visible .km-map-pin-core {
  stroke: #ffffff;
  stroke-width: 1.75;
}

.km-map-pulse-ring {
  fill: none;
  stroke: var(--aw-teal, var(--teal));
  stroke-width: 1.25;
  transform-box: fill-box;
  transform-origin: center;
}

.km-map-pin--confirmed .km-map-pulse-ring--a {
  animation: km-map-pulse-ring 2.2s ease-out infinite;
}

.km-map-pin--confirmed .km-map-pulse-ring--b {
  animation: km-map-pulse-ring 2.2s ease-out infinite;
  animation-delay: 0.85s;
}

.km-map-pin--planned {
  opacity: 0.4;
}

.km-map-pin--planned .km-map-pulse-ring {
  stroke-opacity: 0.75;
}

.km-map-pin--planned .km-map-pulse-ring--a {
  animation: km-map-pulse-ring 3.8s ease-out infinite;
}

.km-map-pin--planned .km-map-pulse-ring--b {
  animation: km-map-pulse-ring 3.8s ease-out infinite;
  animation-delay: 1.35s;
}

@keyframes km-map-pulse-ring {
  0% {
    transform: scale(0.32);
    opacity: 0.55;
  }
  100% {
    transform: scale(2.65);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .km-map-pulse-ring--a,
  .km-map-pulse-ring--b {
    animation: none !important;
    opacity: 0 !important;
  }
}

.km-map-pin-core {
  fill: var(--aw-teal, var(--teal));
  stroke: #060d1f;
  stroke-width: 1.25;
}


.km-worldmap-tooltip {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  min-width: 140px;
  max-width: 220px;
  padding: 10px 14px;
  background: #0a1224;
  border: 1px solid rgba(45, 212, 191, 0.45);
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.16s ease;
  transform: translate(-50%, calc(-100% - 12px));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.km-worldmap-tooltip--visible {
  opacity: 1;
}

.km-worldmap-tooltip-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.km-worldmap-tooltip-phase {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--aw-teal, var(--teal));
}

.km-worldmap-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}

.km-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.km-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.km-legend-confirmed {
  background: var(--aw-teal, var(--teal));
  box-shadow: 0 0 0 1px rgba(6, 13, 31, 0.6);
}

.km-legend-planned {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 0 0 1px rgba(45, 212, 191, 0.2);
}

.km-worldmap-phases {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.km-phase-pill {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.02);
}

.km-phase-pill--active {
  border-color: rgba(45, 212, 191, 0.55);
  color: var(--aw-teal, var(--teal));
  background: rgba(45, 212, 191, 0.1);
  box-shadow: 0 0 24px rgba(45, 212, 191, 0.12);
}

@media (max-width: 520px) {
  .km-worldmap-section {
    padding: 28px 18px 24px;
  }

  .km-worldmap-phases {
    gap: 6px;
  }

  .km-phase-pill {
    font-size: 9px;
    padding: 7px 10px;
    letter-spacing: 0.07em;
  }
}

/* Leaflet map (km-worldmap-section) */
#km-leaflet-map {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  margin: 24px 0;
  z-index: 1;
  font-family: var(--font, 'Geist', sans-serif);
}

.km-worldmap-section .leaflet-container {
  background: #060d1f;
  font-family: inherit;
}

.km-leaflet-div-icon {
  background: transparent !important;
  border: none !important;
}

.km-leaflet-confirmed {
  width: 18px !important;
  height: 18px !important;
  border-radius: 50%;
  background: #2dd4bf;
  border: 2.5px solid #0a1628;
  box-shadow:
    0 0 0 5px rgba(45, 212, 191, 0.2),
    0 0 12px rgba(45, 212, 191, 0.4);
  animation: km-pulse-leaf 2s ease-in-out infinite;
}

.km-leaflet-planned {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

@keyframes km-pulse-leaf {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.2);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(45, 212, 191, 0.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .km-leaflet-confirmed {
    animation: none;
  }
}

.km-leaflet-popup .leaflet-popup-content-wrapper {
  background: #0f2044;
  border: 1px solid rgba(45, 212, 191, 0.4);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  box-shadow: none;
  padding: 0;
}

.km-leaflet-popup .leaflet-popup-content {
  margin: 12px 16px;
  min-width: 150px;
}

.km-leaflet-popup .leaflet-popup-tip {
  background: #0f2044;
}

.km-leaflet-popup .leaflet-popup-close-button {
  color: rgba(255, 255, 255, 0.4) !important;
}

.km-leaflet-popup .km-popup-flag {
  font-size: 18px;
  margin-bottom: 4px;
}

.km-leaflet-popup .km-popup-city {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.km-leaflet-popup .km-popup-venue {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.km-leaflet-popup .km-popup-date {
  font-size: 12px;
  color: #2dd4bf;
  margin-top: 6px;
  font-weight: 600;
}

.km-leaflet-popup .km-popup-badge {
  display: inline-block;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 6px;
  font-weight: 600;
}

.km-leaflet-popup .km-popup-confirmed {
  background: rgba(45, 212, 191, 0.15);
  color: #2dd4bf;
  border: 1px solid rgba(45, 212, 191, 0.4);
}

.km-leaflet-popup .km-popup-planned {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.km-timeline-section {
  padding: 64px 0 48px;
}

.km-timeline-header {
  text-align: center;
  margin-bottom: 48px;
}

.km-timeline-kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--aw-teal, var(--teal));
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
  border: 1px solid rgba(45, 212, 191, 0.3);
  padding: 4px 14px;
  border-radius: 20px;
}

.km-timeline-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.km-timeline-title span {
  color: var(--aw-teal, var(--teal));
}

.km-timeline-track-wrap {
  position: relative;
  overflow: hidden;
}

.km-timeline-line {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--aw-teal, var(--teal)) 0%,
    var(--aw-teal, var(--teal)) 20%,
    rgba(255, 255, 255, 0.15) 40%,
    rgba(255, 255, 255, 0.05) 100%
  );
  z-index: 0;
}

.km-timeline-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 0 32px 32px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}

.km-timeline-track::-webkit-scrollbar {
  display: none;
}

.km-timeline-track:active {
  cursor: grabbing;
}

.km-city-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: 8px;
  position: relative;
  z-index: 1;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.km-city-active {
  width: 200px;
  opacity: 1;
  transform: scale(1);
}

.km-city-soon {
  width: 180px;
  opacity: 0.85;
  transform: scale(0.95);
}

.km-city-planned {
  width: 150px;
  opacity: 0.45;
  transform: scale(0.88);
}

.km-city-card:hover {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.km-city-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.km-dot-active {
  background: var(--aw-teal, var(--teal));
  box-shadow:
    0 0 0 4px rgba(45, 212, 191, 0.2),
    0 0 12px rgba(45, 212, 191, 0.5);
  animation: km-tl-pulse 2s ease-in-out infinite;
}

.km-dot-soon {
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.km-dot-planned {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

@keyframes km-tl-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(45, 212, 191, 0.05);
  }
}

.km-city-flag {
  font-size: 28px;
  margin-bottom: 10px;
}

.km-city-active .km-city-flag {
  font-size: 36px;
}

.km-city-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  text-align: center;
}

.km-city-active .km-city-name {
  font-size: 20px;
  color: #fff;
}

.km-city-venue {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
  text-align: center;
}

.km-city-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  text-align: center;
}

.km-city-active .km-city-date {
  color: var(--aw-teal, var(--teal));
  font-weight: 600;
  font-size: 13px;
}

.km-city-badge {
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.km-badge-active {
  background: rgba(45, 212, 191, 0.15);
  color: var(--aw-teal, var(--teal));
  border: 1px solid rgba(45, 212, 191, 0.4);
}

.km-badge-soon {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.km-badge-planned {
  background: transparent;
  color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Exhibition detail — sticky countdown + quick apply */
/* Sticky band on exhibition detail: avoid body overflow-x breaking position:sticky */
body:has(#exd-sticky-band) {
  overflow-x: visible;
}

.exd-sticky-band {
  position: sticky;
  top: 60px;
  z-index: 900;
  background: #0d1f3c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.exd-sticky-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.exd-countdown-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.exd-countdown-digits {
  display: flex;
  align-items: center;
  gap: 8px;
}

.exd-cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 48px;
}

.exd-cd-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--aw-teal, var(--teal));
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.exd-cd-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

.exd-cd-sep {
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  margin-bottom: 14px;
}

.exd-countdown-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.exd-cd-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aw-teal, var(--teal));
  flex-shrink: 0;
  animation: km-tl-pulse 2s ease-in-out infinite;
}

.exd-cd-event {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.exd-sticky-divider {
  width: 1px;
  height: 64px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.exd-quick-form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.exd-quick-fields {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.exd-quick-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.exd-quick-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.exd-quick-input:focus {
  border-color: rgba(45, 212, 191, 0.4);
}

.exd-quick-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

.exd-quick-select option {
  background: #0d1f3c;
  color: #fff;
}

.exd-quick-submit {
  background: var(--aw-teal, var(--teal));
  color: #0a1628;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
  font-family: inherit;
  flex-shrink: 0;
}

.exd-quick-submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .exd-quick-fields {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .exd-sticky-inner {
    flex-direction: column;
    gap: 16px;
    padding: 16px 20px;
  }
  .exd-sticky-divider {
    display: none;
  }
  .exd-quick-fields {
    grid-template-columns: 1fr 1fr;
  }
  .exd-cd-num {
    font-size: 24px;
  }
}

/* Exhibition detail hero (also defined inline on page; kept here for shared rules) */
.exd-hero,
.xd-hero {
  min-height: 70vh;
  max-height: 85vh;
}

.exd-hero img,
.xd-hero img,
.exd-hero .hero-bg,
.xd-hero .hero-bg,
.xd-hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

