    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    .visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

    :root {
      --yellow: #E8E000;
      --yellow-light: #F5F24A;
      --lime: #A8D85A;
      --green: #7BBF3A;
      --black: #000000;
      --dark: #F5F5F0;
      --dark-surface: #EEEEE8;
      --dark-card: rgba(0,0,0,0.03);
      --dark-card-hover: rgba(0,0,0,0.05);
      --glass: rgba(0,0,0,0.03);
      --glass-border: rgba(0,0,0,0.1);
      --glass-border-hover: rgba(0,0,0,0.18);
      --white: #FFFFFF;
      --text: #000000;
      --text-secondary: rgba(0,0,0,0.55);
      --text-muted: rgba(0,0,0,0.35);
      --gradient: linear-gradient(135deg, #E8E000 0%, #A8D85A 100%);
      --gradient-text: linear-gradient(135deg, #C8C800 0%, #8AB840 50%, #6EA030 100%);
      --nav-h: 80px;
      --r-sm: 0px;
      --r-md: 0px;
      --r-lg: 0px;
      --r-xl: 0px;
      --r-full: 0px;
      --mono: 'Inconsolata', 'JetBrains Mono', monospace;
      --serif: 'Inconsolata', 'Instrument Serif', Georgia, serif;
      --body: 'Outfit', system-ui, sans-serif;
      --title: 'Inconsolata', monospace;
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
    }

    html { scroll-behavior: smooth; overflow-x: hidden; overscroll-behavior-x: none; }
    body {
      font-family: var(--body); background: var(--white); color: var(--text);
      overflow-x: hidden; overscroll-behavior-x: none; line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
    ul { list-style: none; }
    .container { max-width: 1340px; margin: 0 auto; padding: 0 40px; }

    /* ===== NAV (glass) ===== */
    .nav {
      position: fixed; top: 0; left: 0; right: 0;
      height: var(--nav-h); z-index: 1002;
      display: flex; align-items: center;
      padding: 0 40px;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(16px) saturate(120%);
      -webkit-backdrop-filter: blur(16px) saturate(120%);
      border-bottom: 1px solid transparent;
      transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    }
    .nav.scrolled {
      background: rgba(255,255,255,0.95);
      border-bottom: 1px solid var(--glass-border);
      box-shadow: 0 1px 20px rgba(0,0,0,0.04);
    }
    .nav__inner {
      display: flex; align-items: center; justify-content: space-between;
      width: 100%; max-width: 1340px; margin: 0 auto;
    }
    .nav__logo { display: flex; align-items: center; }
    .nav__logo img { height: 15px; width: auto; }
    .nav__links { display: flex; gap: 36px; align-items: center; }
    .nav__links a {
      font-family: var(--mono); font-size: 0.7rem; font-weight: 500;
      color: var(--text-secondary); transition: color 0.3s;
      letter-spacing: 0.06em; text-transform: uppercase;
    }
    .nav__links a:hover { color: var(--text); }
    .nav__dropdown { position: relative; display: inline-flex; align-items: center; }
    .nav__dropdown-trigger { cursor: pointer; line-height: 1; }
    .nav__dropdown-menu {
      display: none; position: absolute; top: 100%; right: 0;
      margin-top: 0; padding-top: 12px; min-width: 220px;
      background: #fff; border: 1px solid var(--glass-border);
      border-radius: var(--r-md); box-shadow: 0 12px 40px rgba(0,0,0,0.1);
      padding: 8px 0; z-index: 1001;
    }
    .nav__dropdown::after {
      content: ''; position: absolute; top: 100%; left: 0; right: 0;
      height: 20px;
    }
    .nav__dropdown-menu a {
      display: block; padding: 10px 20px;
      font-family: var(--mono); font-size: 0.7rem; font-weight: 500;
      color: var(--text-secondary); letter-spacing: 0.04em;
      transition: background 0.2s, color 0.2s;
    }
    .nav__dropdown-menu a:hover { background: var(--dark); color: var(--text); }
    .nav__dropdown:hover .nav__dropdown-menu { display: block; }
    .nav__dropdown.open .nav__dropdown-menu { display: block; }
    .nav__actions { display: flex; gap: 10px; }

    /* Glass buttons */
    .btn-glass {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--mono); font-size: 0.75rem; font-weight: 600;
      padding: 11px 22px; border-radius: 0;
      background: #fff; border: 1px solid rgba(0,0,0,0.15);
      color: var(--text);
      transition: background 0.2s, border-color 0.2s; letter-spacing: 0.02em;
      text-transform: uppercase; white-space: nowrap;
    }
    .btn-glass:hover {
      background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.3);
    }
    .btn-glass--accent {
      background: var(--black); border-color: var(--black);
      color: #fff;
    }
    .btn-glass--accent:hover {
      background: #222; border-color: #222;
    }
    .btn-glass--lg { padding: 16px 36px; font-size: 0.8125rem; }
    .btn-glass .arr { transition: transform 0.3s var(--ease); font-size: 0.9em; }
    .btn-glass:hover .arr { transform: translateX(3px); }

    .nav__burger { display: none; width: 36px; height: 36px; align-items: center; justify-content: center; z-index: 1002; font-size: 0; color: transparent; overflow: hidden; }
    .nav__burger span { display: block; width: 20px; height: 1.5px; background: #000; position: relative; transition: background 0.3s; }
    .nav__burger span::before, .nav__burger span::after { content: ''; position: absolute; width: 20px; height: 1.5px; background: #000; left: 0; transition: transform 0.3s var(--ease), top 0.3s var(--ease); }
    .nav__burger span::before { top: -6px; } .nav__burger span::after { top: 6px; }
    .nav__burger.open span { background: transparent; }
    .nav__burger.open span::before { top: 0; transform: rotate(45deg); }
    .nav__burger.open span::after { top: 0; transform: rotate(-45deg); }

    /* Mobile menu overlay */
    .nav__mobile {
      display: none; position: fixed; inset: 0; z-index: 1001;
      background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
      flex-direction: column; align-items: center; justify-content: center; gap: 24px;
      opacity: 0; transition: opacity 0.35s var(--ease);
    }
    .nav__mobile.open { display: flex; opacity: 1; }
    .nav__mobile-header {
      position: absolute; top: 0; left: 0; right: 0;
      height: var(--nav-h); display: flex; align-items: center; justify-content: space-between;
      padding: 0 40px;
    }
    .nav__mobile-header img { height: 42px; width: auto; }
    .nav__mobile-close {
      width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
      background: none; border: none; cursor: pointer; font-size: 1.5rem; color: var(--text);
      transition: opacity 0.2s;
    }
    .nav__mobile-close:hover { opacity: 0.5; }
    .nav__mobile a {
      font-family: var(--body); font-weight: 600; font-size: 1.5rem;
      color: var(--text); transition: color 0.2s;
    }
    .nav__mobile a:hover { color: var(--text-secondary); }
    .nav__mobile a.btn-glass--accent { color: #fff; font-size: 0.85rem; }
    .nav__mobile a.btn-glass--accent:hover { color: #fff; }
    .nav__mobile .nav__mobile-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; width: 80%; max-width: 320px; }
    .nav__mobile .nav__mobile-actions .btn-glass { width: 100%; justify-content: center; text-align: center; font-size: 0.75rem; padding: 12px 16px; }

    /* ===== HERO ===== */
    .hero {
      min-height: 100vh; display: flex; flex-direction: column;
      justify-content: center; align-items: center;
      padding: calc(var(--nav-h) + 20px) 40px 60px;
      position: relative; overflow: hidden;
    }

    .hero__grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
      background-size: 100px 100px;
    }

    .hero__content {
      position: relative; z-index: 2;
      width: 100%; max-width: 1340px; margin: 0 auto;
      display: flex; flex-direction: column;
    }

    .hero__visual {
      position: relative;
      width: 100%;
      animation: fadeUp 1s var(--ease) both;
    }
    .hero__motion {
      width: clamp(380px, 50vw, 600px); height: auto; display: block;
      margin-left: auto;
    }
    .hero__logo-svg {
      position: absolute; top: 0; left: 0;
      width: clamp(280px, 40vw, 520px); height: auto;
    }
    .hero__tagline {
      margin-top: 28px; font-size: clamp(1.1rem, 1.8vw, 1.5rem); line-height: 1.5;
      color: var(--text-secondary);
      animation: fadeUp 1s var(--ease) 0.15s both;
    }
    .hero__tagline .it { font-family: var(--serif); font-style: italic; }
    .hero__tagline .sans { font-family: var(--body); font-weight: 700; color: var(--text); }

    .hero__bottom {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-top: 48px; padding-top: 32px;
      border-top: 1px solid var(--glass-border);
      animation: fadeUp 1s var(--ease) 0.3s both;
    }
    .hero__bottom-left, .hero__bottom-right {
      display: flex; flex-direction: column;
      font-family: var(--serif); font-style: italic;
      font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.2;
      color: var(--text-secondary);
    }
    .hero__bottom-right { text-align: right; }

    .hero__countdown {
      display: flex; gap: 20px;
    }
    .hero__cd-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
    .hero__cd-val {
      font-family: var(--mono); font-weight: 800; font-size: 1.75rem;
      color: var(--black);
    }
    .hero__cd-label {
      font-family: var(--mono); font-size: 0.55rem; font-weight: 600;
      color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em;
    }

    .hero__ctas {
      display: flex; gap: 14px; margin-top: 48px;
      animation: fadeUp 1s var(--ease) 0.4s both;
    }

    @keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }

    /* ===== KEYWORD MARQUEE ===== */
    .marquee-keywords {
      padding: 24px 0;
      border-top: 1px solid var(--glass-border);
      border-bottom: 1px solid var(--glass-border);
      overflow: hidden;
    }
    .marquee-keywords__track {
      display: flex; gap: 12px;
      animation: marquee 30s linear infinite;
      width: max-content;
    }
    @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    .kw-pill {
      flex-shrink: 0;
      font-family: var(--mono); font-size: 0.75rem; font-weight: 500;
      padding: 10px 24px; border-radius: var(--r-full);
      border: 1px solid var(--glass-border); color: var(--text-secondary);
      white-space: nowrap; transition: all 0.3s;
    }
    .kw-pill--accent { background: var(--black); border-color: var(--black); color: #fff; font-weight: 700; }

    /* ===== STATS ===== */
    .stats { padding: 100px 0; background: #000; }
    .stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.1); border-radius: var(--r-lg); overflow: hidden; }
    .stats__item { background: #000; padding: 56px 32px; text-align: center; }
    .stats__num { font-family: var(--body); font-weight: 700; font-size: clamp(2.5rem, 4.5vw, 4rem); line-height: 1; letter-spacing: -0.03em; color: #fff; }
    .stats__num sup { font-family: var(--serif); font-style: italic; font-size: 0.5em; color: var(--yellow); vertical-align: super; margin-left: 2px; }
    .stats__label { font-family: var(--mono); font-size: 0.6875rem; color: rgba(255,255,255,0.4); margin-top: 12px; letter-spacing: 0.12em; text-transform: uppercase; }

    /* ===== SECTION ===== */
    .section { padding: 140px 0; }
    .section__eyebrow {
      font-family: var(--mono); font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--green); margin-bottom: 20px;
    }
    .section__title {
      font-family: var(--title); font-size: clamp(2rem, 4.5vw, 3.75rem); line-height: 1.05; letter-spacing: -0.03em; font-weight: 700;
    }
    .section__title .sans { font-family: var(--title); font-weight: 700; }
    .section__title .it { font-family: var(--title); font-style: normal; font-weight: 400; color: var(--text-secondary); }
    .section__desc { font-family: var(--mono); font-size: 0.9rem; color: var(--text-secondary); margin-top: 20px; max-width: 520px; line-height: 1.9; letter-spacing: -0.01em; }

    /* Mono for descriptive text (tech feel) */
    .card__desc, .zone__desc, .about__cols p, .news__excerpt,
    .tkt__note, .tkt__feat, .footer__brand-desc,
    .why-lux__desc, .practical__item p, .rh-card__desc { font-family: var(--mono); font-size: 0.82rem; line-height: 1.85; letter-spacing: -0.01em; }

    /* ===== ABOUT ===== */
    .about { border-top: 1px solid var(--glass-border); background: #F5F5F0; }
    .about__header { margin-bottom: 56px; }
    .about__header-top {
      display: flex; align-items: center; gap: 16px; margin-bottom: 40px;
    }
    .about__header-top .section__eyebrow { margin: 0; }
    .about__header-top::after {
      content: ''; flex: 1; height: 1px; background: var(--glass-border);
    }
    .about__cols {
      display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    }
    .about__cols p {
      font-size: 1.05rem; line-height: 1.8; color: var(--text-secondary);
    }

    /* Video wrapper */
    .about__visual {
      aspect-ratio: 2.2/1; border-radius: var(--r-xl);
      overflow: hidden; position: relative;
      background: #111;
    }
    .about__visual iframe,
    .about__visual .about__thumb {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; object-fit: cover;
      transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
    }
    .about__visual:hover .about__thumb { transform: scale(1.03); filter: brightness(0.8); }
    .about__visual .about__play {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      border: none; cursor: pointer; z-index: 2;
      width: 96px; height: 96px; border-radius: 50%;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      border: 1.5px solid rgba(255,255,255,0.3);
      display: flex; align-items: center; justify-content: center;
      transition: all 0.4s var(--ease);
      box-shadow: 0 8px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
    }
    .about__visual .about__play::before {
      content: ''; position: absolute; inset: -8px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12);
      animation: playPulse 2.6s ease-in-out infinite;
    }
    @keyframes playPulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.2); opacity: 0; }
    }
    .about__visual .about__play svg { margin-left: 4px; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3)); }
    .about__visual .about__play:hover {
      transform: translate(-50%, -50%) scale(1.1);
      background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.5);
      box-shadow: 0 12px 48px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
    }
    .about__visual .about__label {
      position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
      font-family: var(--mono); font-size: 0.65rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.14em; color: #fff;
      background: rgba(0,0,0,0.4); backdrop-filter: blur(10px);
      padding: 8px 20px; border-radius: var(--r-full);
      border: 1px solid rgba(255,255,255,0.1);
      white-space: nowrap; z-index: 2;
      transition: opacity 0.3s;
    }
    .about__visual[data-playing] .about__thumb,
    .about__visual[data-playing] .about__play,
    .about__visual[data-playing] .about__label { display: none; }
    .about__visual { cursor: pointer; }

    /* Stats bar overlapping bottom of video */
    .about__stats-bar {
      display: grid; grid-template-columns: repeat(5, 1fr);
      max-width: 960px; margin: -40px auto 0; position: relative; z-index: 3;
      background: #fff; border-radius: var(--r-lg);
      border: 1px solid var(--glass-border);
      box-shadow: 0 8px 40px rgba(0,0,0,0.06);
      padding: 40px 0 32px;
    }
    .about__stats-badge {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      font-family: var(--mono); font-size: 0.6rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.15em;
      background: var(--black); color: #fff;
      padding: 6px 20px; border-radius: var(--r-full);
      white-space: nowrap;
    }
    .about__stat {
      text-align: center; padding: 0 20px;
      position: relative;
    }
    .about__stat:not(:last-child)::after {
      content: ''; position: absolute; right: 0; top: 15%; height: 70%;
      width: 1px; background: var(--glass-border);
    }
    .about__stat-val {
      font-family: var(--body); font-weight: 700; font-size: 1.65rem;
      line-height: 1.2;
    }
    .about__stat-val sup {
      font-family: var(--serif); font-style: italic; font-size: 0.55em;
      color: var(--yellow); vertical-align: super;
    }
    .about__stat-label {
      font-size: 0.75rem; color: var(--text-muted); margin-top: 6px;
      font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.06em;
    }

    /* ===== CARDS GRID ===== */
    .cards__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .card {
      background: #fff; border: 1px solid var(--glass-border);
      border-radius: var(--r-xl); overflow: hidden;
      transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
      position: relative; display: flex; flex-direction: column;
    }
    .card:hover {
      border-color: var(--glass-border-hover);
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.10);
    }
    .card__img {
      height: 180px; width: 100%;
      background-size: cover; background-position: center;
      position: relative;
    }
    .card__img::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.45) 100%);
    }
    .card__img-label {
      position: absolute; bottom: 14px; left: 18px; z-index: 2;
      font-family: var(--mono); font-size: 0.6rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.1em;
      color: #fff; background: rgba(0,0,0,0.4); backdrop-filter: blur(8px);
      padding: 5px 14px; border-radius: var(--r-full);
      border: 1px solid rgba(255,255,255,0.15);
    }
    .card__body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
    .card__icon { display: none; }
    .card__title { font-family: var(--body); font-weight: 700; font-size: 1.15rem; margin-bottom: 10px; }
    .card__desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; flex: 1; }
    .card__link {
      display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
      font-family: var(--mono); font-size: 0.7rem; font-weight: 700;
      color: #fff; text-transform: uppercase; letter-spacing: 0.04em;
      background: var(--black); padding: 10px 20px; border-radius: var(--r-full);
      transition: gap 0.3s var(--ease), background 0.3s;
      width: fit-content;
    }
    .card__link:hover { gap: 10px; background: #222; }

    /* ===== ZONES ===== */
    .zones { border-top: 1px solid rgba(0,0,0,0.06); background: #fff; color: #111; }
    .zones .section__eyebrow { color: #111; }
    .zones .section__title { color: #111; }
    .zones .section__title .it { color: rgba(0,0,0,0.4); }
    .zones .section__desc { color: rgba(0,0,0,0.55); }
    .zones__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .zone {
      border-radius: var(--r-xl); padding: 36px;
      position: relative; overflow: hidden;
      background-color: #f8f8f6;
      border: 1px solid rgba(0,0,0,0.06);
      transition: all 0.4s var(--ease);
      display: flex; flex-direction: column; min-height: 340px;
    }
    .zone__img {
      position: absolute; bottom: 10px; right: 10px;
      width: 55%; max-width: 280px; height: auto;
      object-fit: contain; opacity: 0.07;
      pointer-events: none; z-index: 0;
    }
    .zone:hover .zone__img { opacity: 0.12; }
    .zone__tag, .zone__title, .zone__desc, .zone__pills { position: relative; z-index: 1; }
    .zone:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
    .zone--intel:hover { border-color: rgba(212,96,156,0.4); }
    .zone--fintech:hover { border-color: rgba(245,166,35,0.4); }
    .zone--launch:hover { border-color: rgba(92,200,176,0.4); }
    .zone--lu:hover { border-color: rgba(123,184,224,0.4); }
    .zone__num { display: none; }
    .zone__tag {
      font-family: var(--mono); font-size: 0.6rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 12px;
      position: relative; z-index: 1;
    }
    .zone--intel .zone__tag { color: #c04888; }
    .zone--fintech .zone__tag { color: #c88a10; }
    .zone--launch .zone__tag { color: #2a9a7a; }
    .zone--lu .zone__tag { color: #4888b0; }
    .zone__title { font-family: var(--body); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.02em; margin-bottom: 12px; color: #111; }
    .zone__desc { color: rgba(0,0,0,0.55); font-size: 0.9375rem; line-height: 1.7; max-width: 380px; }
    .zone__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 20px; }
    .zone__pill {
      font-family: var(--mono); font-size: 0.625rem; font-weight: 600;
      padding: 5px 14px; border-radius: var(--r-full);
    }
    .zone--intel .zone__pill { background: rgba(212,96,156,0.08); border: 1px solid rgba(212,96,156,0.25); color: #b04a80; }
    .zone--fintech .zone__pill { background: rgba(245,166,35,0.08); border: 1px solid rgba(245,166,35,0.25); color: #c07a10; }
    .zone--launch .zone__pill { background: rgba(92,200,176,0.08); border: 1px solid rgba(92,200,176,0.25); color: #2a8a72; }
    .zone--lu .zone__pill { background: rgba(123,184,224,0.08); border: 1px solid rgba(123,184,224,0.25); color: #4a8ab0; }
    /* Zone accent bar top */
    .zone__accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 24px 24px 0 0; }
    .zone--intel .zone__accent { background: linear-gradient(90deg, #D4609C, #E88ABF); }
    .zone--fintech .zone__accent { background: linear-gradient(90deg, #F5A623, #F7C26A); }
    .zone--launch .zone__accent { background: linear-gradient(90deg, #5CC8B0, #8EDAC8); }
    .zone--lu .zone__accent { background: linear-gradient(90deg, #7BB8E0, #A5D0ED); }

    /* ===== SPEAKERS TINDER STACK ===== */
    .speakers-stack-wrapper { display: flex; align-items: flex-start; gap: 64px; padding-top: 48px; }
    .tinder-stack { position: relative; width: 360px; height: 500px; flex-shrink: 0; perspective: 1000px; }
    .tinder-card {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      border-radius: 24px; overflow: hidden;
      transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), opacity 0.6s cubic-bezier(0.16,1,0.3,1);
      cursor: pointer; user-select: none;
      box-shadow: 0 20px 60px rgba(0,0,0,0.08);
      background: #fff;
    }
    .tinder-card img { width: 100%; height: 65%; object-fit: cover; }
    .tinder-card__info {
      padding: 24px 28px; background: #fff; height: 35%;
      display: flex; flex-direction: column; justify-content: center;
    }
    .tinder-card__name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.375rem; color: #000; }
    .tinder-card__role { font-size: 0.9375rem; color: rgba(0,0,0,0.55); margin-top: 4px; }
    .tinder-card__company { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; font-weight: 700; color: rgba(0,0,0,0.35); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 10px; }
    .tinder-card__tag { display: inline-block; margin-top: 12px; font-family: 'JetBrains Mono', monospace; font-size: 0.55rem; font-weight: 800; padding: 4px 12px; border-radius: 8px; text-transform: uppercase; letter-spacing: 0.08em; background: #E8E000; color: #000; }
    /* Stack depth — managed by JS for infinite loop */

    .speakers-grid { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .spk-row {
      display: flex; align-items: center; gap: 14px;
      padding: 14px 18px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.08);
      transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    }
    .spk-row:hover { border-color: rgba(0,0,0,0.15); box-shadow: 0 4px 16px rgba(0,0,0,0.04); transform: translateY(-2px); }
    .spk-row__photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
    .spk-row__name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.875rem; }
    .spk-row__role { font-size: 0.75rem; color: rgba(0,0,0,0.45); margin-top: 2px; }

    @media (max-width: 1024px) {
      .speakers-stack-wrapper { flex-direction: column; align-items: center; }
      .tinder-stack { width: 300px; height: 420px; }
      .speakers-grid { grid-template-columns: 1fr; }
    }

    /* ===== TICKETS ===== */
    .tickets { border-top: 1px solid var(--glass-border); background: #000; color: #fff; }
    .tickets .section__eyebrow { color: var(--yellow); }
    .tickets .section__title { color: #fff; }
    .tickets .section__title .it { color: rgba(255,255,255,0.5); }
    .tickets .section__desc { color: rgba(255,255,255,0.55); }
    .tickets__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
    @media (max-width: 1024px) { .tickets__grid { grid-template-columns: repeat(2, 1fr); } }
    .tkt {
      border-radius: var(--r-xl); padding: 48px 36px;
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
      backdrop-filter: blur(8px); position: relative;
      transition: all 0.4s var(--ease); display: flex; flex-direction: column;
    }
    .tkt:hover {
      transform: translateY(-6px); border-color: rgba(255,255,255,0.18);
      box-shadow: 0 16px 48px rgba(0,0,0,0.3);
    }
    .tkt--feat { border-color: rgba(232,224,0,0.25); background: rgba(232,224,0,0.04); }
    .tkt__name, .tkt__price .amt { color: #fff; }
    .tkt--feat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient); border-radius: var(--r-xl) var(--r-xl) 0 0; }
    .tkt__badge {
      position: absolute; top: -1px; right: 28px;
      background: var(--yellow); color: var(--black);
      font-family: var(--mono); padding: 5px 14px;
      font-size: 0.5rem; font-weight: 800; text-transform: uppercase;
      letter-spacing: 0.1em; border-radius: 0 0 var(--r-sm) var(--r-sm);
    }
    .tkt__period { font-family: var(--mono); font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
    .tkt__name { font-family: var(--body); font-weight: 700; font-size: 1.375rem; letter-spacing: -0.02em; margin-bottom: 28px; }
    .tkt__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
    .tkt__price .amt { font-family: var(--body); font-weight: 700; font-size: 3rem; letter-spacing: -0.04em; line-height: 1; }
    .tkt--feat .tkt__price .amt { color: var(--yellow); }
    .tkt__price .cur { font-family: var(--mono); font-size: 0.8rem; color: var(--text-muted); }
    .tkt__note { font-size: 0.8125rem; color: rgba(255,255,255,0.35); margin-bottom: 32px; }
    .tkt__features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; flex: 1; }
    .tkt__feat { display: flex; align-items: center; gap: 10px; font-size: 0.9375rem; color: rgba(255,255,255,0.55); }
    .tkt__feat .ck { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.55rem; background: rgba(232,224,0,0.1); color: var(--yellow); flex-shrink: 0; }
    .tkt .btn-glass { width: 100%; justify-content: center; border-color: rgba(255,255,255,0.2); color: #fff; }
    .tkt .btn-glass:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.08); }
    .tkt .btn-glass--accent { background: var(--yellow); border-color: var(--yellow); color: #000; }
    .tkt .btn-glass--accent:hover { background: var(--yellow-light); border-color: var(--yellow-light); }

    /* ===== PROGRAMME ===== */
    .programme { border-top: 1px solid var(--glass-border); background: #F5F5F0; }
    .programme__days { display: flex; gap: 8px; margin-bottom: 32px; }
    .programme__day-btn {
      font-family: var(--mono); font-size: 0.75rem; font-weight: 700;
      padding: 10px 24px; border-radius: var(--r-full);
      border: 1px solid var(--glass-border); color: var(--text-secondary);
      background: #fff; cursor: pointer; transition: all 0.3s;
      text-transform: uppercase; letter-spacing: 0.06em;
    }
    .programme__day-btn.active, .programme__day-btn:hover {
      background: var(--black); color: #fff; border-color: var(--black);
    }
    /* Zone legend */
    .prog-legend { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }
    .prog-legend__item { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); }
    .prog-legend__dot { width: 10px; height: 10px; border-radius: 3px; }
    .prog-legend__dot--intel { background: #D4609C; }
    .prog-legend__dot--fintech { background: #F5A623; }
    .prog-legend__dot--launch { background: #5CC8B0; }
    .prog-legend__dot--lu { background: #7BB8E0; }
    /* Grid layout: 5 columns for 5 stages */
    .prog-grid {
      display: grid;
      grid-template-columns: 70px repeat(5, 1fr);
      gap: 3px;
      border-radius: var(--r-lg); overflow: hidden;
    }
    .prog-grid__header {
      font-family: var(--mono); font-size: 0.55rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.08em;
      padding: 14px 10px; text-align: center;
      color: #fff; line-height: 1.3;
    }
    .prog-grid__header--time { background: #333; font-size: 0.5rem; display: flex; align-items: center; justify-content: center; }
    .prog-grid__header--lu { background: #7BB8E0; color: #fff; }
    .prog-grid__header--vis { background: #D4609C; color: #fff; }
    .prog-grid__header--imp { background: #E088B4; color: #fff; }
    .prog-grid__header--syn { background: #F5A623; color: #fff; }
    .prog-grid__header--pit { background: #5CC8B0; color: #fff; }
    /* Time cell */
    .prog-time {
      font-family: var(--mono); font-size: 0.7rem; font-weight: 700;
      padding: 12px 8px; text-align: center; color: var(--black);
      background: #fff; display: flex; align-items: flex-start; justify-content: center;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    /* Session cell */
    .prog-cell {
      background: #fff; padding: 10px 12px; min-height: 70px;
      border-bottom: 1px solid rgba(0,0,0,0.04);
      border-left: 3px solid transparent;
      transition: all 0.25s var(--ease);
    }
    .prog-cell:hover { background: #FAFAF5; }
    .prog-cell--intel { border-left-color: #D4609C; }
    .prog-cell--fintech { border-left-color: #F5A623; }
    .prog-cell--launch { border-left-color: #5CC8B0; }
    .prog-cell--lu { border-left-color: #7BB8E0; }
    .prog-cell--break { background: #F0F0EA; opacity: 0.6; display: flex; align-items: center; justify-content: center; }
    .prog-cell--break span { font-family: var(--mono); font-size: 0.55rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
    .prog-cell--span { grid-column: span 5; background: linear-gradient(135deg, rgba(212,96,156,0.06), rgba(245,166,35,0.06), rgba(92,200,176,0.06), rgba(123,184,224,0.06)); border-left-color: #D4609C; }
    .prog-cell__format {
      font-family: var(--mono); font-size: 0.5rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.08em;
      margin-bottom: 4px; display: inline-block;
      padding: 2px 8px; border-radius: 4px;
    }
    .prog-cell__format--keynote { background: rgba(232,224,0,0.2); color: #8A8400; }
    .prog-cell__format--panel { background: rgba(0,0,0,0.06); color: var(--text-muted); }
    .prog-cell__format--fireside { background: rgba(123,191,58,0.15); color: #5A9E2A; }
    .prog-cell__format--ceremony { background: rgba(0,0,0,0.08); color: #333; }
    .prog-cell__format--topic { background: rgba(0,0,0,0.85); color: #fff; }
    .prog-cell { cursor: pointer; }
    .prog-cell:hover { background: #F5F5F0; transform: scale(1.01); box-shadow: 0 2px 8px rgba(0,0,0,0.04); z-index: 2; position: relative; }
    .prog-cell__title { font-family: var(--body); font-weight: 600; font-size: 0.75rem; line-height: 1.35; margin-bottom: 3px; }

    /* Programme Modal */
    .prog-modal-overlay {
      position: fixed; inset: 0; z-index: 9999;
      background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
      display: none; align-items: center; justify-content: center;
      padding: 24px; opacity: 0; transition: opacity 0.3s;
    }
    .prog-modal-overlay.open { display: flex; opacity: 1; }
    .prog-modal {
      background: #fff; border-radius: 24px;
      max-width: 600px; width: 100%;
      padding: 48px; position: relative;
      box-shadow: 0 40px 100px rgba(0,0,0,0.2);
      transform: translateY(20px); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
      max-height: 90vh; overflow-y: auto;
    }
    .prog-modal-overlay.open .prog-modal { transform: translateY(0); }
    .prog-modal__close {
      position: absolute; top: 20px; right: 20px;
      width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid rgba(0,0,0,0.1); background: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; cursor: pointer; transition: all 0.2s;
      color: var(--text-muted);
    }
    .prog-modal__close:hover { background: #f5f5f0; border-color: rgba(0,0,0,0.2); color: #000; }
    .prog-modal__zone {
      display: inline-block; font-family: var(--mono); font-size: 0.6rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.12em;
      padding: 6px 16px; border-radius: 8px; margin-bottom: 16px;
    }
    .prog-modal__zone--intel { background: rgba(212,96,156,0.12); color: #D4609C; }
    .prog-modal__zone--fintech { background: rgba(245,166,35,0.12); color: #D48E1A; }
    .prog-modal__zone--launch { background: rgba(92,200,176,0.12); color: #3AA88E; }
    .prog-modal__zone--lu { background: rgba(123,184,224,0.12); color: #5A9EC0; }
    .prog-modal__time {
      font-family: var(--mono); font-size: 0.7rem; font-weight: 700;
      color: var(--text-muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.08em;
    }
    .prog-modal__format {
      font-family: var(--mono); font-size: 0.6rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.1em;
      padding: 4px 12px; border-radius: 6px; display: inline-block; margin-bottom: 16px;
    }
    .prog-modal__format--keynote { background: rgba(232,224,0,0.15); color: #8A8400; }
    .prog-modal__format--panel { background: rgba(0,0,0,0.06); color: rgba(0,0,0,0.5); }
    .prog-modal__format--ceremony { background: rgba(0,0,0,0.08); color: #333; }
    .prog-modal__format--topic { background: #111; color: #fff; }
    .prog-modal__title {
      font-family: var(--body); font-weight: 700;
      font-size: 1.5rem; letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 12px;
    }
    .prog-modal__speaker {
      font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px;
    }
    .prog-modal__details {
      display: flex; flex-direction: column; gap: 12px;
      padding-top: 20px; border-top: 1px solid rgba(0,0,0,0.08);
    }
    .prog-modal__detail {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.8125rem; color: var(--text-secondary);
    }
    .prog-modal__detail-icon {
      width: 32px; height: 32px; border-radius: 8px;
      background: #F5F5F0; display: flex; align-items: center; justify-content: center;
      font-size: 0.875rem; flex-shrink: 0;
    }
    .prog-cell__speaker { font-size: 0.65rem; color: var(--text-muted); line-height: 1.3; }
    @media (max-width: 1024px) {
      .prog-grid { grid-template-columns: 60px repeat(5, 1fr); }
      .prog-cell { padding: 8px 8px; }
      .prog-cell__title { font-size: 0.65rem; }
    }
    @media (max-width: 768px) {
      .prog-grid { grid-template-columns: 1fr; }
      .prog-grid__header { display: none; }
      .prog-time { justify-content: flex-start; font-size: 0.8rem; background: #eee; }
      .prog-cell { min-height: auto; }
      .prog-cell--break { display: none; }
    }

    /* ===== AWARDS ===== */
    .awards { border-top: 1px solid var(--glass-border); background: #fff; }
    .awards__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .awards__prize-tag {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--yellow); border-radius: var(--r-sm);
      padding: 10px 24px; font-family: var(--mono); font-size: 0.75rem;
      font-weight: 800; color: var(--black); margin-top: 28px;
      text-transform: uppercase; letter-spacing: 0.04em;
    }
    .awards__cats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .acat {
      background: var(--glass); border: 1px solid var(--glass-border);
      border-radius: var(--r-md); padding: 24px; backdrop-filter: blur(8px);
      transition: all 0.35s var(--ease);
    }
    .acat:hover {
      border-color: var(--glass-border-hover); transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    }
    .acat__name { font-family: var(--body); font-weight: 700; font-size: 0.875rem; margin-bottom: 4px; }
    .acat__count { font-family: var(--mono); font-size: 0.7rem; color: var(--text-muted); }

    /* ===== PARTNERS ===== */
    .partners { border-top: 1px solid var(--glass-border); background: #F5F5F0; }
    .partners__tiers { display: flex; flex-direction: column; gap: 56px; }
    .partners__tier { text-align: center; }
    .partners__tier-label {
      font-family: var(--mono); font-size: 0.6rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.2em;
      color: var(--text-muted); margin-bottom: 24px;
    }
    .partners__tier-label span { color: var(--text); }
    /* Institutional logos row */
    .partners__inst-row {
      display: grid; grid-template-columns: repeat(5, 1fr);
      gap: 16px; padding: 32px 0;
      border-bottom: 1px solid var(--glass-border);
    }
    .partners__inst-cell {
      display: flex; align-items: center; justify-content: center;
      padding: 20px 16px;
      border: 1px solid var(--glass-border); border-radius: var(--r-md);
      background: #fff; transition: all 0.3s;
    }
    .partners__inst-cell:hover { border-color: var(--glass-border-hover); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
    .partners__inst-logo {
      height: 28px; width: auto; max-width: 100%; object-fit: contain;
      opacity: 0.7; filter: grayscale(30%); transition: all 0.3s;
    }
    .partners__inst-cell:hover .partners__inst-logo { opacity: 1; filter: grayscale(0); }
    @media (max-width: 768px) {
      .partners__inst-row { grid-template-columns: repeat(3, 1fr); gap: 12px; }
      .partners__inst-cell { padding: 14px 12px; }
      .partners__inst-logo { height: 22px; }
    }
    @media (max-width: 480px) {
      .partners__inst-row { grid-template-columns: repeat(2, 1fr); }
    }
    /* Logo grid for other tiers */
    .partners__logo-grid {
      display: flex; align-items: center; justify-content: center;
      gap: 20px; flex-wrap: wrap; max-width: 1000px; margin: 0 auto;
    }
    .plogo {
      flex-shrink: 0; padding: 14px 24px; height: 64px;
      border: 1px solid var(--glass-border); border-radius: var(--r-sm);
      background: #fff; white-space: nowrap; transition: all 0.3s;
      display: flex; align-items: center; justify-content: center;
    }
    .plogo:hover { border-color: var(--glass-border-hover); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
    .plogo img { height: 28px; width: auto; max-width: 120px; object-fit: contain; filter: grayscale(40%); opacity: 0.7; transition: all 0.3s; }
    .plogo:hover img { filter: grayscale(0); opacity: 1; }
    .plogo__text { font-family: var(--mono); font-weight: 600; font-size: 0.75rem; color: var(--text-muted); }
    .plogo--lead { height: 80px; padding: 20px 36px; border-color: var(--yellow); background: rgba(232,224,0,0.04); }
    .plogo--lead img { height: 36px; max-width: 150px; filter: grayscale(0); opacity: 1; }
    .plogo--lead .plogo__text { font-size: 0.9375rem; font-weight: 800; }
    .plogo--premier { height: 70px; padding: 16px 28px; }
    .plogo--premier img { height: 30px; max-width: 130px; }
    .plogo--major { height: 58px; padding: 12px 20px; }
    .plogo--major img { height: 24px; max-width: 110px; }
    .plogo--key { height: 50px; padding: 10px 16px; }
    .plogo--key img { height: 20px; max-width: 90px; opacity: 0.5; }
    .plogo--key .plogo__text { font-size: 0.625rem; color: rgba(0,0,0,0.3); }
    .partners__tier-sub {
      font-family: var(--mono); font-size: 0.5rem; font-weight: 500;
      color: rgba(0,0,0,0.25); text-align: center; margin-top: 6px;
      letter-spacing: 0.06em;
    }
    /* Marquee for overflow */
    .partners__marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent); }
    .partners__track { display: flex; align-items: center; gap: 14px; animation: marquee 40s linear infinite; width: max-content; }
    .partners__track--rev { animation-direction: reverse; }

    /* ===== FLOATING SIDE CTA ===== */
    .side-cta {
      position: fixed; right: -260px; top: 50%; transform: translateY(-50%);
      z-index: 900; display: flex; flex-direction: column; gap: 8px;
      transition: right 0.6s cubic-bezier(0.16,1,0.3,1);
    }
    .side-cta.visible { right: 20px; }
    .side-cta__item {
      display: flex; align-items: center; gap: 12px;
      padding: 14px 20px; border-radius: 16px;
      font-family: var(--mono); font-size: 0.65rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.04em;
      white-space: nowrap; cursor: pointer;
      transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      text-decoration: none; position: relative; overflow: hidden;
    }
    .side-cta__item::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
      opacity: 0; transition: opacity 0.3s;
    }
    .side-cta__item:hover::before { opacity: 1; }
    .side-cta__item:hover { transform: translateX(-6px) scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
    .side-cta__icon {
      width: 32px; height: 32px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem; flex-shrink: 0;
    }
    .side-cta__text { display: flex; flex-direction: column; }
    .side-cta__label { font-size: 0.7rem; font-weight: 800; }
    .side-cta__sub { font-size: 0.5rem; font-weight: 500; opacity: 0.6; margin-top: 2px; letter-spacing: 0.02em; text-transform: none; }
    /* Colors */
    .side-cta__item--sponsor { background: #000; color: #fff; }
    .side-cta__item--sponsor .side-cta__icon { background: var(--yellow); color: #000; }
    .side-cta__item--ticket { background: var(--yellow); color: #000; }
    .side-cta__item--ticket .side-cta__icon { background: rgba(0,0,0,0.1); }
    .side-cta__item--startup { background: #5CC8B0; color: #fff; }
    .side-cta__item--startup .side-cta__icon { background: rgba(255,255,255,0.2); }
    .side-cta__item--newsletter { background: #fff; color: #000; border: 1px solid rgba(0,0,0,0.08); }
    .side-cta__item--newsletter .side-cta__icon { background: #F5F5F0; }
    .side-cta__item--contact { background: #333; color: #fff; }
    .side-cta__item--contact .side-cta__icon { background: rgba(255,255,255,0.15); }
    /* Stagger animation */
    .side-cta__item:nth-child(1) { transition-delay: 0s; }
    .side-cta__item:nth-child(2) { transition-delay: 0.06s; }
    .side-cta__item:nth-child(3) { transition-delay: 0.12s; }
    .side-cta__item:nth-child(4) { transition-delay: 0.18s; }
    .side-cta__item:nth-child(5) { transition-delay: 0.24s; }
    @media (max-width: 1024px) {
      .side-cta { display: none; }
    }

    /* ===== FINAL CTA ===== */
    .cta {
      padding: 140px 0; text-align: center; position: relative; overflow: hidden;
      background: #000; color: #fff;
    }
    .cta::before {
      content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(212,96,156,0.12) 0%, rgba(245,166,35,0.08) 30%, rgba(92,200,176,0.05) 50%, transparent 65%);
      filter: blur(60px);
    }
    .cta .container { position: relative; z-index: 1; }
    .cta__title {
      font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1; letter-spacing: -0.04em; margin-bottom: 24px;
    }
    .cta__title .sans { font-family: var(--body); font-weight: 700; color: #fff; }
    .cta__title .it { font-family: var(--serif); font-style: italic; font-weight: 400; color: rgba(255,255,255,0.75); }
    .cta__meta { font-family: var(--mono); font-size: 0.75rem; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 48px; }
    .cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* ===== FOOTER ===== */
    .footer { border-top: 1px solid rgba(255,255,255,0.08); padding: 80px 0 48px; background: #000; color: #fff; }
    .footer__grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 48px; margin-bottom: 64px; }
    .footer__brand-name { font-family: var(--mono); font-weight: 800; font-size: 1.1rem; margin-bottom: 16px; text-align: left; }
    .footer__brand-name img { height: 12px !important; width: auto !important; display: block; }
    .footer__brand-desc { font-size: 0.9375rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
    .footer__social { display: flex; gap: 10px; }
    .footer__social a {
      width: 36px; height: 36px; border-radius: var(--r-sm);
      border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.45); transition: all 0.3s;
    }
    .footer__social a svg { width: 18px; height: 18px; fill: currentColor; }
    .footer__social a:hover { border-color: var(--yellow); color: var(--yellow); }
    .footer__col-title { font-family: var(--mono); font-weight: 700; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
    .footer__col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer__col li a { font-size: 0.9375rem; color: rgba(255,255,255,0.55); transition: color 0.25s; }
    .footer__col li a:hover { color: var(--yellow); }
    .footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); font-family: var(--mono); font-size: 0.65rem; color: rgba(255,255,255,0.3); letter-spacing: 0.02em; }
    .footer__bottom-links { display: flex; gap: 24px; }
    .footer__bottom-links a { color: rgba(255,255,255,0.3); transition: color 0.25s; }
    .footer__bottom-links a:hover { color: var(--yellow); }

    /* ===== REVEAL ANIMATIONS ===== */
    .rv {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    }
    .rv.visible { opacity: 1; transform: translateY(0); }
    .rv-d1 { transition-delay: 0.1s; }
    .rv-d2 { transition-delay: 0.2s; }
    .rv-d3 { transition-delay: 0.3s; }
    .rv-d4 { transition-delay: 0.4s; }
    .rv-d5 { transition-delay: 0.5s; }

    /* Section title slide-from-left animation */
    .rv-left {
      opacity: 0; transform: translateX(-40px);
      transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    }
    .rv-left.visible { opacity: 1; transform: translateX(0); }

    /* Programme timeline slide-from-left */
    .rv-slide {
      opacity: 0; transform: translateX(-30px);
      transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    }
    .rv-slide.visible { opacity: 1; transform: translateX(0); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      * { max-width: 100vw; }
      section, .container, .hero, .nav, .nav__inner, footer { overflow-x: hidden; }
      .nav__links { display: none; }
      .nav__actions { display: none; }
      .nav__burger { display: flex; }
      .hero__visual { width: 100%; }
      .hero__motion { width: clamp(280px, 60vw, 500px); }
      .hero__logo-svg { width: clamp(220px, 45vw, 400px); }
      .about__cols { grid-template-columns: 1fr; gap: 24px; }
      .about__stats-bar { grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: -30px; padding: 20px 0; }
      .about__stat { padding: 0 12px; }
      .about__stat-val { font-size: 1.3rem; }
      .about__stat-label { font-size: 0.6rem; }
      .prog-grid { grid-template-columns: 60px repeat(5, 1fr); font-size: 0.85em; }
      .prog-grid__header { padding: 10px 6px; font-size: 0.5rem; }
      .prog-cell { padding: 8px 6px; }
      .prog-cell__title { font-size: 0.7rem; }
      .prog-cell__speaker { font-size: 0.55rem; }
      .prog-cell__format { font-size: 0.45rem; padding: 2px 5px; }
      .speakers-grid .spk-row:nth-child(n+7) { display: none; }
      .cards__grid { grid-template-columns: 1fr 1fr; }
      .news__grid { grid-template-columns: 1fr 1fr; }
      .practical__grid { grid-template-columns: 1fr; }
      .why-lux__grid { grid-template-columns: 1fr 1fr; }
      .zones__grid { grid-template-columns: 1fr; }
      .zone__img { width: 50%; bottom: 5px; right: 5px; }
      .awards__layout { grid-template-columns: 1fr; }
      .footer__grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .container { padding: 0 20px; } .nav { padding: 0 20px; }
      .nav__logo img { height: 12px; }
      .section { padding: 80px 0; }
      .hero { padding: calc(var(--nav-h) + 10px) 20px 40px; }
      .hero__visual { flex-direction: column; align-items: flex-start; }
      .hero__motion { width: 80%; margin-left: 20%; }
      .hero__logo-svg { position: static; width: 70%; margin-top: -20%; }
      .hero__tagline { font-size: 1rem; }
      .hero__bottom { flex-direction: column; gap: 24px; align-items: flex-start; }
      .hero__bottom-right { text-align: left; }
      .hero__ctas { flex-direction: column; width: 100%; }
      .hero__ctas .btn-glass { width: 100%; justify-content: center; }
      .stats { padding: 60px 0; }
      .stats__grid { grid-template-columns: repeat(2, 1fr); }
      .stats__item { padding: 36px 20px; }
      .speakers-stack-wrapper { gap: 32px; }
      .speakers-grid .spk-row:nth-child(n+5) { display: none; }
      .tinder-stack { width: 260px; height: 380px; }
      .speakers-grid { grid-template-columns: 1fr; }
      .about__stats-bar {
        grid-template-columns: repeat(5, 1fr); gap: 0;
        padding: 16px 0; margin-top: -20px; border-radius: var(--r-md);
      }
      .about__stat { padding: 0 8px; }
      .about__stat-val { font-size: 1.1rem; }
      .about__stat-label { font-size: 0.55rem; letter-spacing: 0.03em; }
      .about__stat:not(:last-child)::after { top: 10%; height: 80%; }
      /* Programme: condensed list on mobile */
      .prog-grid { display: flex; flex-direction: column; gap: 2px; }
      .prog-grid__header { display: none; }
      .prog-time {
        grid-column: unset; padding: 10px 16px;
        background: #000; color: #fff; font-size: 0.75rem;
        border-radius: 0;
      }
      .prog-cell {
        padding: 10px 16px; border-left-width: 3px;
        display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px;
      }
      .prog-cell--break { padding: 6px 16px; }
      .prog-cell--span { grid-column: unset; }
      .prog-cell__title { font-size: 0.8rem; }
      .prog-cell__speaker { font-size: 0.7rem; width: 100%; }
      .prog-cell__format { font-size: 0.55rem; }
      .prog-legend { flex-wrap: wrap; gap: 8px; }
      .prog-legend__item { font-size: 0.6rem; }
      .about__visual { aspect-ratio: 16/9; }
      .about__visual .about__play { width: 72px; height: 72px; }
      .about__visual .about__play svg { width: 22px; height: 24px; }
      .cards__grid, .tickets__grid, .awards__cats, .news__grid, .why-lux__grid { grid-template-columns: 1fr; }
      .card__img { height: 140px; }
      .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
      .footer__grid > div:first-child { grid-column: span 2; }
      .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
      .footer__brand-desc { max-width: 100%; }
      .keep-in-touch__inner { grid-template-columns: 1fr; gap: 32px; }
      .keep-in-touch__form { flex-direction: column; }
      .keep-in-touch { padding: 60px 0; }
      /* Chat bubble above sticky bar */
      .chat-fab { bottom: 68px; right: 16px; width: 52px; height: 52px; }
      .chat-fab svg { width: 22px; height: 22px; }
      .chat-window { width: calc(100vw - 24px); right: 12px; bottom: 130px; max-height: 420px; }
    }

    /* ===== NEWS ===== */
    .news { background: #fff; }
    .news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .news__card {
      border-radius: var(--r-lg); overflow: hidden; background: #fff;
      border: 1px solid var(--glass-border); transition: all 0.35s var(--ease);
      display: flex; flex-direction: column;
    }
    .news__card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
    .news__img { height: 180px; background-size: cover; background-position: center; }
    .news__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
    .news__date { font-family: var(--mono); font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
    .news__title { font-family: var(--body); font-weight: 700; font-size: 1.1rem; line-height: 1.4; margin-bottom: 8px; }
    .news__excerpt { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

    /* ===== WHY LUXEMBOURG ===== */
    .why-lux { background: #000; color: #fff; }
    .why-lux .section__eyebrow { color: var(--yellow); }
    .why-lux .section__title .sans { color: #fff; }
    .why-lux .section__title .it { color: rgba(255,255,255,0.5); }
    .why-lux .section__desc { color: rgba(255,255,255,0.5); }
    .why-lux__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .why-lux__card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--r-lg); padding: 32px 28px;
      transition: all 0.35s var(--ease);
    }
    .why-lux__card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); transform: translateY(-4px); }
    .why-lux__num {
      font-family: var(--mono); font-size: 0.7rem; font-weight: 800;
      color: var(--yellow); margin-bottom: 16px; letter-spacing: 0.05em;
    }
    .why-lux__title { font-family: var(--body); font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; }
    .why-lux__desc { font-size: 0.9rem; line-height: 1.65; color: rgba(255,255,255,0.55); }

    /* ===== PRACTICAL ===== */
    .practical { background: #F5F5F0; }
    .practical__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
    .practical__h3 { font-family: var(--body); font-weight: 700; font-size: 1.3rem; margin-bottom: 16px; }
    .practical__h4 { font-family: var(--mono); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; color: var(--text); }
    .practical__address { font-size: 1.05rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 24px; }
    .practical__map { border-radius: var(--r-lg); overflow: hidden; }
    .practical__item { margin-bottom: 24px; }
    .practical__item p { font-size: 0.95rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 8px; }
    .practical__visa { background: #fff; padding: 40px; border-radius: var(--r-lg); border: 1px solid var(--glass-border); }
    .practical__visa p { font-size: 0.95rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 12px; }

    /* ===== KEEP IN TOUCH ===== */
    .keep-in-touch { background: #000; color: #fff; padding: 80px 0; }
    .keep-in-touch__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .keep-in-touch__title { font-family: var(--body); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 12px; }
    .keep-in-touch__desc { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
    .keep-in-touch__actions { display: flex; flex-direction: column; gap: 20px; }
    .keep-in-touch__form { display: flex; gap: 10px; }
    .keep-in-touch__input {
      flex: 1; padding: 14px 20px; border-radius: var(--r-full);
      border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06);
      color: #fff; font-family: var(--body); font-size: 0.9rem; outline: none;
      transition: border-color 0.3s;
    }
    .keep-in-touch__input::placeholder { color: rgba(255,255,255,0.35); }
    .keep-in-touch__input:focus { border-color: var(--yellow); }
    .keep-in-touch__social { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
    .keep-in-touch__social a {
      font-family: var(--mono); font-size: 0.75rem; color: rgba(255,255,255,0.5);
      transition: color 0.25s; text-transform: uppercase; letter-spacing: 0.04em;
    }
    .keep-in-touch__social a:hover { color: var(--yellow); }

    /* ===== RESPONSIVE ADDITIONS ===== */
    @media (max-width: 1024px) {
      .news__grid { grid-template-columns: 1fr 1fr; }
      .why-lux__grid { grid-template-columns: 1fr 1fr; }
      .practical__grid { grid-template-columns: 1fr; gap: 40px; }
      .keep-in-touch__inner { grid-template-columns: 1fr; gap: 40px; }
      .speakers-stack-wrapper { flex-direction: column; align-items: center; }
    }
    @media (max-width: 768px) {
      .news__grid { grid-template-columns: 1fr; gap: 16px; }
      .news__img { height: 140px; }
      .news__body { padding: 18px; }
      .news__title { font-size: 1rem; }
      .why-lux__grid { grid-template-columns: 1fr; gap: 12px; }
      .why-lux__card { padding: 24px 20px; }
      .why-lux__title { font-size: 1rem; }
      .why-lux__desc { font-size: 0.85rem; }
      .practical__grid { grid-template-columns: 1fr; gap: 32px; }
      .practical__visa { padding: 24px; }
      .practical__map iframe { height: 250px; }
      .keep-in-touch__inner { grid-template-columns: 1fr; gap: 24px; }
      .keep-in-touch__form { flex-direction: column; }
      .keep-in-touch { padding: 60px 0; }
      .keep-in-touch__social { gap: 10px; }
      .about__stats-bar { grid-template-columns: repeat(3, 1fr); padding: 20px 0; }
      .about__stat:nth-child(4), .about__stat:nth-child(5) { display: none; }
      .about__stat-val { font-size: 1.2rem; }
      .speakers-stack-wrapper { flex-direction: column; align-items: center; gap: 24px; }
      .tinder-stack { width: 280px; height: 400px; }
      .tinder-card__name { font-size: 1.1rem; }
      .tinder-card__info { padding: 16px 20px; }
      .side-cta { display: none; }
    }
    @media (max-width: 480px) {
      .hero__motion { width: 90%; margin-left: 10%; }
      .hero__logo-svg { width: 80%; }
      .tinder-stack { width: 260px; height: 370px; }
      .about__stats-bar { grid-template-columns: repeat(3, 1fr); }
      .stats__num { font-size: clamp(1.8rem, 8vw, 2.5rem); }
      .stats__item { padding: 28px 12px; }
      .btn-glass--lg { padding: 14px 24px; font-size: 0.75rem; }
      .footer__grid { grid-template-columns: 1fr; }
      .footer__grid > div:first-child { grid-column: span 1; }
      .nav__mobile a { font-size: 1.2rem; }
      .chat-fab { bottom: 80px; right: 12px; width: 48px; height: 48px; }
      .chat-window { width: calc(100vw - 24px); right: 12px; bottom: 140px; max-height: 380px; }
    }

    /* ===== SCROLL NAV INDICATOR ===== */
    .scroll-nav {
      position: fixed; left: 24px; top: 50%; transform: translateY(-50%);
      z-index: 900; display: flex; flex-direction: column; gap: 0;
      opacity: 0; transition: opacity 0.4s;
    }
    .scroll-nav.visible { opacity: 1; }
    .scroll-nav__item {
      display: flex; align-items: center; gap: 10px;
      padding: 8px 0; cursor: pointer; text-decoration: none;
    }
    .scroll-nav__dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(0,0,0,0.15); flex-shrink: 0;
      transition: all 0.35s var(--ease);
    }
    .scroll-nav__item.active .scroll-nav__dot {
      background: var(--black); width: 10px; height: 10px;
      box-shadow: 0 0 0 3px rgba(232,224,0,0.4);
    }
    .scroll-nav__label {
      font-family: var(--mono); font-size: 0; font-weight: 600;
      color: var(--text-muted); letter-spacing: 0.04em;
      text-transform: uppercase; white-space: nowrap;
      opacity: 0; transform: translateX(-6px);
      transition: all 0.3s var(--ease);
    }
    .scroll-nav__item.active .scroll-nav__label,
    .scroll-nav__item:hover .scroll-nav__label {
      font-size: 0.6rem; opacity: 1; transform: translateX(0);
    }
    @media (max-width: 1024px) { .scroll-nav { display: none; } }

    /* ===== CHAT WIDGET ===== */
    .chat-fab {
      position: fixed; bottom: 28px; right: 28px; z-index: 9999;
      width: 60px; height: 60px; border-radius: 50%;
      background: var(--black); color: #fff; border: none;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 24px rgba(0,0,0,0.18);
      transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
      cursor: pointer;
    }
    .chat-fab:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(0,0,0,0.25); }
    .chat-fab svg { width: 26px; height: 26px; transition: opacity 0.2s, transform 0.2s; }
    .chat-fab .chat-fab__close { position: absolute; opacity: 0; transform: rotate(-90deg) scale(0.6); }
    .chat-fab.open .chat-fab__open { opacity: 0; transform: rotate(90deg) scale(0.6); }
    .chat-fab.open .chat-fab__close { opacity: 1; transform: rotate(0) scale(1); }

    .chat-window {
      position: fixed; bottom: 100px; right: 28px; z-index: 9998;
      width: 380px; max-height: 520px; border-radius: var(--r-lg);
      background: #fff; border: 1px solid var(--glass-border);
      box-shadow: 0 12px 48px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
      display: flex; flex-direction: column;
      opacity: 0; transform: translateY(16px) scale(0.96);
      pointer-events: none;
      transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    }
    .chat-window.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

    .chat-header {
      padding: 20px 24px; background: var(--black); color: #fff;
      border-radius: var(--r-lg) var(--r-lg) 0 0;
      display: flex; align-items: center; gap: 12px;
    }
    .chat-header__avatar {
      width: 38px; height: 38px; border-radius: 50%; background: var(--yellow);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--mono); font-weight: 800; font-size: 0.8rem; color: var(--black);
    }
    .chat-header__info { flex: 1; }
    .chat-header__name { font-family: var(--mono); font-weight: 700; font-size: 0.85rem; }
    .chat-header__status { font-size: 0.7rem; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 6px; }
    .chat-header__dot { width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; }

    .chat-messages {
      flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 12px;
      min-height: 280px; max-height: 340px;
    }
    .chat-msg {
      max-width: 82%; padding: 12px 16px; font-size: 0.875rem; line-height: 1.5;
      border-radius: var(--r-md); animation: chatIn 0.3s var(--ease);
    }
    @keyframes chatIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
    .chat-msg--bot {
      align-self: flex-start; background: var(--dark-surface); color: var(--text);
      border-bottom-left-radius: 4px;
    }
    .chat-msg--user {
      align-self: flex-end; background: var(--black); color: #fff;
      border-bottom-right-radius: 4px;
    }
    .chat-msg__time {
      font-size: 0.65rem; color: var(--text-muted); margin-top: 4px;
      font-family: var(--mono);
    }
    .chat-msg--user .chat-msg__time { color: rgba(255,255,255,0.4); }

    .chat-input-area {
      display: flex; align-items: center; gap: 8px;
      padding: 14px 16px; border-top: 1px solid var(--glass-border);
    }
    .chat-input {
      flex: 1; border: 1px solid var(--glass-border); border-radius: var(--r-full);
      padding: 10px 18px; font-family: var(--body); font-size: 0.85rem;
      outline: none; transition: border-color 0.25s;
      background: var(--dark); color: var(--text);
    }
    .chat-input::placeholder { color: var(--text-muted); }
    .chat-input:focus { border-color: var(--black); }
    .chat-send {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--black); border: none; color: #fff;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: background 0.2s, transform 0.2s;
      flex-shrink: 0;
    }
    .chat-send:hover { background: #222; transform: scale(1.06); }
    .chat-send:disabled { opacity: 0.35; cursor: default; transform: none; }
    .chat-typing { display: flex; gap: 4px; align-items: center; padding: 12px 16px; align-self: flex-start; }
    .chat-typing span {
      width: 7px; height: 7px; border-radius: 50%; background: var(--text-muted);
      animation: typingDot 1.2s infinite;
    }
    .chat-typing span:nth-child(2) { animation-delay: 0.15s; }
    .chat-typing span:nth-child(3) { animation-delay: 0.3s; }
    @keyframes typingDot { 0%, 60%, 100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-4px); } }

    /* ===== BACK TO TOP ===== */
    .back-to-top {
      position: fixed; bottom: 32px; right: 32px; z-index: 999;
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--text); color: var(--white);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; line-height: 1;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      opacity: 0; visibility: hidden;
      transform: translateY(12px);
      transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
      cursor: pointer; border: none;
    }
    .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
    .back-to-top:hover { background: var(--green); }
