:root{

    /* PRIMARY COLORS */
    --red: #E63946;
    --red-dark: #C1121F;
    --red-soft: #FFE5E7;

    --blue: #1D4ED8;
    --blue-dark: #1E3A8A;
    --blue-soft: #EAF1FF;

    /* NEUTRALS */
    --white: #FFFFFF;
    --bg: #F8FAFC;
    --card: #FFFFFF;

    --text: #111827;
    --text-light: #6B7280;

    --border: #E5E7EB;

    /* SHADOWS */
    --shadow-sm: 0 2px 8px rgba(0,0,0,.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,.08);
    --shadow-lg: 0 16px 40px rgba(0,0,0,.12);

    --radius: 16px;
}

/* ===================================== */
/* BASE */
/* ===================================== */

/* html{
    scroll-behavior:smooth;
}

body{
    font-family:'Manrope',sans-serif;
    background:var(--bg);
    color:var(--text);
    margin:0;
    padding:0;
    overflow-x:hidden;
} */

.container{
    width:min(1200px,92%);
    margin:auto;
}

.page-section{
    padding:90px 0;
}

/* ===================================== */
/* HEADER */
/* ===================================== */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(0,0,0,.06);
}

.navbar{
    height:72px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.navbar-brand img{
    height:42px;
}

.nav-link{
    color:var(--text);
    font-weight:600;
    transition:.25s;
}

.nav-link:hover{
    color:#3aa3e9;
}



/* ===================================== */
/* BUTTONS */
/* ===================================== */

.btn-primary{
    background:var(--red);
    border:none;
    color:#fff;

    padding:12px 26px;
    border-radius:999px;

    font-weight:700;
    text-decoration:none;

    display:inline-flex;
    align-items:center;
    gap:.6rem;

    transition:.25s;
}

.btn-primary:hover{
    background:var(--red-dark);
    transform:translateY(-2px);
}

.btn-outline{
    background:#fff;
    border:2px solid var(--blue);
    color:var(--blue);
}

.btn-outline:hover{
    background:var(--blue);
    color:#fff;
}

/* ===================================== */
/* TITLES */
/* ===================================== */

.section-title{
    font-family:'Bebas Neue',sans-serif;
    font-size:clamp(2.5rem,6vw,5rem);
    letter-spacing:.03em;
    line-height:1;
    margin-bottom:1rem;
}

.section-title em{
    color:var(--blue);
    font-style:normal;
}

.section-sub{
    max-width:auto;
    margin:auto;
    color:var(--text-light);
    font-size:1.05rem;
    line-height:1.8;
}

/* ===================================== */
/* CARDS */
/* ===================================== */

.card,
.speaker-card,
.venue-info-card,
.why-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    box-shadow:var(--shadow-sm);

    transition:.3s;
}

.card:hover,
.speaker-card:hover,
.venue-info-card:hover,
.why-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow-md);
}

/* ===================================== */
/* ACCENT STRIP */
/* ===================================== */

.accent-line{
    width:80px;
    height:4px;
    background:linear-gradient(
        90deg,
        var(--red),
        var(--blue)
    );
    border-radius:999px;
}

/* ===================================== */
/* FOOTER */
/* ===================================== */

footer{
    background:#0F172A;
    color:#CBD5E1;
    padding:80px 0 30px;
}

footer h4{
    color:#fff;
}

footer a{
    color:#CBD5E1;
    text-decoration:none;
}

footer a:hover{
    color:#fff;
}

/* ===================================== */
/* MOBILE */
/* ===================================== */

@media(max-width:768px){

    .page-section{
        padding:70px 0;
    }

    .section-title{
        text-align:center;
    }

    .section-sub{
        text-align:center;
    }
}



/* ==========================================
   TOP PROMO BAR
========================================== */

.top-promo-bar{
    background:linear-gradient(90deg,#0f172a,#1e3a8a,#dc2626);
    color:#fff;
    text-align:center;
    font-size:14px;
    font-weight:600;
    letter-spacing:.4px;
    padding:10px 20px;
}

.register-pill{
    background:#fff;
    color:#dc2626;
    border-radius:999px;
    padding:5px 14px;
    font-size:12px;
    font-weight:700;
}

/* ==========================================
   TOP MARQUEE BAR
========================================== */

.topbar{
    background:#111827;
    color:#fff;
    overflow:hidden;
    white-space:nowrap;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.topbar-marquee{
    display:inline-block;
    padding:8px 0;
    animation:marquee 35s linear infinite;
    font-size:14px;
}

.topbar .sep{
    color:#3b82f6;
    margin:0 10px;
}

@keyframes marquee{
    from{transform:translateX(0);}
    to{transform:translateX(-50%);}
}

/* ==========================================
   LOGO SCROLL BAR
========================================== */

.logo-scroll-bar{
    background:#0f172a;
    overflow:hidden;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.logo-marquee-track{
    display:flex;
    align-items:center;
    gap:50px;
    width:max-content;
    animation:logoScroll 20s linear infinite;
    padding:8px 20px;
}

@keyframes logoScroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

.lsb-logo{
    width:70px;
    height:70px;
    object-fit:contain;
    flex-shrink:0;
    transition:.3s ease;
}

.lsb-logo:hover{
    transform:scale(1.08);
}


/* ==========================================
   RAS 2.0 NAVBAR
========================================== */

:root{
    --nav-bg:#ffffff;
    --nav-border:#e5e7eb;
    --nav-text:#0f172a;
    --nav-muted:#64748b;
    --nav-accent:#e94c3a;
    --nav-dark:#07142f;
}

/* ==========================================
   TOP PROMO BAR
========================================== */

.top-promo-bar{
    background:var(--nav-accent);
    color:#fff;
    text-align:center;
    padding:10px 20px;
    font-size:.82rem;
    font-weight:600;
    letter-spacing:.02em;
}

.register-pill{
    background:rgba(255,255,255,.18);
    padding:4px 12px;
    border-radius:999px;
    font-size:.75rem;
}

/* ==========================================
   MARQUEE
========================================== */

.topbar{
    background:var(--nav-dark);
    color:#fff;
    overflow:hidden;
    height:42px;
    display:flex;
    align-items:center;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.topbar-marquee{
    display:flex;
    align-items:center;
    gap:60px;
    white-space:nowrap;
    animation:rasMarquee 35s linear infinite;
    font-size:.78rem;
    font-weight:500;
}

.sep{
    opacity:.5;
    margin:0 10px;
}

@keyframes rasMarquee{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* ==========================================
   NAVBAR
========================================== */
/* ══════════════════════════════════════
   TOKENS
══════════════════════════════════════ */
:root {
  --nav-text: #18181B;
  --nav-border: rgba(0,0,0,.08);
  --nav-accent: #2563EB;
}

*,*::before,*::after{ box-sizing: border-box; }

/* ══════════════════════════════════════
   TOP PROMO BAR
══════════════════════════════════════ */
.top-promo-bar{
  width:100%;
  background:#0F1419;
  color:#fff;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  flex-wrap:wrap;
  padding:9px 16px;
  text-align:center;
  font-family: 'Didot Display Regular', serif;
  font-size:1.3rem;
  font-weight:500;
  letter-spacing:.01em;
  line-height:1.4;
}

.top-promo-bar .register-pill{
  display:inline-flex;
  align-items:center;
  background:rgba(37,99,235,.22);
  border:1px solid rgba(37,99,235,.4);
  color:#fff;
  font-size:.72rem;
  font-weight:600;
  padding:3px 10px;
  border-radius:999px;
  white-space:nowrap;
}

/* ══════════════════════════════════════
   MARQUEE BAR
══════════════════════════════════════ */
.topbar{
  width:100%;
  height:40px;
  overflow:hidden;
  background:var(--nav-accent);
  position:relative;
}

.topbar-marquee{
  display:flex;
  align-items:center;
  height:100%;
  gap:56px;
  white-space:nowrap;
  width:max-content;
  animation:topbar-scroll 28s linear infinite;
  padding-left:24px;
}

.topbar-marquee span{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.02em;
}

.topbar-marquee .sep{ opacity:.55; font-weight:400; }

@keyframes topbar-scroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

@media (prefers-reduced-motion: reduce){
  .topbar-marquee{ animation:none; }
}

/* ══════════════════════════════════════
   MAIN NAV
══════════════════════════════════════ */
.main-nav{
  position:sticky;
  top:0;
  z-index:999;
  width:100%;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--nav-border);
  transition:box-shadow .25s ease;
}

.main-nav.scrolled{
  box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.nav-inner{
  max-width:1440px;
  margin:auto;
  height:78px;
  padding:0 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  position:relative;
}

/* ── Logo ── */
.nav-logo{
  text-decoration:none;
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.nav-logo-mark{ width:52px; height:52px; flex-shrink:0; }
.nav-logo-mark img{ width:100%; height:100%; object-fit:contain; display:block; }

/* ── Links (desktop only — hidden below 992px, see media query) ── */
.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  flex-wrap:nowrap;
  min-width:0;
}

.nav-links a{
  display:flex;
  align-items:center;
  gap:6px;
  text-decoration:none;
  color:var(--nav-text);
  font-size:.82rem;
  font-weight:600;
  white-space:nowrap;
  transition:color .25s ease;
}

.nav-links a:hover{ color:#3aa3e9; }

.nav-links .num{
  font-size:.65rem;
  color:#94a3b8;
  font-weight:700;
}

/* ── CTA (desktop only) ── */
.nav-cta{
  height:42px;
  padding:0 20px;
  flex-shrink:0;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--nav-accent);
  color:#fff;
  font-size:.8rem;
  font-weight:600;
  white-space:nowrap;
  text-decoration:none;
  cursor:pointer;
  transition:transform .25s ease, background .25s ease;
}

.nav-cta:hover{
  transform:translateY(-2px);
  background:#1D4ED8;
}

/* ── Hamburger ── */
.nav-hamburger{
  width:42px;
  height:42px;
  flex-shrink:0;
  border:none;
  background:none;
  border-radius:8px;
  cursor:pointer;
  display:none;          /* shown only on mobile, see media query */
  position:relative;
  z-index:1100;           /* stay above the dropdown panel */
  transition:background .2s ease;
}

.nav-hamburger:hover{ background:rgba(0,0,0,.04); }

.nav-hamburger span,
.nav-hamburger span::before,
.nav-hamburger span::after{
  position:absolute;
  content:"";
  display:block;
  width:22px;
  height:2px;
  border-radius:2px;
  background:#111827;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  transition:transform .28s ease, opacity .2s ease, top .28s ease, background .2s ease;
}

.nav-hamburger span::before{ top:-7px; transform:translateX(-50%); }
.nav-hamburger span::after{ top:7px; transform:translateX(-50%); }

.nav-hamburger[aria-expanded="true"] span{ background:transparent; }
.nav-hamburger[aria-expanded="true"] span::before{ top:0; transform:translateX(-50%) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span::after{ top:0; transform:translateX(-50%) rotate(-45deg); }

/* ══════════════════════════════════════
   MOBILE MENU — fixed dropdown panel
   (NOT sticky — sticky requires a specific
   scroll-parent relationship and silently
   fails to "drop down" in many layouts.
   Fixed + max-height transition is reliable
   everywhere, regardless of DOM position.)
══════════════════════════════════════ */
.mobile-menu{
  display:flex;
  flex-direction:column;

  position:fixed;
  left:0;
  right:0;
  top:var(--nav-h, 78px);   /* JS keeps --nav-h in sync with real nav height */

  background:#fff;
  border-top:1px solid rgba(0,0,0,.08);
  box-shadow:0 15px 40px rgba(0,0,0,.12);

  z-index:1050;

  max-height:0;
  overflow-y:auto;
  opacity:0;
  visibility:hidden;
  pointer-events:none;

  transition:max-height .32s ease, opacity .22s ease;
}

.mobile-menu.active{
  max-height:calc(100dvh - var(--nav-h, 78px));
  opacity:1;
  visibility:visible;
  pointer-events:all;
}

.mobile-menu a{
  padding:16px 24px;
  text-decoration:none;
  color:#111827;
  border-bottom:1px solid rgba(0,0,0,.05);
  font-size:.9rem;
  font-weight:500;
  transition:color .2s ease, background .2s ease;
}

.mobile-menu a:last-child{ border-bottom:none; }

.mobile-menu a:hover{
  color:var(--nav-accent);
  background:rgba(37,99,235,.04);
}

/* dim/backdrop behind the open mobile menu */
.mobile-menu-backdrop{
  position:fixed;
  inset:0;
  background:rgba(10,10,10,.35);
  z-index:1040;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .25s ease, visibility .25s ease;
}

.mobile-menu-backdrop.active{
  opacity:1;
  visibility:visible;
  pointer-events:all;
}

/* lock page scroll while menu is open */
/* body.menu-open{
  overflow:hidden;
} */

/* ══════════════════════════════════════
   TABLET — ≤ 1200px
══════════════════════════════════════ */
@media (max-width:1200px){
  .nav-inner{ padding:0 24px; }
  .nav-links{ gap:18px; }
  .nav-links a{ font-size:.75rem; }
}

/* ══════════════════════════════════════
   MOBILE — ≤ 992px
   This is the ONLY place .nav-links /
   .nav-cta get hidden and the hamburger
   gets shown.
══════════════════════════════════════ */
@media (max-width:992px){

  .nav-inner{ height:72px; padding:0 20px; }

  .nav-links{ display:none !important; }
  .nav-cta{ display:none !important; }

  .nav-hamburger{ display:block; margin-left:auto; }

  .nav-logo-mark{ width:48px; height:48px; }
}

/* ══════════════════════════════════════
   SMALL MOBILE — ≤ 576px
══════════════════════════════════════ */
@media (max-width:576px){

  .top-promo-bar{ font-size:.68rem; padding:7px 12px; line-height:1.45; }
  .top-promo-bar .register-pill{ font-size:.64rem; padding:2px 8px; }

  .topbar{ height:32px; }
  .topbar-marquee{ gap:36px; padding-left:16px; }
  .topbar-marquee span{ font-size:.68rem; }

  .nav-inner{ height:64px; padding:0 14px; }
  .nav-logo-mark{ width:40px; height:40px; }
  .nav-hamburger{ width:38px; height:38px; }

  .mobile-menu a{ padding:14px 20px; font-size:.85rem; }
}

/* ══════════════════════════════════════
   VERY SMALL — ≤ 360px
══════════════════════════════════════ */
@media (max-width:360px){
  .top-promo-bar{ flex-direction:column; gap:4px; padding:8px 10px; }
  .top-promo-bar > span:first-of-type{ display:none; }
  .nav-inner{ padding:0 12px; }
  .nav-logo-mark{ width:36px; height:36px; }
  .nav-hamburger{ width:28px; height:38px; }
}
/* ═══════════════════════════════════════════════════════════
   REGIONAL AI SUMMIT 2.0 — REDESIGNED STYLESHEET
   Palette: Crimson Red · Electric Blue · Clean White
   Typography: Inter + Bebas Neue + JetBrains Mono
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Bebas+Neue&family=JetBrains+Mono:wght@400;700&display=swap');

/* ── CSS VARIABLES ──────────────────────────────────────── */
:root {
  --red-hot:       #E8192C;
  --red-deep:      #B5101F;
  --red-glow:      rgba(232, 25, 44, 0.18);
  --red-subtle:    rgba(232, 25, 44, 0.08);

  --blue-electric: #1A4FE8;
  --blue-deep:     #3e6af9;
  --blue-sky:      #3B6CF7;
  --blue-glow:     rgba(26, 79, 232, 0.18);
  --blue-subtle:   rgba(26, 79, 232, 0.08);

  --white:         #FFFFFF;
  --off-white:     #F5F6FF;
  --ghost:         #EDF0FF;
  --border:        rgba(26, 79, 232, 0.14);
  --border-red:    rgba(232, 25, 44, 0.18);

  --ink:           #0A0E1A;
  --ink-2:         #1C2340;
  --ink-3:         #3A4268;
  --muted:         #6B7299;

  --font-display:  'Poppins',sans-serif;
  --font-body:     'Inter', sans-serif;
  --font-mono:     'JetBrains Mono', monospace;

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;

  --shadow-red:    0 8px 40px rgba(232, 25, 44, 0.22);
  --shadow-blue:   0 8px 40px rgba(26, 79, 232, 0.20);
  --shadow-card:   0 2px 20px rgba(10, 14, 26, 0.10);
}

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
} */

/* ── UTILITY ────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 100px 0; }
.text-center { text-align: center; }

/* ══════════════════════════════════════════════════════════
   PRELOADER
══════════════════════════════════════════════════════════ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.25rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.logo-wrap {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--red-hot), var(--blue-electric));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: pulseLogo 1.8s ease-in-out infinite;
}
.logo-img { width: 44px; height: 44px; object-fit: contain; filter: brightness(10); }

.preload-caption {
  font-family: 'Poppins',sans-serif;
  font-size: 2rem; letter-spacing: .12em;
  color: var(--white);
}
.preload-caption .accent { color: var(--red-hot); }

.burst-container { display: flex; gap: 8px; }
.burst-container::before,
.burst-container::after,
.burst-container span {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue-electric);
  animation: dotBounce 1s ease-in-out infinite;
}
.burst-container::after { background: var(--red-hot); animation-delay: .2s; }

.curtain-left, .curtain-right {
  position: fixed; top: 0; bottom: 0; z-index: 9998;
  width: 50%; background: var(--ink);
  transition: transform 0.7s cubic-bezier(.77,0,.175,1);
}
.curtain-left { left: 0; transform-origin: left; }
.curtain-right { right: 0; transform-origin: right; }
.curtain-left.open { transform: scaleX(0); }
.curtain-right.open { transform: scaleX(0); }

@keyframes pulseLogo { 0%,100% { box-shadow: 0 0 0 0 var(--red-glow); } 50% { box-shadow: 0 0 0 20px transparent; } }
@keyframes dotBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2rem;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(10,14,26,.10); }

.nav-brand {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none;
}
.nav-brand-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red-hot), var(--blue-electric));
  display: flex; align-items: center; justify-content: center;
}
.nav-brand-dot svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; }
.nav-brand-name {
  font-family: 'Poppins',sans-serif;
  font-size: 1.25rem; letter-spacing: .06em;
  color: var(--ink);
}
.nav-brand-name span { color: var(--red-hot); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .875rem; font-weight: 600;
  color: var(--ink-3); text-decoration: none;
  letter-spacing: .02em;
  transition: color .2s;
}
.nav-links a:hover { color: #3aa3e9 }

.nav-cta-pill {
  background: linear-gradient(135deg, var(--red-hot), var(--blue-electric));
  color: #fff; border: none;
  padding: .5rem 1.25rem; border-radius: 100px;
  font-family: var(--font-body); font-size: .875rem; font-weight: 700;
  cursor: pointer; letter-spacing: .03em;
  transition: opacity .2s, transform .2s;
  display: inline-flex; align-items: center; gap: .5rem;
}
.nav-cta-pill:hover { opacity: .88; transform: translateY(-1px); }
.nav-cta-pill svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2.5; }

/* ══════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════ */
#home {
  min-height: 100vh;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
  padding: 120px 0 80px;
}












/* ==================================================
   FOOTER - RAS 2.0 STYLE
================================================== */

footer{
    background:#07122b;
    color:#fff;
    position:relative;
    overflow:hidden;
    border-top:1px solid rgba(255,255,255,.08);
}

footer::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:4px;
    background:linear-gradient(
        90deg,
        #ff7a1a,
        #1e63b7,
        #ff7a1a
    );
}

.footer-inner{
    max-width:1400px;
    margin:auto;
    padding:80px 40px 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:60px;
    padding-bottom:60px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

/* ==================================================
   BRAND
================================================== */

.footer-brand .nav-logo{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.footer-brand .nav-logo-mark{
    width:60px;
    height:60px;
    border-radius:14px;
    background:rgba(255,255,255,.05);
    display:flex;
    align-items:center;
    justify-content:center;
}

.footer-brand .nav-logo-mark img{
    width:42px;
    height:42px;
    object-fit:contain;
}

.nav-logo-text{
    font-size:1.2rem;
    font-weight:700;
    color:#fff;
    line-height:1.2;
}

.nav-logo-sub{
    font-size:.72rem;
    letter-spacing:.15em;
    text-transform:uppercase;
    color:rgba(255,255,255,.45);
}

.footer-brand p{
    margin-top:24px;
    color:rgba(255,255,255,.62);
    line-height:1.9;
    font-size:.92rem;
    max-width:420px;
}

/* ==================================================
   SOCIALS
================================================== */

.footer-social{
    display:flex;
    gap:12px;
    margin-top:30px;
}

.footer-social a{
    width:46px;
    height:46px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s ease;
}

.footer-social a:hover{
    background:#ff7a1a;
    border-color:#ff7a1a;
    transform:translateY(-4px);
}

.footer-social svg{
    width:18px;
    height:18px;
    fill:currentColor;
    stroke:currentColor;
}

/* ==================================================
   COLUMNS
================================================== */

.footer-col h4{
    color:#ff7a1a;
    font-size:.72rem;
    letter-spacing:.18em;
    text-transform:uppercase;
    margin-bottom:22px;
}

.footer-col ul{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-col li{
    margin-bottom:12px;
}

.footer-col a{
    color:rgba(255,255,255,.65);
    text-decoration:none;
    font-size:.9rem;
    transition:.3s;
}

.footer-col a:hover{
    color:#fff;
    padding-left:4px;
}

/* ==================================================
   CONTACT
================================================== */

.footer-contact-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
    color:rgba(255,255,255,.65);
    font-size:.9rem;
    line-height:1.7;
}

.footer-contact-item svg{
    width:18px;
    height:18px;
    flex-shrink:0;
    margin-top:2px;
    fill:none;
    stroke:#ff7a1a;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

/* ==================================================
   BOTTOM
================================================== */

.footer-bottom{
    padding-top:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.footer-bottom p{
    color:rgba(255,255,255,.4);
    font-size:.8rem;
}

.footer-bottom-links{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.footer-bottom-links a{
    text-decoration:none;
    color:rgba(255,255,255,.45);
    font-size:.8rem;
    transition:.3s;
}

.footer-bottom-links a:hover{
    color:#fff;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media(max-width:1100px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
        gap:50px;
    }

}

@media(max-width:768px){

    .footer-inner{
        padding:0px 20px 25px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-bottom-links{
        gap:15px;
    }

    .footer-social a{
        width:42px;
        height:42px;
    }

}




*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #fff;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
} */

/* ---------- NAV ---------- */
.ras-nav {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: 66px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.ras-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.ras-nav-mark {
  width: 32px;
  height: 32px;
  background: #0f172a;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins',sans-serif;
  font-size: 15px;
  color: #F97316;
  letter-spacing: .5px;
  flex-shrink: 0;
}
.ras-nav-text {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -.3px;
  line-height: 1.2;
}
.ras-nav-text small {
  display: block;
  font-size: 9px;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.ras-nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.ras-nav-links a {
  font-size: 13px;
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: color .15s;
}
.ras-nav-links a:hover,
.ras-nav-links a.active { color: #0f172a; font-weight: 700; }
.ras-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ras-nav-datepill {
  font-size: 11px;
  color: #185FA5;
  background: #EBF4FF;
  border: 1px solid #BFDBFE;
  padding: 5px 13px;
  border-radius: 20px;
  font-weight: 600;
}
.ras-nav-cta {
  background: #0f172a;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 7px;
  text-decoration: none;
  transition: background .15s;
}
.ras-nav-cta:hover { background: #1e293b; }

/* ---------- HERO ---------- */
/* ============================================
   RAS 2.0 — Hero Section (conflict-safe)
   Paste AFTER your existing stylesheet.
   Google Fonts needed in <head>:
   <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=Inter:wght@300;400;500&display=swap" rel="stylesheet">
   ============================================ */

/* ═══════════════════════════════════════════════════════
   RAS 2.0 — Tickets Page
═══════════════════════════════════════════════════════ */

:root {
  --blue:        #2563EB;
  --blue-deep:   #1D4ED8;
  --blue-tint:   #EFF6FF;
  --blue-border: rgba(37, 99, 235, .2);

  --ink:        #0F0F0F;
  --text-1:     #1A1A1A;
  --text-2:     #525252;
  --text-3:     #909090;

  --surface:    #FFFFFF;
  --surface-2:  #F7F7F5;
  --line:       rgba(15, 15, 15, .08);
  --line-mid:   rgba(15, 15, 15, .13);

  --font-display: 'Bebas Neue', 'Arial Narrow', Impact, sans-serif;
  --font-serif:   'Fraunces', Georgia, 'Times New Roman', serif;
  --font-mono:    'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  24px;
}

/* ════════════════════════════════════════════════
   PAGE SECTION
════════════════════════════════════════════════ */
#tickets.page-section {
  background: var(--surface);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

#tickets.page-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(37,99,235,.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ghost word */
#tickets.page-section::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -10px;
  font-family: 'Poppins',sans-serif;
  font-size: clamp(100px, 14vw, 180px);
  color: rgba(15,15,15,.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.02em;
}

#tickets .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5vw;
  position: relative;
}

/* ── Header ── */
#tickets .container > div[style] {
  text-align: left !important;
  margin-bottom: 56px;
}

.section-title {
  font-family: 'Poppins',sans-serif;
  font-size: clamp(52px, 7.5vw, 88px);
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: .93;
  margin: 0 0 16px;
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
  color: var(--blue);
  font-size: .88em;
  letter-spacing: 0;
}

.section-sub {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-2);
  max-width: auto;
  margin: 0 !important;
  text-align: left !important;
}

/* ════════════════════════════════════════════════
   TICKETS GRID
════════════════════════════════════════════════ */
.tickets-grid {
  display: grid;
  grid-template-columns: 340px repeat(2, 1fr);
  grid-auto-rows: 1fr;
  grid-auto-flow: dense;
  gap: 16px;
  align-items: stretch;
}

/* Featured card occupies column 1, spans every row the grid ends up with */
/* .ticket-card.featured {
  grid-column: 1;
  grid-row: 1 / -1;
} */

/* All non-featured cards (including .stall-highlight) auto-flow into columns 2–3 */
.ticket-card:not(.featured) {
  grid-column: span 1;
}

/* ════════════════════════════════════════════════
   BASE CARD
════════════════════════════════════════════════ */
.ticket-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-mid);
  border-radius: var(--radius-xl);
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
}

.ticket-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: blue;
  color:white;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.ticket-card:hover::after { transform: scaleX(1); }

.ticket-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.09), 0 3px 10px rgba(0,0,0,.05);
  border-color: var(--blue-border);
  color:white;
}

/* ── Featured (Delegate Pass) — left column, full height — NOW NORMAL STYLING ── */
.ticket-card.featured {
  background: var(--surface);
  border-color: var(--line-mid);
  box-shadow: 0 12px 40px rgba(0,0,0,.09), 0 3px 10px rgba(0,0,0,.05);
  padding: 28px 26px 30px;
  justify-content: space-between;
}
.ticket-card.featured::after {
  background: blue;
  transform: scaleX(1);
}
.ticket-card.featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.09), 0 3px 10px rgba(0,0,0,.05);
  border-color: var(--blue-border);
}

/* decorative large star inside featured */
.ticket-card.featured::before {
  content: '';
  position: absolute;
  bottom: -20px; right: -10px;
  font-size: 160px;
  color: rgba(37,99,235,.03);
  line-height: 1;
  pointer-events: none;
  font-family: serif;
}

/* ── Exhibition Stalls card — distinct accent, but sits in the regular grid
   flow (NOT the featured spotlight slot, to avoid colliding with Delegate Pass) ── */
.ticket-card.stall-highlight {
  border-color: var(--blue-border);
  background: var(--surface);
}
.ticket-card.stall-highlight::after {
  background: var(--blue);
  transform: scaleX(1);
}
.ticket-card.stall-highlight .featured-badge {
  color: var(--blue);
  background: rgba(37,99,235,.1);
  border: 1px solid rgba(37,99,235,.3);
}

/* ── Featured badge ── */
.featured-badge {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(37,99,235,.18);
  border: 1px solid rgba(37,99,235,.35);
  border-radius: var(--radius-sm);
  padding: 5px 11px;
  margin-bottom: 20px;
}

/* ── Name ── */
.tick-name {
  font-family: 'Poppins',sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 14px;
}
.ticket-card.featured .tick-name {
  font-size: 20px;
  color: var(--ink);
  letter-spacing: .05em;
  margin-bottom: 14px;
}

/* ── Price ── */
.tick-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}
.tick-price-old {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-3);
  text-decoration: line-through;
}
.ticket-card.featured .tick-price-old { 
  color: var(--text-3); 
}
.tick-price-old:empty { display: none; }

