/*
Theme Name: isaeventsreport
Theme URI: https://isaevents.org/your-theme
Author: Navneet Kumar
Author URI: https://isaevents.org
Description: A custom WordPress theme for isaeventsreport
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: isaeventsreport
*/

    /* -------- Global -------- */

    :root {
      --bg: #FAFAF9;
      --bg-alt: #E5E7EB;
      --dark: #0F3D3E;
      --secondary: #1E5F74;
      --muted: rgba(30, 95, 116, 0.72);
      --accent: #D97706;
      --accent-hover: #EA8C0C;
      --copper: #B45309;
      --border: rgba(30, 95, 116, 0.16);
      --golden-hero: #D89A2B;
      --golden-accent: #F5D88A;
      --charcoal: #2B2B2B;
      --radius: 24px;
      --radius-lg: 32px;
      --shadow: 0 24px 64px rgba(15, 61, 62, 0.08), 0 8px 24px rgba(15, 61, 62, 0.04);
      --shadow-hover: 0 32px 80px rgba(15, 61, 62, 0.12), 0 12px 32px rgba(15, 61, 62, 0.06);
      --font: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
      --ease: cubic-bezier(0.22, 1, 0.36, 1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font);
      background: var(--bg);
      color: var(--dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.08;
    }

    a { color: inherit; text-decoration: none; }

    img { max-width: 100%; display: block; }

    .container {
      width: min(1280px, calc(100% - 48px));
      margin-inline: auto;
    }

    /* ─── NAV ─── */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: #ffffff;
      z-index: 1000;
      padding: 12px 0;
    box-shadow: 0px 1px 13px 0px #0000000f;
      transition: background 0.4s var(--ease), backdrop-filter 0.4s, box-shadow 0.4s;
    }

    .nav.scrolled {
      background: rgba(250, 250, 249, 0.92);
      backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 var(--border);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: min(1280px, calc(100% - 48px));
      margin-inline: auto;
    }

    .nav-logo {
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
    }

    .nav-logo img {
      display: block;
      height: 22px;
      width: auto;
      max-width: min(220px, 52vw);
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: #0f3d3e;
      transition: color 0.25s;
    }

    .nav-links a:hover { color: var(--dark); }

    .nav-cta {
      font-size: 0.875rem;
      font-weight: 600;
      padding: 10px 22px;
      border-radius: 100px;
      background: var(--dark);
      color: #fff;
      border: none;
      cursor: pointer;
      transition: transform 0.3s var(--ease), background 0.3s;
    }

    .nav-cta:hover { background: var(--secondary); }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      width: 32px;
      height: 32px;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      position: relative;
      z-index: 1001;
      flex-shrink: 0;
    }

    .nav-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--dark);
      border-radius: 2px;
      transition: transform 0.35s var(--ease), opacity 0.25s;
      transform-origin: center;
    }

    .nav-links-partner {
      display: none;
    }

    /* ─── BUTTONS ─── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: var(--font);
      font-weight: 600;
      font-size: 0.9rem;
      padding: 14px 28px;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      transition: transform 0.35s var(--ease), box-shadow 0.35s, background 0.35s, color 0.35s;
      position: relative;
      overflow: hidden;
    }

    .btn-magnetic { will-change: transform; }

    .btn-primary {
      background: var(--dark);
      color: #fff;
      box-shadow: 0 4px 20px rgba(15, 61, 62, 0.2);
    }

    .btn-primary:hover {
      background: var(--secondary);
      box-shadow: var(--shadow-hover);
    }

    .btn-gold {
      background: var(--golden-hero);
      color: var(--dark);
      box-shadow: 0 4px 20px rgba(216, 154, 43, 0.3);
    }

    .btn-gold:hover {
      background: var(--accent-hover);
      color: #fff;
    }

    .btn-outline {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, 0.35);
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.6);
    }

    .btn-outline-dark {
      background: transparent;
      color: var(--dark);
      border: 1.5px solid var(--border);
    }

    .btn-outline-dark:hover {
      border-color: var(--secondary);
      background: rgba(30, 95, 116, 0.04);
    }

    .btn-copper {
      background: var(--copper);
      color: #fff;
    }

    .btn-copper:hover { background: var(--accent-hover); }

    /* ─── SECTION 01: HERO ─── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }

    .hero-left {
      background: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 120px 64px 80px 80px;
      position: relative;
      z-index: 2;
    }

    .hero-right {
      background: var(--dark);
      position: relative;
      z-index: 1;
    }

    .hero-divider {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 120px;
      transform: translateX(-50%) skewX(-6deg);
      /* background: linear-gradient(135deg, var(--golden-hero) 0%, var(--dark) 100%); */
      background: #d89a2b;
      z-index: 3;
      pointer-events: none;
    }

    .hero-content {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 58%;
      z-index: 10;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 120px 48px 180px 80px;
      pointer-events: none;
    }

    .hero-content > * { pointer-events: auto; }

    .hero-eyebrow {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(15, 61, 62, 0.65);
      margin-bottom: 28px;
    }

    .hero h1 {
      font-size: clamp(2.8rem, 5.5vw, 4.75rem);
      color: var(--dark);
      max-width: 14ch;
      margin-bottom: 16px;
    }

    .hero h1 .line-2 {
      display: block;
      color: rgba(15, 61, 62, 0.55);
      font-weight: 600;
      font-size: 0.55em;
      letter-spacing: -0.02em;
      margin-top: 12px;
    }

    .hero-desc {
      font-size: 1.05rem;
      font-weight: 400;
      color: rgba(15, 61, 62, 0.78);
      max-width: 52ch;
      margin: 28px 0 40px;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .hero-stats {
      position: absolute;
      bottom: 48px;
      left: 80px;
      right: 80px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      z-index: 15;
    }

    .stat-pill {
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      border-radius: var(--radius);
      padding: 22px 24px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255, 255, 255, 0.6);
      transition: transform 0.4s var(--ease), box-shadow 0.4s;
    }

    .stat-pill:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .stat-pill .num {
      font-size: 1.75rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--dark);
      line-height: 1;
    }

    .stat-pill .label {
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--muted);
      margin-top: 6px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .hero-visual {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 50%;
      z-index: 4;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 100px 56px 200px 40px;
      pointer-events: none;
    }

    .hero-visual > * { pointer-events: auto; }

    .hero-panorama {
      position: relative;
      width: 100%;
      max-width: 640px;
      /* min-height: 460px; */
      /* min-height: 316px; */
      min-height: 568px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: var(--dark);
      box-shadow: var(--shadow-hover);
    }

    .hero-media-collage {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(3, 1fr);
      gap: 0;
    }

    .hero-media-collage img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.65s var(--ease), filter 0.65s var(--ease);
    }

    .hero-media-collage img:hover {
      transform: scale(1.03);
      filter: brightness(1.05);
      z-index: 1;
      position: relative;
    }

    .hero-panorama-label {
      position: absolute;
      bottom: 20px;
      left: 20px;
      z-index: 2;
      padding: 12px 16px;
      border-radius: 12px;
      background: rgba(250, 250, 249, 0.94);
      border: 1px solid var(--border);
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.4;
      backdrop-filter: blur(8px);
    }

    .hero-panorama-label strong {
      color: var(--dark);
      font-weight: 600;
    }

    /* ─── SECTION 02: ECOSYSTEM ─── */
    .ecosystem {
      padding: 140px 0;
      position: relative;
      overflow: hidden;
    }

    .ecosystem-map {
      position: absolute;
      right: -5%;
      top: 50%;
      transform: translateY(-50%);
      width: 55%;
      opacity: 0.06;
      pointer-events: none;
    }

    .ecosystem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .ecosystem h2 {
      font-size: clamp(2.5rem, 4.5vw, 4rem);
      color: var(--dark);
      position: sticky;
      top: 120px;
    }

    .ecosystem-body {
      padding-top: 12px;
    }

    .ecosystem-body p {
      font-size: 1.15rem;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 48px;
      max-width: 48ch;
    }

    .locations {
      display: flex;
      flex-direction: column;
      gap: 0;
      border-top: 1px solid var(--border);
    }

    .location-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 0;
      border-bottom: 1px solid var(--border);
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: var(--dark);
      transition: padding-left 0.35s var(--ease), color 0.35s;
    }

    .location-item:hover {
      padding-left: 12px;
      color: var(--secondary);
    }

    .location-item span {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--muted);
    }

    /* ─── SECTION 03: PLATFORMS ─── */
    .platforms {
      padding: 0 0 140px;
    }

    .platforms-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .platforms-header .eyebrow {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 16px;
    }

    .platforms-header h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--dark);
    }

    .platform-split {
      display: flex;
      gap: 20px;
      min-height: 580px;
    }

    .platform-panel {
      flex: 1;
      border-radius: var(--radius-lg);
      padding: 56px 48px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      transition: flex 0.6s var(--ease), transform 0.6s var(--ease), box-shadow 0.6s;
      cursor: default;
      min-width: 0;
    }

    .platform-split:hover .platform-panel { flex: 0.88; }
    .platform-split:hover .platform-panel:hover {
      flex: 1.24;
      box-shadow: var(--shadow-hover);
    }

    .platform-wss {
      background: var(--dark);
      color: #fff;
      box-shadow: var(--shadow);
    }

    .platform-coa {
      background: linear-gradient(145deg, var(--copper) 0%, #9a4208 100%);
      color: #fff;
      box-shadow: 0 24px 64px rgba(180, 83, 9, 0.2);
    }

    .platform-panel::before {
      content: '';
      position: absolute;
      top: -40%;
      right: -20%;
      width: 60%;
      height: 80%;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.04);
      pointer-events: none;
    }

    .platform-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      opacity: 0.65;
      margin-bottom: 20px;
    }

    .platform-panel h3 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      margin-bottom: 32px;
      max-width: 12ch;
    }

    .platform-audience {
      margin-bottom: 32px;
    }

    .platform-audience h4,
    .platform-focus h4 {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.55;
      margin-bottom: 14px;
    }

    .platform-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .platform-tags span {
      font-size: 0.82rem;
      font-weight: 500;
      padding: 8px 16px;
      border-radius: 100px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .platform-focus { margin-bottom: 40px; }

    .platform-cta {
      align-self: flex-start;
    }

    /* ─── SECTION 04: IMPACT ─── */
    .impact {
      background: var(--bg-alt);
      padding: 120px 0;
      overflow: hidden;
    }

    .impact-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      position: relative;
    }

    .impact-row::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--border);
      z-index: 0;
    }

    .impact-item {
      text-align: center;
      position: relative;
      z-index: 1;
      background: var(--bg-alt);
      padding: 20px 0;
    }

    .impact-num {
      font-size: clamp(2.5rem, 4vw, 3.75rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      color: var(--dark);
      line-height: 1;
    }

    .impact-num .suffix {
      font-size: 0.6em;
      color: var(--accent);
    }

    .impact-label {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--muted);
      margin-top: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .impact-story {
      margin-top: 80px;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 60px;
      align-items: end;
    }

    .impact-story h3 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      color: var(--dark);
    }

    .impact-story p {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.75;
    }

    /* ─── SECTION 05: BENEFITS ─── */
    .benefits {
      padding: 140px 0;
    }

    .benefits-intro {
      max-width: 640px;
      margin-bottom: 80px;
    }

    .benefits-intro h2 {
      font-size: clamp(2rem, 3.5vw, 3.25rem);
      margin-bottom: 20px;
    }

    .benefits-intro p {
      font-size: 1.05rem;
      color: var(--muted);
    }

    .benefit-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      padding: 72px 0;
      border-top: 1px solid var(--border);
    }

    .benefit-block.reverse { direction: rtl; }
    .benefit-block.reverse > * { direction: ltr; }

    .benefit-text h3 {
      font-size: clamp(1.8rem, 3vw, 2.75rem);
      color: var(--dark);
      margin-bottom: 20px;
    }

    .benefit-text p {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.75;
      max-width: 42ch;
    }

    .benefit-visual {
      aspect-ratio: 4/3;
      border-radius: var(--radius-lg);
      background: var(--bg-alt);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .benefit-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(15, 61, 62, 0.08) 0%, transparent 60%);
    }

    .benefit-visual .shape {
      position: absolute;
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
    }

    .benefit-visual .shape-1 {
      width: 120px;
      height: 120px;
      background: var(--dark);
      opacity: 0.12;
      top: 20%;
      left: 15%;
    }

    .benefit-visual .shape-2 {
      width: 80px;
      height: 80px;
      background: var(--golden-hero);
      opacity: 0.25;
      bottom: 25%;
      right: 20%;
      animation-delay: -2s;
    }

    .benefit-visual .shape-3 {
      width: 200px;
      height: 200px;
      border: 2px solid var(--border);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: none;
    }

    .benefit-visual .index {
      position: absolute;
      bottom: 24px;
      left: 28px;
      font-size: 4rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      color: rgba(15, 61, 62, 0.06);
      line-height: 1;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    /* ─── SECTION: AWARDS BENEFITS ─── */
    .awards-benefits {
      padding: 140px 0;
      background: var(--dark);
      color: #fff;
    }

    .awards-benefits-header {
      max-width: 720px;
      margin-bottom: 64px;
    }

    .awards-benefits-header .eyebrow {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--golden-accent);
      margin-bottom: 16px;
    }

    .awards-benefits-header h2 {
      font-size: clamp(2rem, 3.5vw, 3.25rem);
      color: #fff;
      margin-bottom: 16px;
    }

    .awards-benefits-header p {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.75;
    }

    .awards-benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .award-benefit {
      padding: 36px 28px;
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
      opacity: 0;
    }

    .award-benefit:hover {
      transform: translateY(-4px);
      border-color: rgba(216, 154, 43, 0.45);
      background: rgba(255, 255, 255, 0.07);
    }

    .award-benefit-index {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      color: var(--golden-hero);
      margin-bottom: 20px;
    }

    .award-benefit-line {
      width: 40px;
      height: 1px;
      background: linear-gradient(90deg, var(--golden-hero), transparent);
      margin-bottom: 20px;
    }

    .award-benefit h3 {
      font-size: clamp(1.15rem, 1.8vw, 1.35rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #fff;
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .award-benefit p {
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.58);
      line-height: 1.65;
    }

    /* ─── SECTION: CHIEF GUESTS ─── */
    .guests {
      padding: 140px 0 120px;
      background: var(--bg-alt);
      overflow: hidden;
    }

    .guests-header {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 48px;
      align-items: end;
      margin-bottom: 56px;
    }

    .guests-header .eyebrow {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--copper);
      margin-bottom: 16px;
    }

    .guests-header h2 {
      font-size: clamp(2rem, 3.8vw, 3.5rem);
      color: var(--dark);
      max-width: 14ch;
    }

    .guests-header-desc p {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.75;
      max-width: 46ch;
    }

    .guests-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .guest-card {
      opacity: 0;
    }

    .guest-card-inner {
      position: relative;
      height: 400px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--dark);
      box-shadow: var(--shadow);
      transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
    }

    .guest-card:hover .guest-card-inner {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .guest-card-photo {
      position: absolute;
      inset: 0;
    }

    .guest-card-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      transition: transform 0.6s var(--ease);
    }

    .guest-card:hover .guest-card-photo img {
      transform: scale(1.03);
    }

    .guest-card-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.85) 80%,
        rgba(0, 0, 0, 0.95) 100%
      );
    }

    .guest-card-index {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 2;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: rgba(255, 255, 255, 0.4);
    }

    .guest-card-info {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      padding: 20px 18px 22px;
    }

    .guest-card-cat {
      display: inline-block;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--golden-accent);
      margin-bottom: 10px;
      padding: 5px 10px;
      border-radius: 100px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(245, 216, 138, 0.25);
    }

    .guest-card-line {
      height: 1px;
      width: 40px;
      background: linear-gradient(90deg, var(--golden-hero), transparent);
      margin-bottom: 12px;
    }

    .guest-card-name {
      font-size: 1.05rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #fff;
      margin-bottom: 5px;
      line-height: 1.15;
    }

    .guest-card-role {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.62);
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* ─── SECTION: PAST SPEAKERS ─── */
    .speakers {
      padding: 140px 0 120px;
      background: var(--bg);
    }

    .speakers-header {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 48px;
      align-items: end;
      margin-bottom: 56px;
    }

    .speakers-header .eyebrow {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--copper);
      margin-bottom: 16px;
    }

    .speakers-header h2 {
      font-size: clamp(2rem, 3.8vw, 3.5rem);
      color: var(--dark);
      max-width: 14ch;
    }

    .speakers-header-desc p {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.75;
      max-width: 46ch;
    }

    .speakers-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .speaker-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
      opacity: 0;
    }

    .speaker-card:hover {
      border-color: rgba(216, 154, 43, 0.45);
      box-shadow: var(--shadow-hover);
      transform: translateY(-4px);
    }

    .speaker-card-photo {
      position: relative;
      height: 288px;
      background: #f3f6fb;
      border-bottom: 1px solid rgba(30, 95, 116, 0.08);
      overflow: hidden;
    }

    .speaker-card-photo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center bottom;
      padding: 24px 16px 0;
      display: block;
      transition: transform 0.5s var(--ease);
    }

    .speaker-card:hover .speaker-card-photo img {
      transform: scale(1.02);
    }

    .speaker-card-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 2;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--dark);
      padding: 6px 12px;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(216, 154, 43, 0.3);
    }

    .speaker-card-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .speaker-card-name {
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--dark);
      line-height: 1.3;
      transition: color 0.3s;
    }

    .speaker-card:hover .speaker-card-name {
      color: var(--secondary);
    }

    .speaker-card-role {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .speaker-card-org {
      font-size: 0.88rem;
      font-weight: 400;
      color: rgba(30, 95, 116, 0.65);
      line-height: 1.45;
    }

    /* ─── SECTION 06: EVENTS ─── */
    .events {
      background: var(--dark);
      color: #fff;
      padding: 140px 0;
      position: relative;
      overflow: hidden;
    }

    .events::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    }

    .events-header {
      margin-bottom: 72px;
    }

    .events-header h2 {
      font-size: clamp(2rem, 3.5vw, 3.25rem);
      margin-bottom: 16px;
    }

    .events-header p {
      color: rgba(255, 255, 255, 0.55);
      font-size: 1.05rem;
      max-width: 48ch;
    }

    .timeline {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
    }

    .timeline-col h3 {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--golden-accent);
      margin-bottom: 36px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .timeline-col.coa h3 { color: var(--golden-hero); }

    .event-entry {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 24px;
      padding: 28px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      transition: padding-left 0.35s var(--ease);
    }

    .event-entry:hover { padding-left: 8px; }

    .event-marker {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1.5px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.5);
      flex-shrink: 0;
    }

    .event-entry h4 {
      font-size: 1.35rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 6px;
    }

    .event-entry p {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.45);
      font-weight: 400;
    }

    .event-entry .event-meta {
      margin-top: 12px;
      font-size: 0.78rem;
      font-weight: 500;
      color: rgba(245, 216, 138, 0.7);
      letter-spacing: 0.04em;
    }

    /* ─── SECTION 07: TESTIMONIALS ─── */
    .testimonials {
      background: var(--charcoal);
      color: #fff;
      padding: 140px 0;
      overflow: hidden;
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .testimonials-header h2 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 600;
      opacity: 0.9;
    }

    .carousel {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      min-height: 320px;
    }

    .carousel-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 0 24px;
    }

    .carousel-slide.active {
      opacity: 1;
      transform: translateY(0);
      position: relative;
    }

    .carousel-quote {
      font-size: clamp(1.5rem, 2.8vw, 2.25rem);
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.45;
      color: rgba(255, 255, 255, 0.92);
      margin-bottom: 40px;
      max-width: 28ch;
    }

    .carousel-quote::before {
      content: '\201C';
      display: block;
      font-size: 4rem;
      font-weight: 800;
      line-height: 1;
      color: var(--golden-hero);
      opacity: 0.4;
      margin-bottom: 8px;
    }

    .carousel-author {
      font-size: 0.95rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.7);
    }

    .carousel-role {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.4);
      margin-top: 4px;
    }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 48px;
    }

    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      border: none;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
      padding: 0;
    }

    .carousel-dot.active {
      background: var(--golden-hero);
      transform: scale(1.25);
    }

    /* ─── SECTION 08: CTA ─── */
    .final-cta {
      padding: 160px 0;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .cta-mesh {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 20% 40%, rgba(216, 154, 43, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 60%, rgba(15, 61, 62, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 50% 100%, rgba(30, 95, 116, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .final-cta h2 {
      font-size: clamp(2.2rem, 4.5vw, 3.75rem);
      color: var(--dark);
      margin-bottom: 20px;
      position: relative;
    }

    .final-cta h2 .sub {
      display: block;
      font-size: 0.55em;
      font-weight: 600;
      color: var(--muted);
      margin-top: 12px;
    }

    .final-cta-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
      margin-top: 48px;
      position: relative;
    }

    /* ─── FOOTER ─── */
    .footer {
      background: var(--dark);
      color: rgba(255, 255, 255, 0.65);
      padding: 80px 0 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr repeat(5, 1fr);
      gap: 48px;
      margin-bottom: 64px;
    }

    .footer-brand h3 {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .footer-brand p {
      font-size: 0.875rem;
      line-height: 1.7;
      max-width: 28ch;
    }

    .footer-col h4 {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 20px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-col a {
      font-size: 0.875rem;
      font-weight: 400;
      transition: color 0.25s;
    }

    .footer-col a:hover { color: #fff; }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 0.8rem;
    }

    .social-icons {
      display: flex;
      gap: 16px;
    }

    .social-icons a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.3s, background 0.3s;
    }

    .social-icons a:hover {
      border-color: var(--golden-hero);
      background: rgba(216, 154, 43, 0.1);
    }

    .social-icons svg {
      width: 16px;
      height: 16px;
      fill: rgba(255, 255, 255, 0.6);
    }

    /* ─── REVEAL ANIMATIONS ─── */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    }

    .no-motion .reveal,
    .no-motion .guest-card,
    .no-motion .speaker-card,
    .no-motion .award-benefit {
      opacity: 1 !important;
      transform: none !important;
    }

    /* ─── RESPONSIVE ─── */

    /* Mac / laptop — keeps desktop layout, tighter spacing (901px–1440px) */
    @media (max-width: 1440px) and (min-width: 901px) {
      .nav-inner,
      .container {
        width: min(1180px, calc(100% - 40px));
      }

      .nav-links { gap: 22px; }
      .nav-links a { font-size: 0.8125rem; }
      .nav-cta { padding: 9px 18px; font-size: 0.8125rem; }
      .nav-logo img { height: 34px; max-width: 200px; }

      .hero {
        min-height: min(100vh, 920px);
      }

      .hero-content {
        width: 54%;
        padding: 96px 28px 172px 40px;
      }

      .hero-eyebrow {
        font-size: 0.72rem;
        margin-bottom: 20px;
      }

      .hero h1 {
        font-size: clamp(2.15rem, 3.6vw, 3.2rem);
        max-width: 13ch;
      }

      .hero-desc {
        font-size: 0.96rem;
        margin: 20px 0 28px;
        max-width: 44ch;
      }

      .hero-actions { gap: 10px; }

      .hero-actions .btn {
        padding: 11px 18px;
        font-size: 0.8125rem;
      }

      .hero-divider { width: 72px; }

      .hero-visual {
        left: 52%;
        padding: 72px 28px 96px 20px;
      }

      .hero-panorama {
        /* min-height: 250px; */
        min-height: 444px;
        max-width: 500px;
      }

      .hero-panorama-label {
        font-size: 0.78rem;
        padding: 10px 12px;
        bottom: 14px;
        left: 14px;
        right: 14px;
      }

      .hero-stats {
        left: 40px;
        right: calc(50% + 32px);
        bottom: 28px;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }

      .stat-pill { padding: 14px 16px; }
      .stat-pill .num { font-size: 1.35rem; }
      .stat-pill .label { font-size: 0.68rem; }

      .ecosystem,
      .benefits,
      .guests,
      .speakers,
      .awards-benefits,
      .impact,
      .events,
      .testimonials {
        padding-top: 100px;
        padding-bottom: 90px;
      }

      .platforms { padding-bottom: 100px; }
      .final-cta { padding: 120px 0; }

      .ecosystem-grid,
      .benefit-block { gap: 48px; }

      .benefit-block { padding: 52px 0; }

      .benefit-text h3 {
        font-size: clamp(1.6rem, 2.6vw, 2.2rem);
      }

      .platform-split { min-height: 460px; }

      .platform-panel { padding: 40px 32px; }

      .platform-panel h3 {
        font-size: clamp(1.5rem, 2.4vw, 2rem);
        margin-bottom: 24px;
      }

      .platform-audience,
      .platform-focus { margin-bottom: 22px; }

      .platform-tags span {
        font-size: 0.76rem;
        padding: 7px 12px;
      }

      .guest-card-inner { height: 340px; }

      .speaker-card-photo { height: 250px; }

      .speakers-header,
      .guests-header,
      .awards-benefits-header { margin-bottom: 48px; }

      .timeline { gap: 36px; }

      .impact-story { gap: 40px; }

      .footer-grid { gap: 32px; }
    }

    @media (max-width: 1280px) and (min-width: 901px) {
      .nav-links { gap: 16px; }
      .nav-links a { font-size: 0.78rem; }

      .hero-content {
        width: 56%;
        padding: 88px 24px 176px 32px;
      }

      .hero h1 {
        font-size: clamp(2rem, 3.2vw, 2.85rem);
      }

      .hero-stats {
        left: 32px;
        right: calc(48% + 24px);
      }

      .hero-visual {
        left: 54%;
        padding: 64px 20px 88px 16px;
      }

      .hero-panorama {
        /* min-height: 230px; */
        min-height: 388px;
        max-width: 440px;
      }

      .hero-actions .btn {
        padding: 10px 14px;
        font-size: 0.78rem;
      }

      .platform-split { min-height: 400px; }

      .platform-panel { padding: 32px 24px; }

      .guests-grid,
      .speakers-grid { grid-template-columns: repeat(3, 1fr); }

      .awards-benefits-grid { grid-template-columns: repeat(2, 1fr); }

      .benefit-block {
        gap: 36px;
        padding: 44px 0;
      }

      .guests-header,
      .speakers-header {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .guests-header h2,
      .speakers-header h2 { max-width: none; }
    }

    @media (max-width: 1100px) {
      .hero-stats { grid-template-columns: repeat(2, 1fr); }
      .impact-row { grid-template-columns: repeat(2, 1fr); gap: 48px; }
      .impact-row::before { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
      .guests-grid { grid-template-columns: repeat(3, 1fr); }
      .speakers-grid { grid-template-columns: repeat(3, 1fr); }
      .awards-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 900px) {
      .nav-cta--desktop { display: none; }

      .nav-links { display: none; }
      .nav-toggle { display: flex; }

      .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }

      .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
      }

      .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }

      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: var(--bg);
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 999;
        padding: 80px 24px 40px;
      }

      .nav-links.open a {
        font-size: 1.25rem;
        color: var(--dark);
        font-weight: 600;
        background: none ;
      }

      .nav-links-partner {
        display: block;
        margin-top: 12px;
      }

      .nav-cta--mobile {
        font-family: var(--font);
        font-size: 0.95rem;
        font-weight: 600;
        padding: 14px 32px;
        border-radius: 100px;
        background: var(--dark);
        color: #fff;
        border: none;
        cursor: pointer;
        transition: background 0.3s var(--ease);
      }

      .nav-cta--mobile:hover {
        background: var(--secondary);
      }

      /* Hero — mobile/tablet only */
      .hero {
        display: flex;
        flex-direction: column;
        min-height: auto;
        background: #fff;
      }

      .hero-left,
      .hero-right,
      .hero-divider {
        display: none;
      }

      .hero-content {
        position: relative;
        width: 100%;
        order: 1;
        padding: 104px 24px 28px;
        pointer-events: auto;
      }

      .hero-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.1em;
        margin-bottom: 18px;
      }

      .hero h1 {
        max-width: none;
        font-size: clamp(2rem, 7.5vw, 2.85rem);
      }

      .hero h1 .line-2 {
        font-size: 0.52em;
        margin-top: 10px;
        line-height: 1.25;
      }

      .hero-desc {
        max-width: none;
        font-size: 1rem;
        margin: 20px 0 28px;
        line-height: 1.65;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
      }

      .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
        font-size: 0.875rem;
      }

      .hero-visual {
        position: relative;
        left: auto;
        right: auto;
        order: 2;
        width: 100%;
        padding: 28px 20px 32px;
        background: var(--dark);
      }

      .hero-visual::before {
        content: '';
        position: absolute;
        top: 0;
        left: 24px;
        right: 24px;
        height: 3px;
        background: var(--golden-hero);
        border-radius: 2px;
      }

      .hero-panorama {
        max-width: 100%;
        min-height: 260px;
        border-radius: var(--radius);
      }

      .hero-media-collage {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
      }

      .hero-panorama-label {
        font-size: 0.78rem;
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 10px 12px;
      }

      .hero-stats {
        position: relative;
        order: 3;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        padding: 8px 20px 40px;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        background: #fff;
      }

      .stat-pill {
        padding: 18px 16px;
      }

      .stat-pill .num {
        font-size: 1.5rem;
      }

      .stat-pill .label {
        font-size: 0.72rem;
      }

      .guests-header {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
      }

      .guests-header h2 { max-width: none; }

      .guests-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      .guest-card-inner { height: 360px; }

      .speakers-header {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
      }

      .speakers-header h2 { max-width: none; }

      .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      .speaker-card-photo { height: 260px; }

      .ecosystem-grid,
      .benefit-block,
      .timeline,
      .impact-story {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .ecosystem h2 { position: static; }
      .benefit-block.reverse { direction: ltr; }
      .platform-split {
        flex-direction: column;
        min-height: auto;
      }
      .platform-panel { padding: 40px 32px; }
      .platform-split:hover .platform-panel,
      .platform-split:hover .platform-panel:hover { flex: 1; }

      .events { padding: 100px 0; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; gap: 24px; text-align: center; }
    }

    @media (max-width: 540px) {
      .container { width: calc(100% - 32px); }

      /* Hero — small mobile refinements */
      .hero-content {
        padding: 96px 20px 24px;
      }

      .hero-eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.08em;
      }

      .hero h1 {
        font-size: clamp(1.85rem, 8.5vw, 2.25rem);
      }

      .hero-desc {
        font-size: 0.95rem;
        margin: 16px 0 24px;
      }

      .hero-actions .btn {
        font-size: 0.82rem;
        padding: 12px 18px;
      }

      .hero-visual {
        padding: 24px 16px 28px;
      }

      .hero-visual::before {
        left: 16px;
        right: 16px;
      }

      .hero-panorama {
        /* min-height: 220px; */
        min-height: 352px;
        border-radius: 20px;
      }

      .hero-panorama-label {
        font-size: 0.72rem;
        padding: 8px 10px;
      }

      .hero-stats {
        padding: 4px 16px 36px;
        gap: 10px;
      }

      .stat-pill {
        padding: 16px 14px;
        border-radius: 20px;
      }

      .stat-pill .num {
        font-size: 1.35rem;
      }

      .stat-pill .label {
        font-size: 0.68rem;
        letter-spacing: 0.05em;
      }

      .guests-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .guest-card-inner { height: 340px; }

      .speakers-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .speaker-card-photo { height: 240px; }

      .awards-benefits-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .impact-row { grid-template-columns: 1fr; }
      .final-cta-actions { flex-direction: column; align-items: center; }
      .final-cta-actions .btn { width: 100%; max-width: 320px; }
      .footer-grid { grid-template-columns: 1fr; }
    }