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

    .hero__grid {
      position: absolute; inset: 0; z-index: 10;
      background-image:
        linear-gradient(rgba(0,0,0,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.07) 1px, transparent 1px);
      background-size: 100px 100px;
      pointer-events: none;
    }

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

    .hero__visual {
      position: relative; z-index: 1;
      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-family: var(--title); font-size: clamp(0.95rem, 1.5vw, 1.2rem); line-height: 1.7;
      color: var(--text-secondary); font-weight: 400;
      animation: fadeUp 1s var(--ease) 0.15s both;
    }
    .hero__tagline .it { font-family: var(--title); font-style: normal; }
    .hero__tagline .sans { font-family: var(--title); font-weight: 600; color: var(--text); }

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

    .hero__countdown {
      display: flex; gap: 32px; justify-content: center;
    }
    .hero__cd-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
    .hero__cd-val {
      font-family: var(--title); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.2rem);
      color: var(--black); line-height: 1;
      font-feature-settings: 'zero' 1;
    }
    .hero__cd-label {
      font-family: var(--title); font-size: 0.65rem; 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; } }

    /* ===== HERO MISSION ===== */
    .hero__mission {
      position: relative; z-index: 2;
      display: flex; align-items: center; justify-content: center; gap: 24px;
      text-align: center; padding: 10px 40px 0; margin: 0 auto;
      max-width: 900px;
    }
    .hero__mission::before,
    .hero__mission::after {
      content: ''; flex: 1; height: 1px; background: rgba(0,0,0,0.15);
    }
    .hero__mission span {
      font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.5rem);
      font-style: italic; font-weight: 400; letter-spacing: -0.01em;
      color: #000;
    }

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

    /* ===== 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-md); 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-md);
      border: 1px solid rgba(255,255,255,0.15);
    }
    .card__body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
    .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-md);
      transition: gap 0.3s var(--ease), background 0.3s;
      width: fit-content;
    }
    .card__link:hover { gap: 10px; background: #222; }
    .card__icon { display: none; }

    /* ===== ZONES ===== */
    .zones { border-top: 1px solid var(--glass-border); 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-md); padding: 52px 40px;
      position: relative; overflow: hidden;
      background: #f8f8f6; border: 1px solid rgba(0,0,0,0.06);
      transition: all 0.4s var(--ease);
      display: flex; flex-direction: column; justify-content: flex-start; min-height: 360px;
    }
    .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__visual {
      position: absolute; top: 16px; right: 16px;
      width: 120px; height: 120px; object-fit: contain; opacity: 0.85;
      transition: opacity 0.3s;
    }
    .zone:hover .zone__visual { opacity: 1; }
    .zone__num {
      position: absolute; top: 24px; right: 32px;
      font-family: var(--serif); font-style: italic; font-size: 6rem;
      line-height: 1; opacity: 0.06; display: none;
    }
    .zone--intel .zone__num { color: #D4609C; }
    .zone--fintech .zone__num { color: #F5A623; }
    .zone--launch .zone__num { color: #5CC8B0; }
    .zone--lu .zone__num { color: #7BB8E0; }
    .zone__tag {
      font-family: var(--mono); font-size: 0.6rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 12px;
    }
    .zone--intel .zone__tag { color: #E88ABF; }
    .zone--fintech .zone__tag { color: #F5A623; }
    .zone--launch .zone__tag { color: #5CC8B0; }
    .zone--lu .zone__tag { color: #7BB8E0; }
    .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: 500;
      padding: 5px 14px; border-radius: var(--r-md);
      color: rgba(0,0,0,0.5);
    }
    .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: 0px 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); }

    /* ===== ZONES ON WHITE BG ===== */
    #zones { background: #fff !important; color: #000; }
    #zones .section__eyebrow { color: #111; }
    #zones .section__title { color: #000; }
    #zones .section__title .it { color: rgba(0,0,0,0.4); -webkit-text-fill-color: initial; }
    #zones .section__desc { color: #444; }
    #zones .zone { background-color: #f8f8f6; color: #111; border: 1px solid rgba(0,0,0,0.08); }
    #zones .zone__title { color: #111; font-size: 1.6rem; }
    #zones .zone__desc { color: #444; font-size: 0.95rem; }
    #zones .zone__pill { border-color: rgba(0,0,0,0.12); color: rgba(0,0,0,0.6); background: rgba(0,0,0,0.04); }
    .zone__img {
      position: absolute; bottom: 10px; right: 10px;
      width: 55%; max-width: 280px; height: auto;
      object-fit: contain; opacity: 0.45;
      pointer-events: none; z-index: 0;
    }
    .zone:hover .zone__img { opacity: 0.55; }
    .zone__tag, .zone__title, .zone__desc, .zone__pills { position: relative; z-index: 1; }

    /* ===== WHY-ATTEND ON BLACK BG ===== */
    #why-attend { background: #1a1a1a !important; color: #fff; }
    #why-attend .section__eyebrow { color: var(--yellow); }
    #why-attend .section__title { color: #fff; }
    #why-attend .section__title .it { color: rgba(255,255,255,0.5); }
    #why-attend .card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
    #why-attend .card__title { color: #fff; }
    #why-attend .card__desc { color: rgba(255,255,255,0.7); }
    #why-attend .card__link { color: var(--yellow); }

    /* ===== AWARDS ON WHITE BG ===== */
    #awards { background: #fff !important; color: #000; }
    #awards .section__eyebrow { color: var(--green); }
    #awards .section__title { color: #000; }
    #awards .section__desc { color: #444; }
    #awards .awards__prize-tag { color: #000; }
    #awards .acat { background: #f5f5f5; border-color: #e0e0e0; }
    #awards .acat__name { color: #000; }
    #awards .acat__count { color: #666; }

    /* ===== SPEAKERS SECTION ===== */
    #speakers { background: #000; color: #fff; }
    #speakers .section__title { color: #fff; }
    #speakers .section__title .it { color: rgba(255,255,255,0.5); }
    #speakers .section__desc { color: rgba(255,255,255,0.5); }
    #speakers .spk-row { background: #111; border-color: rgba(255,255,255,0.08); }
    #speakers .spk-row__name { color: #fff; }
    #speakers .spk-row__role { color: rgba(255,255,255,0.45); }
    #speakers .section__eyebrow {
      font-size: 1.1rem; font-weight: 800; letter-spacing: 0.12em;
      color: var(--green); background: linear-gradient(135deg, var(--yellow) 0%, var(--green) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text; padding: 6px 0;
    }

    /* ===== 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: var(--r-md); 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; object-position: center top; background: #f0f0ec; }
    .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: var(--r-md); 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: var(--r-md); border: 1px solid rgba(255,255,255,0.12);
      transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    }
    .spk-row:hover { border-color: rgba(255,255,255,0.25); box-shadow: 0 4px 16px rgba(0,0,0,0.3); transform: translateY(-2px); }
    .spk-row__photo { width: 56px; height: 56px; border-radius: var(--r-md); object-fit: cover; object-position: center 15%; flex-shrink: 0; background: #1a1a1a; transition: filter 0.3s; }
    .spk-row:nth-child(n+4) .spk-row__photo { }
    .spk-row:nth-child(n+4):hover .spk-row__photo { }
    .spk-row__name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem; color: #fff; }
    .spk-row__role { font-size: 0.8rem; color: rgba(255,255,255,0.85); margin-top: 4px; font-weight: 500; }

    @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; gap: 10px; }
      .spk-row__photo { width: 52px; height: 52px; }
    }

    /* ===== TICKETS ===== */
    .tickets { border-top: 1px solid var(--glass-border); background: #111; 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-md); 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: 0px 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: #fff; 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__ttc { font-family: var(--mono); font-size: 0.75rem; color: #fff; margin-bottom: 2px; }
    .tkt__note { font-size: 0.8125rem; color: #fff; margin-bottom: 32px; }
    .tkt__features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; flex: 1; }
    .tkt__feat { display: flex; align-items: center; gap: 10px; font-size: 0.9375rem; color: #fff; }
    .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; margin-top: auto; padding-top: 14px; padding-bottom: 14px; }
    .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-md);
      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: var(--r-md); }
    .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-md); 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: var(--r-md);
    }
    .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: var(--r-md);
      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: var(--r-md); 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: var(--r-md); 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: var(--r-md);
      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-md);
      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: #fff; }
    .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); }
    /* 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-md);
      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__toggle {
      position: fixed; right: 24px; top: calc(65% - 148px);
      z-index: 901; width: 28px; height: 28px; border-radius: 50%;
      background: rgba(0,0,0,0.6); color: #fff; border: none;
      font-size: 0.85rem; cursor: pointer;
      box-shadow: 0 2px 12px rgba(0,0,0,0.15);
      transition: all 0.3s var(--ease);
      display: flex; align-items: center; justify-content: center;
    }
    .side-cta__toggle:hover { background: rgba(0,0,0,0.8); transform: scale(1.1); }
    .side-cta__toggle.hidden { display: none; }
    .side-cta {
      position: fixed; right: 20px; top: 65%; transform: translateY(-50%);
      z-index: 900; display: flex; flex-direction: column; gap: 8px;
      transition: right 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.3s;
    }
    .side-cta.closed { right: -300px; opacity: 0; pointer-events: none; }
    .side-cta__item {
      display: flex; align-items: center; gap: 12px;
      padding: 14px 20px; border-radius: var(--r-md);
      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 { display: none; }
    .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: #2A2A2A; color: #fff; }
    .side-cta__item--ticket { background: #444444; color: #fff; }
    .side-cta__item--newsletter { background: #333333; color: #fff; }
    .side-cta__item--contact { background: #1A1A1A; color: #fff; }
    /* 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; }
    @media (max-width: 1024px) {
      .side-cta { display: none !important; }
      .side-cta__toggle { display: none !important; }
    }

    /* ===== 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; }
    .cta .cta__actions .btn-glass { background: #000 !important; border: 1px solid rgba(255,255,255,0.25) !important; color: #fff !important; }
    .cta .cta__actions .btn-glass:hover { background: #222 !important; border-color: rgba(255,255,255,0.5) !important; color: #fff !important; }
    .cta .cta__actions .btn-glass.btn-glass--accent { background: var(--yellow) !important; border-color: var(--yellow) !important; color: #000 !important; }
    .cta .cta__actions .btn-glass.btn-glass--accent:hover { background: var(--yellow-light) !important; border-color: var(--yellow-light) !important; color: #000 !important; }

    /* ===== 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-md);
      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); }

    /* ===== 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: background 0.35s var(--ease), box-shadow 0.35s var(--ease), width 0.35s var(--ease), height 0.35s var(--ease);
    }
    .scroll-nav__item.active .scroll-nav__dot {
      background: var(--yellow); width: 10px; height: 10px;
      box-shadow: 0 0 0 3px rgba(232,224,0,0.25);
    }
    .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: color 0.3s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease), font-size 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);
    }
    /* Inverted theme when the active section has a dark background */
    .scroll-nav--on-dark .scroll-nav__dot { background: rgba(255,255,255,0.3); }
    .scroll-nav--on-dark .scroll-nav__item.active .scroll-nav__dot {
      background: var(--yellow); box-shadow: 0 0 0 3px rgba(232,224,0,0.35);
    }
    .scroll-nav--on-dark .scroll-nav__label { color: rgba(255,255,255,0.6); }
    @media (max-width: 1024px) { .scroll-nav { display: none; } }

    /* ===== HERO INSTITUTIONAL PARTNERS ===== */
    .hero__partners {
      margin-top: 56px; text-align: center;
      background: #111; padding: 28px 0;
      overflow: hidden;
      width: 100vw; position: relative; left: 50%; transform: translateX(-50%);
    }
    .hero__partners-label {
      font-family: var(--mono); font-size: 0.6rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(255,255,255,0.4); margin-bottom: 20px;
    }
    .hero__partners-label span { color: rgba(255,255,255,0.7); }
    .hero__partners-logos {
      display: flex; align-items: center; justify-content: center; gap: 60px;
      flex-wrap: wrap;
    }
    .hero__partners-logos img {
      height: 34px; width: auto; flex-shrink: 0;
      filter: brightness(0) invert(1); opacity: 0.7;
      transition: opacity 0.3s;
    }
    .hero__partners-logos img:hover { opacity: 1; }
    @keyframes partnersScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ===== STICKY TICKET CTA ===== */
    .sticky-ticket {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
      background: rgba(0,0,0,0.95); backdrop-filter: blur(12px);
      padding: 12px 20px; display: flex; align-items: center; justify-content: center; gap: 16px;
      transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
      border-top: 1px solid rgba(255,255,255,0.1);
      will-change: transform; contain: layout;
    }
    .sticky-ticket.visible { transform: translateY(0); }
    .sticky-ticket__text { color: #fff; font-family: var(--mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; }
    .sticky-ticket__text strong { color: #E8E000; }
    .sticky-ticket .btn-glass--accent { padding: 10px 24px; font-size: 0.7rem; }
    @media(max-width:768px) {
      .sticky-ticket__text { font-size: 0.6rem; }
      .sticky-ticket { gap: 10px; padding: 10px 12px; }
      .sticky-ticket .btn-glass--accent { padding: 8px 16px; font-size: 0.65rem; }
    }
    @media(max-width:480px) {
      .sticky-ticket { flex-direction: column; gap: 6px; padding: 10px 16px; text-align: center; }
      .sticky-ticket .btn-glass--accent { width: 100%; justify-content: center; }
    }

    /* ===== 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-md);
      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: 0px 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-md);
      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); } }

    @media (max-width: 768px) {
      .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; }
    }
    @media (max-width: 480px) {
      .chat-fab { bottom: 80px; right: 12px; width: 48px; height: 48px; }
      .chat-window { width: calc(100vw - 24px); right: 12px; bottom: 140px; max-height: 380px; }
    }

    /* ===== CONTACT FORM ===== */
    .contact { background: #fff; border-top: 1px solid var(--glass-border); }
    .contact__inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
    }
    .contact__left { padding-top: 8px; }
    .contact__form {
      display: flex; flex-direction: column; gap: 16px;
      background: var(--glass); border: 1px solid var(--glass-border);
      border-radius: var(--r-md); padding: 40px; backdrop-filter: blur(8px);
    }
    .contact__form label {
      font-family: var(--mono); font-size: 0.65rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary);
      margin-bottom: 2px;
    }
    .contact__form select,
    .contact__form input,
    .contact__form textarea {
      width: 100%; padding: 12px 16px; border-radius: var(--r-md);
      border: 1px solid var(--glass-border); background: #fff;
      font-family: var(--body); font-size: 0.9rem; color: var(--text);
      outline: none; transition: border-color 0.3s;
    }
    .contact__form select:focus,
    .contact__form input:focus,
    .contact__form textarea:focus { border-color: var(--black); }
    .contact__form textarea { min-height: 120px; resize: vertical; }
    .contact__form select { cursor: pointer; appearance: none; -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
    }
    @media (max-width: 1024px) {
      .contact__inner { grid-template-columns: 1fr; gap: 40px; }
    }
    @media (max-width: 768px) {
      .contact__form { padding: 24px; }
    }

    .back-to-top { right: 100px; }