.tick-price-currency {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
}
.tick-price-val {
  font-family: 'Poppins',sans-serif;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1;
  color: var(--ink);
}
.ticket-card.featured .tick-price-val {
  font-size: 44px;
  color: var(--ink);
}
.ticket-card.featured .tick-price-currency { 
  color: var(--blue); 
}

/* ── Tagline ── */
.tick-tagline {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}
.ticket-card.featured .tick-tagline { 
  color: var(--text-3); 
  margin-bottom: 6px; 
}

/* ── Slots remaining ── */
.tick-slots-left {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 14px;
}
.ticket-card.featured .tick-slots-left { 
  color: var(--text-2); 
}

/* ── Tier badge (Pre-Register Price / Regular Price) ── */
.tick-badge-tier {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-tint);
  border-radius: var(--radius-sm);
  padding: 4px 9px;
  margin-bottom: 12px;
}
.tick-badge-tier:empty { display: none; }
.ticket-card.featured .tick-badge-tier {
  color: blue;
  background: var(--blue-tint);
}

/* ── Divider ── */
.tick-divider {
  height: 1px;
  background: var(--line-mid);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.ticket-card.featured .tick-divider { 
  background: var(--line-mid); 
  margin-bottom: 18px; 
}

/* ── Features ── */
.tick-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  margin-bottom: 24px;
}
.tick-feature {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-2);
  padding-left: 16px;
  position: relative;
}
.tick-feature::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: blue;
  flex-shrink: 0;
}
.ticket-card.featured .tick-feature { 
  color: var(--text-2); 
  font-size: 13px; 
}
.ticket-card.featured .tick-feature::before { 
  background: blue; 
}

/* ── Buttons ── */
.tick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 18px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s, transform .18s, color .18s;
  margin-top: auto;
}
.tick-btn.primary,
.tick-btn.secondary {
  background: blue;
  color: #fff;
}
.tick-btn.primary:hover,
.tick-btn.secondary:hover { background: blue; transform: scale(1.02); }

.tick-btn.tertiary {
  background: var(--surface-2);
  color: var(--ink);
  border: 1px solid var(--line-mid);
}
.tick-btn.tertiary:hover { border-color: var(--blue-border); background: var(--blue-tint); }

.tick-btn.disabled {
  background: var(--surface-2);
  color: var(--text-3);
  pointer-events: none;
}

.ticket-card.featured .tick-btn {
  background: blue;
  color: #fff;
  padding: 12px 18px;
  font-size: 13px;
}
.ticket-card.featured .tick-btn:hover { background: var(--blue-deep); transform: scale(1.02); }

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */

/* Tablet — featured shrinks, 2-col grid stays */
@media (max-width: 1024px) {
  .tickets-grid {
    grid-template-columns: 300px repeat(2, 1fr);
  }
}

/* Small tablet — drop to single column flow, featured goes on top */
@media (max-width: 860px) {
  .tickets-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
  .ticket-card.featured {
    grid-column: 1 / -1;
    grid-row: auto;
    padding: 28px 26px;
  }
  .tick-price-val { font-size: 52px; }
}

/* Mobile — everything stacks in one column */
@media (max-width: 560px) {
  #tickets.page-section { padding: 72px 0 80px; }
  .section-title { font-size: clamp(44px, 13vw, 64px); }

  .tickets-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }
  .ticket-card.featured {
    grid-column: 1;
  }

  .tick-price-val { font-size: 42px; }
  .ticket-card.featured .tick-price-val { font-size: 42px; }
  .ticket-card { padding: 22px 20px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* ═══════════════════════════════════════════════════════
   RAS 2.0 — Venue Page
   Same token system, editorial white + blue
═══════════════════════════════════════════════════════ */

:root {
  --blue:        #2563EB;
  --blue-deep:   #1D4ED8;
  --blue-tint:   #EFF6FF;
  --blue-border: rgba(37, 99, 235, .2);

  --ink:        #0F0F0F;
  --text-1:     #1A1A1A;
  --text-2:     #525252;
  --text-3:     #909090;

  --surface:    #FFFFFF;
  --surface-2:  #F7F7F5;
  --line:       rgba(15, 15, 15, .08);
  --line-mid:   rgba(15, 15, 15, .13);

  --font-display: 'Bebas Neue', 'Arial Narrow', Impact, sans-serif;
  --font-serif:   'Fraunces', Georgia, 'Times New Roman', serif;
  --font-mono:    'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  24px;
}

/* ════════════════════════════════════════════════
   PAGE SECTION
════════════════════════════════════════════════ */
#venue.page-section {
  background: var(--surface);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

#venue.page-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(37,99,235,.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ghost word */
#venue.page-section::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -10px;
  font-family: 'Poppins',sans-serif;
  font-size: clamp(120px, 18vw, 220px);
  color: rgba(15,15,15,.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.02em;
}

#venue .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5vw;
  position: relative;
}

/* ── Header ── */
#venue .section-title {
  font-family: 'Poppins',sans-serif;
  font-size: clamp(52px, 7.5vw, 88px);
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: .93;
  margin: 0 0 16px;
}
#venue .section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
  color: blue;
  font-size: .88em;
  letter-spacing: 0;
}
#venue .section-sub {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-2);
  max-width: auto;
  margin: 0 0 56px;
}

/* ════════════════════════════════════════════════
   MAIN GRID — info left, map right
════════════════════════════════════════════════ */
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* ════════════════════════════════════════════════
   VENUE INFO CARD
════════════════════════════════════════════════ */
.venue-info-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 20px;
}

/* blue top bar */
.venue-info-card::before {
  content: '';
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
}

.venue-info-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
}

/* large ghost pin icon */
.venue-info-header::after {
  content: '';
  position: absolute;
  right: 24px; top: 20px;
  font-size: 52px;
  opacity: .48;
  pointer-events: none;
}

.venue-info-header h3 {
  font-family: 'Poppins',sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #000000;
  margin: 0 0 8px;
  line-height: 1;
}
.venue-info-header p {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: blue;
  margin: 0;
}

.venue-info-body {
  padding: 8px 0;
}

.venue-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .18s;
}
.venue-detail-row:last-child { border-bottom: none; }
.venue-detail-row:hover { background: rgba(255,255,255,.03); }

.venue-detail-icon {
  width: 36px; height: 36px;
  background: rgba(176,179,189,.19);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.venue-detail-icon svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: blue;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.venue-detail-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  margin-bottom: 4px;
}
.venue-detail-val {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.82);
  line-height: 1.4;
}

/* ════════════════════════════════════════════════
   TRAVEL SECTION
════════════════════════════════════════════════ */
.venue-travel {
  background: var(--surface);
  border: 1px solid var(--line-mid);
  border-radius: var(--radius-xl);
  padding: 28px 28px 30px;
  position: relative;
  overflow: hidden;
}
.venue-travel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: blue;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.venue-travel h4 {
  font-family: 'Poppins',sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 20px;
}

.venue-travel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.venue-travel-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  transition: border-color .18s, background .18s;
}
.venue-travel-item:hover {
  border-color: var(--blue-border);
  background: var(--blue-tint);
}
.venue-travel-item svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}
.venue-travel-item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 4px;
}
.venue-travel-item p {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}

/* ════════════════════════════════════════════════
   MAP
════════════════════════════════════════════════ */
.venue-map-wrap {
  position: sticky;
  top: 24px;
}

.venue-map-placeholder {
  background: var(--surface-2);
  border: 1px solid var(--line-mid);
  border-radius: var(--radius-xl);
  height: 455px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

/* animated ping */
.venue-map-placeholder::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: blue;
  box-shadow: 0 0 0 0 rgba(37,99,235,.4);
  animation: mapPing 2s infinite;
}
@keyframes mapPing {
  0%   { box-shadow: 0 0 0 0 rgba(37,99,235,.4); }
  70%  { box-shadow: 0 0 0 18px rgba(37,99,235,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}

/* grid lines texture inside map */
.venue-map-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.venue-map-placeholder p {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: center;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* map label card */
.venue-map-wrap::after {
  content: 'Coimbatore · Tamil Nadu';
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-mid);
  border-radius: 40px;
  padding: 8px 18px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  z-index: 2;
}

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .venue-grid {
    grid-template-columns: 1fr;
  }
  .venue-map-wrap {
    position: static;
  }
  .venue-map-placeholder { height: 320px; }
}

@media (max-width: 560px) {
  #venue.page-section { padding: 72px 0 80px; }
  #venue .section-title { font-size: clamp(44px, 13vw, 64px); }
  #venue .section-sub { margin-bottom: 36px; }

  .venue-info-header { padding: 24px 22px 18px; }
  .venue-info-header h3 { font-size: 24px; }
  .venue-detail-row { padding: 14px 22px; }

  .venue-travel { padding: 22px 18px 24px; }
  .venue-travel-grid { grid-template-columns: 1fr; gap: 10px; }

  .venue-map-placeholder { height: 240px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}


/* ═══════════════════════════════════════════════════════
   RAS 2.0 — Speakers Page
   White + blue, editorial grid, light theme, real speaker images
═══════════════════════════════════════════════════════ */

:root {
  --blue:        #2563EB;
  --blue-deep:   #1D4ED8;
  --blue-tint:   #EFF6FF;
  --blue-border: rgba(37, 99, 235, .2);

  --ink:        #0F0F0F;
  --text-1:     #1A1A1A;
  --text-2:     #525252;
  --text-3:     #909090;

  --surface:    #FFFFFF;
  --surface-2:  #F7F7F5;
  --smoke:      #F4F4F1;
  --line:       rgba(15, 15, 15, .08);
  --line-mid:   rgba(15, 15, 15, .13);

  --font-display: 'Bebas Neue', 'Arial Narrow', Impact, sans-serif;
  --font-serif:   'Fraunces', Georgia, 'Times New Roman', serif;
  --font-mono:    'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  24px;
}

/* ════════════════════════════════════════════════
   PAGE
════════════════════════════════════════════════ */
#speakers.page-section {
  background: var(--surface);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

#speakers.page-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(37,99,235,.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

#speakers.page-section::after {
  content: '';
  position: absolute;
  bottom: -24px; right: -10px;
  font-family: 'Poppins',sans-serif;
  font-size: clamp(80px, 12vw, 160px);
  color: rgba(15,15,15,.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.02em;
}

.spk-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5vw;
  position: relative;
}

/* ════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════ */
.spk-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-mid);
}

.spk-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color:rgba(43, 43, 255, 0.794);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.spk-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: rgba(43, 43, 255, 0.794);
}

.spk-title {
  font-family: 'Poppins',sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 400;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: .92;
  margin: 0 0 18px;
}
.spk-title em {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
  color: rgba(43, 43, 255, 0.794);
  font-size: .9em;
  letter-spacing: 0;
}

.spk-sub {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-2);
  max-width: auto;
  margin: 0;
}

.spk-header-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  padding-bottom: 4px;
}
.spk-stat {
  text-align: right;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.spk-stat:last-child { border-bottom: none; padding-bottom: 0; }
.spk-stat-val {
  display: block;
  font-family: 'Poppins',sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.spk-stat-lbl {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 4px;
}

/* ════════════════════════════════════════════════
   SPEAKER GRID
════════════════════════════════════════════════ */
.spk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 56px;
}

/* ── Base card ── */
.spk-card {
  background: var(--surface);
  border: 1px solid var(--line-mid);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.spk-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(43, 43, 255, 0.794);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s cubic-bezier(.22,1,.36,1);
  z-index: 1;
}
.spk-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.09), 0 3px 10px rgba(0,0,0,.05);
  border-color: var(--blue-border);
}
.spk-card:hover::before { transform: scaleX(1); }

/* ── Featured card — light smoke-white ── */
.spk-card--featured {
  grid-column: 1 / 3;
  grid-row: 1;
  flex-direction: row;
  background: var(--smoke);
  border: 1px solid var(--line-mid);
  box-shadow: 0 12px 40px rgba(0,0,0,.07);
}
.spk-card--featured::before {
  transform: scaleX(1);
  background: rgba(43, 43, 255, 0.794);
}
.spk-card--featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(0,0,0,.1);
  border-color: var(--blue-border);
}

/* ── Speaker image ── */
.spk-card-img {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  flex-shrink: 0;
}

.spk-card:not(.spk-card--featured) .spk-card-img {
  aspect-ratio: 1;
  width: 100%;
}

.spk-card--featured .spk-card-img {
  width: 240px;
  min-height: 280px;
  background: rgba(15,15,15,.03);
}

/* image link wrapper — click to LinkedIn */
.spk-card-img-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.spk-card-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .4s ease, filter .3s ease;
}
.spk-card:hover .spk-card-img-link img {
  transform: scale(1.04);
  filter: brightness(0.94);
}

/* ── Card body ── */
.spk-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.spk-card--featured .spk-card-body {
  padding: 28px 28px 32px;
  justify-content: flex-end;
}


/* placeholder state */
.spk-card-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.spk-placeholder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--line);
}
.spk-card--featured .spk-placeholder-icon {
  background: rgba(255,255,255,.07);
}
.spk-placeholder-icon svg {
  width: 28px; height: 28px;
  stroke: var(--text-3);
}
.spk-card--featured .spk-placeholder-icon svg {
  stroke: rgba(255,255,255,.25);
}

.spk-card-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.spk-card-name {
  font-family: 'Poppins',sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}
.spk-card--featured .spk-card-name {
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 6px;
}

.spk-card-role {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.4;
}
.spk-card--featured .spk-card-role {
  color: var(--text-2);
  font-size: 13px;
  margin-bottom: 14px;
}

.spk-card-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-2);
  margin-top: 4px;
  display: none;
}
.spk-card--featured .spk-card-desc { display: block; }

/* social links */
.spk-card-socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.spk-card-social {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(15,15,15,.05);
  border: 1px solid rgba(15,15,15,.1);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background .15s;
}
.spk-card-social:hover { background: rgba(37,99,235,.15); }
.spk-card-social svg {
  width: 14px; height: 14px;
  fill: rgba(15,15,15,.55);
}

/* ════════════════════════════════════════════════
   CTA STRIP
════════════════════════════════════════════════ */
.spk-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 36px;
  background: var(--surface-2);
  border: 1px solid var(--line-mid);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.spk-cta::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--blue);
}

.spk-cta-label {
  font-family: 'Poppins',sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
.spk-cta-text p {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}

.spk-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .18s, transform .18s;
}
.spk-cta-btn:hover { background: var(--blue); transform: scale(1.02); }

/* ════════════════════════════════════════════════
   RESPONSIVE — all breakpoints
════════════════════════════════════════════════ */

/* Large desktop */
@media (min-width: 1440px) {
  .spk-container { max-width: 1360px; }
  .spk-title { font-size: clamp(64px, 7vw, 108px); }
}

/* Laptop / small desktop */
@media (max-width: 1200px) {
  .spk-container { padding: 0 4vw; }
}

/* Tablet landscape */
@media (max-width: 1024px) {
  .spk-grid { grid-template-columns: repeat(3, 1fr); }
  .spk-card--featured { grid-column: 1 / 3; }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .spk-header { grid-template-columns: 1fr; gap: 28px; }
  .spk-header-right { flex-direction: row; align-items: flex-start; justify-content: flex-start; }
  .spk-stat { text-align: left; border-bottom: none; padding-bottom: 0; padding-right: 24px; border-right: 1px solid var(--line); }
  .spk-stat:last-child { border-right: none; padding-right: 0; }

  .spk-grid { grid-template-columns: repeat(2, 1fr); }
  .spk-card--featured {
    grid-column: 1 / 3;
    flex-direction: column;
  }
  .spk-card--featured .spk-card-img {
    width: 100%;
    min-height: 200px;
  }
  .spk-card--featured .spk-card-body { padding: 22px 22px 26px; }
  .spk-card--featured .spk-card-name { font-size: 26px; }

  .spk-cta { flex-direction: column; align-items: flex-start; padding: 24px 24px 24px 30px; }
  .spk-cta-btn { width: 100%; justify-content: center; }
}

/* Large mobile */
@media (max-width: 600px) {
  .spk-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* Small mobile */
@media (max-width: 520px) {
  #speakers.page-section { padding: 72px 0 80px; }
  .spk-title { font-size: clamp(46px, 13vw, 68px); }
  .spk-header { margin-bottom: 40px; padding-bottom: 28px; }
  .spk-header-right { flex-direction: column; gap: 10px; }
  .spk-stat { border-right: none; padding-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
  .spk-stat:last-child { border-bottom: none; }

  .spk-grid { grid-template-columns: 1fr; gap: 12px; }
  .spk-card--featured { grid-column: 1; }
}

/* Extra small mobile */
@media (max-width: 380px) {
  .spk-cta-label { font-size: 19px; }
  .spk-card--featured .spk-card-name { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ═══════════════════════════════════════════════════════
   RAS 2.0 — Sponsors Page v4
   All-light / smoked-white theme, fully responsive grid
═══════════════════════════════════════════════════════ */

:root {
  --blue:        #2563EB;
  --blue-deep:   #1D4ED8;
  --blue-tint:   #EFF6FF;
  --blue-border: rgba(37,99,235,.20);
  --ink:         #14161A;
  --text-2:      #55585E;
  --text-3:      #94969C;
  --surface:     #FFFFFF;
  --smoke:       #F5F4F1;   /* smoked white */
  --smoke-2:     #EFEEEA;
  --line:        rgba(15,15,15,.10);
  --line-mid:    rgba(15,15,15,.14);
  --font-display: 'Bebas Neue','Arial Narrow',Impact,sans-serif;
  --font-serif:   'Fraunces',Georgia,'Times New Roman',serif;
  --font-mono:    'JetBrains Mono',ui-monospace,Menlo,Consolas,monospace;
  --font-body:    'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  --gap: 14px;
  --r:   18px;
}

/* ════════════════════════════════════════════════
   PAGE
════════════════════════════════════════════════ */
#sponsors-page {
  background: var(--surface);
  padding: 72px 0 96px;
}

.sp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* ════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════ */
.sp-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-mid);
}

.sp-eyebrow {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sp-eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: #2563eb;
}

.sp-title {
  font-family: 'Poppins',sans-serif;
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: .95;
  margin: 0;
}
.sp-title em {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
  color: blue;
  font-size: .95em;
  letter-spacing: 0;
}

.sp-sub {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-2);
  margin: 0 0 16px;
}

.sp-note {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.65;
  color: var(--text-3);
  padding-left: 14px;
  border-left: 2px solid var(--line-mid);
}

/* ════════════════════════════════════════════════
   PARTNER GRID
   Responsive auto-fit — no fragile named areas.
   Cards flow naturally at every breakpoint.
════════════════════════════════════════════════ */
.sp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-bottom: var(--gap);
}

/* label card takes col 1 always (desktop) */
.sp-block--label { grid-column: span 1; }

/* wide card spans two columns where room allows */
.sp-block--wide { grid-column: span 2; }

/* ── Base block ── */
.sp-block {
  border-radius: var(--r);
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform .22s ease, box-shadow .22s ease;
}
.sp-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15,15,15,.07);
}
.sp-block--link {
  text-decoration: none;
  cursor: pointer;
}
.sp-block--link:hover .sp-partner-name { color: blue; }

/* ── Label block ── */
.sp-block--label {
  background: var(--smoke);
  border: 1px solid var(--line);
}
.sp-block-label-text {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-3);
  line-height: 1.5;
}
.sp-block-label-count {
  font-family: 'Poppins',sans-serif;
  font-size: 60px;
  font-weight: 400;
  color: rgba(15,15,15,.09);
  line-height: 1;
  letter-spacing: -.02em;
  align-self: flex-end;
}

/* ── Partner blocks ── */
.sp-partner-logo {
  height: 55px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 12px 0 4px;
  align-self: flex-start;
}

.sp-partner-num {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--text-3);
  margin-bottom: auto;
}
.sp-partner-name {
  font-family: 'Poppins',sans-serif;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.05;
  margin: 12px 0 4px;
}
.sp-partner-full {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.4;
  margin-bottom: 14px;
}
.sp-confirmed {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--blue-tint);
  color: blue;
  border: 1px solid var(--blue-border);
}

/* highlight the wide (05) card softly with a blue-tint background,
   so the grid keeps rhythm without introducing a dark block */
