@charset "UTF-8";

/*
Theme Name: Union ntwrk
Theme URI:  
Author: The UEG team
Author URI: 
Description: 
Requires at least: 5.3
Tested up to: 5.7
Requires PHP: 5.6
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ntwrk
Tags: 
 
*/


/* -- RESET & BASE ------------------------------------------------------- */
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --black: #080808;
    --deep: #0E0E0E;
    --surface: #141414;
    --surface2: #1C1C1C;
    --border: rgba(255,255,255,0.07);
    --gold: #C9A84C;
    --gold-light: #E2C47A;
    --gold-dim: rgba(201,168,76,0.15);
    --red: #C0392B;
    --white: #F5F5F0;
    --grey: #6B7280;
    --grey-light: #9CA3AF;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Syne', sans-serif;
    --font-text: 'DM Sans', sans-serif;
    --font-mono: 'DM Mono', monospace;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* -- NAV ---------------------------------------------------------------- */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    background: rgba(8,8,8,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-body); font-weight: 800; font-size: 15px;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--white);
    text-decoration: none;
  }
  .logo-mark {
    width: 28px; height: 28px; position: relative;
  }
  .logo-mark svg { width: 100%; height: 100%; }
  .nav-links { display: flex; align-items: center; gap: 32px; }
  .nav-link {
    font-family: var(--font-body); font-size: 13px; font-weight: 500;
    color: var(--grey-light); text-decoration: none; letter-spacing: 0.04em;
    text-transform: uppercase; transition: color 0.2s;
  }
  .nav-link:hover { color: var(--white); }
  .nav-cta-group { display: flex; align-items: center; gap: 12px; }
  .btn-ghost {
    padding: 8px 18px; border: 1px solid var(--border);
    background: transparent; color: var(--grey-light);
    font-family: var(--font-body); font-size: 13px; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    border-radius: 4px; cursor: pointer; transition: all 0.2s;
    text-decoration: none;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--white); }
  .btn-gold {
    padding: 8px 20px; background: var(--gold);
    color: #000; font-family: var(--font-body);
    font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; border-radius: 4px;
    cursor: pointer; border: none; transition: all 0.2s;
    text-decoration: none;
  }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* -- HERO --------------------------------------------------------------- */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    padding: 120px 48px 80px;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(192,57,43,0.06) 0%, transparent 60%),
      radial-gradient(ellipse 30% 30% at 80% 60%, rgba(201,168,76,0.04) 0%, transparent 60%);
  }
  .hero-grid {
    position: absolute; inset: 0; z-index: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 100%);
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold-dim); border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold); font-family: var(--font-mono); font-size: 11px;
    font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 6px 16px; border-radius: 100px; margin-bottom: 40px;
    position: relative; z-index: 1;
    animation: fadeUp 0.8s ease both;
  }
  .hero-tag-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(64px, 10vw, 140px);
    line-height: 0.9;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--white);
    position: relative; z-index: 1;
    animation: fadeUp 0.8s 0.1s ease both;
  }
  .hero-title span { color: var(--gold); }
  .hero-sub {
    margin-top: 28px;
    font-family: var(--font-text); font-size: 18px; font-weight: 300;
    color: var(--grey-light); max-width: 560px;
    position: relative; z-index: 1;
    animation: fadeUp 0.8s 0.2s ease both;
    line-height: 1.7;
  }
  .hero-actions {
    display: flex; align-items: center; gap: 16px; margin-top: 40px;
    position: relative; z-index: 1;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .btn-hero {
    padding: 14px 32px; background: var(--gold); color: #000;
    font-family: var(--font-body); font-size: 14px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    border-radius: 4px; cursor: pointer; border: none;
    transition: all 0.25s; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-hero:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,168,76,0.25); }
  .btn-hero-outline {
    padding: 14px 32px; background: transparent;
    border: 1px solid rgba(255,255,255,0.2); color: var(--white);
    font-family: var(--font-body); font-size: 14px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    border-radius: 4px; cursor: pointer;
    transition: all 0.25s; text-decoration: none;
  }
  .btn-hero-outline:hover { border-color: var(--gold); color: var(--gold); }

  .hero-stats {
    display: flex; align-items: center; gap: 48px;
    margin-top: 64px; position: relative; z-index: 1;
    animation: fadeUp 0.8s 0.4s ease both;
    padding-top: 40px;
    border-top: 1px solid var(--border);
  }
  .hero-stat { text-align: center; }
  .hero-stat-num {
    font-family: var(--font-display); font-size: 36px;
    color: var(--gold); letter-spacing: 0.02em; display: block;
  }
  .hero-stat-label {
    font-size: 12px; color: var(--grey);
    font-family: var(--font-mono); letter-spacing: 0.08em;
    text-transform: uppercase; margin-top: 2px;
  }
  .hero-stat-divider {
    width: 1px; height: 40px; background: var(--border);
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* -- SECTION SHARED ----------------------------------------------------- */
  section { padding: 100px 0; }
  .container { max-width: 1120px; margin: 0 auto; padding: 0 48px; }
  .section-tag {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--gold); letter-spacing: 0.16em;
    text-transform: uppercase; margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
  }
  .section-tag::before {
    content: ''; width: 24px; height: 1px; background: var(--gold);
  }
  .section-title {
    font-family: var(--font-body); font-size: clamp(32px, 4vw, 52px);
    font-weight: 800; line-height: 1.1; color: var(--white);
    letter-spacing: -0.02em;
  }
  .section-title span { color: var(--gold); }
  .section-body {
    font-size: 17px; color: var(--grey-light); line-height: 1.75;
    max-width: 560px; margin-top: 20px; font-weight: 300;
  }

  /* -- WHAT IS ------------------------------------------------------------ */
  .what-is { background: var(--deep); }
  .what-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center; margin-top: 60px;
  }
  .what-cards { display: flex; flex-direction: column; gap: 16px; }
  .what-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; padding: 24px;
    display: flex; align-items: flex-start; gap: 16px;
    transition: border-color 0.3s;
  }
  .what-card:hover { border-color: rgba(201,168,76,0.3); }
  .what-card-icon {
    width: 40px; height: 40px; border-radius: 8px;
    background: var(--gold-dim); border: 1px solid rgba(201,168,76,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
  }
  .what-card-title {
    font-family: var(--font-body); font-size: 15px; font-weight: 700;
    color: var(--white); margin-bottom: 4px; letter-spacing: 0.01em;
  }
  .what-card-text { font-size: 13px; color: var(--grey); line-height: 1.6; }

  /* -- KAI SECTION -------------------------------------------------------- */
  .kai-section { background: var(--black); overflow: hidden; }
  .kai-hero-line {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 100px);
    text-transform: uppercase; letter-spacing: 0.02em;
    line-height: 0.9; color: var(--white);
    margin-bottom: 16px;
  }
  .kai-hero-line span { color: var(--gold); }
  .kai-features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: var(--border); border: 1px solid var(--border);
    border-radius: 16px; overflow: hidden; margin-top: 60px;
  }
  .kai-feat {
    background: var(--deep); padding: 36px 32px;
    transition: background 0.3s;
  }
  .kai-feat:hover { background: var(--surface); }
  .kai-feat-num {
    font-family: var(--font-mono); font-size: 11px; color: var(--gold);
    letter-spacing: 0.12em; margin-bottom: 20px; display: block;
  }
  .kai-feat-title {
    font-family: var(--font-body); font-size: 18px; font-weight: 700;
    color: var(--white); margin-bottom: 12px; line-height: 1.3;
  }
  .kai-feat-text { font-size: 14px; color: var(--grey); line-height: 1.7; }
  .kai-feat-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
  .pill {
    font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
    padding: 4px 10px; border-radius: 100px;
    background: var(--surface2); color: var(--grey-light); border: 1px solid var(--border);
    text-transform: uppercase;
  }

  /* -- MOBILE APP SECTION ------------------------------------------------- */
  .mobile-section { background: var(--deep); overflow: hidden; }
  .mobile-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center; margin-top: 60px;
  }
  .phone-mockup {
    position: relative; display: flex; justify-content: center;
  }
  .phone-outer {
    width: 280px; height: 560px;
    background: linear-gradient(145deg, #2a2a2a, #111);
    border-radius: 44px; padding: 12px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative; border: 1px solid rgba(255,255,255,0.1);
  }
  .phone-inner {
    width: 100%; height: 100%;
    background: var(--black); border-radius: 34px; overflow: hidden;
    position: relative;
  }
  .phone-notch {
    position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 28px; background: #000; border-radius: 100px; z-index: 10;
  }
  .phone-screen {
    height: 100%; display: flex; flex-direction: column;
    background: linear-gradient(180deg, #0E0E0E 0%, #080808 100%);
    padding-top: 52px;
  }
  .phone-status { padding: 0 20px 8px; display: flex; justify-content: space-between; align-items: center; }
  .phone-time { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--white); }
  .phone-icons { font-size: 11px; color: var(--white); }
  .phone-app-header { padding: 12px 20px; border-bottom: 1px solid var(--border); }
  .kai-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--gold-dim); border: 1px solid rgba(201,168,76,0.25);
    border-radius: 100px; padding: 4px 12px;
  }
  .kai-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
  .kai-badge-text { font-family: var(--font-mono); font-size: 9px; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
  .phone-chat { flex: 1; padding: 16px; overflow: hidden; display: flex; flex-direction: column; gap: 12px; }
  .chat-msg { display: flex; flex-direction: column; gap: 4px; }
  .chat-msg.kai { align-items: flex-start; }
  .chat-msg.user { align-items: flex-end; }
  .chat-bubble {
    max-width: 85%; padding: 10px 14px; border-radius: 16px; font-size: 11px; line-height: 1.5; color: var(--white);
  }
  .chat-msg.kai .chat-bubble { background: var(--surface2); border: 1px solid var(--border); border-bottom-left-radius: 4px; }
  .chat-msg.user .chat-bubble { background: var(--gold); color: #000; font-weight: 500; border-bottom-right-radius: 4px; }
  .chat-name { font-family: var(--font-mono); font-size: 9px; color: var(--grey); letter-spacing: 0.06em; padding: 0 4px; }
  .phone-input-bar {
    padding: 10px 16px; border-top: 1px solid var(--border);
    background: var(--surface);
    display: flex; align-items: center; gap: 8px;
  }
  .phone-input {
    flex: 1; background: var(--surface2); border: 1px solid var(--border);
    border-radius: 100px; padding: 7px 14px;
    font-size: 10px; color: var(--grey); font-family: var(--font-text);
  }
  .phone-send {
    width: 28px; height: 28px; background: var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #000; font-size: 12px;
  }
  .phone-nav-bar {
    padding: 10px 20px; display: flex; justify-content: space-around;
    border-top: 1px solid var(--border); background: var(--surface);
  }
  .phone-nav-item { text-align: center; }
  .phone-nav-icon { font-size: 16px; }
  .phone-nav-label { font-size: 8px; color: var(--grey); font-family: var(--font-mono); letter-spacing: 0.06em; display: block; margin-top: 2px; }
  .phone-nav-item.active .phone-nav-label { color: var(--gold); }

  .mobile-features { display: flex; flex-direction: column; gap: 32px; }
  .mob-feat { display: flex; gap: 20px; align-items: flex-start; }
  .mob-feat-num {
    width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
    background: var(--gold-dim); border: 1px solid rgba(201,168,76,0.25);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-size: 12px; color: var(--gold); font-weight: 500;
  }
  .mob-feat-title { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
  .mob-feat-text { font-size: 14px; color: var(--grey); line-height: 1.7; }

  /* -- WEB PLATFORM ------------------------------------------------------- */
  .web-section { background: var(--black); }
  .web-browser {
    margin-top: 60px; border-radius: 16px; overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  }
  .browser-chrome {
    background: var(--surface); padding: 14px 20px;
    display: flex; align-items: center; gap: 12px;
    border-bottom: 1px solid var(--border);
  }
  .browser-dots { display: flex; gap: 6px; }
  .browser-dot {
    width: 12px; height: 12px; border-radius: 50%;
  }
  .browser-dot.red { background: #FF5F57; }
  .browser-dot.yellow { background: #FFBD2E; }
  .browser-dot.green { background: #28CA41; }
  .browser-url {
    flex: 1; background: var(--surface2); border: 1px solid var(--border);
    border-radius: 6px; padding: 6px 14px;
    font-family: var(--font-mono); font-size: 12px; color: var(--grey-light);
    display: flex; align-items: center; gap: 6px;
  }
  .browser-url-lock { color: var(--gold); font-size: 10px; }
  .dashboard-content {
    background: var(--deep); display: grid;
    grid-template-columns: 220px 1fr 300px; height: 520px;
  }
  .dash-sidebar {
    background: var(--surface); border-right: 1px solid var(--border);
    padding: 24px 0; display: flex; flex-direction: column; gap: 4px;
  }
  .dash-sidebar-header { padding: 0 20px 16px; border-bottom: 1px solid var(--border); margin-bottom: 8px; }
  .dash-sidebar-logo { font-family: var(--font-body); font-size: 13px; font-weight: 800; color: var(--white); letter-spacing: 0.08em; text-transform: uppercase; }
  .dash-nav-item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 20px; font-size: 13px; color: var(--grey); cursor: pointer;
    transition: all 0.2s; border-left: 2px solid transparent;
    font-family: var(--font-text);
  }
  .dash-nav-item:hover, .dash-nav-item.active { background: var(--surface2); color: var(--white); border-left-color: var(--gold); }
  .dash-nav-item.active { color: var(--gold); }
  .dash-nav-icon { width: 16px; text-align: center; font-size: 14px; }
  .dash-main { padding: 28px; overflow: hidden; }
  .dash-main-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
  .dash-greeting { font-family: var(--font-body); font-size: 18px; font-weight: 700; color: var(--white); }
  .dash-date { font-family: var(--font-mono); font-size: 11px; color: var(--grey); }
  .dash-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
  .dash-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 16px;
  }
  .dash-card-label { font-family: var(--font-mono); font-size: 10px; color: var(--grey); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
  .dash-card-val { font-family: var(--font-body); font-size: 26px; font-weight: 800; color: var(--white); }
  .dash-card-sub { font-size: 11px; color: var(--gold); margin-top: 4px; }
  .dash-contact-list { display: flex; flex-direction: column; gap: 10px; }
  .dash-contact-list-title { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
  .dash-contact {
    display: flex; align-items: center; gap: 12px; padding: 10px 14px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 8px;
  }
  .dash-avatar {
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body); font-size: 12px; font-weight: 700;
  }
  .dash-contact-info { flex: 1; }
  .dash-contact-name { font-size: 12px; font-weight: 600; color: var(--white); font-family: var(--font-body); }
  .dash-contact-role { font-size: 10px; color: var(--grey); font-family: var(--font-mono); letter-spacing: 0.04em; }
  .dash-contact-badge {
    font-size: 9px; padding: 2px 8px; border-radius: 100px;
    font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase;
  }
  .badge-warm { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid rgba(201,168,76,0.25); }
  .badge-cold { background: rgba(107,114,128,0.15); color: var(--grey-light); border: 1px solid var(--border); }
  .badge-hot { background: rgba(192,57,43,0.15); color: #E57368; border: 1px solid rgba(192,57,43,0.25); }
  .dash-sidebar-right {
    background: var(--surface); border-left: 1px solid var(--border); padding: 24px;
    display: flex; flex-direction: column; gap: 20px; overflow: hidden;
  }
  .dash-kai-panel { background: var(--surface2); border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
  .dash-kai-header { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
  .kai-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
  .kai-label { font-family: var(--font-mono); font-size: 11px; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
  .kai-msg { font-size: 12px; color: var(--grey-light); line-height: 1.6; margin-bottom: 12px; }
  .kai-action {
    display: flex; align-items: center; gap: 8px; padding: 8px 12px;
    background: var(--gold-dim); border: 1px solid rgba(201,168,76,0.2);
    border-radius: 6px; cursor: pointer; margin-bottom: 8px;
  }
  .kai-action-text { font-size: 11px; color: var(--white); font-family: var(--font-text); }
  .kai-action-arrow { color: var(--gold); font-size: 12px; margin-left: auto; }
  .event-list { display: flex; flex-direction: column; gap: 8px; }
  .event-list-title { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--white); }
  .event-item { display: flex; gap: 10px; align-items: flex-start; padding: 10px; background: var(--surface2); border-radius: 8px; border: 1px solid var(--border); }
  .event-date { font-family: var(--font-mono); font-size: 10px; color: var(--gold); letter-spacing: 0.06em; white-space: nowrap; }
  .event-name { font-size: 11px; color: var(--white); font-weight: 500; }
  .event-loc { font-size: 10px; color: var(--grey); }

  /* -- HOW IT WORKS ------------------------------------------------------- */
  .how-section { background: var(--deep); }
  .how-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 60px;
    border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  }
  .how-step {
    padding: 40px 32px; background: var(--surface);
    border-right: 1px solid var(--border); position: relative;
    transition: background 0.3s;
  }
  .how-step:last-child { border-right: none; }
  .how-step:hover { background: var(--surface2); }
  .how-step-num {
    font-family: var(--font-display); font-size: 80px; color: rgba(255,255,255,0.03);
    line-height: 1; position: absolute; top: 16px; right: 20px;
  }
  .how-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--gold-dim); border: 1px solid rgba(201,168,76,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 20px;
  }
  .how-step-title { font-family: var(--font-body); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
  .how-step-text { font-size: 13px; color: var(--grey); line-height: 1.7; }

  /* -- EXPERT NETWORK ----------------------------------------------------- */
  .expert-section { background: var(--black); }
  .expert-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 48px;
  }
  .expert-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
  }
  .expert-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); }
  .expert-photo {
    width: 100%; aspect-ratio: 3/4; object-fit: cover;
    background: var(--surface2); position: relative; overflow: hidden;
  }
  .expert-photo-placeholder {
    width: 100%; aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--surface2), var(--surface));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 48px; color: var(--border);
  }
  .expert-info { padding: 16px; }
  .expert-role {
    font-family: var(--font-mono); font-size: 9px; color: var(--gold);
    letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px;
  }
  .expert-name { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
  .expert-org { font-size: 11px; color: var(--grey); }
  .expert-cta {
    margin-top: 48px; text-align: center;
    padding: 48px; background: var(--surface);
    border: 1px solid var(--border); border-radius: 16px;
  }
  .expert-cta-title { font-family: var(--font-body); font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
  .expert-cta-text { font-size: 15px; color: var(--grey); margin-bottom: 24px; }

  /* -- VERTICALS ---------------------------------------------------------- */
  .verticals-section { background: var(--deep); }
  .verticals-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .verticals-grid { display: flex; flex-direction: column; gap: 12px; }
  .vertical-item {
    display: flex; align-items: center; gap: 20px; padding: 20px 24px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; cursor: pointer; transition: all 0.3s;
  }
  .vertical-item:hover { border-color: rgba(201,168,76,0.3); background: var(--surface2); }
  .vertical-item.active { border-color: var(--gold); background: var(--gold-dim); }
  .vertical-icon { font-size: 24px; flex-shrink: 0; width: 40px; text-align: center; }
  .vertical-name { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--white); }
  .vertical-count { font-family: var(--font-mono); font-size: 10px; color: var(--grey); letter-spacing: 0.08em; margin-top: 2px; }
  .vertical-status { margin-left: auto; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; padding: 3px 10px; border-radius: 100px; }
  .status-live { background: rgba(40,202,65,0.1); color: #28CA41; border: 1px solid rgba(40,202,65,0.2); }
  .status-soon { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(201,168,76,0.2); }
  .vertical-detail {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 16px; padding: 40px;
    position: sticky; top: 80px;
  }
  .vertical-detail-tag { font-family: var(--font-mono); font-size: 11px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
  .vertical-detail-title { font-family: var(--font-body); font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 16px; }
  .vertical-detail-text { font-size: 14px; color: var(--grey-light); line-height: 1.75; margin-bottom: 24px; }
  .vertical-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .vtag {
    font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
    padding: 5px 12px; border-radius: 6px;
    background: var(--surface2); color: var(--grey-light); border: 1px solid var(--border);
    text-transform: uppercase;
  }

  /* -- PRICING ------------------------------------------------------------ */
  .pricing-section { background: var(--black); }
  .pricing-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 60px;
  }
  .pricing-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 16px; padding: 32px; position: relative; overflow: hidden;
    transition: transform 0.3s;
  }
  .pricing-card:hover { transform: translateY(-4px); }
  .pricing-card.featured {
    border-color: var(--gold); background: var(--surface2);
  }
  .pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute; top: 16px; right: -28px;
    font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em;
    color: #000; background: var(--gold); padding: 4px 36px;
    transform: rotate(45deg); transform-origin: center;
  }
  .pricing-tier { font-family: var(--font-mono); font-size: 11px; color: var(--grey); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
  .pricing-price {
    font-family: var(--font-display); font-size: 48px; color: var(--white);
    letter-spacing: 0.02em; line-height: 1;
  }
  .pricing-period { font-size: 14px; color: var(--grey); font-family: var(--font-text); font-weight: 300; }
  .pricing-desc { font-size: 13px; color: var(--grey); margin: 16px 0; line-height: 1.6; }
  .pricing-divider { height: 1px; background: var(--border); margin: 20px 0; }
  .pricing-feature {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 13px; color: var(--grey-light); margin-bottom: 10px; line-height: 1.5;
  }
  .pricing-check { color: var(--gold); font-size: 12px; flex-shrink: 0; margin-top: 2px; }
  .pricing-btn {
    display: block; width: 100%; padding: 12px;
    font-family: var(--font-body); font-size: 13px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase; text-align: center;
    border-radius: 8px; cursor: pointer; margin-top: 24px; text-decoration: none;
    transition: all 0.25s;
  }
  .pricing-btn.outline {
    border: 1px solid var(--border); color: var(--grey-light); background: transparent;
  }
  .pricing-btn.outline:hover { border-color: var(--gold); color: var(--white); }
  .pricing-btn.solid { background: var(--gold); color: #000; border: none; }
  .pricing-btn.solid:hover { background: var(--gold-light); }

  /* -- CTA FINAL ---------------------------------------------------------- */
  .cta-final {
    background: var(--deep); padding: 120px 48px; text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-final::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-final-title {
    font-family: var(--font-display); font-size: clamp(48px, 7vw, 96px);
    text-transform: uppercase; line-height: 0.9;
    color: var(--white); position: relative; z-index: 1; letter-spacing: 0.02em;
  }
  .cta-final-title span { color: var(--gold); }
  .cta-final-sub {
    font-size: 18px; color: var(--grey-light); max-width: 500px;
    margin: 24px auto 40px; font-weight: 300; line-height: 1.7;
    position: relative; z-index: 1;
  }
  .cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; position: relative; z-index: 1; }

  /* -- FOOTER ------------------------------------------------------------- */
  footer {
    background: var(--black); border-top: 1px solid var(--border);
    padding: 60px 48px 32px;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
  .footer-brand { }
  .footer-logo { font-family: var(--font-body); font-size: 18px; font-weight: 800; color: var(--white); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
  .footer-tagline { font-size: 13px; color: var(--grey); line-height: 1.7; max-width: 260px; }
  .footer-col-title { font-family: var(--font-body); font-size: 12px; font-weight: 700; color: var(--white); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
  .footer-links { display: flex; flex-direction: column; gap: 10px; }
  .footer-link { font-size: 13px; color: var(--grey); text-decoration: none; transition: color 0.2s; }
  .footer-link:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid var(--border); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-copy { font-family: var(--font-mono); font-size: 11px; color: var(--grey); letter-spacing: 0.06em; }
  .footer-union-link { font-family: var(--font-mono); font-size: 11px; color: var(--gold); letter-spacing: 0.06em; text-decoration: none; }

  /* -- SCROLL ANIM -------------------------------------------------------- */
  .reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* -- SCROLLBAR ---------------------------------------------------------- */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
  ::-webkit-scrollbar-thumb:hover { background: var(--gold); }