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

    :root {
      --orange: #FF5500;
      --orange-bright: #FF7733;
      --orange-dim: #cc4400;
      --black: #060606;
      --black2: #0e0e0e;
      --black3: #161616;
      --white: #f5f0eb;
      --grey: #888;
      --border: rgba(255, 85, 0, 0.18);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Syne', sans-serif;
      overflow-x: hidden;
      cursor: none;
    }

    /* Custom cursor */
    .cursor {
      position: fixed;
      width: 12px;
      height: 12px;
      background: var(--orange);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s, width 0.2s, height 0.2s, opacity 0.2s;
      mix-blend-mode: normal;
    }

    .cursor-ring {
      position: fixed;
      width: 36px;
      height: 36px;
      border: 1.5px solid var(--orange);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: transform 0.12s ease, width 0.25s, height 0.25s, opacity 0.2s;
      opacity: 0.5;
    }

    /* Noise texture overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9990;
      opacity: 0.4;
    }

    /* ---- NAV ---- */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 78px;
      padding: 0 60px;
      border-bottom: 1px solid transparent;
      transition: background 0.4s, border-color 0.4s;
    }

    nav.scrolled {
      background: rgba(6, 6, 6, 0.92);
      border-color: var(--border);
      backdrop-filter: blur(12px);
    }

    .nav-logo {
      display: inline-flex;
      align-items: center;
      width: 190px;
      height: 95px;
      flex-shrink: 0;
    }

    .nav-logo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      color: var(--grey);
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--orange);
    }

    .nav-cta {
      background: var(--orange);
      color: #fff;
      border: none;
      padding: 10px 24px;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: none;
      transition: background 0.2s, transform 0.15s;
      clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    }

    .nav-cta:hover {
      background: var(--orange-bright);
      transform: scale(1.04);
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
      z-index: 1100;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      transition: all 0.3s;
      transform-origin: center;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile Nav Drawer */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(6, 6, 6, 0.98);
      z-index: 1050;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      backdrop-filter: blur(20px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    .mobile-nav.open {
      opacity: 1;
      pointer-events: all;
    }

    .mobile-nav a {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      letter-spacing: 0.1em;
      color: var(--white);
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .mobile-nav a:hover {
      color: var(--orange);
    }

    .mobile-nav .mobile-cta {
      margin-top: 16px;
      background: var(--orange);
      color: #fff;
      border: none;
      padding: 14px 40px;
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
      text-decoration: none;
      display: inline-block;
    }

    /* ---- HERO ---- */
    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 100px 60px 80px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 85, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 85, 0, 0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-glow {
      position: absolute;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(255, 85, 0, 0.22) 0%, transparent 70%);
      top: -200px;
      right: -200px;
      animation: pulse-glow 6s ease-in-out infinite;
    }

    .hero-glow2 {
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 85, 0, 0.10) 0%, transparent 70%);
      bottom: 0;
      left: 20%;
      animation: pulse-glow 8s ease-in-out infinite reverse;
    }

    @keyframes pulse-glow {

      0%,
      100% {
        transform: scale(1);
        opacity: 1;
      }

      50% {
        transform: scale(1.12);
        opacity: 0.6;
      }
    }

    .hero-badge {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      color: var(--orange);
      text-transform: uppercase;
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 0.8s 0.3s forwards;
    }

    .hero-badge::before {
      content: '// ';
      opacity: 0.5;
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.4rem, 8.5vw, 8rem);
      line-height: 1;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      white-space: nowrap;
      opacity: 0;
      animation: fadeUp 0.9s 0.5s forwards;
    }

    .hero-title .accent {
      color: var(--orange);
    }

    .hero-title .outline {
      -webkit-text-stroke: 1.5px var(--white);
      color: transparent;
    }

    .hero-sub {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      margin-top: 36px;
      opacity: 0;
      animation: fadeUp 0.9s 0.8s forwards;
    }

    .hero-sub p {
      font-size: 0.95rem;
      color: var(--grey);
      max-width: 380px;
      line-height: 1.6;
      text-align: center;
    }

    .hero-divider {
      width: 1px;
      height: 80px;
      background: var(--border);
    }

    .hero-meta {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: stretch;
    }

    .hero-meta-item {
      display: grid;
      grid-template-columns: 88px 1fr;
      align-items: baseline;
      column-gap: 14px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-align: left;
    }

    .hero-meta-item .label {
      color: var(--orange);
      margin-right: 0;
    }

    .hero-cta-group {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-top: 36px;
      opacity: 0;
      animation: fadeUp 0.9s 1s forwards;
    }

    .btn-primary {
      background: var(--orange);
      color: #fff;
      border: none;
      padding: 16px 40px;
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 0.9rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: none;
      transition: all 0.2s;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary:hover {
      background: var(--orange-bright);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(255, 85, 0, 0.4);
    }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      border: 1px solid var(--border);
      padding: 16px 40px;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: none;
      transition: all 0.2s;
      text-decoration: none;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
      display: inline-block;
    }

    .btn-secondary:hover {
      border-color: var(--orange);
      color: var(--orange);
    }

    .hero-scroll {
      position: absolute;
      bottom: 40px;
      right: 60px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0;
      animation: fadeUp 1s 1.4s forwards;
    }

    .hero-scroll span {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      color: var(--grey);
      text-transform: uppercase;
      writing-mode: vertical-rl;
    }

    .scroll-line {
      width: 1px;
      height: 60px;
      background: linear-gradient(to bottom, var(--orange), transparent);
      animation: scrollDown 2s ease-in-out infinite;
    }

    @keyframes scrollDown {
      0% {
        transform: scaleY(0);
        transform-origin: top;
      }

      50% {
        transform: scaleY(1);
        transform-origin: top;
      }

      51% {
        transform: scaleY(1);
        transform-origin: bottom;
      }

      100% {
        transform: scaleY(0);
        transform-origin: bottom;
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ---- COUNTDOWN ---- */
    #countdown {
      background: var(--black3);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 48px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .countdown-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      color: var(--orange);
      text-transform: uppercase;
    }

    .countdown-timer {
      display: flex;
      gap: 40px;
      align-items: center;
    }

    .countdown-unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }

    .countdown-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem;
      color: var(--orange);
      line-height: 1;
    }

    .countdown-unit-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem;
      color: var(--grey);
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .countdown-sep {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: var(--orange);
      opacity: 0.3;
      padding-bottom: 16px;
    }

    .countdown-date-block {
      text-align: right;
    }

    .countdown-date-big {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      letter-spacing: 0.08em;
      color: var(--white);
    }

    .countdown-date-sub {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem;
      color: var(--grey);
      letter-spacing: 0.1em;
    }

    /* ---- SECTION BASE ---- */
    section {
      padding: 100px 60px;
    }

    .section-tag {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.68rem;
      color: var(--orange);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .section-tag::before {
      content: '— ';
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 6vw, 5.5rem);
      line-height: 1;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .section-title .accent {
      color: var(--orange);
    }

    /* ---- ABOUT ---- */
    #about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-left .section-desc {
      color: var(--grey);
      font-size: 1rem;
      line-height: 1.75;
      margin-top: 20px;
      max-width: 500px;
    }

    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      margin-top: 48px;
    }

    .stat-box {
      background: var(--black);
      padding: 32px;
      transition: background 0.3s;
    }

    .stat-box:hover {
      background: var(--black3);
    }

    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: var(--orange);
      line-height: 1;
    }

    .stat-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.68rem;
      color: var(--grey);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-top: 6px;
    }

    .about-right {
      position: relative;
    }

    .about-visual {
      aspect-ratio: 1055 / 1491;
      background: var(--black3);
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 1;
      filter: saturate(1.04) contrast(1.03);
    }

    .about-visual-inner {
      width: 80%;
      height: 80%;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .about-visual-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 6rem;
      color: rgba(255, 85, 0, 0.08);
      text-align: center;
      line-height: 1;
    }

    .about-visual-badge {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: var(--orange);
      padding: 24px 32px;
    }

    .badge-big {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      color: #fff;
      line-height: 1;
    }

    .badge-small {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      color: rgba(255, 255, 255, 0.7);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .about-corner-decor {
      position: absolute;
      top: -1px;
      right: -1px;
      width: 40px;
      height: 40px;
      border-top: 3px solid var(--orange);
      border-right: 3px solid var(--orange);
    }

    /* ---- WHO ATTENDS ---- */
    #who {
      background: var(--black2);
    }

    .who-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      margin-top: 60px;
    }

    .who-card {
      background: var(--black2);
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }

    .who-card:hover {
      background: var(--black3);
    }

    .who-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--orange);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .who-card:hover::before {
      transform: scaleX(1);
    }

    .who-icon {
      font-size: 2.5rem;
      margin-bottom: 24px;
      display: block;
    }

    .who-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 4rem;
      color: rgba(255, 85, 0, 0.15);
      position: absolute;
      top: 20px;
      right: 24px;
      line-height: 1;
    }

    .who-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.3rem;
      font-weight: 800;
      margin-bottom: 12px;
      color: var(--white);
    }

    .who-desc {
      font-size: 0.88rem;
      color: var(--grey);
      line-height: 1.7;
    }

    .who-tag {
      display: inline-block;
      margin-top: 20px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.62rem;
      color: var(--orange);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border: 1px solid rgba(255, 85, 0, 0.3);
      padding: 4px 10px;
    }

    /* ---- WHAT YOU GET ---- */
    #offerings {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .offering-list {
      margin-top: 48px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .offering-item {
      display: flex;
      gap: 24px;
      padding: 28px 0;
      border-bottom: 1px solid var(--border);
      transition: all 0.3s;
      position: relative;
    }

    .offering-item::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -1px;
      right: 0;
      height: 1px;
      background: var(--orange);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s;
    }

    .offering-item:hover::after {
      transform: scaleX(1);
    }

    .offering-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      color: var(--orange);
      opacity: 0.4;
      min-width: 40px;
      transition: opacity 0.3s;
    }

    .offering-item:hover .offering-num {
      opacity: 1;
    }

    .offering-name {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .offering-desc {
      font-size: 0.85rem;
      color: var(--grey);
      line-height: 1.6;
    }

    .offerings-right {
      position: sticky;
      top: 100px;
    }

    .offer-visual {
      background: var(--black3);
      border: 1px solid var(--border);
      padding: 48px;
      position: relative;
      overflow: hidden;
    }

    .offer-visual::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle, rgba(255, 85, 0, 0.18) 0%, transparent 70%);
      pointer-events: none;
      animation: pulse-glow 5s ease-in-out infinite;
    }

    .offer-visual::after {
      content: 'WHY?';
      position: absolute;
      bottom: -20px;
      right: -10px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 9rem;
      color: rgba(255, 85, 0, 0.05);
      line-height: 1;
      pointer-events: none;
      letter-spacing: 0.02em;
    }

    .offer-bg-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 85, 0, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 85, 0, 0.06) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none;
    }

    .offer-bg-stripe {
      position: absolute;
      top: -100%;
      left: -20%;
      width: 60%;
      height: 300%;
      background: linear-gradient(105deg, transparent 40%, rgba(255, 85, 0, 0.04) 50%, transparent 60%);
      animation: sweep 8s ease-in-out infinite;
      pointer-events: none;
    }

    @keyframes sweep {

      0%,
      100% {
        transform: translateX(-30%);
      }

      50% {
        transform: translateX(160%);
      }
    }

    .offer-bg-dots {
      position: absolute;
      bottom: 48px;
      left: 48px;
      display: grid;
      grid-template-columns: repeat(5, 6px);
      grid-template-rows: repeat(5, 6px);
      gap: 6px;
      pointer-events: none;
    }

    .offer-bg-dots span {
      display: block;
      width: 3px;
      height: 3px;
      background: rgba(255, 85, 0, 0.25);
      border-radius: 50%;
    }

    .offer-corner-tl {
      position: absolute;
      top: -1px;
      left: -1px;
      width: 36px;
      height: 36px;
      border-top: 2px solid var(--orange);
      border-left: 2px solid var(--orange);
      pointer-events: none;
    }

    .offer-visual-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: var(--orange);
      line-height: 1;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }

    .offer-visual-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      position: relative;
      z-index: 1;
    }

    .offer-visual-list li {
      font-size: 0.88rem;
      color: var(--grey);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .offer-visual-list li::before {
      content: '→';
      color: var(--orange);
      font-size: 0.9rem;
    }

    .offer-corner {
      position: absolute;
      bottom: -1px;
      right: -1px;
      width: 40px;
      height: 40px;
      border-bottom: 3px solid var(--orange);
      border-right: 3px solid var(--orange);
    }

    /* ---- AGENDA ---- */
    #agenda {
      background: var(--black2);
    }

    .agenda-tabs {
      display: flex;
      gap: 0;
      border: 1px solid var(--border);
      width: fit-content;
      margin: 48px 0 40px;
    }

    .tab-btn {
      padding: 14px 36px;
      background: transparent;
      border: none;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.06em;
      color: var(--grey);
      cursor: none;
      transition: all 0.2s;
      border-right: 1px solid var(--border);
      text-transform: uppercase;
    }

    .tab-btn:last-child {
      border-right: none;
    }

    .tab-btn.active {
      background: var(--orange);
      color: #fff;
    }

    .agenda-panel {
      display: none;
    }

    .agenda-panel.active {
      display: block;
    }

    .agenda-items {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .agenda-item {
      display: grid;
      grid-template-columns: 140px 1fr auto;
      gap: 32px;
      align-items: center;
      padding: 28px 0;
      border-bottom: 1px solid var(--border);
      transition: padding 0.2s;
    }

    .agenda-item:hover {
      padding-left: 16px;
    }

    .agenda-time {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.78rem;
      color: var(--orange);
      letter-spacing: 0.08em;
    }

    .agenda-title-text {
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 4px;
    }

    .agenda-speaker {
      font-size: 0.8rem;
      color: var(--grey);
    }

    .agenda-type {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem;
      color: var(--orange);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border: 1px solid rgba(255, 85, 0, 0.3);
      padding: 4px 10px;
      white-space: nowrap;
    }

    /* ---- SPEAKERS ---- */
    #speakers {
      overflow: hidden;
    }

    .speakers-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
    }

    .speakers-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
    }

    .speaker-card {
      background: var(--black);
      padding: 36px 28px;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }

    .speaker-card:hover {
      background: var(--black3);
    }

    .speaker-avatar {
      width: 72px;
      height: 72px;
      background: var(--black3);
      border: 1px solid var(--border);
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      color: var(--orange);
      margin-bottom: 20px;
    }

    .speaker-name {
      font-weight: 800;
      font-size: 1rem;
      margin-bottom: 4px;
    }

    .speaker-role {
      font-size: 0.78rem;
      color: var(--grey);
      margin-bottom: 8px;
    }

    .speaker-org {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      color: var(--orange);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .speaker-card::after {
      content: attr(data-num);
      position: absolute;
      bottom: 20px;
      right: 24px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem;
      color: rgba(255, 85, 0, 0.06);
      line-height: 1;
    }

    /* ---- SPONSORS ---- */
    #sponsors {
      background: var(--black2);
      text-align: center;
    }

    .sponsors-header {
      margin-bottom: 60px;
    }

    .sponsor-tiers {
      display: flex;
      flex-direction: column;
      gap: 48px;
    }

    .sponsor-tier-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      color: var(--grey);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      justify-content: center;
    }

    .sponsor-tier-label::before,
    .sponsor-tier-label::after {
      content: '';
      flex: 1;
      max-width: 200px;
      height: 1px;
      background: var(--border);
    }

    .sponsor-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .sponsor-logo {
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      letter-spacing: 0.1em;
      color: var(--grey);
      background: var(--black);
      transition: all 0.3s;
    }

    .sponsor-logo:hover {
      border-color: var(--orange);
      color: var(--orange);
    }

    .tier-title {
      width: 200px;
      height: 80px;
      font-size: 1.4rem;
    }

    .tier-growth {
      width: 160px;
      height: 64px;
      font-size: 1.1rem;
    }

    .tier-seed {
      width: 130px;
      height: 52px;
      font-size: 0.9rem;
    }

    .sponsor-cta {
      margin-top: 60px;
      padding: 48px;
      border: 1px solid var(--border);
      background: var(--black);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .sponsor-cta-text {
      font-size: 1.1rem;
      font-weight: 700;
      max-width: 400px;
      text-align: left;
    }

    .sponsor-cta-sub {
      color: var(--grey);
      font-size: 0.85rem;
      margin-top: 6px;
      font-weight: 400;
    }

    /* ---- PASSES ---- */
    .passes-title {
      font-size: 4.6rem;
      white-space: nowrap;
    }

    .passes-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      margin-top: 60px;
    }

    .pass-card {
      background: var(--black);
      padding: 48px 36px;
      position: relative;
      transition: background 0.3s;
    }

    .pass-card.featured {
      background: var(--black3);
    }

    .pass-card.featured::before {
      content: 'MOST POPULAR';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%) translateY(-50%);
      background: var(--orange);
      color: #fff;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      padding: 4px 16px;
      white-space: nowrap;
    }

    .pass-type {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      color: var(--orange);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .pass-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.2rem;
      letter-spacing: 0.04em;
      margin-bottom: 8px;
      color: var(--white);
    }

    .pass-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem;
      color: var(--orange);
      line-height: 1;
      margin-bottom: 4px;
    }

    .pass-price-note {
      font-size: 0.75rem;
      color: var(--grey);
      margin-bottom: 36px;
    }

    .pass-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 36px;
    }

    .pass-features li {
      font-size: 0.85rem;
      color: var(--grey);
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .pass-features li .check {
      color: var(--orange);
      font-weight: 800;
      flex-shrink: 0;
    }

    .pass-features li.disabled {
      opacity: 0.35;
      text-decoration: line-through;
    }

    .pass-features li.disabled .check {
      color: var(--grey);
    }

    .pass-btn {
      width: 100%;
      padding: 14px;
      background: transparent;
      border: 1px solid var(--border);
      color: var(--white);
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.2s;
    }

    .pass-btn:hover,
    .pass-card.featured .pass-btn {
      background: var(--orange);
      border-color: var(--orange);
      color: #fff;
    }

    .pass-card.featured .pass-btn:hover {
      background: var(--orange-bright);
    }

    /* ---- VENUE ---- */
    #venue {
      background: var(--black2);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .venue-map-placeholder {
      aspect-ratio: 4/3;
      background: var(--black3);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .venue-grid-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 85, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 85, 0, 0.05) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .venue-pin {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .india-map-svg {
      position: relative;
      z-index: 1;
      width: min(78%, 420px);
      height: auto;
      overflow: visible;
      filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.45));
    }

    .india-map-shape {
      fill: rgba(245, 240, 235, 0.08);
      stroke: rgba(255, 85, 0, 0.74);
      stroke-width: 2.4;
      vector-effect: non-scaling-stroke;
    }

    .india-map-line {
      fill: none;
      stroke: rgba(255, 85, 0, 0.18);
      stroke-width: 1;
      vector-effect: non-scaling-stroke;
    }

    .map-location-pulse {
      fill: var(--orange);
      opacity: 0.34;
      transform-box: fill-box;
      transform-origin: center;
      animation: mapBlink 1.4s ease-in-out infinite;
    }

    .map-location-dot {
      fill: var(--orange);
      stroke: #fff;
      stroke-width: 2;
      animation: dotBlink 1.4s ease-in-out infinite;
    }

    .map-location-ring {
      fill: none;
      stroke: var(--orange);
      stroke-width: 2;
      opacity: 0.7;
      transform-box: fill-box;
      transform-origin: center;
      animation: ringBlink 1.4s ease-in-out infinite;
    }

    .map-location-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      fill: var(--white);
      text-transform: uppercase;
    }

    .map-location-label-bg {
      fill: rgba(6, 6, 6, 0.84);
      stroke: rgba(255, 85, 0, 0.52);
    }

    @keyframes mapBlink {

      0%,
      100% {
        opacity: 0.18;
        transform: scale(0.72);
      }

      50% {
        opacity: 0.62;
        transform: scale(1.55);
      }
    }

    @keyframes dotBlink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.42;
      }
    }

    @keyframes ringBlink {

      0%,
      100% {
        opacity: 0.18;
        transform: scale(0.7);
      }

      50% {
        opacity: 0.95;
        transform: scale(1.5);
      }
    }

    .venue-pin-dot {
      width: 20px;
      height: 20px;
      background: var(--orange);
      border-radius: 50%;
      margin: 0 auto 16px;
      box-shadow: 0 0 0 8px rgba(255, 85, 0, 0.2), 0 0 0 16px rgba(255, 85, 0, 0.1);
      animation: ping 2s ease-in-out infinite;
    }

    @keyframes ping {

      0%,
      100% {
        box-shadow: 0 0 0 8px rgba(255, 85, 0, 0.2), 0 0 0 16px rgba(255, 85, 0, 0.1);
      }

      50% {
        box-shadow: 0 0 0 12px rgba(255, 85, 0, 0.15), 0 0 0 24px rgba(255, 85, 0, 0.06);
      }
    }

    .venue-pin-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      color: var(--white);
    }

    .venue-pin-city {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem;
      color: var(--orange);
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .venue-details {
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .venue-detail-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 20px;
      border: 1px solid var(--border);
      transition: border-color 0.3s;
    }

    .venue-detail-item:hover {
      border-color: var(--orange);
    }

    .venue-detail-icon {
      font-size: 1.2rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .venue-detail-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.62rem;
      color: var(--orange);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .venue-detail-value {
      font-size: 0.88rem;
      color: var(--grey);
      line-height: 1.5;
    }

    /* ---- CTA STRIP ---- */
    #cta-strip {
      padding: 100px 60px;
      background: var(--orange);
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    #cta-strip::before {
      content: 'SCALEUP';
      position: absolute;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 14rem;
      color: rgba(0, 0, 0, 0.12);
      right: -40px;
      top: 50%;
      transform: translateY(-50%);
      line-height: 1;
      pointer-events: none;
    }

    .cta-strip-text {
      position: relative;
      z-index: 1;
    }

    .cta-strip-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      line-height: 1;
      color: #fff;
      letter-spacing: 0.02em;
    }

    .cta-strip-sub {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 8px;
    }

    .cta-strip-btn {
      position: relative;
      z-index: 1;
      background: #fff;
      color: var(--orange);
      border: none;
      padding: 20px 52px;
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.2s;
      clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
      text-decoration: none;
      display: inline-block;
      white-space: nowrap;
    }

    .cta-strip-btn:hover {
      background: var(--black);
      color: var(--orange);
      transform: translateY(-2px);
    }

    /* ---- FOOTER ---- */
    footer {
      background: var(--black);
      padding: 60px;
      border-top: 1px solid var(--border);
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 48px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 36px;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      width: 190px;
      height: 95px;
      margin-bottom: 16px;
    }

    .footer-logo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .footer-tagline {
      font-size: 0.85rem;
      color: var(--grey);
      line-height: 1.6;
      max-width: 280px;
      margin-bottom: 24px;
    }

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

    .social-btn {
      width: 36px;
      height: 36px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      color: var(--grey);
      text-decoration: none;
      transition: all 0.2s;
    }

    .social-btn:hover {
      border-color: var(--orange);
      color: var(--orange);
    }

    .footer-col-title {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      color: var(--orange);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-links a {
      font-size: 0.85rem;
      color: var(--grey);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--orange);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copy {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      color: rgba(136, 136, 136, 0.5);
      letter-spacing: 0.08em;
    }

    .footer-made {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      color: rgba(136, 136, 136, 0.5);
      letter-spacing: 0.08em;
    }

    .footer-made span {
      color: var(--orange);
    }

    /* ---- TICKER ---- */
    .ticker-wrap {
      background: var(--orange);
      overflow: hidden;
      padding: 14px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ticker-track {
      display: flex;
      animation: ticker 22s linear infinite;
      width: max-content;
    }

    .ticker-item {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem;
      letter-spacing: 0.15em;
      color: #fff;
      padding: 0 32px;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .ticker-item::after {
      content: '◆';
      font-size: 0.4rem;
      opacity: 0.7;
    }

    @keyframes ticker {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    /* ---- Scroll reveal ---- */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    /* ============================================================
     TABLET — 768px
  ============================================================ */
    @media (max-width: 768px) {

      /* NAV */
      nav {
        padding: 16px 24px;
      }

      .nav-links {
        display: none;
      }

      .nav-cta {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .mobile-nav {
        display: flex;
      }

      body {
        cursor: auto;
      }

      .cursor,
      .cursor-ring {
        display: none;
      }

      .btn-primary,
      .btn-secondary,
      .tab-btn,
      .pass-btn,
      .cta-strip-btn {
        cursor: pointer;
      }

      /* HERO */
      #hero {
        padding: 90px 32px 60px;
        min-height: 100svh;
      }

      .hero-title {
        font-size: clamp(2.2rem, 9vw, 4.5rem);
        white-space: normal;
      }

      .hero-badge {
        font-size: 0.62rem;
        letter-spacing: 0.14em;
      }

      .hero-sub {
        flex-direction: column;
        align-items: center;
        gap: 24px;
      }

      .hero-divider {
        display: none;
      }

      .hero-sub p {
        font-size: 0.88rem;
        max-width: 100%;
      }

      .hero-meta {
        align-items: stretch;
      }

      .hero-cta-group {
        flex-wrap: wrap;
        justify-content: center;
      }

      .btn-primary,
      .btn-secondary {
        padding: 14px 28px;
        font-size: 0.82rem;
      }

      .hero-scroll {
        display: none;
      }

      .hero-glow {
        width: 400px;
        height: 400px;
        top: -100px;
        right: -100px;
      }

      .hero-glow2 {
        width: 280px;
        height: 280px;
      }

      /* COUNTDOWN */
      #countdown {
        padding: 32px 24px;
        flex-direction: column;
        gap: 24px;
        text-align: center;
      }

      .countdown-timer {
        gap: 20px;
      }

      .countdown-num {
        font-size: 2.8rem;
      }

      .countdown-sep {
        font-size: 2.4rem;
      }

      .countdown-date-block {
        text-align: center;
      }

      .countdown-date-big {
        font-size: 1.4rem;
      }

      /* SECTIONS */
      section {
        padding: 64px 24px;
      }

      /* ABOUT */
      #about {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .about-left .section-desc {
        max-width: 100%;
      }

      .stat-box {
        padding: 24px 20px;
      }

      .stat-num {
        font-size: 2.4rem;
      }

      .about-visual {
        aspect-ratio: 1055 / 1491;
      }

      .about-visual-text {
        font-size: 4rem;
      }

      .about-visual-badge {
        bottom: -10px;
        left: -10px;
        padding: 16px 20px;
      }

      .badge-big {
        font-size: 1.8rem;
      }

      /* WHO */
      .who-grid {
        grid-template-columns: 1fr;
      }

      .who-card {
        padding: 36px 28px;
      }

      /* OFFERINGS */
      #offerings {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .offerings-right {
        position: static;
      }

      .offer-visual {
        padding: 32px;
      }

      .offer-visual-title {
        font-size: 2.4rem;
      }

      .offer-visual::after {
        font-size: 6rem;
      }

      /* AGENDA */
      #agenda {
        padding: 64px 24px;
      }

      .agenda-tabs {
        width: 100%;
      }

      .tab-btn {
        padding: 12px 20px;
        font-size: 0.78rem;
        flex: 1;
        text-align: center;
      }

      .agenda-item {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 20px 0;
      }

      .agenda-item:hover {
        padding-left: 8px;
      }

      .agenda-type {
        width: fit-content;
      }

      /* SPEAKERS */
      .speakers-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 40px;
      }

      .speakers-grid {
        grid-template-columns: 1fr 1fr;
      }

      .speaker-card {
        padding: 28px 20px;
      }

      .speaker-avatar {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
      }

      /* SPONSORS */
      #sponsors {
        padding: 64px 24px;
      }

      .sponsor-cta {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding: 32px 24px;
      }

      .sponsor-cta-text {
        max-width: 100%;
        text-align: center;
      }

      .tier-title {
        width: 160px;
        height: 64px;
        font-size: 1.1rem;
      }

      .tier-growth {
        width: 130px;
        height: 52px;
        font-size: 0.9rem;
      }

      .tier-seed {
        width: 110px;
        height: 44px;
        font-size: 0.78rem;
      }

      /* PASSES */
      #passes {
        padding: 64px 24px;
      }

      .passes-title {
        font-size: 3rem;
      }

      .passes-grid {
        grid-template-columns: 1fr;
      }

      .pass-card.featured::before {
        font-size: 0.55rem;
      }

      /* VENUE */
      #venue {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .venue-map-placeholder {
        aspect-ratio: 16/9;
      }

      /* CTA STRIP */
      #cta-strip {
        padding: 64px 24px;
        flex-direction: column;
        gap: 28px;
        text-align: center;
      }

      #cta-strip::before {
        font-size: 8rem;
        right: -10px;
      }

      .cta-strip-title {
        font-size: clamp(2rem, 7vw, 3rem);
      }

      /* FOOTER */
      footer {
        padding: 48px 24px;
      }

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

      .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }
    }

    /* ============================================================
     MOBILE — 480px
  ============================================================ */
    @media (max-width: 480px) {

      /* NAV */
      nav {
        height: 64px;
        padding: 0 16px;
      }

      .nav-logo {
        width: 160px;
        height: 80px;
      }

      .mobile-nav a {
        font-size: 2rem;
      }

      /* HERO */
      #hero {
        padding: 80px 16px 48px;
      }

      .hero-badge {
        font-size: 0.56rem;
        letter-spacing: 0.1em;
        margin-bottom: 20px;
      }

      .hero-title {
        font-size: clamp(2rem, 11vw, 3.2rem);
      }

      .hero-sub {
        margin-top: 24px;
        gap: 20px;
      }

      .hero-sub p {
        font-size: 0.82rem;
      }

      .hero-meta-item {
        grid-template-columns: 76px 1fr;
        column-gap: 10px;
        font-size: 0.68rem;
      }

      .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 300px;
      }

      .btn-primary,
      .btn-secondary {
        padding: 14px 20px;
        font-size: 0.8rem;
        text-align: center;
        clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
      }

      .hero-glow {
        width: 260px;
        height: 260px;
        top: -60px;
        right: -60px;
      }

      .hero-glow2 {
        width: 180px;
        height: 180px;
      }

      /* COUNTDOWN */
      #countdown {
        padding: 28px 16px;
      }

      .countdown-label {
        font-size: 0.6rem;
        letter-spacing: 0.12em;
      }

      .countdown-timer {
        gap: 10px;
      }

      .countdown-num {
        font-size: 2.2rem;
      }

      .countdown-sep {
        font-size: 1.8rem;
        padding-bottom: 12px;
      }

      .countdown-unit-label {
        font-size: 0.5rem;
      }

      .countdown-date-big {
        font-size: 1.1rem;
      }

      .countdown-date-sub {
        font-size: 0.6rem;
      }

      /* SECTIONS */
      section {
        padding: 48px 16px;
      }

      .section-tag {
        font-size: 0.6rem;
        letter-spacing: 0.16em;
      }

      .section-title {
        font-size: clamp(1.9rem, 9vw, 2.8rem);
      }

      /* ABOUT */
      #about {
        gap: 36px;
      }

      .about-stats {
        margin-top: 32px;
      }

      .stat-box {
        padding: 20px 16px;
      }

      .stat-num {
        font-size: 2rem;
      }

      .stat-label {
        font-size: 0.6rem;
      }

      .about-left .section-desc {
        font-size: 0.88rem;
      }

      .about-visual {
        aspect-ratio: 1055 / 1491;
      }

      .about-visual-text {
        font-size: 3rem;
      }

      .about-visual-badge {
        bottom: -8px;
        left: -8px;
        padding: 12px 16px;
      }

      .badge-big {
        font-size: 1.5rem;
      }

      .badge-small {
        font-size: 0.55rem;
      }

      /* WHO */
      .who-grid {
        margin-top: 36px;
      }

      .who-card {
        padding: 28px 20px;
      }

      .who-icon {
        font-size: 2rem;
        margin-bottom: 16px;
      }

      .who-title {
        font-size: 1.1rem;
      }

      .who-desc {
        font-size: 0.82rem;
      }

      .who-num {
        font-size: 3rem;
      }

      /* OFFERINGS */
      #offerings {
        gap: 36px;
      }

      .offering-list {
        margin-top: 28px;
      }

      .offering-item {
        gap: 16px;
        padding: 20px 0;
      }

      .offering-num {
        font-size: 1.3rem;
        min-width: 32px;
      }

      .offering-name {
        font-size: 1rem;
      }

      .offering-desc {
        font-size: 0.8rem;
      }

      .offer-visual {
        padding: 24px;
      }

      .offer-visual-title {
        font-size: 2rem;
      }

      .offer-visual::after {
        font-size: 4.5rem;
        bottom: -12px;
        right: -6px;
      }

      .offer-visual-list li {
        font-size: 0.8rem;
      }

      .offer-bg-dots {
        bottom: 24px;
        left: 24px;
      }

      /* AGENDA */
      .agenda-tabs {
        width: 100%;
      }

      .tab-btn {
        padding: 10px 12px;
        font-size: 0.72rem;
      }

      .agenda-item {
        padding: 16px 0;
        gap: 4px;
      }

      .agenda-time {
        font-size: 0.7rem;
      }

      .agenda-title-text {
        font-size: 0.9rem;
      }

      .agenda-speaker {
        font-size: 0.72rem;
      }

      .agenda-type {
        font-size: 0.55rem;
        padding: 3px 8px;
      }

      /* SPEAKERS */
      .speakers-grid {
        grid-template-columns: 1fr;
      }

      .speaker-card {
        padding: 24px 20px;
      }

      .speaker-avatar {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
        margin-bottom: 16px;
      }

      .speaker-name {
        font-size: 0.95rem;
      }

      .speaker-role {
        font-size: 0.72rem;
      }

      .speaker-org {
        font-size: 0.6rem;
      }

      /* SPONSORS */
      #sponsors {
        padding: 48px 16px;
        text-align: center;
      }

      .sponsor-logos {
        gap: 10px;
      }

      .tier-title {
        width: 140px;
        height: 56px;
        font-size: 1rem;
      }

      .tier-growth {
        width: 120px;
        height: 48px;
        font-size: 0.85rem;
      }

      .tier-seed {
        width: 100px;
        height: 40px;
        font-size: 0.72rem;
      }

      .sponsor-cta {
        padding: 24px 16px;
      }

      .sponsor-cta-text {
        font-size: 0.95rem;
      }

      .sponsor-tiers {
        gap: 32px;
      }

      /* PASSES */
      #passes {
        padding: 48px 16px;
      }

      .passes-title {
        font-size: 2rem;
      }

      .pass-card {
        padding: 36px 24px;
      }

      .pass-name {
        font-size: 1.8rem;
      }

      .pass-price {
        font-size: 2.8rem;
      }

      .pass-features li {
        font-size: 0.8rem;
      }

      /* VENUE */
      #venue {
        padding: 48px 16px;
        gap: 32px;
      }

      .venue-map-placeholder {
        aspect-ratio: 4/3;
      }

      .india-map-svg {
        width: 86%;
      }

      .venue-detail-item {
        padding: 14px;
        gap: 12px;
      }

      .venue-detail-label {
        font-size: 0.58rem;
      }

      .venue-detail-value {
        font-size: 0.8rem;
      }

      .venue-details {
        gap: 12px;
        margin-top: 24px;
      }

      /* CTA STRIP */
      #cta-strip {
        padding: 48px 16px;
        gap: 24px;
      }

      #cta-strip::before {
        font-size: 5rem;
      }

      .cta-strip-sub {
        font-size: 0.85rem;
      }

      .cta-strip-btn {
        padding: 16px 32px;
        font-size: 0.88rem;
      }

      /* FOOTER */
      footer {
        padding: 40px 16px;
      }

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

      .footer-logo {
        width: 160px;
        height: 80px;
      }

      .footer-tagline {
        font-size: 0.8rem;
        max-width: 100%;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
      }

      .footer-copy,
      .footer-made {
        font-size: 0.6rem;
      }

      /* TICKER */
      .ticker-item {
        font-size: 0.85rem;
        padding: 0 20px;
        gap: 20px;
      }
    }