.sp-block--wide {
  background: var(--blue-tint);
  border-color: var(--blue-border);
}
.sp-block--wide .sp-partner-name { font-size: clamp(24px, 2.6vw, 38px); }

/* ── TBA block ── */
.sp-block--tba {
  background: var(--smoke);
  border: 1px dashed var(--line-mid);
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-direction: row;
}
.sp-tba-text {
  font-family: 'Poppins',sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(15,15,15,.28);
  line-height: 1.3;
  text-align: center;
}
.sp-tba-ping {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: blue;
  box-shadow: 0 0 0 0 rgba(26, 97, 250, 0.4);
  animation: ping 2s infinite;
  flex-shrink: 0;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(37,99,235,.4); }
  70%  { box-shadow: 0 0 0 14px rgba(37,99,235,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}

/* ════════════════════════════════════════════════
   CTA — smoked white, blue accent, no dark ink
════════════════════════════════════════════════ */
.sp-cta {
  border-radius: var(--r);
  background: var(--smoke);
  border: 1px solid var(--line-mid);
  overflow: hidden;
  position: relative;
}
.sp-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: blue;
}

.sp-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
}

.sp-cta-left {
  padding: 40px 44px;
  border-right: 1px solid var(--line-mid);
}

.sp-cta-heading {
  font-family: 'Poppins',sans-serif;
  font-size: clamp(32px, 3.6vw, 54px);
  font-weight: 400;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: .98;
  margin-bottom: 14px;
}
.sp-cta-heading em {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
  color: blue;
  font-size: .9em;
  letter-spacing: 0;
}

.sp-cta-description {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-2);
  margin: 0;
  max-width: 600px;
}

.sp-cta-right {
  display: flex;
  flex-direction: column;
  width: 240px;
  flex-shrink: 0;
}

.sp-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  padding: 0 20px;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.sp-cta-btn svg {
  width: 14px; height: 14px;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.sp-cta-btn--primary {
  background: blue;
  color: #fff;
  border-bottom: 1px solid var(--line-mid);
}
.sp-cta-btn--primary:hover { background: white; color:blue; }

.sp-cta-btn--ghost {
  background: transparent;
  color: var(--text-2);
}
.sp-cta-btn--ghost:hover { background: var(--smoke-2); color: var(--ink); }

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sp-grid { grid-template-columns: repeat(3, 1fr); }
  .sp-block--wide { grid-column: span 3; flex-direction: row; align-items: center; gap: 20px; }
  .sp-block--wide .sp-partner-num { margin-bottom: 0; }
}

@media (max-width: 768px) {
  .sp-header { grid-template-columns: 1fr; gap: 24px; }

  .sp-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-block--label { grid-column: span 2; flex-direction: row; align-items: center; justify-content: space-between; }
  .sp-block--wide { grid-column: span 2; }

  .sp-cta-inner { grid-template-columns: 1fr; }
  .sp-cta-left { border-right: none; border-bottom: 1px solid var(--line-mid); padding: 28px 24px; }
  .sp-cta-right { width: 100%; flex-direction: row; }
  .sp-cta-btn--primary { border-bottom: none; border-right: 1px solid var(--line-mid); }
  .sp-cta-btn { padding: 18px 16px; }
}

@media (max-width: 520px) {
  #sponsors-page { padding: 52px 0 64px; }
  .sp-title { font-size: clamp(34px, 10.5vw, 52px); }

  .sp-grid { grid-template-columns: 1fr; }
  .sp-block--label,
  .sp-block--wide { grid-column: span 1; }
  .sp-block--wide { flex-direction: column; align-items: flex-start; }
  .sp-block { min-height: 130px; }

  .sp-cta-right { flex-direction: column; }
  .sp-cta-btn--primary { border-right: none; border-bottom: 1px solid var(--line-mid); }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}


/*ABOUT PAGE*/
  /* ══════════════════════════════════════
   MOBILE-FIRST RESET + TOKENS — DARK BLUE MINIMAL
══════════════════════════════════════ */
:root {
  --blue: #2563EB;
  --blue-light: #4F8DFD;
  --blue-deep: #1D4ED8;
  --blue-tint: rgba(37,99,235,.08);
  --navy: #0B1220;
  --navy-2: #111A2E;
  --bg: #FAFAFA;
  --bg-warm: #F3F5F9;
  --ink: #0A0E17;
  --ink-2: #141B2B;
  --text-1: #14181F;
  --text-2: #525866;
  --text-3: #757D8C;
  --text-4: #A4ACBA;
  --line: rgba(10,14,23,.08);
  --line-strong: rgba(10,14,23,.14);
  --line-blue: rgba(37,99,235,.22);
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --font-serif: 'Fraunces', Georgia, serif;
  --ease-out: cubic-bezier(.16,1,.3,1);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(10,14,23,.06);
  --shadow-md: 0 4px 16px rgba(10,14,23,.08);
  --shadow-lg: 0 12px 40px rgba(10,14,23,.1);
  --shadow-xl: 0 24px 64px rgba(10,14,23,.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  font-family: var(--font-body);
  color: var(--text-1);
  line-height: 1.55;
  overflow-x: hidden;
} */
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: rgba(37,99,235,.18); color: var(--ink); }
img { max-width: 100%; }

/* ══════════════════════════════════════
   LAYOUT
══════════════════════════════════════ */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.logo-scroll-bar { margin-top: -1px; }

section.page-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  background-color: white;
}

.section-bg-warm { background: var(--bg-warm); }
.section-bg-ink {
  background: linear-gradient(150deg, #d1d2d30f 0%, #d1d2d30f 55%, #d1d2d30f 100%);
  color: #fff;
}

/* ══════════════════════════════════════
   TYPOGRAPHY SYSTEM
══════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 600;
  color: blue;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  background: var(--blue-tint);
  border-radius: 100px;
  margin-bottom: 1rem;
  border: 1px solid var(--line-blue);
}
.section-bg-ink .section-label {
  color: #000000;
  background: rgba(37,99,235,.16);
  border-color: rgba(37,99,235,.32);
}

.section-title {
  font-family: 'Poppins',sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: .875rem;
  letter-spacing: .01em;
}
.section-bg-ink .section-title { color: #000000; }
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: blue;
  font-size: .82em;
}
.section-bg-ink .section-title em { color: blue; }

.section-sub {
  font-size: clamp(.875rem, 1.5vw, 1rem);
  color: var(--text-2);
  max-width: auto;
  line-height: 1.7;
}
.section-bg-ink .section-sub { color: rgba(0,0,0,.62); }  

/* ══════════════════════════════════════
   ECO CARDS — ABOUT SECTION
══════════════════════════════════════ */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.eco-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: all .25s;
}
.eco-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--line-blue);
}
.eco-card-tag {
  font-family: var(--font-mono);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: .5rem;
}
.eco-card h3 {
  font-family: 'Poppins',sans-serif;
  font-size: 1.3rem;
  letter-spacing: .02em;
  color: var(--ink);
  margin-bottom: .5rem;
}
.eco-card p {
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   WHY CARDS — WOMEN SECTION
══════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.why-card {
  position: relative;
  background: rgba(255,255,255,.38);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  transition: all .3s;
}
.why-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(37,99,235,.4);
}
.why-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: blue;
  box-shadow: 0 6px 16px rgba(28, 100, 255, 0.449);
  margin-bottom: 1.1rem;
  font-family: 'Poppins',sans-serif;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}
.why-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: .5rem;
}
.why-card p {
  font-size: .875rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   BOR PILLS
══════════════════════════════════════ */
.bor-pills {
  display: flex;
  gap: .625rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.bor-pill {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: #006aff;
  border: 1px solid rgba(37,99,235,.36);
  padding: .45rem 1rem;
  border-radius: 100px;
}

/* ══════════════════════════════════════
   COMPETITION CARDS
══════════════════════════════════════ */
.comp-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 2.5rem;
}

.comp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 100px 1fr;
  transition: all .25s;
}
.comp-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--line-blue);
}

.comp-num {
  background: #006aff;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem .75rem;
  text-align: center;
  gap: .4rem;
  flex-shrink: 0;
}
.comp-num .n {
  font-family: 'Poppins',sans-serif;
  font-size: 2.2rem;
  letter-spacing: .02em;
  line-height: 1;
  color:#ffffff;
}
.comp-num .tag {
  font-family: var(--font-mono);
  font-size: .52rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(37,99,235,.16);
  padding: .22rem .5rem;
  border-radius: 100px;
  text-align: center;
  line-height: 1.4;
}

.comp-body { padding: 1.4rem 1.5rem; }
.comp-body h3 {
  font-family: 'Poppins',sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  letter-spacing: .02em;
  color: var(--ink);
  margin-bottom: .5rem;
  line-height: 1.1;
}
.comp-body > p {
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: .875rem;
}

.comp-tracks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}
.comp-tracks li {
  font-size: .82rem;
  color: var(--text-2);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.55;
}
.comp-tracks li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: .72rem;
  top: .1em;
}

.comp-footer {
  border-top: 1px solid var(--line);
  padding-top: .875rem;
}
.comp-selected {
  font-size: .8rem;
  color: var(--text-2);
  line-height: 1.6;
}
.comp-selected strong {
  color: var(--blue-deep);
  display: block;
  font-size: .65rem;
  font-family: var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

/* ══════════════════════════════════════
   BOOK OF RECORDS
══════════════════════════════════════ */
.bor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.bor-card {
  background: rgba(115,115,115,.05);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  color: #fff;
  transition: background .2s;
}
.bor-card:hover { background: rgba(255,255,255,.08); }
.bor-num {
  font-family: 'Poppins',sans-serif;
  font-size: 2.2rem;
  color: #005bff;
  line-height: 1;
  margin-bottom: .625rem;
}
.bor-card p {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.75);
}

/* ══════════════════════════════════════
   PANEL DISCUSSION CARDS
══════════════════════════════════════ */
.speakers-header { text-align: center; }
.speakers-header .section-sub { margin: 0 auto; }

.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.panel-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.panel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  opacity: 0;
  transition: opacity .2s;
}
.panel-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--line-blue);
  transform: translateY(-3px);
}
.panel-card:hover::before { opacity: 1; }

.panel-day {
  font-family: var(--font-mono);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: var(--blue-tint);
  display: inline-block;
  padding: .28rem .7rem;
  border-radius: 100px;
  margin-bottom: .75rem;
}
.panel-title {
  font-family: 'Poppins',sans-serif;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: .4rem;
  letter-spacing: .02em;
  line-height: 1.1;
}
.panel-desc {
  font-size: .82rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   COUNTDOWN
══════════════════════════════════════ */
/* #countdown {
  position: relative;
  padding: clamp(3rem, 9vw, 7rem) 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(37,99,235,.05) 0%, transparent 70%), var(--bg);
} */
.countdown-head { text-align: center; margin-bottom: 2.5rem; }
.countdown-title {
  font-family: 'Poppins',sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: .015em;
  color: var(--ink);
}
.countdown-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: blue;
  font-size: .92em;
}

.countdown-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(.4rem, 1.5vw, 1rem);
  flex-wrap: wrap;
  max-width: 860px;
  margin: 0 auto;
}
.countdown-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem clamp(.875rem, 2.5vw, 2rem);
  min-width: 120px;
  flex: 1;
  max-width: 190px;
  text-align: center;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  box-shadow: 0 8px 24px rgba(10,14,23,.04);
}
.countdown-box:hover {
  border-color: var(--line-blue);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37,99,235,.1);
}
.countdown-num {
  font-family: 'Poppins',sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: .02em;
  color: var(--ink);
}
.countdown-lbl {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: .7rem;
}
.countdown-sep {
  font-family: 'Poppins',sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  color: var(--blue);
  opacity: .4;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.countdown-note {
  color: var(--text-4);
  font-size: .72rem;
  margin-top: 1.75rem;
  font-family: var(--font-mono);
  letter-spacing: .1em;
  text-align: center;
}

/* ══════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   ── MOBILE: ≤ 640px ──
══════════════════════════════════════ */
@media (max-width: 640px) {
  .comp-card { grid-template-columns: 1fr; }
  .comp-num {
    flex-direction: row;
    justify-content: flex-start;
    gap: .75rem;
    padding: .875rem 1.1rem;
    border-radius: 0;
  }
  .comp-num .n { font-size: 1.8rem; }
  .comp-body { padding: 1.1rem 1.1rem 1.25rem; }
  .comp-body h3 { font-size: 1.2rem; }

  .countdown-sep { display: none; }
  .countdown-grid { gap: .5rem; }
  .countdown-box {
    min-width: calc(50% - .5rem);
    max-width: calc(50% - .5rem);
    flex: 0 0 calc(50% - .5rem);
    padding: 1.25rem .75rem;
    border-radius: 14px;
  }
  .countdown-num { font-size: 2.4rem; }

  section.page-section { padding: 5.5rem 0; }
  .panel-grid { grid-template-columns: 1fr; }
  .eco-grid, .why-grid, .bor-grid { grid-template-columns: 1fr; }
  .bor-pill { font-size: .58rem; }
}

/* ══════════════════════════════════════
   ── TABLET: 641px – 900px ──
══════════════════════════════════════ */
@media (min-width: 641px) and (max-width: 900px) {
  .comp-card { grid-template-columns: 90px 1fr; }
  .comp-num { padding: 1.25rem .75rem; }
  .comp-num .n { font-size: 1.9rem; }

  .countdown-box { min-width: 110px; }
  .countdown-sep { font-size: 1.8rem; }

  .why-grid { grid-template-columns: 1fr 1fr; }
  .bor-grid { grid-template-columns: 1fr 1fr; }
  .panel-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════
   ── REDUCED MOTION ──
══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .comp-card, .eco-card, .why-card, .panel-card, .countdown-box { transition: none; }
}



/* ============================================================
   RAS 2.0 — HOME PAGE STYLES
   ------------------------------------------------------------
   Colour reference (used inline throughout, no :root):
     Ink/Navy ........ #0F172A  (headings, dark sections)
     Slate body ...... #475569 / #64748B / #94A3B8
     Blue ............ #185FA5  (primary accent)
     Blue light ...... #EBF4FF / #BFDBFE  (tints, borders)
     Orange .......... #F97316  (secondary accent)
     Coral/light red . #E8493B  (tertiary accent — used sparingly)
     Coral tint ...... #FDE9E6
     Paper ........... #FFFFFF  (page background)
     Paper soft ...... #F8FAFC  (alt section background)

   Type system (fonts already linked in <head>):
     Fraunces ........ headings & display copy (restrained, serif)
     Bebas Neue ...... big numerals / data (hackathon clock, stats)
     DM Sans ......... body copy, labels, eyebrows, UI text
   ============================================================ */

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

/* ---------- shared type defaults inside this page ---------- */
.ras-hero, .ras-statsband, .tape, .ras-pillars, .ras-section-wrap,
.ras-section-wrap-slate, .ras-section-wrap-navy, .ras-cd-section,
.ben-section, .ras-test-section, .ras-footer, .container.rounded{
  font-family: var(--font-body);
}
.ras-hero h2, .ras-hero h3,
.ras-sec-h, .ras-cd-h, .ras-ed1-title,
.ras-pillar h3, .ras-ccard h3, .ras-ben-title,
.ras-panel-item h4, .ras-tcard-name, .ras-foot-logo, .ras-wr-h{
  font-family: var(--font-body);
}

/* ============================================================
   HERO
   ============================================================ */
#home.ras-hero, section.ras-hero{
  position:relative;
  background:#ffffff;
  overflow:hidden;
  padding:0;
}
.ras-hero .ras-hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:128px 52px 88px;
  display:grid;
  grid-template-columns:1fr 400px;
  gap:64px;
  align-items:center;
}

/* faint oversized "2.0" watermark behind the headline — the one bold move */
.ras-hero::before{
  content:'2.0';
  position:absolute;
  left:-2%;
  bottom:-14%;
  font-family:'Fraunces', serif;
  font-style:italic;
  font-weight:700;
  font-size:min(46vw, 560px);
  line-height:1;
  color:#F3F8FE;
  letter-spacing:-0.02em;
  z-index:0;
  pointer-events:none;
  user-select:none;
}
/* thin hairline rule under the hero, like a printed masthead */
.ras-hero::after{
  content:'';
  position:absolute;
  left:0; right:0; bottom:0;
  height:1px;
  background:linear-gradient(90deg, transparent, #E2E8F0 15%, #E2E8F0 85%, transparent);
  z-index:1;
}

.ras-hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:28px;
}
.ras-eyebrow-dot{
  width:7px; height:7px;
  border-radius:50%;
  background:#E8493B;
  box-shadow:0 0 0 4px #FDE9E6;
  flex-shrink:0;
}
.ras-eyebrow-text{
  font-size:11px;
  font-weight:500;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:#185FA5;
}

