/* WPS landing v20 — scoped under #wps-content .wps-landing-v20 */
#wps-content .wps-landing-v20 {
    --fsp-blue: #1400FF;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --dark-text: #1A1A2E;
    --mid-text: #5C5C7A;
    --muted-text: #9A9AB0;
    --light-border: #E4E4EE;
    --light-bg: #F5F5FA;
    --subtle-bg: #F7F7FA;
    --gold: #C9952B;
    --green: #059669;
    --cyan: #22D3EE;
    --max-width: 1200px;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--dark-text);
    background: var(--white);
    overflow-x: hidden;
}

@scope (.wps-landing-v20) {
/* ===== HERO — FULL-BLEED CINEMATIC ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 48px 0;
    overflow: hidden;
  }
  /* Full-bleed background (gradient + noise); optional photo/video can replace via background-image */
  .hero-bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 0;
    background: #0a0a1a;
  }
  .hero-bg .wps-hero-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0.45;
  }
  @keyframes wps-v20-heroShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  /* Gradient overlay for text readability */
  .hero-bg::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.7) 100%);
  }
  /* Noise texture */
  .hero-bg::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px; opacity: 0.18; z-index: 1;
  }
  /* Cyan tracking scan lines across hero */
  .hero-scans {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; pointer-events: none;
  }
  .hero-scans::before {
    content: ''; position: absolute; top: 38%; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent 10%, var(--cyan) 40%, var(--cyan) 60%, transparent 90%);
    opacity: 0.15; animation: wps-v20-heroScan 6s ease-in-out infinite;
  }
  .hero-scans::after {
    content: ''; position: absolute; top: 62%; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent 20%, var(--cyan) 45%, var(--cyan) 55%, transparent 80%);
    opacity: 0.1; animation: wps-v20-heroScan 6s ease-in-out 3s infinite;
  }
  @keyframes wps-v20-heroScan {
    0%, 100% { opacity: 0.05; transform: translateY(0); }
    50% { opacity: 0.2; transform: translateY(-8px); }
  }

  .hero-content {
    position: relative; z-index: 2;
    max-width: var(--max-width); margin: 0 auto; width: 100%;
    animation: wps-v20-fadeUp 0.8s ease-out;
  }
  .hero-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--cyan); margin-bottom: 20px;
    display: flex; align-items: center; gap: 8px;
  }
  .hero-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--cyan); }
  .hero-h1 {
    font-size: clamp(42px, 6vw, 72px); font-weight: 900; letter-spacing: -0.03em;
    line-height: 1.12; color: var(--white); text-transform: uppercase; margin-bottom: 24px;
  }
  /* High-contrast accent on dark gradient (brand blue alone reads as invisible) */
  .hero-h1 .accent {
    color: #7AE8F6;
    text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 0 40px rgba(34,211,238,0.35);
  }
  .hero-sub {
    font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.6);
    line-height: 1.65; max-width: 520px; margin-bottom: 36px;
  }
  .hero-ctas { display: flex; gap: 14px; align-items: center; margin-bottom: 0; }

  /* Kinetic Truth badge — floating */
  .hero-kt-badge {
    position: absolute; top: 50%; right: 80px; transform: translateY(-50%);
    z-index: 2;
    background: rgba(0,0,0,0.4); backdrop-filter: blur(16px);
    border: 1px solid rgba(34,211,238,0.15);
    padding: 12px 20px; border-radius: 12px;
    display: flex; align-items: center; gap: 10px;
    animation: wps-v20-fadeUp 0.8s ease-out 0.6s both;
  }
  .hero-kt-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
    animation: wps-v20-pulse 2s ease-in-out infinite;
  }
  .hero-kt-text {
    font-size: 10px; font-weight: 700; color: var(--cyan);
    letter-spacing: 0.1em; text-transform: uppercase;
  }
  @keyframes wps-v20-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

  /* Stats bar — frosted glass, bottom of hero */
  .hero-stats-bar {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    background: rgba(0,0,0,0.4); backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 48px;
  }
  .hero-stats-inner {
    max-width: var(--max-width); margin: 0 auto;
    display: flex; gap: 48px; align-items: center;
  }
  .hero-stat { display: flex; align-items: baseline; gap: 10px; }
  .hero-stat-num { font-size: 28px; font-weight: 900; color: var(--white); letter-spacing: -0.02em; }
  .hero-stat-label { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; }
  .hero-stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); color: var(--black);
    padding: 14px 28px; border-radius: 40px;
    font-size: 13px; font-weight: 700; text-decoration: none;
    letter-spacing: 0.02em; transition: opacity 0.2s; border: none; cursor: pointer;
    box-shadow: none;
    filter: none;
  }
  .btn-primary:hover { opacity: 0.9; }
  .btn-blue {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--fsp-blue); color: var(--white);
    padding: 14px 28px; border-radius: 40px;
    font-size: 13px; font-weight: 700; text-decoration: none;
    letter-spacing: 0.02em; transition: opacity 0.2s; border: none; cursor: pointer;
  }
  .btn-blue:hover { opacity: 0.9; }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--white);
    padding: 14px 28px; border-radius: 40px;
    font-size: 13px; font-weight: 700; text-decoration: none;
    letter-spacing: 0.02em; border: 1.5px solid rgba(255,255,255,0.25);
    transition: all 0.2s; cursor: pointer;
  }
  .btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

  /* ===== HOW IT WORKS — MULTIMEDIA UPGRADE ===== */
  .how-it-works { padding: 80px 48px 0; background: var(--white); }
  .how-it-works-inner { max-width: var(--max-width); margin: 0 auto; }
  .section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fsp-blue); margin-bottom: 12px; text-align: center; }
  .section-h2 { font-size: clamp(28px, 3.5vw, 36px); font-weight: 900; letter-spacing: -0.02em; color: var(--black); margin-bottom: 12px; text-align: center; }
  .section-sub { font-size: 15px; font-weight: 400; color: var(--mid-text); line-height: 1.6; max-width: 560px; margin: 0 auto 56px; text-align: center; }

  /* Step cards — image-led with overlay content */
  .steps-immersive { display: flex; flex-direction: column; gap: 0; }

  .step-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    min-height: 420px; position: relative;
  }
  .step-row.reverse .step-visual { order: 2; }
  .step-row.reverse .step-content-panel { order: 1; }

  .step-visual {
    position: relative; overflow: hidden;
    min-height: 420px;
  }
  .step-visual-img {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.4);
    text-align: center; padding: 20px; letter-spacing: 0.04em;
    text-transform: uppercase; position: relative;
  }
  .step-visual .step-bg-number {
    position: absolute; bottom: -20px; right: 20px;
    font-size: 180px; font-weight: 900; color: rgba(255,255,255,0.06);
    line-height: 1; pointer-events: none; z-index: 1;
  }
  .step-visual .cyan-scan {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none; z-index: 2;
  }
  .step-visual .cyan-scan::before {
    content: ''; position: absolute; top: 35%; left: 15%; width: 70%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    animation: wps-v20-scanLine 3s ease-in-out infinite;
  }
  .step-visual .cyan-scan::after {
    content: ''; position: absolute; top: 60%; left: 25%; width: 50%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    animation: wps-v20-scanLine 3s ease-in-out 1.5s infinite;
  }

  .step-content-panel {
    display: flex; flex-direction: column; justify-content: center;
    padding: 56px 56px;
    position: relative;
  }
  .step-content-panel .step-num-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 12px;
    font-size: 13px; font-weight: 800; color: var(--white);
    background: var(--fsp-blue); margin-bottom: 24px;
  }
  .step-content-panel .step-h3 {
    font-size: 28px; font-weight: 900; letter-spacing: -0.02em;
    color: var(--black); margin-bottom: 16px; line-height: 1.1;
  }
  .step-content-panel .step-p {
    font-size: 15px; font-weight: 400; color: var(--mid-text);
    line-height: 1.65; margin-bottom: 24px;
  }
  .step-content-panel .step-cta-link {
    font-size: 12px; font-weight: 700; color: var(--fsp-blue);
    text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 6px;
    transition: opacity 0.2s;
  }
  .step-content-panel .step-cta-link:hover { opacity: 0.7; }

  /* Step visual backgrounds */
  .step-visual.v1 .step-visual-img { background: linear-gradient(135deg, #0a0a2a, #1a1a4a, #1400FF); }
  .step-visual.v2 .step-visual-img { background: linear-gradient(135deg, #1a0a2a, #2a1a4a, #0a2a5a); }

  /* Connector line between steps */
  .step-connector-line {
    width: 2px; height: 48px; background: var(--light-border);
    margin: 0 auto; position: relative;
  }
  .step-connector-line::after {
    content: ''; position: absolute; bottom: -4px; left: -3px;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--fsp-blue);
  }

  /* Step 3 — Finals cinematic card */
  .finals-cinematic {
    position: relative; overflow: hidden;
    border-radius: 20px; margin-top: 8px;
    min-height: 480px;
    display: grid; grid-template-columns: 1fr 1fr;
    background: var(--black);
  }
  .finals-cinematic::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px; opacity: 0.15; pointer-events: none; z-index: 1;
  }
  .finals-cin-visual {
    position: relative; overflow: hidden; min-height: 480px;
  }
  .finals-cin-visual-img {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.3);
    text-align: center; padding: 20px; letter-spacing: 0.04em;
    text-transform: uppercase; position: relative;
    background: linear-gradient(160deg, #1a1a2a, #0a0a1a, #1400FF);
  }
  .finals-cin-visual .wps-bg {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: 160px; font-weight: 900; color: rgba(255,255,255,0.03);
    letter-spacing: 0.1em; pointer-events: none;
  }
  .finals-cin-visual .venue-overlay {
    position: absolute; bottom: 24px; left: 24px; z-index: 2;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(10px);
    padding: 10px 16px; border-radius: 10px;
    display: flex; align-items: center; gap: 8px;
  }
  .finals-cin-visual .venue-overlay svg { flex-shrink: 0; }
  .finals-cin-visual .venue-overlay span {
    font-size: 11px; font-weight: 600; color: var(--gold);
    letter-spacing: 0.02em;
  }
  .finals-cin-content {
    position: relative; z-index: 2;
    padding: 56px 48px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .finals-cin-content .step-num-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 12px;
    font-size: 13px; font-weight: 800; color: var(--black);
    background: var(--gold); margin-bottom: 24px;
  }
  .finals-cin-content .finals-h3 {
    font-size: 32px; font-weight: 900; letter-spacing: -0.02em;
    color: var(--white); margin-bottom: 16px; line-height: 1.1;
  }
  .finals-cin-content .finals-p {
    font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.55);
    line-height: 1.65; margin-bottom: 32px;
  }
  .finals-cin-stats { display: flex; gap: 12px; margin-bottom: 16px; }
  .finals-cin-stat {
    flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 18px 14px; text-align: center;
  }
  .finals-cin-stat-num { font-size: 26px; font-weight: 900; color: var(--white); }
  .finals-cin-stat-label { font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
  .finals-cin-venue {
    background: rgba(201,149,43,0.1); border: 1px solid rgba(201,149,43,0.2);
    border-radius: 10px; padding: 14px 18px;
    display: flex; align-items: center; gap: 10px;
  }
  .finals-cin-venue-text { font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.02em; }

  /* ===== THREE INSTITUTIONS ===== */
  .institutions {
    padding: 80px 48px; max-width: var(--max-width); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .institutions-headline {
    font-size: clamp(36px, 5vw, 56px); font-weight: 900; letter-spacing: -0.03em;
    line-height: 1.05; color: var(--black); text-transform: uppercase;
  }
  .institutions-headline .accent { color: var(--fsp-blue); }
  .institutions-right { padding-top: 8px; }
  .institutions-divider { width: 100%; height: 1px; background: var(--light-border); margin-bottom: 28px; }
  .institutions-body { font-size: 15px; font-weight: 400; color: var(--mid-text); line-height: 1.65; margin-bottom: 36px; }
  .logo-row { display: flex; gap: 16px; }
  .logo-card {
    flex: 1; background: var(--fsp-blue); border-radius: 14px;
    padding: 24px 16px; display: flex; align-items: center; justify-content: center; min-height: 88px;
  }
  .logo-card-text {
    color: var(--white); font-size: 12px; font-weight: 800;
    letter-spacing: 0.06em; text-transform: uppercase; text-align: center; line-height: 1.3;
  }
  .logo-card-text span { display: block; font-size: 9px; font-weight: 600; letter-spacing: 0.1em; opacity: 0.6; margin-top: 4px; }

  /* ===== SAURAV QUOTE ===== */
  .saurav-section { padding: 80px 48px; max-width: var(--max-width); margin: 0 auto; }
  .saurav-card {
    background: var(--black); border-radius: 16px; padding: 48px 56px;
    display: grid; grid-template-columns: auto 1fr; gap: 40px;
    align-items: center; position: relative; overflow: hidden;
  }
  .saurav-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px; opacity: 0.3; pointer-events: none;
  }
  .saurav-photo { width: 120px; height: 120px; border-radius: 14px; overflow: hidden; flex-shrink: 0; position: relative; z-index: 1; }
  .saurav-photo .img-placeholder { background: linear-gradient(160deg, #2a3a5a, #1a2a4a); font-size: 9px; }
  .saurav-content { position: relative; z-index: 1; }
  .saurav-role {
    font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--cyan); margin-bottom: 14px;
    display: flex; align-items: center; gap: 8px;
  }
  .saurav-role::before { content: ''; width: 16px; height: 2px; background: var(--cyan); }
  .saurav-quote { font-size: 18px; font-weight: 500; color: var(--white); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
  .saurav-name { font-size: 14px; font-weight: 700; color: var(--white); }
  .saurav-title { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.5); margin-top: 2px; }

  /* ===== WELCOME / WPS INTRO ===== */
  .welcome { padding: 0; position: relative; }
  .welcome-grid { display: grid; grid-template-columns: 1.2fr 1fr; min-height: 600px; }
  .welcome-image { position: relative; overflow: hidden; }
  .welcome-image .img-placeholder { background: linear-gradient(160deg, #e8e8ee, #d0d0dd, #b8b8cc); color: var(--mid-text); min-height: 600px; }
  .wps-logo-overlay {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: 140px; font-weight: 900; color: rgba(255,255,255,0.12);
    letter-spacing: 0.04em; white-space: nowrap; pointer-events: none;
  }
  .welcome-content { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
  .welcome-divider-short { width: 48px; height: 3px; background: var(--black); margin-bottom: 20px; }
  .welcome-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-text); margin-bottom: 16px; }
  .welcome-h2 { font-size: clamp(32px, 4vw, 44px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.05; color: var(--black); text-transform: uppercase; margin-bottom: 24px; }
  .welcome-body { font-size: 15px; font-weight: 400; color: var(--mid-text); line-height: 1.65; margin-bottom: 12px; }
  .welcome-body strong { color: var(--dark-text); font-weight: 600; }
  .welcome-closer { font-size: 16px; font-weight: 700; color: var(--black); margin-top: 16px; margin-bottom: 32px; }
  .welcome-cta { display: inline-flex; }
  .kt-tag {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 10px; font-weight: 700; color: var(--cyan);
    background: rgba(34,211,238,0.08); padding: 3px 8px; border-radius: 4px;
    letter-spacing: 0.06em; text-transform: uppercase; vertical-align: middle;
  }
  .kt-tag::before { content: ''; width: 5px; height: 5px; background: var(--cyan); border-radius: 50%; }

  /* ===== WPS FINALS FORMAT — MATCHUP STYLE ===== */
  .format-section { padding: 80px 48px; max-width: var(--max-width); margin: 0 auto; }
  .matchup-card {
    margin-top: 48px; border-radius: 20px; overflow: hidden;
    display: grid; grid-template-columns: 1fr auto 1fr;
    min-height: 520px; position: relative;
    background: var(--black);
  }
  .matchup-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px; opacity: 0.15; pointer-events: none; z-index: 0;
  }

  /* Left side — FSP Athletes (blue) */
  .matchup-side { position: relative; z-index: 1; display: flex; flex-direction: column; }
  .matchup-side-img {
    height: 220px; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.3);
    text-align: center; padding: 16px; letter-spacing: 0.04em; text-transform: uppercase;
  }
  .matchup-side.left .matchup-side-img { background: linear-gradient(135deg, #0a0a3a, #1400FF); }
  .matchup-side.right .matchup-side-img { background: linear-gradient(135deg, #2a1a0a, #4a3218, #C9952B); }
  .matchup-side-img .bg-num {
    position: absolute; bottom: -10px; right: 16px;
    font-size: 120px; font-weight: 900; line-height: 1; pointer-events: none;
  }
  .matchup-side.left .bg-num { color: rgba(255,255,255,0.05); }
  .matchup-side.right .bg-num { color: rgba(255,255,255,0.06); }

  .matchup-side-content { padding: 28px 32px; flex: 1; display: flex; flex-direction: column; }
  .matchup-side-label {
    font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 8px;
  }
  .matchup-side.left .matchup-side-label { color: var(--fsp-blue); }
  .matchup-side.right .matchup-side-label { color: var(--gold); }
  .matchup-side-title {
    font-size: 24px; font-weight: 900; color: var(--white);
    letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.1;
  }
  .matchup-side-desc {
    font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.5);
    line-height: 1.6; margin-bottom: 24px; flex: 1;
  }
  .matchup-detail {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; border-top: 1px solid rgba(255,255,255,0.08);
  }
  .matchup-detail-label {
    font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.3);
    text-transform: uppercase; letter-spacing: 0.08em;
  }
  .matchup-detail-value { font-size: 13px; font-weight: 700; color: var(--white); }

  /* Center divider — VS element */
  .matchup-center {
    position: relative; z-index: 2;
    width: 80px; display: flex; align-items: center; justify-content: center;
    flex-direction: column;
  }
  .matchup-vs-line {
    width: 1px; flex: 1;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15), transparent);
  }
  .matchup-vs-badge {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--white); color: var(--black);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 900; letter-spacing: -0.02em;
    flex-shrink: 0;
    box-shadow: 0 0 40px rgba(255,255,255,0.1);
  }

  @media (max-width: 900px) {
    .matchup-card { grid-template-columns: 1fr; }
    .matchup-center { width: 100%; height: 60px; flex-direction: row; }
    .matchup-vs-line { height: 1px; width: 100%; }
  }

  /* ===== OLYMPIC MOMENT ===== */
  .olympic { padding: 80px 48px; background: var(--fsp-blue); position: relative; overflow: hidden; }
  .olympic::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px; opacity: 0.4; pointer-events: none;
  }
  .olympic-inner { max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 1; text-align: center; }
  .olympic-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
  .olympic-h2 { font-size: clamp(32px, 4.5vw, 48px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; color: var(--white); text-transform: uppercase; margin-bottom: 20px; }
  .olympic-h2 .gold { color: var(--gold); }
  .olympic-sub { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 600px; margin: 0 auto 40px; }
  .olympic-stats { display: flex; justify-content: center; gap: 48px; margin-bottom: 40px; }
  .olympic-stat { text-align: center; }
  .olympic-stat-num { font-size: 36px; font-weight: 900; color: var(--white); letter-spacing: -0.02em; }
  .olympic-stat-label { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
  .olympic-stat-divider { width: 1px; background: rgba(255,255,255,0.12); align-self: stretch; }
  .btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); color: var(--black);
    padding: 14px 28px; border-radius: 40px;
    font-size: 13px; font-weight: 700; text-decoration: none;
    letter-spacing: 0.02em; transition: opacity 0.2s;
  }
  .btn-white:hover { opacity: 0.9; }
  .btn-outline-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--white);
    padding: 14px 28px; border-radius: 40px;
    font-size: 13px; font-weight: 700; text-decoration: none;
    letter-spacing: 0.02em; border: 1.5px solid rgba(255,255,255,0.3);
    transition: all 0.2s;
  }
  .btn-outline-white:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

  /* ===== UPDATES CAROUSEL ===== */
  .updates-section { padding: 80px 0 80px 0; overflow: hidden; }
  .updates-header {
    max-width: var(--max-width); margin: 0 auto; padding: 0 48px;
    display: flex; align-items: baseline; justify-content: space-between;
    margin-bottom: 32px;
  }
  .updates-h2 {
    font-size: clamp(28px, 3.5vw, 36px); font-weight: 900; letter-spacing: -0.02em;
    color: var(--black); text-transform: uppercase;
  }
  .updates-view-all {
    font-size: 12px; font-weight: 700; color: var(--fsp-blue);
    text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase;
    display: flex; align-items: center; gap: 6px; transition: opacity 0.2s;
  }
  .updates-view-all:hover { opacity: 0.7; }
  .updates-track {
    display: flex; gap: 16px;
    padding: 0 48px;
    overflow-x: auto; scroll-behavior: smooth;
    -ms-overflow-style: none; scrollbar-width: none;
    cursor: grab;
  }
  .updates-track::-webkit-scrollbar { display: none; }
  .updates-track:active { cursor: grabbing; }
  .update-card {
    flex: 0 0 320px; height: 400px;
    border-radius: 14px; overflow: hidden;
    position: relative; cursor: pointer;
    transition: transform 0.2s;
  }
  .update-card:hover { transform: translateY(-4px); }
  .update-card-img {
    width: 100%; height: 100%;
    display: flex; align-items: flex-end;
    padding: 24px;
    position: relative;
  }
  .update-card-img::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.75) 100%);
    pointer-events: none;
  }
  .update-card:nth-child(1) .update-card-img { background: linear-gradient(160deg, #0a0a2a, #1400FF); }
  .update-card:nth-child(2) .update-card-img { background: linear-gradient(160deg, #1a1a4a, #0a2a5a); }
  .update-card:nth-child(3) .update-card-img { background: linear-gradient(160deg, #0a1a3a, #1a2a5a, #1400FF); }
  .update-card:nth-child(4) .update-card-img { background: linear-gradient(160deg, #2a1a0a, #4a3a1a, #1a1a3a); }
  .update-card:nth-child(5) .update-card-img { background: linear-gradient(160deg, #1a1a4a, #1400FF, #0a2a5a); }
  .update-card-content {
    position: relative; z-index: 1;
  }
  .update-card-tag {
    font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--white); background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px); padding: 4px 10px; border-radius: 6px;
    display: inline-block; margin-bottom: 10px;
  }
  .update-card-title {
    font-size: 16px; font-weight: 800; color: var(--white);
    letter-spacing: -0.01em; line-height: 1.25;
    text-transform: uppercase;
  }
  .update-card-date {
    font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.5);
    margin-top: 8px; letter-spacing: 0.04em;
  }
  .update-card-placeholder-label {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
    font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.3);
    text-align: center; letter-spacing: 0.06em; text-transform: uppercase;
    pointer-events: none; z-index: 0;
  }

  /* ===== CTA BANNER ===== */
  .cta-banner { padding: 64px 48px; background: var(--black); position: relative; overflow: hidden; }
  .cta-banner::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px; opacity: 0.2; pointer-events: none;
  }
  .cta-banner-inner {
    max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: space-between;
  }
  .cta-banner-text h3 { font-size: 28px; font-weight: 900; color: var(--white); letter-spacing: -0.02em; margin-bottom: 6px; }
  .cta-banner-text p { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.5); }
  .cta-banner-buttons { display: flex; gap: 12px; }

  /* ===== ANIMATIONS ===== */
  @keyframes wps-v20-fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .hero { padding: 120px 24px 80px; }
    .hero-kt-badge { position: static; transform: none; margin-top: 24px; align-self: flex-start; }
    .hero-stats-inner { flex-direction: column; gap: 16px; }
    .hero-stat-divider { width: 100%; height: 1px; }
    .institutions { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
    .steps-grid { grid-template-columns: 1fr; }
    .step-row { grid-template-columns: 1fr; }
    .step-row.reverse .step-visual { order: 1; }
    .step-row.reverse .step-content-panel { order: 2; }
    .step-visual { min-height: 280px; }
    .step-content-panel { padding: 32px 24px; }
    .finals-cinematic { grid-template-columns: 1fr; }
    .finals-cin-visual { min-height: 280px; }
    .welcome-grid { grid-template-columns: 1fr; }
    .welcome-image .img-placeholder { min-height: 300px; }
    .olympic-stats { flex-direction: column; gap: 20px; }
    .cta-banner-inner { flex-direction: column; text-align: center; gap: 24px; }
    .saurav-card { grid-template-columns: 1fr; text-align: center; padding: 32px 28px; }
    .saurav-role { justify-content: center; }
  }
}

/*
 * games.html embed: fsp-games/css/style.css defines global .hero / .hero-content
 * (FSP Games tab) and overrides this block — reset with page-scoped specificity.
 */
#wps-content .wps-landing-v20 section.hero {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100vh;
  min-height: 100dvh;
  max-height: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 48px 48px 0;
  overflow: hidden;
  isolation: isolate;
}

#wps-content .wps-landing-v20 .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  height: auto;
  min-height: 0;
  display: block;
  text-align: left;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0 0 120px;
  flex: 0 1 auto;
  animation: wps-v20-fadeUp 0.8s ease-out;
}

@media (max-width: 900px) {
  #wps-content .wps-landing-v20 section.hero {
    padding: 40px 24px 0;
  }
  #wps-content .wps-landing-v20 .hero-content {
    padding-bottom: 100px;
  }
}