/* --- MODAL STYLES --- */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 20px;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: rgba(20, 20, 25, 0.8);
  margin: auto;
  padding: 40px;
  border: 1px solid rgba(255, 85, 0, 0.2);
  width: 100%;
  max-width: 700px;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.close-modal {
  color: var(--grey);
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: var(--orange);
  transform: rotate(90deg);
}

.modal-title {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--white);
}

/* Form Elements */
.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--grey);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.modal-content input, 
.modal-content select, 
.modal-content textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 18px;
  border-radius: 12px;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.modal-content input:focus, 
.modal-content select:focus, 
.modal-content textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255, 85, 0, 0.05);
  box-shadow: 0 0 15px rgba(255, 85, 0, 0.1);
}

.modal-content select option {
  background: #111;
  color: #fff;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.form-subtitle {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 30px 0 20px;
  color: var(--orange);
  border-bottom: 1px solid rgba(255, 85, 0, 0.2);
  padding-bottom: 10px;
}

.submit-btn {
  width: 100%;
  margin-top: 20px;
  padding: 18px;
  font-size: 1.1rem;
}

.attendee-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
  margin-bottom: 20px;
  animation: slideUp 0.3s ease;
}

.attendee-section:last-child {
  border-bottom: none;
}

/* --- TOAST STYLES --- */
.toast-container {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 10000;
}

.toast {
  display: none;
  background: rgba(20, 20, 25, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 85, 0, 0.3);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  min-width: 300px;
  animation: slideInRight 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.toast.success {
  border-left: 4px solid #28a745;
}

.toast.error {
  border-left: 4px solid #dc3545;
}

.toast-body {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  color: #fff;
}

.btn-close-white {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: 15px;
}