.ras-hero-h1{
  font-family:'Fraunces', serif;
  font-weight:700;
  font-size:clamp(48px, 6vw, 80px);
  line-height:0.98;
  letter-spacing:-0.01em;
  color:#0F172A;
  margin:0 0 14px;
}
.ras-hero-h1 .h1-blue{ color:#185FA5; }
.ras-hero-h1 .h1-orange{ color:#F97316; font-style:italic; }

.ras-hero-sub{
  font-family:'Fraunces', serif;
  font-style:italic;
  font-weight:400;
  font-size:16px;
  color:#94A3B8;
  margin:0 0 22px;
}

.ras-hero-desc{
  font-size:15px;
  font-weight:400;
  line-height:1.75;
  color:#475569;
  max-width:460px;
  margin:0 0 36px;
}

.ras-hero-meta{
  display:flex;
  gap:0;
  border:1px solid #E2E8F0;
  border-radius:10px;
  overflow:hidden;
  margin-bottom:32px;
  width:fit-content;
  background:#fff;
}
.ras-hero-meta-item{
  display:flex;
  align-items:center;
  gap:11px;
  padding:14px 20px;
  border-right:1px solid #E2E8F0;
}
.ras-hero-meta-item:last-child{ border-right:none; }
.ras-hero-meta-item svg{
  width:16px; height:16px;
  stroke:#185FA5; fill:none;
  stroke-width:1.7;
  stroke-linecap:round; stroke-linejoin:round;
  flex-shrink:0;
}
.meta-label{
  display:block;
  font-size:9px;
  font-weight:600;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:#94A3B8;
  margin-bottom:2px;
}
.meta-val{
  display:block;
  font-size:13px;
  font-weight:500;
  color:#0F172A;
  white-space:nowrap;
}

.ras-hero-btns{ display:flex; flex-wrap:wrap; gap:12px; align-items:center; }
.ras-btn-primary{
  display:inline-flex; align-items:center; gap:9px;
  background:#0F172A; color:#fff;
  font-size:13px; font-weight:600;
  letter-spacing:.3px;
  padding:14px 26px;
  border-radius:8px;
  text-decoration:none;
  transition:background .18s, transform .18s;
}
.ras-btn-primary:hover{ background:#185FA5; transform:translateY(-1px); }
.ras-btn-primary svg{ transition:transform .18s; }
.ras-btn-primary:hover svg{ transform:translateX(3px); }

.ras-btn-blue{
  display:inline-flex; align-items:center;
  background:#EBF4FF; color:#185FA5;
  border:1px solid #BFDBFE;
  font-size:13px; font-weight:600;
  padding:13px 24px;
  border-radius:8px;
  text-decoration:none;
  transition:background .18s, border-color .18s;
}
.ras-btn-blue:hover{ background:#DCEBFF; border-color:#93C0F0; }

.ras-btn-outline{
  display:inline-flex; align-items:center;
  background:transparent; color:#64748B;
  border:1px solid transparent;
  border-bottom:1px solid #CBD5E1;
  font-size:13px; font-weight:500;
  padding:13px 4px;
  text-decoration:none;
  transition:color .18s, border-color .18s;
}
.ras-btn-outline:hover{ color:#0F172A; border-color:#0F172A; }

/* ---------- hero right panel — styled like a delegate / event pass ---------- */
.ras-hero-panel{
  position:relative;
  background:#0F172A;
  border-radius:18px;
  padding:30px 28px 26px;
  box-shadow:0 28px 56px -22px rgba(15,23,42,.4);
}
.ras-hero-panel::before{
  content:'';
  position:absolute;
  top:0; left:0; right:0; height:5px;
  border-radius:18px 18px 0 0;
  background:linear-gradient(90deg, #185FA5, #F97316);
}
.ras-hpanel-head{
  font-size:10px;
  font-weight:600;
  letter-spacing:2.2px;
  text-transform:uppercase;
  color:#64748B;
  margin-bottom:22px;
}
.ras-hpanel-stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px 0;
  margin-bottom:18px;
}
.ras-hpanel-stat{ padding-right:18px; }
.ras-hpanel-stat:nth-child(2n){ padding-right:0; padding-left:18px; border-left:1px solid #1E293B; }
.ras-hps-n{
  font-family:'Poppins',sans-serif;
  font-size:30px;
  color:#fff;
  line-height:1;
  letter-spacing:.5px;
}
.ras-hps-n span{ font-size:14px; color:#64748B; font-family:'DM Sans', sans-serif; }
.ras-hps-l{
  font-size:10px;
  font-weight:500;
  letter-spacing:.4px;
  text-transform:uppercase;
  color:#64748B;
  margin-top:3px;
}
/* divider styled as a ticket tear-line, perforated at both edges */
.ras-hpanel-divider{
  position:relative;
  height:0;
  border-top:1px dashed #2A3A52;
  margin:0 -28px 18px;
}
.ras-hpanel-divider::before,
.ras-hpanel-divider::after{
  content:'';
  position:absolute;
  top:50%; transform:translateY(-50%);
  width:16px; height:16px;
  border-radius:50%;
  background:#fff;
}
.ras-hpanel-divider::before{ left:-8px; }
.ras-hpanel-divider::after{ right:-8px; }
.ras-hpanel-tags{ display:flex; flex-wrap:wrap; gap:7px; }
.ras-hptag{
  font-size:10px;
  font-weight:600;
  letter-spacing:.3px;
  padding:5px 11px;
  border-radius:5px;
}
.ras-hptag-blue{ background:rgba(24,95,165,.22); color:#7FB3E8; }
.ras-hptag-orange{ background:rgba(249,115,22,.18); color:#F8B381; }
.ras-hptag-slate{ background:#16202F; color:#64748B; }

@media (max-width:1024px){
  .ras-hero .ras-hero-inner{ grid-template-columns:1fr; padding:96px 36px 64px; gap:44px; }
  .ras-hero-panel{ max-width:420px; }
  .ras-hero::before{ font-size:min(70vw, 420px); bottom:-10%; }
}
@media (max-width:640px){
  .ras-hero .ras-hero-inner{ padding:88px 20px 52px; }
  .ras-hero-meta{ width:100%; flex-direction:column; }
  .ras-hero-meta-item{ border-right:none; border-bottom:1px solid #E2E8F0; }
  .ras-hero-meta-item:last-child{ border-bottom:none; }
  .ras-hero::before{ font-size:62vw; left:50%; transform:translateX(-50%); bottom:-6%; text-align:center; }
}

/* ============================================================
   STATS BAND
   ============================================================ */
.ras-statsband{
  background:#0F172A;
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  width: auto;
  height: 150px;
}
.ras-sb-item{
  padding:20px 14px;
  text-align:center;
  border-right:1px solid rgba(255,255,255,.08);
}
.ras-sb-item:last-child{ border-right:none; }
.ras-sb-num{
  font-family:'Poppins',sans-serif;
  font-size:48px;
  color:#fff;
  line-height:1;
}
.ras-sb-num span{ color:#F97316; }
.ras-sb-label{
  font-size:15px;
  font-weight:600;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:rgba(255,255,255,.4);
  margin-top:5px;
}
@media (max-width:1024px){ .ras-statsband{ grid-template-columns:repeat(3,1fr); } .ras-sb-item:nth-child(3){ border-right:none; } }
@media (max-width:640px){ .ras-statsband{ grid-template-columns:repeat(2,1fr); } .ras-sb-item:nth-child(2n){ border-right:none; } }

/* ============================================================
   TAPE (marquee strip)
   ============================================================ */
.tape{
  background:#EBF4FF;
  border-top:1px solid #BFDBFE;
  border-bottom:1px solid #BFDBFE;
  overflow:hidden;
  padding:11px 0;
  white-space:nowrap;
}
.tape-inner{
  display:inline-flex;
  gap:26px;
  animation:tapescroll 26s linear infinite;
  will-change:transform;
}
.tape-inner span{
  font-size:11px;
  font-weight:700;
  letter-spacing:2px;
  color:#185FA5;
}
.tape-inner .dim{ color:#93C0F0; }
@keyframes tapescroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .tape-inner{ animation:none; } }

/* ============================================================
   THREE PILLARS
   ============================================================ */
.ras-pillars{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  border-bottom:1px solid #E2E8F0;
}
.ras-pillar{
  padding:44px 38px;
  border-right:1px solid #E2E8F0;
  
}
.ras-pillar:last-child{ border-right:none; }
.ras-pillar-index{
  font-size:15px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#555555;
  margin-bottom:18px;
}
.ras-pillar-icon{
  width:46px; height:46px;
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
  background:#EBF4FF;
}
.ras-pillar-icon svg{
  width:22px; height:22px;
  stroke:#185FA5; fill:none;
  stroke-width:1.7;
  stroke-linecap:round; stroke-linejoin:round;
}
.ras-pillar h3{
  font-weight:700;
  font-size:20px;
  color:#0F172A;
  margin:0 0 10px;
  line-height:1.3;
}
.ras-pillar p{ font-size:18px; color:#64748B; line-height:1.75; margin:0; }
.ras-pillar-chip{
  display:inline-block;
  margin-top:18px;
  font-size:9px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;
  padding:4px 11px;
  border-radius:5px;
  color:#185FA5;
  background:#EBF4FF;
  border:1px solid #BFDBFE;
}
/* vary the accent per pillar via nth-child — no markup changes needed */
.ras-pillar:nth-child(1) .ras-pillar-icon{ background:#FDE9E6; }
.ras-pillar:nth-child(1) .ras-pillar-icon svg{ stroke:#E8493B; }
.ras-pillar:nth-child(1) .ras-pillar-chip{ color:#C8392C; background:#FDE9E6; border-color:#F8C9C2; }
.ras-pillar:nth-child(3) .ras-pillar-icon{ background:#FFF1E5; }
.ras-pillar:nth-child(3) .ras-pillar-icon svg{ stroke:#F97316; }
.ras-pillar:nth-child(3) .ras-pillar-chip{ color:#C2570B; background:#FFF1E5; border-color:#FED7AA; }

@media (max-width:1024px){
  .ras-pillars{ grid-template-columns:1fr; }
  .ras-pillar{ border-right:none; border-bottom:1px solid #E2E8F0; }
  .ras-pillar:last-child{ border-bottom:none; }
}

/* ============================================================
   SECTION SHARED SCAFFOLDING
   ============================================================ */
.ras-section{ padding:80px 52px; max-width:1320px; margin:0 auto;background: #ffffff; }
.ras-section-wrap{ background:#ffffff; }
.ras-section-wrap-slate{ background:#F8FAFC; }
.ras-section-wrap-navy{ background:#ffffff; }

.ras-eyebrow{
  font-size:10px;
  font-weight:700;
  letter-spacing:2.4px;
  text-transform:uppercase;
  margin-bottom:12px;
}
.ras-eyebrow-blue{ color:#185FA5; }
.ras-eyebrow-orange{ color:#F97316; }
.ras-eyebrow-muted{ color:#94A3B8; }

.ras-sec-h{
  font-family: 'Poppins',sans-serif;
  font-weight:700;
  font-size:30px;
  color:#0F172A;
  line-height:1.22;
  letter-spacing:-.3px;
  margin:0 0 10px;
}
.ras-sec-h em{ font-style:'Space Grotesk', sans-serif; }
.ras-sec-h-white{ color:#494949; }
.ras-sec-h-white em{ color:#F97316; }

.ras-sec-p{ font-size:18px; color:#64748B; line-height:1.8; max-width:560px; margin:0 0 40px; }
.ras-sec-p-white{ color:rgba(47, 47, 47, 0.55); }

/* ============================================================
   WHY / ADVANTAGE ROWS
   ============================================================ */
.ras-why-layout{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:64px;
  align-items:start;
}
.ras-why-left{ padding-top:6px; }
.ras-why-left .ras-sec-h{ font-size:27px; margin-bottom:16px; }
.ras-why-sub{ font-size:18px; color:#64748B; line-height:1.8; margin:0; }

.ras-why-rows{ display:flex; flex-direction:column; }
.ras-why-row{
  display:flex; gap:22px;
  padding:30px 0;
  border-bottom:1px solid #EEF2F6;
  align-items:flex-start;
}
.ras-why-row:first-child{ padding-top:0; }
.ras-why-row:last-child{ border-bottom:none; }
.ras-wr-num{
  font-family:'Poppins',sans-serif;
  font-size:38px;
  color:#E2E8F0;
  line-height:1;
  flex-shrink:0;
  width:40px;
}
.ras-wr-body{ flex:1; }
.ras-wr-tag{ font-size:10px; font-weight:700; letter-spacing:1.4px; text-transform:uppercase; margin-bottom:7px; }
.ras-wr-tag-blue{ color:#185FA5; }
.ras-wr-tag-orange{ color:#F97316; }
.ras-wr-tag-red{ color:#C8392C; }
.ras-wr-h{ font-weight:700; font-size:20px; color:#0F172A; margin:0 0 8px; line-height:1.3; }
.ras-wr-p{ font-size:18px; color:#64748B; line-height:1.75; margin:0; }
.ras-wr-foot{ font-size:11px; color:#94A3B8; margin-top:10px; }

@media (max-width:1024px){ .ras-why-layout{ grid-template-columns:1fr; gap:32px; } }

/* ============================================================
   COMPETITIONS (cards — used if section is enabled)
   ============================================================ */
.ras-comp-grid{ display:grid; grid-template-columns:repeat(2, 1fr); gap:18px; }
.ras-ccard{
  background:#fff;
  border:1px solid #E2E8F0;
  border-radius:14px;
  padding:30px;
  position:relative;
  overflow:hidden;
  transition:border-color .2s, transform .2s;
}
.ras-ccard:hover{ border-color:#94A3B8; transform:translateY(-2px); }
.ras-ccard-bar{ position:absolute; top:0; left:0; right:0; height:3px; }
.ras-ccard-bar-blue{ background:#185FA5; }
.ras-ccard-bar-orange{ background:#F97316; }
.ras-ccard-idx{ font-size:9px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:#CBD5E1; margin-bottom:11px; }
.ras-ccard h3{ font-weight:700; font-size:16px; color:#0F172A; margin:0 0 10px; line-height:1.3; }
.ras-ccard-badge{
  display:inline-block;
  font-size:9px; font-weight:700; letter-spacing:.4px; text-transform:uppercase;
  padding:4px 10px; border-radius:5px; margin-bottom:14px;
}
.ras-cb-blue{ background:#EBF4FF; color:#185FA5; border:1px solid #BFDBFE; }
.ras-cb-slate{ background:#F1F5F9; color:#475569; border:1px solid #E2E8F0; }
.ras-ccard p{ font-size:13px; color:#64748B; line-height:1.75; margin:0; }
.ras-ccard-tracks{ margin-top:16px; display:flex; flex-direction:column; gap:8px; }
.ras-ct{ display:flex; align-items:flex-start; gap:9px; font-size:12px; color:#475569; line-height:1.5; }
.ras-ct-dot{ width:5px; height:5px; border-radius:50%; flex-shrink:0; margin-top:6px; }
.ras-ct-dot-blue{ background:#185FA5; }
.ras-ct-dot-orange{ background:#F97316; }
.ras-ccard-foot{
  margin-top:20px; padding-top:16px; border-top:1px solid #F1F5F9;
  display:flex; justify-content:space-between; align-items:center;
}
.ras-cf-fee{ font-size:12px; font-weight:700; color:#0F172A; }
.ras-cf-link{
  font-size:12px; font-weight:700; color:#185FA5; text-decoration:none;
  display:flex; align-items:center; gap:5px; cursor:pointer;
}
.ras-cf-link svg{ width:11px; height:11px; stroke:#185FA5; fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }
@media (max-width:900px){ .ras-comp-grid{ grid-template-columns:1fr; } }

/* ============================================================
   COUNTDOWN
   ============================================================ */
.ras-cd-section{
  background: #ffffff;
  padding:80px 52px;
  text-align:center;
  overflow:hidden;
}
.ras-cd-section::before{
  content:'';
  position:absolute;
  top:50%; left:50%;
  width:780px; height:780px;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(24,95,165,.18), transparent 65%);
  pointer-events:none;
}
.ras-cd-label{
  position:relative; z-index:1;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size:10px; font-weight:700; letter-spacing:2.4px; text-transform:uppercase;
  color:rgba(0, 0, 0, 0.4);
  margin-bottom:16px;
}
.ras-cd-h{
  position:relative; z-index:1;
  font-family: 'poppins', sans-serif;
  font-size:clamp(24px,3vw,34px);
  font-weight:700;
  color:#020202;
  line-height:1.3;
  margin-bottom:48px;
}
.ras-cd-h em{ color:#F97316; font-style:italic; }
.ras-cd-grid{ position:relative; z-index:1; display:flex; justify-content:center; gap:16px; margin-bottom:36px; flex-wrap:wrap; }
.ras-cd-unit{
  background:rgba(203, 203, 203, 0.23);
  border:1px solid rgba(0, 0, 0, 0.1);
  border-radius:12px;
  padding:22px 30px;
  min-width:100px;
}
.ras-cd-num{
  font-family:'Poppins',sans-serif;
  font-size:48px;
  color:#000000;
  line-height:1;
  transition:transform .2s, opacity .2s;
}
.ras-cd-lbl{ font-size:10px; letter-spacing:1.5px; text-transform:uppercase; color:rgba(0, 0, 0, 0.4); margin-top:6px; font-weight:600; }
.ras-cd-meta{ position:relative; z-index:1; display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }
.ras-cd-chip{
  display:flex; align-items:center; gap:7px;
  font-size:12px; font-weight:500; color:rgba(0, 0, 0, 0.746);
  background:rgba(203, 203, 203, 0.23);
  border:1px solid rgb(0, 0, 0);
  padding:8px 15px; border-radius:20px;
}
.ras-cd-chip svg{ width:13px; height:13px; stroke:#F97316; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
@media (max-width:640px){ .ras-cd-section{ padding:56px 20px; } .ras-cd-unit{ padding:18px 18px; min-width:80px; } .ras-cd-num{ font-size:36px; } }

/* ============================================================
   BOOK OF RECORDS
   ============================================================ */
.ras-records-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; }
.ras-rec-card{
  border:1px solid rgba(255,255,255,.1);
  border-radius:14px;
  padding:32px;
  background:rgba(223, 223, 223, 0.278);
}
.ras-rec-tag{ font-size:20px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:#F97316; margin-bottom:16px; }
.ras-rec-card p{ font-size:17px; color:rgba(77, 77, 77, 0.789); line-height:1.75; margin:0; }
.ras-rec-badges{ display:flex; gap:7px; margin-top:20px; flex-wrap:wrap; }
.ras-rec-b{
  font-size:9px; font-weight:600; padding:4px 10px; border-radius:5px;
  border:1px solid rgba(255,255,255,.12);
  color:rgba(0, 0, 0, 0.731);
  letter-spacing:.3px;
  background-color: #fff;
}
.ras-rec-card:nth-child(1) .ras-rec-tag{ color:#F2876E; }
.ras-rec-card:nth-child(2) .ras-rec-tag{ color:#7FB3E8; }
.ras-rec-card:nth-child(3) .ras-rec-tag{ color:#F97316; }
@media (max-width:900px){ .ras-records-grid{ grid-template-columns:1fr; } }

/* ============================================================
   BENEFITS
   ============================================================ */
.ras-ben-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:18px; }
.ras-ben-cell{
  background:#fff;
  border:1px solid #E2E8F0;
  border-radius:12px;
  padding:26px;
  transition:border-color .2s, transform .2s;
}
.ras-ben-cell:hover{ border-color:#185FA5; transform:translateY(-2px); }
.ras-ben-icon{
  width:42px; height:42px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
  background:#EBF4FF;
}
.ras-ben-icon svg{ width:20px; height:20px; stroke:#185FA5; fill:none; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.ras-ben-title{ font-weight:700; font-size:20px; color:#0F172A; margin-bottom:7px; line-height:1.35; }
.ras-ben-text{ font-size:18px; color:#64748B; line-height:1.7; }
/* gently rotate the accent colour across the grid */
.ras-ben-cell:nth-child(3n+2) .ras-ben-icon{ background:#FFF1E5; }
.ras-ben-cell:nth-child(3n+2) .ras-ben-icon svg{ stroke:#F97316; }
.ras-ben-cell:nth-child(3n+3) .ras-ben-icon{ background:#FDE9E6; }
.ras-ben-cell:nth-child(3n+3) .ras-ben-icon svg{ stroke:#E8493B; }
@media (max-width:1024px){ .ras-ben-grid{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:560px){ .ras-ben-grid{ grid-template-columns:1fr; } }

/* ============================================================
   PANELS + PARTNERS
   ============================================================ */
.ras-panels-grid{ display:grid; grid-template-columns:repeat(2, 1fr); gap:14px; }
.ras-panel-item{
  background:#fff; border:1px solid #E2E8F0; border-radius:12px;
  padding:20px; display:flex; gap:14px; align-items:flex-start;
}
.ras-pday{
  background:#EBF4FF; color:#185FA5;
  font-size:9px; font-weight:700; padding:4px 9px; border-radius:5px;
  white-space:nowrap; letter-spacing:.5px; text-transform:uppercase; flex-shrink:0;
}
.ras-panel-item h4{ font-weight:700; font-size:13.5px; color:#0F172A; margin:0 0 4px; line-height:1.35; }
.ras-panel-item p{ font-size:11px; color:#94A3B8; margin:0; }

.ras-pblock{ background:#fff; border:1px solid #E2E8F0; border-radius:12px; overflow:hidden; }
.ras-pblock-head{
  background:#F8FAFC; padding:13px 18px; font-size:10px; font-weight:700; color:#0F172A;
  border-bottom:1px solid #E2E8F0; letter-spacing:.4px; text-transform:uppercase;
}
.ras-prow{
  display:flex; justify-content:space-between; align-items:center;
  padding:13px 18px; border-bottom:1px solid #F8FAFC; font-size:13px; color:#334155;
}
.ras-prow:last-child{ border-bottom:none; }
.ras-tag-c{ background:#DCFCE7; color:#166534; font-size:9px; font-weight:700; padding:3px 9px; border-radius:5px; letter-spacing:.3px; text-transform:uppercase; }
.ras-tag-d{ background:#FEF3C7; color:#92400E; font-size:9px; font-weight:700; padding:3px 9px; border-radius:5px; letter-spacing:.3px; text-transform:uppercase; }
@media (max-width:900px){ .ras-panels-grid{ grid-template-columns:1fr; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.ras-test-section{ background:#F8FAFC; padding:80px 0; overflow:hidden; }
.ras-test-head{ padding:0 52px; margin-bottom:44px; }
.ras-test-row{ display:flex; gap:18px; overflow:hidden; animation:testscroll 38s linear infinite; will-change:transform; }
.ras-test-row-rev{ animation-direction:reverse; }
.ras-tcard{
  background:#fff; border:1px solid #E2E8F0; border-radius:14px;
  padding:26px; min-width:300px; max-width:300px; flex-shrink:0;
}
.ras-tcard-q{ font-family:'Fraunces', serif; font-size:38px; color:#DCE9FA; line-height:.8; margin-bottom:8px; }
.ras-tcard-text{ font-size:13px; color:#475569; line-height:1.75; margin-bottom:18px; }
.ras-tcard-author{ display:flex; align-items:center; gap:11px; }
.ras-tcard-av{
  width:36px; height:36px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:12px; font-weight:700; color:#fff; flex-shrink:0;
}
.ras-tcard-name{ font-weight:700; font-size:12.5px; color:#0F172A; }
.ras-tcard-role{ font-size:11px; color:#94A3B8; }
@keyframes testscroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .ras-test-row{ animation:none; } }

/* ============================================================
   EDITION 1.0
   ============================================================ */
.ras-ed1-layout{ display:grid; grid-template-columns:1fr 380px; gap:56px; align-items:start; }
.ras-ed1-kicker{ font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:#F97316; margin-bottom:16px; }
.ras-ed1-title{ font-weight:700; font-size:27px; line-height:1.25; color:#0F172A; margin:0 0 16px; font-family: 'poppins', sans-serif; }
.ras-ed1-body{ font-size:18px; color:#64748B; line-height:1.8; margin:0 0 26px; }
.ras-ed1-winners{ margin-top:30px; padding-top:26px; border-top:1px solid #E2E8F0; }
.ras-ed1-winners-label{ font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:#94A3B8; margin-bottom:12px; }
.ras-ed1-winner-row{ display:flex; justify-content:space-between; font-size:13px; padding:7px 0; border-bottom:1px solid #F8FAFC; color:#475569; }
.ras-ed1-winner-row:last-child{ border-bottom:none; }
.ras-ed1-winner-prize{ font-weight:700; color:#0F172A; }
.ras-ed1-stats{ display:grid; grid-template-columns:repeat(2, 1fr); gap:14px; }
.ras-ed1-stat{ background:#F8FAFC; border:1px solid #E2E8F0; border-radius:12px; padding:22px; }
.ras-ed1-sn{ font-family:'Poppins',sans-serif; font-size:36px; line-height:1; margin-bottom:5px; }
.ras-ed1-sl{ font-size:12px; color:#94A3B8; }
@media (max-width:1024px){ .ras-ed1-layout{ grid-template-columns:1fr; gap:32px; } }
@media (max-width:560px){ .ras-ed1-stats{ grid-template-columns:1fr 1fr; } }

/* ============================================================
   FEATURED-IN LOGO STRIP
   ============================================================ */
.container.rounded{ padding:56px 24px 64px; text-align:center; }
.container.rounded h1.text-center{
  font-family:'DM Sans', sans-serif;
  font-size:11px;
  font-weight:600;
  letter-spacing:2.4px;
  text-transform:uppercase;
  color:#94A3B8;
  margin-bottom:34px;
}
.container.rounded .slider{
  overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image:linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.container.rounded .slider .logos{
  display:inline-flex;
  align-items:center;
  gap:64px;
  animation:logoslide 24s linear infinite;
  will-change:transform;
  padding:0 32px;
}
.lsb-logo{
  height:80px;
  width:auto;
  object-fit:contain;
  /* opacity:.45;
  filter:grayscale(1); */
  transition:opacity .2s, filter .2s;
}
.lsb-logo:hover{ opacity:1; filter:grayscale(0); }
@keyframes logoslide{ from{ transform:translateX(0); } to{ transform:translateX(-100%); } }
@media (prefers-reduced-motion: reduce){ .container.rounded .slider .logos{ animation:none; } }

/* ============================================================
   FOOTER (kept for when the section is re-enabled)
   ============================================================ */
.ras-footer{ background:#080E1A; padding:60px 52px 28px; }
.ras-foot-top{
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px;
  margin-bottom:48px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,.08);
}
.ras-foot-logo{ font-family:'Poppins',sans-serif; font-size:28px; color:#fff; letter-spacing:1px; margin-bottom:12px; }
.ras-foot-logo span{ color:#F97316; }
.ras-foot-about{ font-size:12px; color:rgba(255,255,255,.4); line-height:1.8; }
.ras-foot-col h4{ font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,.55); margin-bottom:16px; }
.ras-foot-col ul{ list-style:none; display:flex; flex-direction:column; gap:10px; margin:0; padding:0; }
.ras-foot-col a{ font-size:13px; color:rgba(255,255,255,.4); text-decoration:none; transition:color .15s; }
.ras-foot-col a:hover{ color:rgba(255,255,255,.85); }
.ras-foot-bottom{ display:flex; justify-content:space-between; align-items:center; font-size:11px; color:rgba(255,255,255,.25); flex-wrap:wrap; gap:8px; }
@media (max-width:900px){ .ras-foot-top{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .ras-foot-top{ grid-template-columns:1fr; } .ras-foot-bottom{ flex-direction:column; align-items:flex-start; } }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0F172A;
  border: 1px solid rgba(255, 255, 255, .1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 999;
  box-shadow: 0 12px 24px -8px rgba(15, 23, 42, .4);
}

#btt.show {
  opacity: 1;
  pointer-events: all;
}

#btt:hover {
  transform: translateY(-2px);
}

#btt svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#btt:focus-visible {
  outline: 2px solid #185FA5;
  outline-offset: 2px;
}

/* Tablets and small laptops */
@media (max-width: 1024px) {
  #btt {
    bottom: 22px;
    right: 22px;
  }
}

/* Large phones / small tablets (portrait) */
@media (max-width: 768px) {
  #btt {
    width: 40px;
    height: 40px;
    bottom: 18px;
    right: 18px;
  }

  #btt svg {
    width: 15px;
    height: 15px;
  }
}

/* Phones */
@media (max-width: 480px) {
  #btt {
    width: 38px;
    height: 38px;
    /* respect iOS home-indicator / notch safe area so the button
       doesn't sit under the gesture bar on iPhones */
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    right: 14px;
    box-shadow: 0 8px 18px -6px rgba(15, 23, 42, .4);
  }

  #btt svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.25;
  }
}

/* Very small phones */
@media (max-width: 340px) {
  #btt {
    width: 34px;
    height: 34px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    right: 12px;
  }

  #btt svg {
    width: 13px;
    height: 13px;
  }
}

/* Disable hover-lift on touch devices that can't hover, and respect
   reduced-motion preferences */
@media (hover: none) {
  #btt:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #btt {
    transition: opacity .2s;
  }

  #btt:hover {
    transform: none;
  }
}
/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.r{ opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s ease; }
.r.on{ opacity:1; transform:none; }
.d1{ transition-delay:.1s; }
.d2{ transition-delay:.2s; }
.d3{ transition-delay:.3s; }
@media (prefers-reduced-motion: reduce){
  .r{ opacity:1; transform:none; transition:none; }
}

/* ============================================================
   GLOBAL RESPONSIVE TWEAKS FOR SECTION SCAFFOLDING
   ============================================================ */
@media (max-width:640px){
  .ras-section{ padding:56px 20px; }
  .ras-sec-h{ font-size:24px; }
}

/* Visible keyboard focus across interactive elements on this page */
.ras-btn-primary:focus-visible,
.ras-btn-blue:focus-visible,
.ras-btn-outline:focus-visible,
.ras-cf-link:focus-visible{
  outline:2px solid #185FA5;
  outline-offset:2px;
}
/* ═══════════════════════════════════════════════════════
   EDITION 1.0 — LIGHT THEME REBUILD
   Palette: white / soft blue-gray / blue accent.
   No dark backgrounds anywhere on the page.
═══════════════════════════════════════════════════════ */

:root{
  --blue:        #1E3A5F;  /* icmeg.org reference — medium navy, not light, not dark */
  --blue-light:  #3D5C82;
  --blue-deep:   #14293F;
  --blue-tint:   rgba(30,58,95,.08);
  --blue-tint-2: rgba(30,58,95,.05);

  --bg:          #FAFAFA;
  --bg-warm:     #F5F6F8;
  --bg-hero:     #24405F;   /* medium navy hero surface */
  --ink:         #0A0E17;
  --ink-2:       #141B2B;

  --text-1:      #14181F;
  --text-2:      #525866;
  --text-3:      #757D8C;
  --text-4:      #A4ACBA;

  --line:        rgba(10,14,23,.08);
  --line-mid:    rgba(10,14,23,.12);
  --line-blue:   rgba(30,58,95,.22);

  --red: var(--blue); /* legacy var(--red) refs in inline SVG strokes still point here */

  --font-display: 'Bebas Neue','Arial Narrow',Impact,sans-serif;
  --font-serif:   'Fraunces',Georgia,'Times New Roman',serif;
  --font-mono:    'JetBrains Mono',ui-monospace,Menlo,Consolas,monospace;
  --font-body:    'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

*,*::before,*::after{ box-sizing:border-box; }

/* ═══════════════════════════════════════
   SHARED LABEL
═══════════════════════════════════════ */
.ed1-purple-label{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  font-family:var(--font-mono);
  font-size:.65rem;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--blue-deep);
  background:var(--blue-tint);
  border:1px solid var(--line-blue);
  padding:.35rem .9rem;
  border-radius:100px;
  margin-bottom:1rem;
}

/* ═══════════════════════════════════════
   HERO — medium navy theme (icmeg.org ref)
   Deliberately neither white/light nor
   near-black/dark — a steady mid-tone
   navy surface with light text on top.
═══════════════════════════════════════ */
.ed1-hero{
  position:relative;
  background:linear-gradient(150deg, #2A4A6E 0%, var(--bg-hero) 50%, #1E3A5F 100%);
  color:#fff;
  overflow:hidden;
  padding:5rem 2rem 4rem;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.ed1-hero-grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:42px 42px;
  pointer-events:none;
}

.ed1-hero-blob{
  position:absolute;
  border-radius:50%;
  filter:blur(90px);
  pointer-events:none;
  opacity:.4;
}
.ed1-hero-blob-a{
  width:420px; height:420px;
  background:radial-gradient(circle, #4D7099 0%, transparent 70%);
  top:-140px; right:-100px;
}
.ed1-hero-blob-b{
  width:360px; height:360px;
  background:radial-gradient(circle, #6A8FB8 0%, transparent 70%);
  bottom:-160px; left:-80px;
  opacity:.25;
}

.ed1-hero-inner{
  position:relative;
  z-index:2;
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:3.5rem;
  align-items:center;
}

.ed1-hero-eyebrow{
  font-family:var(--font-mono);
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#A9C1DA;
  margin-bottom:1.2rem;
}

.ed1-hero-title{
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight:400;
  font-size:clamp(2.6rem, 5.5vw, 4.4rem);
  line-height:1;
  letter-spacing:.01em;
  margin-bottom:1.5rem;
  display:flex;
  flex-direction:column;
  color:#fff;
}
.ed1-hero-title span{
  font-family:var(--font-serif);
  font-style:italic;
  font-weight:400;
  font-size:.6em;
  color:#9FBEDD;
  margin-top:.3rem;
}

.ed1-hero-body{
  font-family:var(--font-body);
  font-size:1rem;
  line-height:1.75;
  color:rgba(255,255,255,.72);
  max-width:640px;
  margin-bottom:1.75rem;
}

.ed1-hero-chips{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
}

.ed1-chip{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  font-family:var(--font-mono);
  font-size:.74rem;
  font-weight:600;
  letter-spacing:.04em;
  color:#fff;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  padding:.45rem .9rem;
  border-radius:100px;
  white-space:nowrap;
}
.ed1-chip svg{
  width:14px; height:14px;
  stroke:#9FBEDD;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  flex-shrink:0;
}

.ed1-stat-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:1rem;
}

.ed1-stat-box{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius-lg);
  padding:1.25rem 1rem;
  text-align:center;
  transition:background .25s ease, border-color .25s ease, transform .25s ease;
}
.ed1-stat-box:hover{
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.3);
  transform:translateY(-2px);
}

.ed1-stat-num{
  font-family:'Poppins',sans-serif;
  font-size:clamp(1.7rem, 3vw, 2.3rem);
  line-height:1;
  color:#fff;
}
.ed1-stat-num .u{
  font-size:.5em;
  color:#9FBEDD;
  margin-left:1px;
}

.ed1-stat-lbl{
  font-family:var(--font-mono);
  font-size:.62rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(255,255,255,.55);
  margin-top:.5rem;
}

/* ═══════════════════════════════════════
   GALLERY SECTION WRAPPER
═══════════════════════════════════════ */
.ed1-gallery-section{
  padding:5rem 0 0;
  background:var(--bg-warm);
}

.ed1-gallery-inner{
  max-width:860px;
  margin:0 auto 3rem;
  padding:0 2rem;
  text-align:center;
}

.ed1-gallery-heading{
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight:400;
  font-size:clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing:.01em;
  color:var(--ink);
  margin:.5rem 0 1rem;
  line-height:1.1;
}
.ed1-gallery-heading em{
  font-family:var(--font-serif);
  font-style:italic;
  font-weight:400;
  color:var(--blue);
}

.ed1-gallery-sub{
  font-family:var(--font-body);
  font-size:.95rem;
  line-height:1.8;
  color:var(--text-2);
  max-width:720px;
  margin:0 auto;
}

/* ═══════════════════════════════════════
   CINEMATIC GALLERY (gal-root)
   Slide captions still sit on a dark
   scrim over the photo itself — this is
   for text legibility on an image, not
   a page "dark theme", so it stays.
═══════════════════════════════════════ */
#galRoot.gal-root{
  position:relative;
  width:100%;
  max-width:1250px;
  margin:0 auto;
  background:#fff;
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-sizing:border-box;
  box-shadow:0 20px 60px rgba(10,14,23,.14), 0 0 0 1px var(--line);
}

.gal-stage{
  position:relative;
  width:100%;
  min-height:620px;
  overflow:hidden;
  box-sizing:border-box;
}

.gal-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:flex;
  align-items:flex-end;
  opacity:0;
  visibility:hidden;
  transition:opacity .7s ease;
  z-index:1;
}
.gal-slide.active{
  opacity:1;
  visibility:visible;
  z-index:2;
}

.gal-slide-bg{
  position:absolute;
  inset:0;
}

.gal-slide-img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  opacity:.92;
}

.gal-slide-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(8,12,22,.05) 0%,
    rgba(8,12,22,.2) 30%,
    rgba(8,12,22,.72) 72%,
    rgba(8,12,22,.92) 100%
  );
}

.gal-slide-content{
  position:relative;
  z-index:5;
  box-sizing:border-box;
  width:100%;
  max-width:700px;
  padding:70px;
}

.gal-slide-tag{
  display:inline-block;
  padding:10px 18px;
  border-radius:6px;
  background:rgba(30,58,95,.28);
  border:1px solid rgba(79,141,253,.5);
  color:#EAF1FF;
  font-family:var(--font-mono);
  font-size:12px;
  font-weight:700;
  letter-spacing:.25em;
  text-transform:uppercase;
  margin-bottom:24px;
}

.gal-slide-title{
  font-family:'Poppins',sans-serif;
  color:#fff;
  font-size:46px;
  font-weight:400;
  letter-spacing:.01em;
  line-height:1.12;
  margin-bottom:18px;
}

.gal-slide-desc{
  font-family:var(--font-body);
  color:rgba(255,255,255,.85);
  font-size:16.5px;
  line-height:1.8;
  max-width:650px;
}

.gal-slide-num{
  position:absolute;
  top:40px;
  right:40px;
  z-index:6;
  font-family:'Poppins',sans-serif;
  font-size:64px;
  font-weight:400;
  color:rgba(255,255,255,.18);
  line-height:1;
}
.gal-slide-num span{ font-size:24px; }

.gal-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:54px;
  height:54px;
  border:none;
  border-radius:50%;
  background:rgba(10,14,23,.5);
  color:#fff;
  cursor:pointer;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .25s ease, transform .25s ease;
}
.gal-arrow:hover{
  background:var(--blue);
  transform:translateY(-50%) scale(1.08);
}
.gal-arrow-prev{ left:16px; }
.gal-arrow-next{ right:16px; }
.gal-arrow svg{
  width:20px; height:20px;
  stroke:#fff;
  fill:none;
  stroke-width:2.5;
}

.gal-thumbs{
  display:flex;
  gap:10px;
  padding:16px;
  background:#F3F5F9;
  overflow-x:auto;
  scrollbar-width:none;
  width:100%;
  box-sizing:border-box;
  border-top:1px solid var(--line);
}
.gal-thumbs::-webkit-scrollbar{ display:none; }

.gal-thumb{
  flex:1 0 auto;
  min-width:90px;
  height:54px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  opacity:.55;
  border:2px solid transparent;
  background:#0B1220;
  transition:opacity .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.gal-thumb:hover{ opacity:.8; }
.gal-thumb.active{
  opacity:1;
  border-color:var(--blue);
  box-shadow:0 0 0 2px rgba(30,58,95,.25), 0 0 14px rgba(30,58,95,.25);
}
.gal-thumb span{
  font-family:var(--font-mono);
  color:#fff;
  font-size:13px;
  font-weight:700;
  letter-spacing:.18em;
}

/* ═══════════════════════════════════════
   BOOTSTRAP CAROUSEL
═══════════════════════════════════════ */
#carouselExampleInterval{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 1rem;
}

#carouselExampleInterval .carousel-item img{
  width:100%;
  height:560px;
  object-fit:cover;
  border-radius:var(--radius-lg);
  display:block;
}

#carouselExampleInterval .carousel-control-prev,
#carouselExampleInterval .carousel-control-next{
  width:48px;
  opacity:0;
  transition:opacity .25s ease;
}
#carouselExampleInterval:hover .carousel-control-prev,
#carouselExampleInterval:hover .carousel-control-next{
  opacity:1;
}

#carouselExampleInterval .carousel-control-prev-icon,
#carouselExampleInterval .carousel-control-next-icon{
  background-color:var(--blue);
  border-radius:50%;
  padding:18px;
  background-size:50% 50%;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testi-section{
  width:100%;
  padding:60px 0;
  overflow:hidden;
  background:var(--bg-warm);
}

.testi-outer{
  overflow:hidden;
  width:100%;
  margin-bottom:24px;
}

.testi-track{
  display:flex;
  gap:24px;
  width:max-content;
}

.testi-track-rtl{ animation:ed1-scroll-rtl 38s linear infinite; }
.testi-track-ltr{ animation:ed1-scroll-ltr 38s linear infinite; }
.testi-track-rtl:hover,
.testi-track-ltr:hover{ animation-play-state:paused; }

@keyframes ed1-scroll-rtl{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
@keyframes ed1-scroll-ltr{
  from{ transform:translateX(-50%); }
  to{ transform:translateX(0); }
}

.testi-card{
  position:relative;
  width:320px;
  min-height:240px;
  flex-shrink:0;
  padding:28px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:0 10px 25px rgba(10,14,23,.06);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.testi-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 38px rgba(10,14,23,.1);
  border-color:var(--line-blue);
}

.testi-card::before{
  content:"";
  position:absolute;
  top:24px; left:28px;
  width:48px; height:4px;
  background:var(--blue);
  border-radius:50px;
}

.testi-card::after{
  position:absolute;
  top:6px; right:22px;
  font-size:56px;
  font-family:Georgia, serif;
  color:var(--blue-tint);
}

.testi-quote{
  font-family:var(--font-body);
  margin-top:38px;
  color:var(--text-1);
  font-size:14.5px;
  line-height:1.85;
  min-height:90px;
}

.testi-author{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:20px;
}

.testi-avatar{
  width:44px; height:44px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--blue), var(--blue-deep));
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-family:var(--font-mono);
  font-size:13px;
  font-weight:700;
  flex-shrink:0;
}

.testi-name{
  font-family:var(--font-body);
  font-size:14px;
  font-weight:700;
  color:var(--text-1);
  margin-bottom:2px;
}

.testi-role{
  font-family:var(--font-body);
  font-size:12.5px;
  line-height:1.5;
  color:var(--text-3);
}

/* ═══════════════════════════════════════
   HIGHLIGHTS GRID
═══════════════════════════════════════ */
.ed1-hl-section{
  padding:5rem 2rem;
  background:#ffffff;
}

.ed1-hl-inner{
  max-width:1280px;
  margin:0 auto;
  text-align:center;
}

.ed1-hl-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1.25rem;
  margin-top:2.5rem;
  text-align:left;
}

.ed1-hl-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:1.75rem;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ed1-hl-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(10,14,23,.08);
  border-color:var(--line-blue);
}

.ed1-hl-icon{
  width:44px; height:44px;
  border-radius:12px;
  background:var(--blue-tint);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:1rem;
}
.ed1-hl-icon svg{
  width:22px; height:22px;
  fill:none;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.ed1-hl-title{
  font-family:'Poppins',sans-serif;
  font-size:1.2rem;
  letter-spacing:.01em;
  color:var(--ink);
  margin-bottom:.6rem;
  line-height:1.15;
}

.ed1-hl-text{
  font-family:var(--font-body);
  font-size:.875rem;
  line-height:1.7;
  color:var(--text-2);
  margin-bottom:1rem;
}

.ed1-hl-badge{
  display:inline-flex;
  align-items:center;
  font-family:var(--font-mono);
  font-size:.68rem;
  font-weight:600;
  letter-spacing:.04em;
  color:var(--blue-deep);
  background:var(--blue-tint);
  border:1px solid var(--line-blue);
  padding:.4rem .7rem;
  border-radius:100px;
}

/* ═══════════════════════════════════════
   WINNERS / EVENTS GRID
═══════════════════════════════════════ */
.ed1-winners-section{
  padding:5rem 2rem;
  background:var(--bg-warm);
}

.ed1-winners-inner{
  max-width:1280px;
  margin:0 auto;
  text-align:center;
}

.ed1-events-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:1.25rem;
  margin-top:2.5rem;
  text-align:left;
}

.ed1-event-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
  transition:box-shadow .25s ease, border-color .25s ease;
}
.ed1-event-card:hover{
  box-shadow:0 16px 40px rgba(10,14,23,.08);
  border-color:var(--line-blue);
}

.ed1-event-banner{
  height:96px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, var(--blue-light), var(--blue)) !important;
}
.ed1-event-banner svg{ width:40px; height:40px; }

.ed1-event-body{
  padding:1.5rem;
}

.ed1-event-name{
  font-family:'Poppins',sans-serif;
  font-size:1.15rem;
  letter-spacing:.01em;
  color:var(--ink);
  margin-bottom:1rem;
}

.ed1-winner-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
  padding:.55rem 0;
  border-top:1px solid var(--line);
  font-family:var(--font-body);
  font-size:.82rem;
}
.ed1-winner-row:first-of-type{ border-top:none; }

.ed1-w-place{
  font-family:var(--font-mono);
  font-size:.62rem;
  font-weight:700;
  letter-spacing:.1em;
  color:var(--blue-deep);
  background:var(--blue-tint);
  padding:.25rem .55rem;
  border-radius:100px;
  white-space:nowrap;
}
.ed1-w-name{
  flex:1;
  color:var(--text-2);
  padding:0 .5rem;
}
.ed1-w-prize{
  font-weight:700;
  color:var(--ink);
  white-space:nowrap;
}

/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
.ed1-cta-section{
  padding:5.5rem 2rem;
  text-align:center;
  background:#fff;
}

.ed1-cta-inner{
  max-width:760px;
  margin:0 auto;
}

.ed1-cta-eyebrow{
  font-family:var(--font-mono);
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--blue-deep);
  display:block;
  margin-bottom:1rem;
}

.ed1-cta-title{
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight:400;
  font-size:clamp(2.2rem, 5vw, 3.2rem);
  color:var(--ink);
  line-height:1.05;
  margin-bottom:1.25rem;
}

.ed1-cta-sub{
  font-family:var(--font-body);
  font-size:.95rem;
  line-height:1.75;
  color:var(--text-2);
  margin-bottom:2.25rem;
}

.ed1-cta-btns{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  margin-top:40px !important;
  min-height:60px;
}

.ed1-btn-outline{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background:transparent;
  color:var(--ink);
  border:1px solid var(--line-mid);
  font-family:var(--font-body);
  font-weight:600;
  font-size:.9rem;
  padding:.875rem 1.5rem;
  border-radius:100px;
  text-decoration:none;
  transition:background .2s ease, border-color .2s ease;
}
.ed1-btn-outline:hover{
  background:var(--blue-tint-2);
  border-color:var(--line-blue);
}

.ed1-btn-icon{
  width:16px; height:16px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  flex-shrink:0;
}

.ed1-cta-btns .ed1-nav-cta{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  height:auto;
  padding:.875rem 1.5rem;
  border-radius:100px;
  background:var(--blue);
  color:#fff;
  font-family:var(--font-body);
  font-weight:700;
  font-size:.9rem;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(30,58,95,.3);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.ed1-cta-btns .ed1-nav-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(30,58,95,.38);
  background:var(--blue-deep);
  color:#fff;
}

/* ═══════════════════════════════════════
   RESPONSIVE — single source of truth,
   mobile rules layered from wide to narrow
═══════════════════════════════════════ */

@media (max-width:1100px){
  .ed1-hl-grid{ grid-template-columns:repeat(2, 1fr); }
}

@media (max-width:991px){
  .gal-stage{ min-height:500px; }
  .gal-slide-content{ padding:50px; }
  .gal-slide-title{ font-size:36px; }
  .gal-slide-desc{ font-size:15px; }

  #carouselExampleInterval .carousel-item img{ height:400px; border-radius:var(--radius-md); }
}

@media (max-width:900px){
  .ed1-hero-inner{
    grid-template-columns:1fr;
    gap:2.5rem;
  }
  .ed1-stat-grid{ grid-template-columns:repeat(3, 1fr); }
  .ed1-events-grid{ grid-template-columns:1fr; }
}

@media (max-width:768px){
  .ed1-gallery-section{ padding:3rem 0 0; }
  .ed1-gallery-inner{ padding:0 1.25rem; margin-bottom:1.75rem; }
  .ed1-gallery-heading{ font-size:clamp(1.6rem, 6vw, 2.2rem); }
  .ed1-gallery-sub{ font-size:.85rem; }

  #galRoot.gal-root{ border-radius:var(--radius-md); margin:0 auto; }
  .gal-stage{ min-height:420px; }

  .gal-slide-content{ padding:24px 20px 28px; }
  .gal-slide-tag{ font-size:10px; padding:6px 12px; margin-bottom:10px; letter-spacing:.16em; }
  .gal-slide-title{ font-size:22px; line-height:1.2; margin-bottom:0; }
  .gal-slide-desc{ display:none; }
  .gal-slide-num{ font-size:32px; top:16px; right:16px; }
  .gal-slide-num span{ font-size:14px; }
  .gal-arrow{ width:38px; height:38px; }
  .gal-arrow svg{ width:16px; height:16px; }
  .gal-arrow-prev{ left:10px; }
  .gal-arrow-next{ right:10px; }
  .gal-thumbs{ gap:6px; padding:10px 8px; }
  .gal-thumb{ min-width:48px; height:34px; border-radius:6px; }
  .gal-thumb span{ font-size:11px; }

  #carouselExampleInterval{ padding:0 .75rem; }
  #carouselExampleInterval .carousel-item img{ height:280px; border-radius:var(--radius-sm); }
  #carouselExampleInterval .carousel-control-prev,
  #carouselExampleInterval .carousel-control-next{ opacity:1; width:38px; }

  .testi-card{ width:270px; min-height:230px; padding:22px; }
  .testi-quote{ font-size:13.5px; line-height:1.75; min-height:84px; }

  .ed1-hl-section,
  .ed1-winners-section{ padding:3.5rem 1.25rem; }
  .ed1-hl-grid{ grid-template-columns:1fr; }
}

/* =========================
   BASE (Mobile First)
   ========================= */
.ed1-events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ed1-event-card {
    padding: 16px;
}

.ed1-event-name {
    font-size: 18px;
}

.ed1-cta-title {
    font-size: 24px;
}

/* =========================
   SMALL PHONES (320px - 480px)
   ========================= */
@media (min-width: 320px) and (max-width: 480px) {
    .ed1-gallery-heading {
        font-size: 22px;
        text-align: center;
    }

    .ed1-gallery-sub {
        font-size: 14px;
        text-align: center;
    }

    .ed1-event-card {
        padding: 14px;
    }

    .ed1-event-name {
        font-size: 16px;
    }

    .ed1-winner-row {
        flex-direction: column;
        gap: 6px;
    }

    .ed1-cta-title {
        font-size: 22px;
        text-align: center;
    }
}

/* =========================
   LARGE PHONES (481px - 767px)
   ========================= */
@media (min-width: 481px) and (max-width: 767px) {
    .ed1-events-grid {
        grid-template-columns: 1fr;
    }

    .ed1-gallery-heading {
        font-size: 26px;
    }

    .ed1-event-name {
        font-size: 18px;
    }
}

/* =========================
   TABLETS (768px - 1024px)
   ========================= */
@media (min-width: 768px) and (max-width: 1024px) {
    .ed1-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ed1-gallery-heading {
        font-size: 30px;
    }

    .ed1-event-name {
        font-size: 19px;
    }

    .ed1-cta-title {
        font-size: 32px;
    }
}

/* =========================
   SMALL LAPTOPS (1025px - 1280px)
   ========================= */
@media (min-width: 1025px) and (max-width: 1280px) {
    .ed1-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ed1-gallery-heading {
        font-size: 34px;
    }
}

/* =========================
   DESKTOP (1281px - 1440px)
   ========================= */
@media (min-width: 1281px) and (max-width: 1440px) {
    .ed1-events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================
   LARGE DESKTOP (1441px - 1920px)
   ========================= */
@media (min-width: 1441px) and (max-width: 1920px) {
    .ed1-events-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: auto;
    }
}

/* =========================
   ULTRA WIDE (1921px+)
   ========================= */
@media (min-width: 1921px) {
    .ed1-events-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px;
        margin: auto;
    }

    .ed1-gallery-heading {
        font-size: 42px;
    }
}
@media (max-width:600px){
  .ed1-hero{ padding:3rem 1rem 2.5rem; }
  .ed1-hero-title{ font-size:clamp(2.2rem, 10vw, 3.5rem); }
  .ed1-hero-body{ font-size:.88rem; }
  .ed1-hero-chips{ gap:.4rem; }
  .ed1-chip{ font-size:.72rem; padding:.3rem .7rem; }
  .ed1-stat-grid{ grid-template-columns:repeat(2, 1fr); }
  .ed1-stat-num{ font-size:1.7rem; }

  .ed1-cta-section{ padding:3.5rem 1rem; }
  .ed1-cta-title{ font-size:clamp(1.8rem, 8vw, 2.6rem); }
  .ed1-cta-btns{ flex-direction:column; align-items:stretch; }
  .ed1-btn-outline,
  .ed1-cta-btns .ed1-nav-cta{ justify-content:center; text-align:center; padding:.875rem 1rem; }
}

@media (max-width:480px){
  #galRoot.gal-root{ margin:0 auto; }
  .gal-stage{ min-height:340px; }
  .gal-slide-title{ font-size:18px; }
  .gal-arrow{ width:32px; height:32px; }
  .gal-arrow-prev{ left:6px; }
  .gal-arrow-next{ right:6px; }
  .gal-thumb{ min-width:40px; height:28px; }
  .gal-thumb span{ font-size:10px; letter-spacing:.06em; }

  #carouselExampleInterval .carousel-item img{ height:220px; border-radius:6px; }
  .carousel-control-prev,
  .carousel-control-next{ width:30px; }
}

@media (prefers-reduced-motion: reduce){
  .testi-track-rtl,
  .testi-track-ltr{ animation:none; }
  .gal-slide,
  .ed1-stat-box,
  .ed1-hl-card,
  .testi-card{ transition:none; }
}

/* ═══════════════════════════════════════════════════════
   RAS 2.0 — Events Page  v4 (responsive rebuild)
   Vibe: Clean editorial white. Blue accent. No orange.
   Modal + Dossier: mobile-first, single source of truth,
   no duplicate/conflicting breakpoints.
═══════════════════════════════════════════════════════ */

:root {
  --red:        #2563EB;
  --red-deep:   #1D4ED8;
  --red-tint:   #EFF6FF;
  --red-border: rgba(37, 99, 235, .2);

  --ink:        #0F0F0F;
  --text-1:     #1A1A1A;
  --text-2:     #525252;
  --text-3:     #909090;

  --surface:    #FFFFFF;
  --surface-2:  #F7F7F5;
  --line:       rgba(15, 15, 15, .08);
  --line-mid:   rgba(15, 15, 15, .12);

  --font-display: 'Bebas Neue', 'Arial Narrow', Impact, sans-serif;
  --font-serif:   'Fraunces', Georgia, 'Times New Roman', serif;
  --font-mono:    'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  22px;

  --shadow-modal: 0 -8px 48px rgba(0,0,0,.12);
}

*,*::before,*::after{ box-sizing: border-box; }

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.evp-hero {
  position: relative;
  background: var(--surface);
  padding: 100px 6vw 80px;
  border-bottom: 1px solid var(--line-mid);
  overflow: hidden;
}
.evp-hero-grid,
.evp-hero-blob { display: none; }

.evp-hero::before {
  position: absolute;
  right: 4vw; top: 50%;
  transform: translateY(-50%);
  font-family: 'Poppins',sans-serif;
  font-size: clamp(180px, 22vw, 280px);
  color: rgba(15,15,15,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.evp-hero-inner { position: relative; max-width: 860px; }

.evp-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
}
.evp-hero-label::before {
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--red);
}

.evp-hero-title {
  font-family: 'Poppins',sans-serif;
  font-size: clamp(40px, 9vw, 112px);
  font-weight: 400;
  line-height: .95;
  color: var(--ink);
  margin: 0 0 24px;
  text-transform: uppercase;
  word-break: break-word;
}
.evp-hero-title span {
  color: var(--red);
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
  font-size: .88em;
}

.evp-hero-sub {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-2);
  max-width: auto;
  margin: 0 0 40px;
}

.evp-stat-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
}
.evp-stat {
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid var(--line-mid);
  min-width: 0;
}
.evp-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.evp-stat-val {
  font-family: 'Poppins',sans-serif;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  word-break: break-word;
}
.evp-stat-val .u { font-size: .48em; color: var(--red); letter-spacing: .06em; margin-left: 1px; }
.evp-stat-lbl {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 5px;
}

/* ════════════════════════════════════════════════
   EVENT ROWS
════════════════════════════════════════════════ */
.evp-cards-grid { display: block; background: var(--surface); padding: 0 0 60px; }

.evp-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: start;
  gap: 0 12px;
  padding: 44px 6vw;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  transition: background .2s ease;
  position: relative;
}
.evp-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .28s cubic-bezier(.22,1,.36,1);
}
.evp-card:hover { background: var(--surface-2); }
.evp-card:hover::before { transform: scaleY(1); }

.evp-card-banner { display: flex; flex-direction: column; padding-top: 6px; min-width: 0; }
.evp-card-num {
  font-family: 'Poppins',sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  color: rgba(15,15,15,.12);
  letter-spacing: -.01em;
  transition: color .2s;
  white-space: nowrap;
}
.evp-card:hover .evp-card-num { color: var(--red); }
.evp-card-tag-wrap { margin-top: 8px; }
.evp-card-tag {
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  background: transparent;
  white-space: nowrap;
}
.evp-card-banner-icon { display: none; }

.evp-card-body {
  padding: 0 0 0 28px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.evp-card-tagline {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.evp-card-name {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--ink);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 14px;
  word-break: break-word;
}
.evp-card-desc {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: auto;
  margin-bottom: 6px;
}

.evp-card-meta { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0 0; }
.evp-card-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--text-3);
  border: 1px solid var(--line-mid);
  border-radius: 4px;
  padding: 5px 9px;
  white-space: nowrap;
}
.evp-card-meta-pill svg { width: 11px; height: 11px; stroke: var(--text-3); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.evp-card-prize { display: none; }

.evp-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  margin-top: 20px;
  grid-column: 2;
  width: fit-content;
  transition: background .18s, transform .18s;
}
.evp-card-btn svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.evp-card-btn:hover { background: var(--red); transform: translateX(3px); }
.evp-card-btn:active { transform: scale(.97); }

/* ════════════════════════════════════════════════
   EVENT DETAIL MODAL — mobile-first
   Default (mobile) layout: single column, stacked.
   Desktop layout applied at min-width: 860px.
════════════════════════════════════════════════ */
.evp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.evp-modal-overlay.open { opacity: 1; visibility: visible; pointer-events: all; }

.evp-modal {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 92dvh;
  max-height: 92dvh;
  background: #fff;
  border-radius: 18px 18px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  box-shadow: var(--shadow-modal);
  transform: translateY(100%);
  transition: transform .34s cubic-bezier(.22,1,.36,1);
}
.evp-modal-overlay.open .evp-modal { transform: translateY(0); }

/* drag handle */
.evp-modal::after {
  content: '';
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,.4);
  z-index: 10;
}

/* HERO strip (top on mobile, left rail on desktop) */
.evp-modal-hero {
  grid-column: 1;
  grid-row: 1;
  background: #5345ff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px 20px;
  position: relative;
  overflow: hidden;
  min-height: 168px;
  flex-shrink: 0;
}
.evp-modal-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.evp-modal-hero-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140px; height: 140px;
  opacity: .07;
  pointer-events: none;
}
.evp-modal-hero-icon svg { width: 100%; height: 100%; }

.evp-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .15s;
  z-index: 5;
}
.evp-modal-close:hover { background: rgba(255,255,255,.22); }
.evp-modal-close svg { width: 13px; height: 13px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; }

.evp-modal-hero-num { display: none; }

.evp-modal-hero-meta { position: relative; z-index: 2; min-width: 0; }
.evp-modal-hero-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 8px;
}
.evp-modal-title-lg {
  font-family: 'Poppins',sans-serif;
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 8px;
  word-break: break-word;
}
.evp-modal-hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.evp-modal-hero-pills {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 14px;
}
.evp-modal-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  white-space: nowrap;
}
.evp-modal-hero-pill svg { width: 12px; height: 12px; fill: none; stroke: rgba(255,255,255,.4); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* BODY — scrollable content, always visible & scrollable */
.evp-modal-body {
  grid-column: 1;
  grid-row: 2;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 22px 18px 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-mid) transparent;
  min-height: 0; /* critical: lets grid row actually scroll instead of overflowing */
}

.evp-modal-section { margin-bottom: 24px; }
.evp-modal-section-title {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.evp-modal-section-title::after { content: ''; flex: 1; height: 1px; background: var(--line-mid); }
.evp-modal-section ul { padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.evp-modal-section ul li {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-2);
  padding-left: 16px;
  position: relative;
}
.evp-modal-section ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--red); }

.evp-modal-faq { display: flex; flex-direction: column; gap: 6px; }
.evp-modal-faq-item { border: 1px solid var(--line-mid); border-radius: var(--radius-md); overflow: hidden; transition: border-color .18s; }
.evp-modal-faq-item.open { border-color: var(--red-border); }
.evp-modal-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  cursor: pointer;
  user-select: none;
  gap: 12px;
}
.evp-modal-faq-chevron { width: 15px; height: 15px; fill: none; stroke: var(--text-3); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; transition: transform .22s ease; }
.evp-modal-faq-item.open .evp-modal-faq-chevron { transform: rotate(180deg); }
.evp-modal-faq-a {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-2);
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease, padding .28s ease;
}
.evp-modal-faq-item.open .evp-modal-faq-a { max-height: 300px; padding: 0 15px 13px; }

/* FOOTER */
.evp-modal-footer {
  grid-column: 1;
  grid-row: 3;
  border-top: 1px solid var(--line);
  padding: 14px 18px 18px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  background: #fff;
  flex-shrink: 0;
}
.evp-modal-coordinator { min-width: 0; }
.evp-modal-coordinator .name { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--text-1); }
.evp-modal-coordinator .contact { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-3); margin-top: 2px; word-break: break-all; }
/* ==========================================
   MOBILE (320px - 479px)
========================================== */
@media (max-width: 479px) {

  .evp-hero {
    padding: 70px 20px 50px;
  }

  .evp-hero::before {
    font-size: 120px;
    right: 10px;
  }

  .evp-hero-title {
    font-size: clamp(32px, 10vw, 48px);
  }

  .evp-hero-sub {
    font-size: 14px;
  }

  .evp-stat-row {
    flex-direction: column;
    gap: 20px;
  }

  .evp-stat {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
    border-bottom: 1px solid var(--line-mid);
    padding-bottom: 15px;
    width: 100%;
  }

  .evp-stat:last-child {
    border-bottom: none;
  }

  .evp-card {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 20px;
  }

  .evp-card-body {
    padding-left: 0;
  }

  .evp-card-num {
    font-size: 40px;
  }

  .evp-card-name {
    font-size: 28px;
  }

  .evp-card-btn {
    width: 100%;
    grid-column: auto;
  }

  .evp-modal {
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }

  .evp-modal-body {
    padding: 18px 16px;
  }

  .evp-modal-footer {
    flex-direction: column;
  }
}

/* ==========================================
   LARGE MOBILE / SMALL TABLET
========================================== */
@media (min-width: 480px) and (max-width: 767px) {

  .evp-hero {
    padding: 80px 30px 60px;
  }

  .evp-card {
    grid-template-columns: 70px 1fr;
    padding: 35px 30px;
  }

  .evp-card-body {
    padding-left: 20px;
  }

  .evp-card-btn {
    width: fit-content;
    grid-column: 2;
  }

  .evp-modal {
    height: 95dvh;
  }
}

/* ==========================================
   TABLET
========================================== */
@media (min-width: 768px) and (max-width: 1023px) {

  .evp-hero {
    padding: 90px 5vw 70px;
  }

  .evp-card {
    grid-template-columns: 90px 1fr;
    padding: 40px 5vw;
  }

  .evp-card-body {
    padding-left: 24px;
  }

  .evp-modal {
    width: 90%;
    max-width: 900px;
    height: 88vh;
    border-radius: 20px;
  }

  .evp-modal-overlay {
    align-items: center;
  }

  .evp-modal-body {
    padding: 24px;
  }
}

/* ==========================================
   DESKTOP
========================================== */
@media (min-width: 1024px) {

  .evp-modal-overlay {
    align-items: center;
    padding: 30px;
  }

  .evp-modal {
    width: min(1200px, 95vw);
    height: min(850px, 90vh);
    max-width: 1200px;
    max-height: 90vh;
    border-radius: 24px;

    grid-template-columns: 360px 1fr;
    grid-template-rows: 1fr auto;
  }

  .evp-modal::after {
    display: none;
  }

  .evp-modal-hero {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-height: auto;
    padding: 40px;
  }

  .evp-modal-body {
    grid-column: 2;
    grid-row: 1;
    padding: 40px;
  }

  .evp-modal-footer {
    grid-column: 2;
    grid-row: 2;
    padding: 24px 40px;
  }

  .evp-modal-hero-num {
    display: block;
    font-size: 140px;
    font-family: 'Poppins', sans-serif;
    color: rgba(255,255,255,.08);
    line-height: 1;
    margin-bottom: 20px;
  }

  .evp-modal-title-lg {
    font-size: 42px;
  }

  .evp-modal-hero-sub {
    font-size: 15px;
  }
}

/* ==========================================
   LARGE DESKTOP
========================================== */
@media (min-width: 1440px) {

  .evp-hero {
    padding: 120px 8vw 100px;
  }

  .evp-hero-inner {
    max-width: 1000px;
  }

  .evp-card {
    padding: 55px 8vw;
  }

  .evp-card-name {
    font-size: 52px;
  }

  .evp-card-desc {
    max-width: 900px;
  }

  .evp-modal {
    max-width: 1400px;
  }

  .evp-modal-body {
    padding: 50px;
  }
}

/* ==========================================
   ULTRA WIDE SCREENS
========================================== */
@media (min-width: 1920px) {

  .evp-hero-inner {
    max-width: 1200px;
  }

  .evp-card {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .evp-modal {
    max-width: 1600px;
  }
}

/* ==========================================
   LANDSCAPE PHONES
========================================== */
@media (max-height: 600px) and (orientation: landscape) {

  .evp-modal {
    height: 100vh;
    max-height: 100vh;
  }

  .evp-modal-hero {
    min-height: 120px;
    padding: 18px;
  }

  .evp-modal-title-lg {
    font-size: 22px;
  }

  .evp-modal-body {
    padding: 16px;
  }
}
/* shared buttons */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  background: var(--ink); color: #fff;
  border: none; border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: background .18s, transform .18s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--red); transform: scale(1.015); }
.btn-primary:active { transform: scale(.97); }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line-mid); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: border-color .18s, background .18s;
  white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--red); background: var(--red-tint); }
.btn-icon { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ════════════════════════════════════════════════
   LEGACY MODAL (#eventModal) — mobile-first too
════════════════════════════════════════════════ */
#eventModal {
  position: fixed; inset: 0;
  background: rgba(10,10,10,.6);
  backdrop-filter: blur(6px);
  z-index: 2100;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
#eventModal.open { opacity: 1; visibility: visible; pointer-events: all; }
#modalContent {
  width: 100%; max-width: 100%; height: 92dvh; max-height: 92dvh;
  background: var(--surface); border-radius: 18px 18px 0 0;
  overflow-y: auto; box-shadow: 0 -8px 48px rgba(0,0,0,.18);
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
#eventModal.open #modalContent { transform: translateY(0); }

.modal-hero { position: relative; min-height: 110px; background: var(--ink); display: flex; align-items: center; justify-content: space-between; padding: 0 22px; overflow: hidden; }
.modal-hero::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--red); }
.modal-hero-icon { width: 44px; height: 44px; opacity: .3; }
.modal-hero-icon svg { width: 100%; height: 100%; }
.modal-hero-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s; z-index: 2; }
.modal-hero-close:hover { background: rgba(255,255,255,.22); }
.modal-hero-close svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; }
.modal-body { padding: 22px 18px 0; }
.modal-title-lg { font-family: 'Poppins',sans-serif; font-size: clamp(26px,6vw,36px); font-weight: 400; letter-spacing: .02em; text-transform: uppercase; color: var(--ink); line-height: 1.05; margin: 0 0 6px; word-break: break-word; }
.modal-section { margin-bottom: 24px; }
.modal-section-title { font-family: var(--font-mono); font-size: 9.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.modal-section-title::after { content: ''; flex: 1; height: 1px; background: var(--line-mid); }
.modal-section ul { padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.modal-section ul li { font-family: var(--font-body); font-size: 13.5px; line-height: 1.65; color: var(--text-2); padding-left: 16px; position: relative; }
.modal-section ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--red); }
.modal-prize-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.modal-prize { border-radius: var(--radius-md); padding: 14px; text-align: center; }
.modal-prize .place { font-family: var(--font-mono); font-size: 9.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 6px; }
.modal-prize .amt { font-family: 'Poppins',sans-serif; font-size: 19px; letter-spacing: .02em; }
.modal-faq { display: flex; flex-direction: column; gap: 6px; }
.modal-faq-item { border: 1px solid var(--line-mid); border-radius: var(--radius-md); overflow: hidden; transition: border-color .18s; }
.modal-faq-item.open { border-color: var(--red-border); }
.modal-faq-q { display: flex; align-items: center; justify-content: space-between; padding: 13px 15px; font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--text-1); cursor: pointer; user-select: none; gap: 12px; }
.modal-faq-chevron { width: 15px; height: 15px; fill: none; stroke: var(--text-3); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; transition: transform .22s ease; }
.modal-faq-item.open .modal-faq-chevron { transform: rotate(180deg); }
.modal-faq-a { font-family: var(--font-body); font-size: 13px; line-height: 1.65; color: var(--text-2); padding: 0 15px; max-height: 0; overflow: hidden; transition: max-height .28s ease, padding .28s ease; }
.modal-faq-item.open .modal-faq-a { max-height: 300px; padding: 0 15px 13px; }
.modal-footer { position: sticky; bottom: 0; background: var(--surface); border-top: 1px solid var(--line); padding: 14px 18px 18px; display: flex; align-items: stretch; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.modal-coordinator .name { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--text-1); }
.modal-coordinator .contact { font-family: var(--font-mono); font-size: 10.5px; color: var(--text-3); margin-top: 2px; word-break: break-all; }

/* ════════════════════════════════════════════════
   DOSSIER OVERLAY — mobile-first
   Default: full screen, single scrollable column.
   The dark cover sidebar and 2-col content are
   desktop-only enhancements (see min-width query).
════════════════════════════════════════════════ */
.dossier-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(10,10,10,0);
  display: none; overflow: hidden;
  transition: background .4s ease;
}
.dossier-overlay.show { display: flex; align-items: center; justify-content: center; }
.dossier-overlay.visible { background: rgba(10,10,10,.72); }

.dsr-shell {
  position: relative;
  width: 100%;
  height: 100dvh;
  max-width: 100%;
  background: var(--surface);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  opacity: 0;
  transform: scale(.98) translateY(12px);
  transition: opacity .4s cubic-bezier(.22,1,.36,1), transform .4s cubic-bezier(.22,1,.36,1);
  display: flex;
  flex-direction: column;
}
.dossier-overlay.revealed .dsr-shell { opacity: 1; transform: scale(1) translateY(0); }

.dsr-close {
  position: fixed; top: 14px; right: 14px; z-index: 30;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.95); border: 1px solid var(--line-mid);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: background .15s;
}
.dsr-close:hover { background: var(--red-tint); }
.dsr-close svg { width: 15px; height: 15px; }

.dsr-panel { height: 100%; min-height: 0; flex: 1; display: flex; flex-direction: column; overflow: hidden; }

.dsr-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); z-index: 2; }

.dsr-layout {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

/* cover header — compact strip on mobile, full sidebar on desktop */
.dsr-cover {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  display: flex; flex-direction: column;
  padding: 50px 20px 18px;
  flex-shrink: 0;
}
.dsr-cover-veil { display: none; }
.dsr-cover-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.dsr-cover::before { content: ''; position: absolute; left: 0; top: 0; right: 0; height: 3px; background: var(--red); }
.dsr-cover-inner { position: relative; z-index: 1; display: flex; flex-direction: column; }
.dsr-ribbon { font-family: var(--font-mono); font-size: 8px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 14px; }
.dsr-cover-icon { width: 36px; height: 36px; margin-bottom: 10px; opacity: .5; }
.dsr-cover-icon svg { width: 100%; height: 100%; }
.dsr-cover-kicker { font-family: var(--font-mono); font-size: 8.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.dsr-cover-name { font-family: 'Poppins',sans-serif; font-size: clamp(22px, 6vw, 28px); font-weight: 400; letter-spacing: .02em; text-transform: uppercase; line-height: 1.05; color: #fff; margin: 0 0 6px; word-break: break-word; }
.dsr-cover-tagline { font-family: var(--font-serif); font-style: italic; font-size: 12.5px; color: rgba(255,255,255,.55); line-height: 1.45; }
.dsr-cover-spacer { display: none; }

.dsr-seal { display: flex; align-items: center; gap: 9px; margin-top: 14px; }
.dsr-stamp { width: 28px; height: 28px; background: rgba(37,99,235,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dsr-stamp svg { width: 15px; height: 15px; fill: var(--red); stroke: none; }
.dsr-seal-text .s1 { font-family: 'Poppins',sans-serif; font-size: 12px; letter-spacing: .05em; color: #fff; line-height: 1; }
.dsr-seal-text .s2 { font-family: var(--font-mono); font-size: 7px; letter-spacing: .12em; color: rgba(255,255,255,.4); margin-top: 3px; }

.dsr-register {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px 16px; margin-top: 16px;
  background: var(--red); border: none;
  border-radius: var(--radius-md);
  color: #fff; font-family: var(--font-body); font-size: 12.5px; font-weight: 600;
  cursor: pointer; transition: background .18s; white-space: nowrap;
  width: 100%;
}
.dsr-register:hover { background: var(--red-deep); }
.dsr-register svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* content area — single scrollable column on mobile */
.dsr-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.dsr-col { display: flex; flex-direction: column; min-height: 0; border-left: none; border-top: 1px solid var(--line); }
.dsr-col:first-child { border-top: none; }
.dsr-col-head { padding: 18px 20px 12px; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.dsr-col-num { font-family: var(--font-mono); font-size: 9px; font-weight: 700; color: var(--red); letter-spacing: .12em; }
.dsr-col-title { font-family: 'Poppins',sans-serif; font-size: 16px; font-weight: 400; letter-spacing: .03em; text-transform: uppercase; color: var(--ink); margin: 0; }
.dsr-col-title em { font-family: var(--font-serif); font-style: italic; font-size: .82em; color: var(--red); text-transform: none; }
/* on mobile, the "scroll" areas don't scroll independently — the whole
   .dsr-content column scrolls, so columns just flow naturally */
.dsr-col-scroll { flex: 1; padding: 0 20px 20px; overflow: visible; }

.dsr-download {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 16px; margin: 0 20px 16px;
  background: var(--surface-2); border: 1px solid var(--line-mid); border-radius: var(--radius-sm);
  color: var(--text-2); font-family: var(--font-body); font-size: 12px; font-weight: 600;
  cursor: pointer; transition: background .15s;
  width: calc(100% - 40px);
}
.dsr-download:hover { background: var(--red-tint); border-color: var(--red-border); color: var(--red-deep); }
.dsr-download svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.dsr-dl-sub { font-size: 9.5px; opacity: .5; margin-left: 2px; }

.dsr-rules { display: flex; flex-direction: column; gap: 10px; }
.dsr-rule { display: flex; gap: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.dsr-rule:last-child { border-bottom: none; padding-bottom: 0; }
.dsr-rule-num { flex-shrink: 0; width: 26px; height: 26px; background: var(--surface-2); border: 1px solid var(--line-mid); border-radius: 5px; display: flex; align-items: center; justify-content: center; font-family: 'Poppins',sans-serif; font-size: 13px; color: var(--red); line-height: 1; }
.dsr-rule-text { font-family: var(--font-body); font-size: 12.5px; line-height: 1.6; color: var(--text-2); padding-top: 3px; }

.dsr-block { margin-bottom: 18px; }
.dsr-block:last-child { margin-bottom: 0; }
.dsr-block-head { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 9px; }
.dsr-block-head svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.dsr-list { padding: 0; list-style: none; display: flex; flex-direction: column; gap: 7px; }
.dsr-list li { font-family: var(--font-body); font-size: 11.5px; line-height: 1.55; color: var(--text-2); padding-left: 13px; position: relative; }
.dsr-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 4px; height: 4px; border-radius: 50%; background: var(--red); }

/* nav (prev/dots/next) — fixed compact bar on mobile */
.dsr-nav {
  position: sticky;
  bottom: 0;
  left: 0; right: 0;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 10px 0;
  background: rgba(255,255,255,.96);
  border-top: 1px solid var(--line);
  z-index: 10;
  flex-shrink: 0;
}
.dsr-btn { width: 32px; height: 32px; border-radius: 50%; background: var(--surface); border: 1px solid var(--line-mid); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 6px rgba(0,0,0,.06); transition: border-color .15s, background .15s; }
.dsr-btn:hover { border-color: var(--red); background: var(--red-tint); }
.dsr-btn:disabled { opacity: .3; cursor: not-allowed; }
.dsr-btn svg { width: 14px; height: 14px; fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; }
.dsr-dots { display: flex; gap: 6px; align-items: center; }
.dsr-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--line-mid); cursor: pointer; transition: background .18s, transform .18s; }
.dsr-dot.on { background: var(--red); transform: scale(1.4); }

/* ════════════════════════════════════════════════
   DESKTOP ENHANCEMENTS — min-width: 860px
   (modal becomes split-panel; dossier becomes
   sidebar + 2-column layout)
════════════════════════════════════════════════ */
@media (min-width: 860px) {

  .evp-card {
    grid-template-columns: 100px 1fr auto;
    padding: 44px 6vw;
  }
  .evp-card-body { padding: 0 40px 0 28px; }
  .evp-card-btn { grid-column: 3; margin-top: 0; align-self: start; }

  /* event detail modal: left dark rail + right scroll panel */
  .evp-modal {
    height: 82dvh;
    max-height: 660px;
    border-radius: 20px 20px 0 0;
    grid-template-columns: 300px 1fr;
    grid-template-rows: 1fr auto;
  }
  .evp-modal-hero {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 0;
    padding: 32px 28px;
  }
  .evp-modal-hero-icon { width: 180px; height: 180px; opacity: .06; }
  .evp-modal-hero-num {
    display: block;
    font-family: 'Poppins',sans-serif;
    font-size: 96px;
    line-height: 1;
    color: rgba(255,255,255,.06);
    position: absolute;
    top: 20px; left: 24px;
    letter-spacing: -.02em;
  }
  .evp-modal-title-lg { font-size: 30px; }
  .evp-modal-hero-pills { flex-direction: column; gap: 6px; }

  .evp-modal-body { grid-column: 2; grid-row: 1; padding: 36px 36px 24px; }
  .evp-modal-footer { grid-column: 2; grid-row: 2; padding: 16px 36px; }
  .evp-modal::after { display: none; }

  /* legacy modal */
  #eventModal { align-items: center; padding: 20px; }
  #modalContent { max-width: 660px; height: auto; max-height: 90dvh; border-radius: var(--radius-xl); transform: translateY(20px) scale(.97); }
  #eventModal.open #modalContent { transform: translateY(0) scale(1); }
  .modal-prize-grid { grid-template-columns: repeat(3,1fr); }
  .modal-footer { flex-direction: row; align-items: center; }

  /* dossier: dark sidebar + 2-column content */
  .dsr-shell {
    width: min(94vw, 1040px);
    height: min(90dvh, 660px);
    border-radius: var(--radius-xl);
    box-shadow: 0 40px 120px rgba(0,0,0,.3);
  }
  .dsr-close { position: absolute; top: 14px; right: 14px; }
  .dsr-layout { flex-direction: row; }
  .dsr-cover {
    width: 240px;
    flex-shrink: 0;
    padding: 28px 22px 24px;
    justify-content: space-between;
  }
  .dsr-cover-inner { height: 100%; justify-content: flex-start; }
  .dsr-cover-spacer { display: block; flex: 1; }
  .dsr-register { width: auto; }
  .dsr-content { flex-direction: row; overflow: hidden; }
  .dsr-col { border-top: none; border-left: 1px solid var(--line); }
  .dsr-col:first-child { border-left: none; }
  .dsr-col-main { flex: 1; min-width: 0; }
  .dsr-col-side { width: 210px; flex-shrink: 0; }
  .dsr-col-head { padding: 20px 22px 15px; border-bottom: 1px solid var(--line); }
  .dsr-col-scroll { overflow-y: auto; padding: 18px 22px 22px; scrollbar-width: thin; scrollbar-color: var(--line-mid) transparent; }
  .dsr-nav { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); width: auto; background: transparent; border-top: none; padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}


/* Sponsor_Response Success Page */
.success-section {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f7fb;
    padding: 40px 20px;
}

.success-card {
    max-width: 600px;
    width: 100%;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    animation: fadeUp 0.6s ease;
}

.success-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #28a745;
    color: #fff;
    font-size: 42px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-card h2 {
    color: #1f2937;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.success-text {
    color: #374151;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.success-subtext {
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.home-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4f46e5, #2563eb);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    color: #fff;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ════════════════════════════════════════════════════════════════════
   Regional AI Summit 2.0 
   ════════════════════════════════════════════════════════════════════ */

/* ── 1. Tokens ─────────────────────────────────────────────────────── */
:root {
  --ras-brand:      #1F5EC3;
  --ras-brand-hover:#174BA0;
  --ras-bg-tint:    #F5F9FF;
  --ras-heading:    #0F172A;
  --ras-body:       #475569;
  --ras-border:     #DCE7FA;
  --ras-white:      #FFFFFF;
  --ras-accent:     #EF4A37;

  --ras-brand-06:   rgba(31,94,195,.06);
  --ras-brand-08:   rgba(31,94,195,.08);
  --ras-brand-14:   rgba(31,94,195,.14);
  --ras-brand-22:   rgba(31,94,195,.22);
  --ras-brand-35:   rgba(31,94,195,.35);
  --ras-accent-08:  rgba(239,74,55,.08);
  --ras-accent-25:  rgba(239,74,55,.25);
  --ras-ink-04:     rgba(15,23,42,.04);
  --ras-ink-08:     rgba(15,23,42,.08);
  --ras-success:    #16A34A;
  --ras-success-10: rgba(22,163,74,.10);

  --ras-font-display:'Plus Jakarta Sans','Inter',-apple-system,sans-serif;
  --ras-font-body:   'Inter',-apple-system,sans-serif;
  --ras-font-mono:   'JetBrains Mono','SFMono-Regular',monospace;

  --ras-radius-sm: 10px;
  --ras-radius-md: 16px;
  --ras-radius-lg: 22px;
  --ras-shadow-sm: 0 2px 10px rgba(15,23,42,.05);
  --ras-shadow-md: 0 18px 40px rgba(31,94,195,.12);
  --ras-shadow-lg: 0 30px 70px rgba(31,94,195,.18);
  --ras-ease:      cubic-bezier(.22,.61,.36,1);
  --ras-dur:       .4s;
}

/* ── 2. Page wrapper & animated background ─────────────────────────── */
.rp-page {
  min-height: 100vh;
  background: var(--ras-white);
  font-family: var(--ras-font-body);
  color: var(--ras-body);
  position: relative;
  overflow-x: hidden;
}

/* Dot-grid texture */
.rp-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle, var(--ras-ink-04) 1.5px, transparent 1.6px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Drifting blobs */
.rp-page::after {
  content: '';
  position: fixed;
  top: -200px; right: -160px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ras-brand-14), transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: rpBlob1 18s ease-in-out infinite;
}

@keyframes rpBlob1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-40px,30px) scale(1.08); }
}

/* ── 3. Announcement banner ────────────────────────────────────────── */
.rp-announce {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: linear-gradient(120deg, var(--ras-brand) 0%, var(--ras-brand-hover) 100%);
  padding: .75rem 1.5rem;
  font-family: var(--ras-font-mono);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255,255,255,.95);
  text-align: center;
}

.rp-announce::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff;
  opacity: .7;
  animation: rpPulseDot 2s ease-in-out infinite;
}

@keyframes rpPulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,.5); }
  50%      { box-shadow: 0 0 0 5px rgba(255,255,255,.1); }
}

/* ── 4. Page header ────────────────────────────────────────────────── */
.rp-header {
  position: relative; z-index: 1;
  text-align: center;
  padding: 3.5rem 1.5rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.rp-header-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--ras-white);
  border: 1px solid var(--ras-border);
  padding: .38rem .95rem;
  border-radius: 999px;
  font-family: var(--ras-font-mono);
  font-size: .72rem; font-weight: 600;
  color: var(--ras-brand);
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1.2rem;
  box-shadow: var(--ras-shadow-sm);
  transform: rotate(-1deg);
}

.rp-header-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ras-brand);
  animation: rpPulseDot 2s ease-in-out infinite;
}

.rp-header-title {
  font-family: var(--ras-font-display);
  font-weight: 800;
  font-size: clamp(1.9rem,4vw,2.8rem);
  color: var(--ras-heading);
  line-height: 1.1;
  letter-spacing: -.015em;
  margin-bottom: .8rem;
}

.rp-header-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--ras-brand) 0%, var(--ras-brand-hover) 50%, var(--ras-brand) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rpGradSweep 6s ease-in-out infinite;
}

@keyframes rpGradSweep {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.rp-header-sub {
  font-size: 1rem; color: var(--ras-body); line-height: 1.7;
}

/* ── 5. Step progress bar ──────────────────────────────────────────── */
.rp-progress {
  display: flex; align-items: center; justify-content: center;
  gap: 0; max-width: 500px; margin: 0 auto 2.5rem;
  position: relative; z-index: 1;
  padding: 0 1.5rem;
}

.rp-progress-step {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  flex: 1;
}

.rp-progress-circle {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ras-font-mono); font-size: .8rem; font-weight: 700;
  background: var(--ras-white);
  border: 2px solid var(--ras-border);
  color: var(--ras-body);
  transition: background .3s ease, border-color .3s ease, color .3s ease;
  position: relative; z-index: 2;
}

.rp-progress-step.active .rp-progress-circle {
  background: var(--ras-brand);
  border-color: var(--ras-brand);
  color: #fff;
}

.rp-progress-label {
  font-family: var(--ras-font-mono);
  font-size: .65rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ras-body);
  white-space: nowrap;
}

.rp-progress-step.active .rp-progress-label { color: var(--ras-brand); }

.rp-progress-line {
  flex: 1; height: 2px;
  background: var(--ras-border);
  margin: 0 -.5rem;
  margin-top: -1rem; /* align with circles */
  position: relative; z-index: 1;
}

/* ── 6. Main layout — form + sidebar ───────────────────────────────── */
#rp-form-body { position: relative; z-index: 1; }

.rp-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
  align-items: start;
}

/* ── 7. Form card ──────────────────────────────────────────────────── */
.rp-form-card {
  background: var(--ras-white);
  border: 1px solid var(--ras-border);
  border-radius: var(--ras-radius-lg);
  padding: 2.25rem;
  box-shadow: var(--ras-shadow-sm);
  position: relative;
  overflow: hidden;
}

/* accent top bar */
.rp-form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ras-brand), var(--ras-brand-hover));
}

/* ── 8. Section head ───────────────────────────────────────────────── */
.rp-section-head {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.75rem;
}

.rp-section-step {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ras-font-mono); font-size: .9rem; font-weight: 800;
  background: linear-gradient(135deg, var(--ras-brand), var(--ras-brand-hover));
  color: #fff;
  flex-shrink: 0;
}

.rp-section-title {
  font-family: var(--ras-font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--ras-heading);
}

/* ── 9. Form rows & fields ─────────────────────────────────────────── */
.rp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.rp-form-row.full { grid-template-columns: 1fr; }

.rp-field { display: flex; flex-direction: column; gap: .42rem; }

.rp-label {
  font-size: .82rem; font-weight: 600;
  color: var(--ras-heading);
  letter-spacing: .01em;
}

.rp-label span { color: var(--ras-accent); margin-left: .15rem; }

/* Django auto-renders inputs/selects — we target them via type or element */
.rp-input,
.rp-select,
.rp-field input[type="text"],
.rp-field input[type="email"],
.rp-field input[type="tel"],
.rp-field input[type="number"],
.rp-field select,
.rp-field textarea {
  width: 100%;
  padding: .72rem 1rem;
  border: 1.5px solid var(--ras-border);
  border-radius: var(--ras-radius-sm);
  font-family: var(--ras-font-body);
  font-size: .92rem;
  color: var(--ras-heading);
  background: var(--ras-white);
  outline: none;
  transition: border-color var(--ras-dur) ease, box-shadow var(--ras-dur) ease, background var(--ras-dur) ease;
  appearance: none; -webkit-appearance: none;
}

.rp-input:focus,
.rp-select:focus,
.rp-field input:focus,
.rp-field select:focus,
.rp-field textarea:focus {
  border-color: var(--ras-brand);
  box-shadow: 0 0 0 3px var(--ras-brand-14);
  background: var(--ras-bg-tint);
}

.rp-input::placeholder,
.rp-field input::placeholder { color: #94A3B8; }

/* select arrow */
.rp-select,
.rp-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F5EC3' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ── 10. Dividers & sub-titles ─────────────────────────────────────── */
.rp-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ras-border), transparent);
  margin: 1.75rem 0;
}

.rp-sub-title {
  font-family: var(--ras-font-mono);
  font-size: .76rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ras-brand);
  margin-bottom: 1.25rem;
}

/* ── 11. Member blocks ─────────────────────────────────────────────── */
.rp-member-block {
  border: 1px solid var(--ras-border);
  border-radius: var(--ras-radius-md);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  background: var(--ras-bg-tint);
  transition: box-shadow .25s ease;
}

.rp-member-block:hover { box-shadow: var(--ras-shadow-sm); }

.rp-member-block-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.1rem;
}

.rp-member-label {
  font-family: var(--ras-font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--ras-heading);
}

.rp-member-badge {
  font-family: var(--ras-font-mono);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .28rem .75rem;
  border-radius: 999px;
  background: var(--ras-brand-08);
  color: var(--ras-brand);
  border: 1px solid var(--ras-border);
}

/* Lead member — slightly elevated */
.rp-member-block:first-of-type .rp-member-badge {
  background: linear-gradient(135deg, var(--ras-brand), var(--ras-brand-hover));
  color: #fff;
  border-color: transparent;
}

/* ── 12. Add-member button ─────────────────────────────────────────── */
.rp-add-member-btn {
  width: 100%;
  background: none;
  border: 1.5px dashed var(--ras-brand-35);
  color: var(--ras-brand);
  border-radius: var(--ras-radius-sm);
  padding: .7rem 1rem;
  font-family: var(--ras-font-body);
  font-size: .88rem; font-weight: 600;
  cursor: pointer;
  margin: .5rem 0 .9rem;
  transition: background .2s ease, border-color .2s ease;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}

.rp-add-member-btn:hover {
  background: var(--ras-brand-06);
  border-color: var(--ras-brand);
}

/* ── 13. "Select event first" placeholder ──────────────────────────── */
#fields-none {
  display: flex; flex-direction: column; align-items: center;
  gap: .75rem;
  padding: 2.5rem 1rem;
  color: var(--ras-body);
  font-size: .92rem;
  text-align: center;
}

#fields-none::before {
  content: '↑';
  display: block;
  font-size: 1.8rem;
  color: var(--ras-brand-35);
}

/* ── 14. Sidebar / Summary card ─────────────────────────────────────── */
.rp-summary { position: sticky; top: 1.5rem; }

.rp-summary-card {
  background: var(--ras-white);
  border: 1px solid var(--ras-border);
  border-radius: var(--ras-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--ras-shadow-sm);
  position: relative; overflow: hidden;
}

.rp-summary-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ras-brand), var(--ras-brand-hover));
}

/* Diagonal background accent */
.rp-summary-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ras-brand-08), transparent 70%);
  pointer-events: none;
}

.rp-summary-title {
  font-family: var(--ras-font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--ras-heading);
  margin-bottom: 1.4rem;
}

.rp-summary-plan {
  background: var(--ras-bg-tint);
  border: 1px solid var(--ras-border);
  border-radius: var(--ras-radius-md);
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.2rem;
}

.rp-summary-plan-name {
  font-family: var(--ras-font-mono);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ras-body);
  margin-bottom: .4rem;
}

.rp-summary-plan-price {
  font-family: var(--ras-font-mono);
  font-size: 2rem; font-weight: 800;
  color: var(--ras-heading);
  line-height: 1;
  margin-bottom: .35rem;
}

.rp-summary-plan-price .c {
  font-size: 1.15rem;
  color: var(--ras-brand);
  vertical-align: super;
  margin-right: .05em;
}

.rp-summary-plan-note {
  font-size: .78rem; color: var(--ras-body);
  font-family: var(--ras-font-mono);
}

/* included-item row */
.rp-summary-extra-row {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: .84rem; color: var(--ras-body);
  background: var(--ras-success-10);
  border: 1px solid rgba(22,163,74,.2);
  border-radius: var(--ras-radius-sm);
  padding: .65rem .85rem;
  margin-bottom: 1rem;
}

.rp-summary-extra-row svg {
  width: 15px; height: 15px;
  stroke: var(--ras-success); fill: none; stroke-width: 2.5;
  flex-shrink: 0; margin-top: .1rem;
}

.rp-summary-items { margin-bottom: 1.2rem; }

/* total row */
.rp-summary-total {
  border-top: 1px dashed var(--ras-border);
  padding-top: 1rem;
  margin-bottom: 1.4rem;
}

.rp-total-row { display: flex; align-items: center; justify-content: space-between; }
.rp-total-label { font-size: .84rem; font-weight: 600; color: var(--ras-body); }
.rp-total-val { font-family: var(--ras-font-mono); font-size: 1.2rem; font-weight: 800; color: var(--ras-heading); }

/* ── 15. Submit button ─────────────────────────────────────────────── */
.rp-submit-btn {
  width: 100%;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(120deg, var(--ras-brand) 0%, var(--ras-brand-hover) 100%);
  color: #fff;
  border: none; border-radius: var(--ras-radius-md);
  padding: .95rem 1.25rem .95rem 1.5rem;
  cursor: pointer;
  font-family: var(--ras-font-body);
  font-size: .95rem; font-weight: 700;
  box-shadow: 0 8px 20px var(--ras-brand-22);
  transition: transform .25s ease, box-shadow .25s ease;
}

.rp-submit-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px var(--ras-brand-35); }
.rp-submit-btn:active { transform: translateY(-1px); }
.rp-submit-btn:disabled { opacity: .65; cursor: not-allowed; transform: none; box-shadow: none; }

/* shimmer sweep on hover */
.rp-submit-btn::after {
  content: '';
  position: absolute; top: 0; left: -120%;
  width: 80%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.22), transparent);
  transition: left .55s ease;
}
.rp-submit-btn:hover::after { left: 140%; }

.rp-btn-label { display: flex; align-items: center; gap: .55rem; }
.rp-btn-label svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.rp-btn-thumb {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rp-btn-thumb svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── 16. Terms text ────────────────────────────────────────────────── */
.rp-terms {
  font-size: .76rem; color: var(--ras-body);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}
.rp-terms a { color: var(--ras-brand); text-decoration: none; font-weight: 600; }
.rp-terms a:hover { text-decoration: underline; }

/* ── 17. Success state ─────────────────────────────────────────────── */
#rp-success { position: relative; z-index: 1; }

.rp-success-inner {
  max-width: 520px; margin: 5rem auto;
  text-align: center;
  padding: 3.5rem 2.5rem;
  background: var(--ras-white);
  border: 1px solid var(--ras-border);
  border-radius: var(--ras-radius-lg);
  box-shadow: var(--ras-shadow-md);
}

.rp-success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ras-brand), var(--ras-brand-hover));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.75rem;
  animation: rpSuccessPop .6s var(--ras-ease) both;
}

@keyframes rpSuccessPop {
  0%   { transform: scale(0); opacity: 0; }
  70%  { transform: scale(1.12); }
  100% { transform: scale(1);   opacity: 1; }
}

.rp-success-icon svg { width: 32px; height: 32px; stroke: #fff; fill: none; stroke-width: 2.8; stroke-linecap: round; stroke-linejoin: round; }
.rp-success-title { font-family: var(--ras-font-display); font-size: 1.9rem; font-weight: 800; color: var(--ras-heading); margin-bottom: .75rem; }
.rp-success-sub { font-size: .98rem; color: var(--ras-body); line-height: 1.75; }

/* ── 18. Reveal animation ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ras-ease), transform .6s var(--ras-ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── 19. Responsive ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .rp-body { grid-template-columns: 1fr; }
  .rp-summary { position: static; }
  .rp-summary-card { margin-top: 0; }
}

@media (max-width: 640px) {
  .rp-form-card { padding: 1.5rem 1.25rem; }
  .rp-form-row { grid-template-columns: 1fr; }
  .rp-header { padding: 2.5rem 1.25rem 1.25rem; }
  .rp-progress { display: none; }
  .rp-body { padding: 0 1rem 4rem; }
  .rp-announce { font-size: .72rem; }
}

@media (prefers-reduced-motion: reduce) {
  .rp-page::after, .rp-header-eyebrow::before, .rp-announce::before,
  .rp-header-title em, .rp-submit-btn::after, .rp-success-icon { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .rp-submit-btn:hover { transform: none; }
}

/* ==========================================================================
   Regional AI Summit 2.0 — Registration Form Styles
   Brand color: #1f5ec3 (site-wide blue)
   ========================================================================== */

:root {
  --brand-blue: #1f5ec3;
  --brand-blue-dark: #164a9c;
  --brand-blue-light: #eaf1fb;
  --brand-blue-lighter: #f4f8fd;

  --text-1: #111827;
  --text-2: #6b7280;
  --text-3: #9ca3af;

  --border-1: #e5e7eb;
  --border-2: #d1d5db;

  --bg-card: #ffffff;
  --bg-page: #f7f9fc;

  --shadow-card: 0 1px 3px rgba(16, 24, 40, 0.06), 0 1px 2px rgba(16, 24, 40, 0.04);
  --shadow-card-lg: 0 8px 24px rgba(31, 94, 195, 0.14);

  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
}

/* ---------------------------------------------------------------------- */
/* Section / page wrapper                                                  */
/* ---------------------------------------------------------------------- */

.yf-enquiry-section {
  background: var(--bg-page);
  padding: 40px 20px 80px;
}

.rp-page {
  max-width: 1180px;
  margin: 0 auto;
}

/* ---------------------------------------------------------------------- */
/* Announcement banner                                                     */
/* ---------------------------------------------------------------------- */

.rp-announce {
  background: var(--brand-blue-light);
  color: var(--brand-blue-dark);
  border: 1px solid rgba(31, 94, 195, 0.18);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 28px;
}

/* ---------------------------------------------------------------------- */
/* Page header                                                             */
/* ---------------------------------------------------------------------- */

.rp-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.rp-header-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 10px;
}

.rp-header-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-1);
  margin: 0 0 12px;
  line-height: 1.2;
}

.rp-header-title em {
  font-style: normal;
  color: var(--brand-blue);
}

.rp-header-sub {
  font-size: 0.98rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

/* ---------------------------------------------------------------------- */
/* Reveal-on-scroll                                                         */
/* ---------------------------------------------------------------------- */

.reveal {
  animation: rpFadeUp 0.5s ease both;
}

@keyframes rpFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------------------------------------------------------------------- */
/* Step indicator (EVENT — TEAM — CONFIRM)                                 */
/* ---------------------------------------------------------------------- */

.rp-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 32px;
  max-width: 420px;
}

.rp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}

.rp-step span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f3f4f6;
  color: var(--text-3);
  font-size: 0.85rem;
  font-weight: 700;
}

.rp-step.is-active {
  color: var(--brand-blue);
}

.rp-step.is-active span {
  background: var(--brand-blue);
  color: #ffffff;
}

.rp-step-line {
  flex: 1;
  height: 2px;
  background: var(--border-1);
  margin-bottom: 18px;
}

/* ---------------------------------------------------------------------- */
/* Form shell / two-column layout                                          */
/* ---------------------------------------------------------------------- */

.yf-enquiry-form {
  display: block;
}

#rp-form-body {
  width: 100%;
}

.rp-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

@media (max-width: 860px) {
  .rp-body {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------------- */
/* Main form card                                                          */
/* ---------------------------------------------------------------------- */

.rp-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  border-top: 3px solid var(--brand-blue);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.rp-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.rp-section-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
}

.rp-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-1);
}

.rp-divider {
  height: 1px;
  background: var(--border-1);
  margin: 24px 0 18px;
}

.rp-sub-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 16px;
}

.rp-placeholder-text {
  border: 1px dashed var(--border-2);
  border-radius: var(--radius-md);
  background: var(--brand-blue-lighter);
  color: var(--text-2);
  font-size: 0.9rem;
  text-align: center;
  padding: 32px 20px;
}

/* ---------------------------------------------------------------------- */
/* Field basics                                                            */
/* ---------------------------------------------------------------------- */

.rp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 4px;
}

.rp-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-1);
}

.rp-required,
.rp-label .asteriskField {
  color: #ef4444;
  margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="url"],
select,
textarea,
.form-control {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  font-size: 0.92rem;
  color: var(--text-1);
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-3);
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(31, 94, 195, 0.15);
}

input:disabled,
select:disabled,
textarea:disabled {
  background: #f3f4f6;
  color: var(--text-3);
  cursor: not-allowed;
}

input[readonly].form-control {
  background: #f3f4f6;
  color: var(--text-2);
  cursor: default;
}

select,
.rp-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236b7280' stroke-width='2' viewBox='0 0 24 24'><path stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

#category {
  padding: 14px 38px 14px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.errorlist,
.rp-label .errorlist {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  color: #ef4444;
  font-size: 0.78rem;
}

/* ---------------------------------------------------------------------- */
/* Two-column field rows                                                   */
/* ---------------------------------------------------------------------- */

.rp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.rp-form-row.full {
  grid-template-columns: 1fr;
}

@media (max-width: 640px) {
  .rp-form-row {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------------- */
/* Member / team cards                                                     */
/* ---------------------------------------------------------------------- */

.event-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}

.rp-member-block {
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.rp-member-block:hover {
  border-color: rgba(31, 94, 195, 0.25);
  box-shadow: var(--shadow-card-lg);
}

.rp-member-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.rp-member-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue-dark);
}

.rp-optional-tag {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-3);
  font-size: 0.75rem;
  margin-left: 4px;
}

.rp-member-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--brand-blue);
  border-radius: var(--radius-pill);
}

/* ---------------------------------------------------------------------- */
/* Submit area                                                             */
/* ---------------------------------------------------------------------- */

.yf-submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.yf-submit-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--brand-blue);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: var(--shadow-card-lg);
  transition: background 0.15s ease, transform 0.1s ease;
}

.yf-submit-btn:hover:not(:disabled) {
  background: var(--brand-blue-dark);
}

.yf-submit-btn:active:not(:disabled) {
  transform: translateY(1px);
}

.yf-submit-btn:disabled {
  background: var(--border-2);
  cursor: not-allowed;
  box-shadow: none;
}

.yf-submit-btn::after {
  content: "→";
  font-size: 1rem;
}

/* ---------------------------------------------------------------------- */
/* Sticky "Registration Summary" sidebar                                   */
/* ---------------------------------------------------------------------- */

.rp-summary-card {
  position: sticky;
  top: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  border-top: 3px solid var(--brand-blue);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 860px) {
  .rp-summary-card {
    position: static;
  }
}

.rp-summary-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-1);
}

/* Live event / price preview box */
.rp-summary-box {
  background: var(--brand-blue-lighter);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.rp-summary-box.is-selected {
  background: var(--brand-blue-light);
  border-color: rgba(31, 94, 195, 0.25);
}

.rp-summary-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}

.rp-summary-box.is-selected .rp-summary-eyebrow {
  color: var(--brand-blue-dark);
}

.rp-summary-dash {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 4px;
  word-break: break-word;
}

.rp-summary-caption {
  font-size: 0.78rem;
  color: var(--text-2);
}

.rp-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed var(--border-1);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-blue-dark);
}

.rp-summary-terms {
  font-size: 0.75rem;
  color: var(--text-2);
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

.rp-summary-terms a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 600;
}

.rp-summary-terms a:hover {
  text-decoration: underline;
}

/* ===========================
   PAYMENT PAGE
=========================== */

:root{
    --primary:#3666AE;
    --secondary:#FD6859;
    --success:#22C55E;
    --text:#1E293B;
    --text-light:#64748B;
    --border:#E2E8F0;
    --bg:#F4F7FC;
    --white:#FFFFFF;
}

/* body{
    margin:0;
    background:linear-gradient(135deg,#f8fbff,#eef4ff);
    font-family:Inter,sans-serif;
} */

.payment-section{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
}

.payment-card{
    width:100%;
    max-width:520px;
    background:#fff;
    border-radius:24px;
    padding:40px;
    box-shadow:
        0 25px 60px rgba(54,102,174,.12),
        0 8px 25px rgba(0,0,0,.05);
    border:1px solid rgba(54,102,174,.08);
}

.payment-card h2{
    margin:0;
    font-size:32px;
    font-weight:700;
    color:#1e293b;
    text-align:center;
}

.payment-sub{
    margin:12px 0 35px;
    text-align:center;
    color:#64748b;
    font-size:16px;
    line-height:1.6;
}

.payment-details{
    border:1px solid #E5EAF3;
    border-radius:18px;
    overflow:hidden;
    background:#fafcff;
}

.payment-details .row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 22px;
    border-bottom:1px solid #EEF2F7;
}

.payment-details .row:last-child{
    border-bottom:none;
}

.payment-details span{
    color:#64748b;
    font-size:15px;
}

.payment-details strong{
    color:#1E293B;
    font-size:16px;
    font-weight:700;
    text-align:right;
    word-break:break-word;
}

.payment-details .total{
    background:linear-gradient(135deg,#3666AE,#4D83E8);
}

.payment-details .total span,
.payment-details .total strong{
    color:#fff;
    font-size:18px;
}

.pay-btn{
    width:100%;
    height:58px;
    margin-top:30px;
    border:none;
    border-radius:14px;
    cursor:pointer;
    font-size:17px;
    font-weight:700;
    color:#fff;
    background:linear-gradient(135deg,#3666AE,#4D83E8);
    transition:.3s;
}

.pay-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 35px cornflowerblue;
}

.pay-btn:active{
    transform:scale(.98);
}

.pay-btn:disabled{
    opacity:.7;
    cursor:not-allowed;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width:768px){

    .payment-section{
        padding:20px 15px;
    }

    .payment-card{
        padding:28px;
        border-radius:20px;
    }

    .payment-card h2{
        font-size:26px;
    }

    .payment-sub{
        font-size:15px;
    }

    .payment-details .row{
        padding:16px;
    }

}

@media (max-width:576px){

    .payment-card{
        padding:22px;
    }

    .payment-card h2{
        font-size:22px;
    }

    .payment-details .row{
        flex-direction:column;
        align-items:flex-start;
        gap:6px;
    }

    .payment-details strong{
        text-align:left;
        font-size:15px;
    }

    .payment-details .total span,
    .payment-details .total strong{
        font-size:17px;
    }

    .pay-btn{
        height:54px;
        font-size:16px;
    }

}

@media (max-width:360px){

    .payment-card{
        padding:18px;
    }

    .payment-card h2{
        font-size:20px;
    }

    .payment-sub{
        font-size:14px;
    }

    .payment-details .row{
        padding:14px;
    }

    .pay-btn{
        font-size:15px;
        height:50px;
    }

}



/* ===========================
   Prize Pool Section — Light Premium
=========================== */

.ras-prize-section {
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
  isolation: isolate;
}

.prize-glow-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 45% 40% at 12% 15%,
      rgba(37, 99, 235, 0.1) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 35% at 90% 85%,
      rgba(233, 70, 63, 0.06) 0%,
      transparent 65%
    );
  pointer-events: none;
}

/* floating ambient orbs */
.prize-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.prize-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(37, 99, 235, 0.35),
    rgba(37, 99, 235, 0) 70%
  );
  animation: orbFloat 14s ease-in-out infinite;
}

.orb.o1 {
  width: 14px;
  height: 14px;
  top: 18%;
  left: 10%;
  animation-duration: 12s;
}
.orb.o2 {
  width: 9px;
  height: 9px;
  top: 65%;
  left: 88%;
  animation-duration: 16s;
  animation-delay: -4s;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(233, 70, 63, 0.3),
    rgba(233, 70, 63, 0) 70%
  );
}
.orb.o3 {
  width: 11px;
  height: 11px;
  top: 78%;
  left: 22%;
  animation-duration: 18s;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(24px, -32px) scale(1.15);
  }
  66% {
    transform: translate(-18px, 18px) scale(0.9);
  }
}

.ras-prize-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.prize-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Good Times Regular", serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 22px;
  opacity: 0;
  animation: prizeRise 0.8s 0.05s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.prize-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow:
    0 0 10px rgba(37, 99, 235, 0.7),
    0 0 20px rgba(37, 99, 235, 0.4);
  animation: prizePulse 2.2s ease-in-out infinite;
}

@keyframes prizePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.prize-heading {
  font-family: "poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 18px;
  opacity: 0;
  animation: prizeRise 0.8s 0.12s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.prize-total-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0;
  animation: prizeRise 0.9s 0.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.prize-currency {
  font-family: "Good Times Regular", serif;
  font-size: clamp(32px, 5vw, 56px);
  color: #2563eb;
  margin-top: 10px;
}

.prize-amount {
  font-family: "Good Times Regular", serif;
  font-weight: 400;
  font-size: clamp(64px, 12vw, 168px);
  letter-spacing: 0.01em;
  background: linear-gradient(
    100deg,
    #1e3a5f 0%,
    #2563eb 35%,
    #5b8def 55%,
    #2563eb 75%,
    #1e3a5f 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: prizeShimmer 5s linear infinite;
  text-shadow: 0 4px 40px rgba(37, 99, 235, 0.18);
  font-variant-numeric: tabular-nums;
}

@keyframes prizeShimmer {
  to {
    background-position: 250% center;
  }
}

@keyframes prizeRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* animated fill line under the number */
.prize-progress-track {
  width: min(320px, 60%);
  height: 3px;
  border-radius: 99px;
  background: rgba(37, 99, 235, 0.12);
  margin: 0 auto 26px;
  overflow: hidden;
  opacity: 0;
  animation: prizeRise 0.8s 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.prize-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 99px;
  background: linear-gradient(90deg, #2563eb, #5b8def, #2563eb);
  background-size: 200% auto;
  transition: width 1.8s cubic-bezier(0.16, 0.84, 0.44, 1);
  animation: prizeFillShimmer 2.4s linear infinite;
}

@keyframes prizeFillShimmer {
  to {
    background-position: 200% center;
  }
}

.prize-sub {
  font-family: "poppins", sans-serif;
  font-size: clamp(14px, 1.6vw, 17px);
  color: #64748b;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
  opacity: 0;
  animation: prizeRise 0.9s 0.38s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.prize-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.prize-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  transition:
    box-shadow 0.4s,
    border-color 0.4s,
    transform 0.25s ease-out;
  opacity: 0;
  animation: prizeRise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  will-change: transform;
}

.prize-grid .prize-card:nth-child(1) {
  animation-delay: 0.46s;
}
.prize-grid .prize-card:nth-child(2) {
  animation-delay: 0.54s;
}
.prize-grid .prize-card:nth-child(3) {
  animation-delay: 0.62s;
}
.prize-grid .prize-card:nth-child(4) {
  animation-delay: 0.7s;
}

.prize-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(37, 99, 235, 0.5),
    transparent 70%
  );
  background-size: 220% 220%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  animation: borderSweep 3.5s linear infinite;
  pointer-events: none;
}

.prize-card:hover::before {
  opacity: 1;
}

@keyframes borderSweep {
  to {
    background-position: 220% 220%;
  }
}

/* cursor-follow shine */
.prize-card-shine {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(
    circle 160px at var(--mx, 50%) var(--my, 50%),
    rgba(37, 99, 235, 0.14),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.prize-card:hover .prize-card-shine {
  opacity: 1;
}

.prize-card:hover {
  box-shadow: 0 25px 50px -18px rgba(37, 99, 235, 0.28);
  border-color: rgba(37, 99, 235, 0.35);
}

.prize-card-tag {
  font-family: "Good Times Regular", serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 16px;
  min-height: 28px;
  position: relative;
  z-index: 1;
}

.prize-card-amount {
  font-family: "Good Times Regular", serif;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  color: #2563eb;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
  font-variant-numeric: tabular-nums;
}

.prize-card-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .prize-amount,
  .prize-card::before,
  .prize-progress-fill,
  .prize-orbs .orb,
  .prize-eyebrow .dot {
    animation: none !important;
  }
  .prize-eyebrow,
  .prize-heading,
  .prize-total-wrap,
  .prize-progress-track,
  .prize-sub,
  .prize-card {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
}

/* ==========================
   4K & Large Screens
========================== */
@media (min-width: 1601px) {
  .ras-prize-section {
    padding: 70px 20px;
  }
  .ras-prize-inner {
    max-width: 1300px;
  }
  .prize-grid {
    gap: 28px;
  }
  .prize-card {
    padding: 38px 24px;
    border-radius: 22px;
  }
}

/* ==========================
   Large Desktop
========================== */
@media (max-width: 1600px) {
  .ras-prize-section {
    padding: 50px 20px;
  }
  .ras-prize-inner {
    max-width: 1100px;
  }
}

/* ==========================
   Desktop
========================== */
@media (max-width: 1400px) {
  .prize-grid {
    gap: 20px;
  }
  .prize-card {
    padding: 30px 18px;
  }
}

/* ==========================
   Laptop L
========================== */
@media (max-width: 1200px) {
  .ras-prize-section {
    padding: 35px 20px;
  }
  .prize-grid {
    gap: 18px;
  }
  .prize-card {
    padding: 28px 16px;
  }
  .prize-card-tag {
    font-size: 10.5px;
    min-height: 26px;
  }
}

/* ==========================
   Laptop
========================== */
@media (max-width: 1024px) {
  .prize-grid {
    gap: 16px;
  }
  .prize-sub {
    margin-bottom: 48px;
  }
}

/* ==========================
   Tablet
========================== */
@media (max-width: 991px) {
  .ras-prize-section {
    padding: 25px 20px;
  }
  .prize-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .prize-sub {
    margin-bottom: 44px;
  }
  .prize-card {
    padding: 26px 18px;
  }
}

/* ==========================
   Tablet Portrait
========================== */
@media (max-width: 768px) {
  .ras-prize-section {
    padding: 22px 18px;
  }
  .prize-heading {
    margin-bottom: 14px;
  }
  .prize-total-wrap {
    gap: 5px;
    margin-bottom: 16px;
  }
  .prize-sub {
    font-size: 15px;
    margin-bottom: 38px;
  }
  .prize-grid {
    gap: 16px;
  }
  .prize-card {
    padding: 24px 16px;
    border-radius: 18px;
  }
  .prize-card-amount {
    font-size: 26px;
  }
}

/* ==========================
   Mobile Large
========================== */
@media (max-width: 576px) {
  .ras-prize-section {
    padding: 20px 16px;
  }
  .prize-eyebrow {
    font-size: 11px;
    letter-spacing: 0.24em;
    margin-bottom: 18px;
  }
  .prize-heading {
    font-size: 26px;
    margin-bottom: 12px;
  }
  .prize-total-wrap {
    gap: 4px;
    margin-bottom: 14px;
  }
  .prize-currency {
    font-size: 28px;
    margin-top: 8px;
  }
  .prize-progress-track {
    margin-bottom: 22px;
  }
  .prize-sub {
    font-size: 14px;
    margin-bottom: 32px;
    line-height: 1.65;
  }
  .prize-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .prize-card {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .prize-card-tag {
    min-height: auto;
    margin-bottom: 12px;
  }
  .prize-card-amount {
    font-size: 24px;
  }
  .prize-card:hover {
    transform: none;
  }
}

/* ==========================
   Mobile
========================== */
@media (max-width: 480px) {
  .ras-prize-section {
    padding: 20px 14px;
  }
  .prize-heading {
    font-size: 22px;
  }
  .prize-sub {
    font-size: 13.5px;
    margin-bottom: 28px;
  }
  .prize-card {
    padding: 20px 16px;
  }
  .prize-card-tag {
    font-size: 10px;
  }
  .prize-card-amount {
    font-size: 22px;
  }
  .prize-card-label {
    font-size: 10px;
  }
}

/* ==========================
   Small Mobile
========================== */
@media (max-width: 375px) {
  .ras-prize-section {
    padding: 25px 12px;
  }
  .prize-heading {
    font-size: 20px;
  }
  .prize-currency {
    font-size: 24px;
  }
  .prize-sub {
    font-size: 13px;
  }
  .prize-card {
    padding: 18px 14px;
    border-radius: 14px;
  }
  .prize-card-amount {
    font-size: 20px;
  }
}

/* ==========================
   Extra Small Devices
========================== */
@media (max-width: 320px) {
  .ras-prize-section {
    padding: 20px 10px;
  }
  .prize-heading {
    font-size: 18px;
  }
  .prize-currency {
    font-size: 20px;
    margin-top: 6px;
  }
  .prize-sub {
    font-size: 12px;
  }
  .prize-card {
    padding: 16px 12px;
  }
  .prize-card-tag {
    font-size: 9.5px;
  }
  .prize-card-amount {
    font-size: 18px;
  }
  .prize-card-label {
    font-size: 9.5px;
  }
}

/* ── Timeline local palette (blue theme, scoped to this page only) ── */
.tl-tabs,
.tl-panels,
.tl-header-actions {
  --tl-blue: #2563eb;
  --tl-blue-deep: #1d4ed8;
  --tl-blue-tint: #93c5fd;
  --tl-blue-soft: #eff4ff;
  --tl-blue-line: #bfdbfe;
}

/* ── Header actions (download button row) ── */
.tl-header-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.tl-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--tl-blue);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transition:
    background 0.25s,
    box-shadow 0.25s,
    transform 0.2s;
}

.tl-download-btn:hover {
  background: var(--tl-blue-deep);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
  transform: translateY(-1px);
  color: #fff;
}

.tl-download-icon {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Tabs ── */
.tl-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  max-width: 600px;
  margin: 1.5rem auto 0;
  background: #fff;
  padding: 5px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.tl-tab {
  flex: 1;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--text-3);
  cursor: pointer;
  text-align: center;
  transition:
    color 0.25s,
    background 0.25s,
    box-shadow 0.25s;
  border: none;
  border-radius: 999px;
  background: none;
  user-select: none;
}

.tl-tab:hover:not(.active) {
  color: var(--tl-blue-deep);
  background: var(--tl-blue-soft);
}

.tl-tab.active {
  background: var(--tl-blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.tl-tab .tl-tab-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 2px;
  opacity: 0.7;
}

.tl-tab.active .tl-tab-sub {
  opacity: 0.9;
}

/* ── Panels ── */
.tl-panels {
  margin-top: 0;
}

.tl-panel {
  display: none;
}

.tl-panel.active {
  display: block;
  animation: tlFadeIn 0.35s ease both;
}

@keyframes tlFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Track (the vertical line) ── */
.tl-track {
  position: relative;
  max-width: 760px;
  margin: 2.5rem auto 0;
  padding-left: 0;
}

.tl-track::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    var(--tl-blue-soft),
    var(--tl-blue),
    var(--tl-blue-deep),
    var(--tl-blue-soft)
  );
  z-index: 0;
}

/* ── Individual item ── */
.tl-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
  position: relative;
}

/* ── Icon dot ── */
.tl-dot {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid var(--tl-blue-line);
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.12);
  transition:
    box-shadow 0.25s,
    border-color 0.25s,
    transform 0.25s;
}

.tl-item:hover .tl-dot {
  border-color: var(--tl-blue);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.28);
  transform: scale(1.05);
}

.tl-dot svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: var(--tl-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── Content card ── */
.tl-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  flex: 1;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  transition:
    box-shadow 0.25s,
    border-color 0.25s,
    transform 0.25s;
}

.tl-content:hover {
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
  border-color: var(--tl-blue-tint);
  transform: translateY(-2px);
}

.tl-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--tl-blue);
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.tl-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.tl-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0;
}

.tl-footnote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-3);
  font-style: italic;
}
@media (max-width: 640px) {
  .tl-tabs {
    max-width: 100%;
  }

  .tl-tab {
    padding: 0.65rem 0.5rem;
    font-size: 0.9rem;
  }

  .tl-download-btn {
    width: 100%;
    justify-content: center;
  }

  .tl-dot {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .tl-dot svg {
    width: 18px;
    height: 18px;
  }

  .tl-content {
    padding: 1rem 1.1rem;
  }
}

/* =========================================================
   TIMELINE RESPONSIVE DESIGN
   All Device Breakpoints
========================================================= */

/* ─────────────────────────────────────────────────────────
   EXTRA LARGE DESKTOPS
   1600px and above
───────────────────────────────────────────────────────── */

@media (min-width: 1600px) {
  .tl-track {
    max-width: 900px;
  }

  .tl-tabs {
    max-width: 700px;
  }

  .tl-content {
    padding: 1.5rem 1.75rem;
  }

  .tl-title {
    font-size: 1.4rem;
  }

  .tl-desc {
    font-size: 0.95rem;
  }
}

/* ─────────────────────────────────────────────────────────
   LARGE DESKTOPS
   1200px - 1599px
───────────────────────────────────────────────────────── */

@media (min-width: 1200px) and (max-width: 1599px) {
  .tl-track {
    max-width: 820px;
  }

  .tl-tabs {
    max-width: 650px;
  }
}

/* ─────────────────────────────────────────────────────────
   LAPTOPS
   992px - 1199px
───────────────────────────────────────────────────────── */

@media (min-width: 992px) and (max-width: 1199px) {
  .tl-track {
    max-width: 760px;
    padding: 0 1rem;
  }

  .tl-tabs {
    max-width: 600px;
  }

  .tl-content {
    padding: 1.2rem 1.35rem;
  }
}

/* ─────────────────────────────────────────────────────────
   TABLETS / SMALL LAPTOPS
   768px - 991px
───────────────────────────────────────────────────────── */

@media (min-width: 768px) and (max-width: 991px) {
  .tl-header-actions {
    margin-top: 1.5rem;
  }

  .tl-tabs {
    width: calc(100% - 2rem);
    max-width: 620px;
  }

  .tl-tab {
    padding: 0.7rem 1rem;
    font-size: 1rem;
  }

  .tl-track {
    width: calc(100% - 2rem);
    max-width: 720px;
    margin-top: 2.25rem;
  }

  .tl-item {
    gap: 1.25rem;
    margin-bottom: 1.75rem;
  }

  .tl-dot {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .tl-content {
    padding: 1.15rem 1.3rem;
  }

  .tl-title {
    font-size: 1.15rem;
  }

  .tl-desc {
    font-size: 0.85rem;
    line-height: 1.65;
  }
}

/* ─────────────────────────────────────────────────────────
   LARGE MOBILE / SMALL TABLETS
   576px - 767px
───────────────────────────────────────────────────────── */

@media (min-width: 576px) and (max-width: 767px) {
  .tl-header-actions {
    margin-top: 1.25rem;
  }

  .tl-download-btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.75rem;
  }

  .tl-tabs {
    width: calc(100% - 1.5rem);
    margin-top: 1.25rem;
  }

  .tl-tab {
    padding: 0.65rem 0.75rem;
    font-size: 0.9rem;
  }

  .tl-tab .tl-tab-sub {
    font-size: 0.52rem;
  }

  .tl-track {
    width: calc(100% - 1.5rem);
    margin-top: 2rem;
  }

  .tl-track::before {
    left: 23px;
  }

  .tl-item {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .tl-dot {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .tl-dot svg {
    width: 18px;
    height: 18px;
  }

  .tl-content {
    padding: 1rem 1.1rem;
  }

  .tl-date {
    font-size: 0.68rem;
  }

  .tl-title {
    font-size: 1.05rem;
  }

  .tl-desc {
    font-size: 0.82rem;
    line-height: 1.6;
  }
}

/* ─────────────────────────────────────────────────────────
   STANDARD MOBILE
   375px - 575px
───────────────────────────────────────────────────────── */

@media (min-width: 375px) and (max-width: 575px) {
  .tl-footnote {
    width: calc(100% - 2rem);
    font-size: 0.72rem;
    line-height: 1.6;
    text-align: center;
  }

  .tl-header-actions {
    width: calc(100% - 2rem);
    margin: 1.25rem auto 0;
  }

  .tl-download-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.72rem;
  }

  .tl-tabs {
    width: calc(100% - 1.5rem);
    margin-top: 1.25rem;
    padding: 4px;
  }

  .tl-tab {
    padding: 0.65rem 0.35rem;
    font-size: 0.82rem;
  }

  .tl-tab .tl-tab-sub {
    font-size: 0.48rem;
    letter-spacing: 0.08em;
  }

  .tl-track {
    width: calc(100% - 1.5rem);
    margin-top: 1.75rem;
  }

  .tl-track::before {
    left: 20px;
    width: 2px;
  }

  .tl-item {
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .tl-dot {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-width: 2px;
  }

  .tl-dot svg {
    width: 16px;
    height: 16px;
  }

  .tl-content {
    padding: 0.85rem 0.9rem;
    border-radius: 12px;
  }

  .tl-date {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .tl-title {
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .tl-desc {
    font-size: 0.78rem;
    line-height: 1.6;
  }
}

/* ─────────────────────────────────────────────────────────
   SMALL MOBILE
   320px - 374px
───────────────────────────────────────────────────────── */

@media (max-width: 374px) {
  .tl-footnote {
    width: calc(100% - 1.5rem);
    font-size: 0.68rem;
    line-height: 1.55;
    text-align: center;
  }

  .tl-header-actions {
    width: calc(100% - 1.5rem);
    margin: 1rem auto 0;
  }

  .tl-download-btn {
    width: 100%;
    justify-content: center;
    padding: 0.65rem 0.75rem;
    font-size: 0.65rem;
    letter-spacing: 0.04em;
  }

  .tl-download-icon {
    width: 14px;
    height: 14px;
  }

  .tl-tabs {
    width: calc(100% - 1rem);
    margin-top: 1rem;
    padding: 3px;
  }

  .tl-tab {
    padding: 0.55rem 0.2rem;
    font-size: 0.72rem;
  }

  .tl-tab .tl-tab-sub {
    font-size: 0.42rem;
    letter-spacing: 0.05em;
  }

  .tl-track {
    width: calc(100% - 1rem);
    margin-top: 1.5rem;
  }

  .tl-track::before {
    left: 18px;
  }

  .tl-item {
    gap: 0.6rem;
    margin-bottom: 1rem;
  }

  .tl-dot {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .tl-dot svg {
    width: 14px;
    height: 14px;
  }

  .tl-content {
    padding: 0.7rem 0.75rem;
    border-radius: 10px;
  }

  .tl-date {
    font-size: 0.56rem;
  }

  .tl-title {
    font-size: 0.88rem;
    line-height: 1.3;
  }

  .tl-desc {
    font-size: 0.72rem;
    line-height: 1.5;
  }
}

/* ─────────────────────────────────────────────────────────
   LANDSCAPE MOBILE DEVICES
───────────────────────────────────────────────────────── */

@media (max-width: 767px) and (orientation: landscape) {
  .tl-header-actions {
    margin-top: 1rem;
  }

  .tl-tabs {
    margin-top: 1rem;
  }

  .tl-track {
    margin-top: 1.5rem;
  }

  .tl-item {
    margin-bottom: 1rem;
  }
}

/* ─────────────────────────────────────────────────────────
   TOUCH DEVICES
───────────────────────────────────────────────────────── */

@media (hover: none) and (pointer: coarse) {
  .tl-content:hover {
    transform: none;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  }

  .tl-item:hover .tl-dot {
    transform: none;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.12);
  }

  .tl-download-btn:hover {
    transform: none;
  }
}

/* ─────────────────────────────────────────────────────────
   ACCESSIBILITY: REDUCED MOTION
───────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .tl-panel.active {
    animation: none;
  }

  .tl-content,
  .tl-dot,
  .tl-download-btn,
  .tl-tab {
    transition: none;
  }
}
