:root {
      --dg: #092412;
      --forest: #0F3A1C;
      --mid: #1A6030;
      --lime: #72C23A;
      --lime-bright: #8ED64A;
      --gold: #C9A84C;
      --cream: #F4EFE4;
      --warm: #FAFAF6;
      --ink: #111713;
      --muted: #64705C;
      --border-light: rgba(255, 255, 255, 0.13);
      --border-dark: rgba(0, 0, 0, 0.09);
    }

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

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

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--warm);
      color: var(--ink);
      overflow-x: hidden
    }

    img {
      max-width: 100%;
      display: block
    }

    a {
      color: inherit;
      text-decoration: none
    }

    button {
      cursor: pointer;
      font-family: inherit
    }

    input,
    textarea,
    select {
      font-family: inherit
    }

    /* ── NAV ── */
    #nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 999;
      transition: background .35s, backdrop-filter .35s, box-shadow .35s;
      padding: 0 5vw
    }

    #nav.scrolled {
      background: rgba(9, 36, 18, .96);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 var(--border-light)
    }

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

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .nav-logo-mark {
      width: 36px;
      height: 36px;
      background: var(--lime);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .nav-logo-mark svg {
      width: 20px;
      height: 20px;
      fill: var(--dg)
    }

    .nav-logo-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      letter-spacing: .08em;
      text-transform: uppercase;
      line-height: 1.2
    }

    .nav-logo-text span {
      display: block;
      font-size: 10px;
      font-weight: 400;
      letter-spacing: .15em;
      color: rgba(255, 255, 255, .55)
    }

    nav ul {
      display: flex;
      gap: 32px;
      list-style: none
    }

    nav ul li a {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .75);
      transition: color .2s;
      padding: 4px 0;
      position: relative
    }

    nav ul li a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--lime);
      transition: width .25s
    }

    nav ul li a:hover {
      color: #fff
    }

    nav ul li a:hover::after {
      width: 100%
    }

    .nav-cta {
      background: var(--lime);
      color: var(--dg) !important;
      padding: 9px 22px !important;
      border-radius: 4px;
      font-weight: 700 !important;
      transition: background .2s !important
    }

    .nav-cta:hover {
      background: var(--lime-bright) !important
    }

    .nav-cta::after {
      display: none !important
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      padding: 4px
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all .3s
    }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--dg);
      z-index: 998;
      padding: 100px 5vw 40px;
      flex-direction: column;
      gap: 0
    }

    .mobile-menu.open {
      display: flex
    }

    .mobile-menu a {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 36px;
      font-weight: 700;
      color: #fff;
      padding: 14px 0;
      border-bottom: 1px solid var(--border-light);
      letter-spacing: .04em;
      transition: color .2s
    }

    .mobile-menu a:hover {
      color: var(--lime)
    }

    /* ── HERO ── */
    #hero {
      position: relative;
      min-height: 100vh;
      background: var(--dg);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(26, 96, 48, .45) 0%, transparent 70%), linear-gradient(170deg, #0B2E18 0%, #061A0D 100%);
      z-index: 0
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(114, 194, 58, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(114, 194, 58, .06) 1px, transparent 1px);
      background-size: 60px 60px;
      z-index: 1
    }

    .hero-grain {
      position: absolute;
      inset: 0;
      opacity: .035;
      z-index: 2;
      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='1'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 256px
    }

    .hero-accent {
      position: absolute;
      right: -80px;
      top: 10%;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(114, 194, 58, .12) 0%, transparent 70%);
      z-index: 2
    }

    .hero-content {
      position: relative;
      z-index: 5;
      padding: 0 5vw 80px;
      max-width: 1200px
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp .8s .2s forwards
    }

    .hero-eyebrow-line {
      width: 40px;
      height: 1.5px;
      background: var(--lime)
    }

    .hero-eyebrow-text {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--lime)
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(52px, 7vw, 108px);
      font-weight: 700;
      color: #fff;
      line-height: .9;
      letter-spacing: -.01em;
      opacity: 0;
      animation: fadeUp .9s .4s forwards
    }

    .hero-title em {
      font-style: italic;
      color: var(--lime);
      display: block
    }

    .hero-sub {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(16px, 2vw, 22px);
      font-weight: 400;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .6);
      margin-top: 20px;
      max-width: 600px;
      line-height: 1.6;
      opacity: 0;
      animation: fadeUp .9s .6s forwards
    }

    .hero-meta {
      display: flex;
      align-items: center;
      gap: 32px;
      margin-top: 44px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp .9s .8s forwards
    }

    .hero-meta-item {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .hero-meta-icon {
      width: 40px;
      height: 40px;
      border: 1.5px solid rgba(114, 194, 58, .4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .hero-meta-icon svg {
      width: 18px;
      height: 18px;
      stroke: #72C23A;
      stroke-width: 1.8;
      fill: none
    }

    .hero-meta-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .45);
      margin-bottom: 2px
    }

    .hero-meta-val {
      font-size: 15px;
      font-weight: 600;
      color: #fff
    }

    .hero-meta-div {
      width: 1px;
      height: 44px;
      background: var(--border-light);
      flex-shrink: 0
    }

    .hero-cta {
      display: flex;
      gap: 14px;
      margin-top: 48px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp .9s 1s forwards
    }

    .btn-primary {
      background: var(--lime);
      color: var(--dg);
      padding: 14px 32px;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      border: none;
      transition: background .2s, transform .15s;
      display: inline-block
    }

    .btn-primary:hover {
      background: var(--lime-bright);
      transform: translateY(-1px)
    }

    .btn-outline {
      background: transparent;
      color: #fff;
      padding: 13px 32px;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      border: 1.5px solid rgba(255, 255, 255, .25);
      transition: border-color .2s, transform .15s;
      display: inline-block
    }

    .btn-outline:hover {
      border-color: #fff;
      transform: translateY(-1px)
    }

    .hero-scroll {
      position: absolute;
      bottom: 32px;
      right: 5vw;
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 8px;
      opacity: .5
    }

    .hero-scroll span {
      font-size: 11px;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: #fff
    }

    .hero-scroll-line {
      width: 1px;
      height: 40px;
      background: #fff;
      animation: scrollPulse 2s infinite
    }

    /* ── COUNTDOWN ── */
    #countdown {
      background: var(--forest);
      padding: 64px 5vw;
      position: relative;
      overflow: hidden
    }

    .cd-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap
    }

    .cd-label {
      flex: 1;
      min-width: 220px
    }

    .cd-label h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--lime);
      margin-bottom: 8px
    }

    .cd-label p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      font-weight: 600;
      color: #fff;
      line-height: 1.2
    }

    .cd-units {
      display: flex;
      gap: 16px;
      flex-wrap: wrap
    }

    .cd-unit {
      text-align: center;
      min-width: 90px
    }

    .cd-num {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 8px;
      padding: 18px 12px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(44px, 5vw, 72px);
      font-weight: 900;
      color: #fff;
      line-height: 1;
      letter-spacing: -.02em;
      min-width: 90px;
      display: block;
      text-align: center;
      transition: all .1s
    }

    .cd-unit-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .4);
      margin-top: 10px
    }

    /* ── ABOUT SUMMIT ── */
    #about-summit {
      padding: 100px 5vw;
      background: var(--warm);
      position: relative
    }

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

    .eyebrow-dot {
      width: 8px;
      height: 8px;
      background: var(--lime);
      border-radius: 50%
    }

    .eyebrow-text {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--mid)
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 4.5vw, 64px);
      font-weight: 700;
      line-height: 1.05;
      color: var(--dg);
      letter-spacing: -.02em
    }

    .section-title em {
      font-style: italic;
      color: var(--mid)
    }

    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      max-width: 1200px;
      margin: 0 auto;
      align-items: center
    }

    .two-col-text .section-eyebrow {
      margin-top: 0
    }

    .two-col-text p {
      font-size: 17px;
      line-height: 1.75;
      color: var(--muted);
      margin-top: 24px
    }

    .two-col-text p+p {
      margin-top: 16px
    }

    .stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      margin-top: 40px;
      overflow: hidden;
      border-radius: 8px
    }

    .stat-card {
      background: var(--dg);
      padding: 28px 24px
    }

    .stat-card:nth-child(odd) {
      background: var(--forest)
    }

    .stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 42px;
      font-weight: 900;
      color: var(--lime);
      letter-spacing: -.02em;
      line-height: 1
    }

    .stat-desc {
      font-size: 13px;
      color: rgba(255, 255, 255, .5);
      margin-top: 6px;
      line-height: 1.4
    }

    .about-img-wrap {
      position: relative
    }

    .about-img-main {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--forest) 0%, var(--mid) 100%);
      overflow: hidden
    }

    .about-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      aspect-ratio: 4/5
    }

    .about-img-placeholder svg {
      width: 64px;
      height: 64px;
      stroke: rgba(255, 255, 255, .25);
      stroke-width: 1.2;
      fill: none
    }

    .about-img-placeholder span {
      font-size: 13px;
      color: rgba(255, 255, 255, .3);
      letter-spacing: .1em;
      text-transform: uppercase
    }

    .about-img-badge {
      position: absolute;
      bottom: 28px;
      left: -24px;
      background: var(--gold);
      padding: 16px 22px;
      border-radius: 6px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, .25)
    }

    .about-img-badge .badge-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 38px;
      font-weight: 900;
      color: var(--dg);
      line-height: 1
    }

    .about-img-badge .badge-txt {
      font-size: 12px;
      font-weight: 700;
      color: var(--dg);
      opacity: .7;
      text-transform: uppercase;
      letter-spacing: .08em;
      line-height: 1.3
    }

    /* ── STAKEHOLDERS ── */
    #stakeholders {
      padding: 100px 5vw;
      background: var(--cream);
      position: relative;
      overflow: hidden
    }

    .stakeholders-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(9, 36, 18, .04) 0%, transparent 60%)
    }

    .stake-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 64px
    }

    .stake-header p {
      font-size: 17px;
      color: var(--muted);
      margin-top: 16px;
      line-height: 1.7
    }

    .stake-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3px;
      max-width: 1100px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 32px 80px rgba(9, 36, 18, .12)
    }

    .stake-card {
      background: #fff;
      padding: 52px 48px;
      position: relative;
      overflow: hidden;
      transition: transform .3s
    }

    .stake-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--lime) 0%, var(--lime-bright) 100%)
    }

    .stake-card:hover {
      transform: translateY(-3px)
    }

    .stake-card-inner {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0
    }

    .stake-photo {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      overflow: hidden;
      background: linear-gradient(135deg, #e2ede6 0%, #c3d9ca 100%);
      margin-bottom: 24px;
      border: 3px solid #fff;
      box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .stake-photo svg {
      width: 52px;
      height: 52px;
      stroke: var(--mid);
      stroke-width: 1.2;
      fill: none
    }

    .stake-photo-img {
      width: 140px;
      height: 140px;
      border-radius: 12px
    }

    .stake-photo-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center
    }

    .stake-org {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--lime);
      margin-bottom: 8px
    }

    .stake-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--dg);
      line-height: 1.15
    }

    .stake-title {
      font-size: 14px;
      color: var(--muted);
      margin-top: 6px;
      font-weight: 400;
      line-height: 1.4
    }

    .stake-divider {
      width: 40px;
      height: 2px;
      background: var(--lime);
      margin: 20px 0
    }

    .stake-bio {
      font-size: 15px;
      line-height: 1.7;
      color: #555
    }

    .stake-flag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 20px;
      padding: 8px 14px;
      background: rgba(9, 36, 18, .06);
      border-radius: 100px
    }

    .stake-flag span {
      font-size: 13px;
      font-weight: 500;
      color: var(--dg)
    }

    /* ── REGISTER ── */
    #register {
      padding: 100px 5vw;
      background: var(--dg);
      position: relative;
      overflow: hidden
    }

    .register-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 50% at 80% 50%, rgba(26, 96, 48, .3), transparent)
    }

    .register-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      align-items: start;
      position: relative;
      z-index: 2
    }

    .register-left .section-eyebrow .eyebrow-text {
      color: var(--lime)
    }

    .register-left .section-title {
      color: #fff
    }

    .register-left p {
      font-size: 16px;
      line-height: 1.75;
      color: rgba(255, 255, 255, .5);
      margin-top: 20px
    }

    .register-info {
      margin-top: 44px;
      display: flex;
      flex-direction: column;
      gap: 20px
    }

    .reg-info-item {
      display: flex;
      align-items: flex-start;
      gap: 14px
    }

    .reg-info-item svg {
      width: 20px;
      height: 20px;
      stroke: var(--lime);
      stroke-width: 1.8;
      fill: none;
      flex-shrink: 0;
      margin-top: 1px
    }

    .reg-info-item div p:first-child {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .4);
      margin-bottom: 3px
    }

    .reg-info-item div p:last-child {
      font-size: 15px;
      color: #fff
    }

    .form-card {
      background: #fff;
      border-radius: 12px;
      padding: 48px 44px;
      box-shadow: 0 32px 80px rgba(0, 0, 0, .35)
    }

    .form-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--dg);
      margin-bottom: 28px
    }

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

    .form-group {
      margin-bottom: 18px
    }

    .form-group label {
      display: block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 7px
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid #e0e0d6;
      border-radius: 6px;
      font-size: 15px;
      color: var(--ink);
      background: #fff;
      transition: border-color .2s, box-shadow .2s;
      outline: none
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--lime);
      box-shadow: 0 0 0 3px rgba(114, 194, 58, .12)
    }

    .form-group textarea {
      resize: vertical;
      min-height: 110px;
      line-height: 1.6
    }

    .form-group select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364705C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center
    }

    .form-submit {
      width: 100%;
      padding: 15px;
      background: var(--lime);
      color: var(--dg);
      border: none;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      transition: background .2s, transform .15s;
      margin-top: 8px
    }

    .form-submit:hover {
      background: var(--lime-bright);
      transform: translateY(-1px)
    }

    .form-note {
      font-size: 13px;
      color: var(--muted);
      text-align: center;
      margin-top: 14px;
      line-height: 1.5
    }

    .form-success {
      display: none;
      text-align: center;
      padding: 40px 20px
    }

    .form-success svg {
      width: 52px;
      height: 52px;
      stroke: var(--lime);
      stroke-width: 1.5;
      fill: none;
      margin: 0 auto 16px
    }

    .form-success h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--dg)
    }

    .form-success p {
      font-size: 15px;
      color: var(--muted);
      margin-top: 8px;
      line-height: 1.6
    }

    /* ── MEDIA ── */
    #media {
      padding: 100px 5vw;
      background: var(--warm)
    }

    .media-inner {
      max-width: 1200px;
      margin: 0 auto
    }

    .media-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      flex-wrap: wrap;
      gap: 20px
    }

    .media-header-left .section-title {
      font-size: clamp(30px, 4vw, 52px)
    }

    .media-tabs {
      display: flex;
      gap: 4px;
      background: rgba(9, 36, 18, .07);
      padding: 4px;
      border-radius: 8px
    }

    .media-tab {
      padding: 9px 20px;
      border: none;
      background: transparent;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--muted);
      border-radius: 5px;
      transition: all .2s
    }

    .media-tab.active {
      background: #fff;
      color: var(--dg);
      box-shadow: 0 1px 3px rgba(0, 0, 0, .1)
    }

    .media-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px
    }

    .media-card {
      border-radius: 10px;
      overflow: hidden;
      background: var(--cream);
      position: relative;
      aspect-ratio: 4/3;
      cursor: pointer;
      group: true
    }

    .media-card.large {
      grid-column: span 2;
      aspect-ratio: 16/9
    }

    .media-card.video-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(9, 36, 18, .35);
      transition: opacity .2s
    }

    .media-card:hover .media-overlay {
      opacity: 1
    }

    .media-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: linear-gradient(135deg, #e0ead9 0%, #c8d9c0 100%)
    }

    .media-placeholder.dark {
      background: linear-gradient(135deg, #1a4028 0%, #0e2d1b 100%)
    }

    .media-placeholder svg {
      width: 40px;
      height: 40px;
      fill: none;
      stroke-width: 1.4
    }

    .media-placeholder span {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase
    }

    .media-placeholder.dark svg {
      stroke: rgba(255, 255, 255, .3)
    }

    .media-placeholder.dark span {
      color: rgba(255, 255, 255, .3)
    }

    .media-placeholder:not(.dark) svg {
      stroke: var(--mid);
      opacity: .4
    }

    .media-placeholder:not(.dark) span {
      color: var(--muted)
    }

    .media-overlay {
      position: absolute;
      inset: 0;
      background: rgba(9, 36, 18, .7);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .25s;
      z-index: 2
    }

    .media-overlay svg {
      width: 40px;
      height: 40px;
      stroke: #fff;
      stroke-width: 1.8;
      fill: none
    }

    .video-play {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 3;
      width: 52px;
      height: 52px;
      background: rgba(255, 255, 255, .15);
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, .5);
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(4px)
    }

    .video-play svg {
      width: 20px;
      height: 20px;
      fill: #fff;
      margin-left: 3px
    }

    .media-label {
      position: absolute;
      bottom: 14px;
      left: 14px;
      z-index: 3;
      background: rgba(9, 36, 18, .75);
      padding: 5px 10px;
      border-radius: 4px;
      backdrop-filter: blur(4px)
    }

    .media-label span {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #fff
    }

    .media-coming {
      text-align: center;
      padding: 36px 24px;
      background: var(--cream);
      border-radius: 10px;
      margin-top: 28px
    }

    .media-coming span {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted)
    }

    .card-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1
    }

    .card-img.hidden {
      display: none
    }

    .card-fallback {
      z-index: 0
    }

    .media-card:has(.card-img:not(.hidden)) .card-fallback {
      display: none
    }

    /* ── ABOUT JAPTINI ── */
    #about {
      padding: 100px 5vw;
      background: var(--dg);
      position: relative;
      overflow: hidden
    }

    .about-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 70% at 20% 50%, rgba(26, 96, 48, .25), transparent)
    }

    .about-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 2
    }

    .about-logo-wrap {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 32px
    }

    .logo-circle {
      width: 64px;
      height: 64px;
      background: var(--lime);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .logo-circle svg {
      width: 36px;
      height: 36px;
      fill: var(--dg)
    }

    .logo-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 28px;
      font-weight: 900;
      color: #fff;
      letter-spacing: .04em;
      text-transform: uppercase;
      line-height: 1
    }

    .logo-text span {
      display: block;
      font-size: 12px;
      font-weight: 400;
      color: rgba(255, 255, 255, .4);
      letter-spacing: .15em;
      margin-top: 2px
    }

    .about-text .section-eyebrow .eyebrow-text {
      color: var(--lime)
    }

    .about-text .section-title {
      color: #fff;
      margin-bottom: 24px
    }

    .about-text p {
      font-size: 16px;
      line-height: 1.8;
      color: rgba(255, 255, 255, .55);
      margin-bottom: 16px
    }

    .about-pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      overflow: hidden;
      border-radius: 10px
    }

    .pillar {
      background: rgba(255, 255, 255, .05);
      padding: 28px 24px;
      border: 1px solid rgba(255, 255, 255, .07)
    }

    .pillar svg {
      width: 28px;
      height: 28px;
      stroke: var(--lime);
      stroke-width: 1.8;
      fill: none;
      margin-bottom: 12px
    }

    .pillar h4 {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px
    }

    .pillar p {
      font-size: 13px;
      color: rgba(255, 255, 255, .4);
      line-height: 1.5
    }

    .about-quote {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 10px;
      padding: 32px;
      margin-top: 24px;
      position: relative
    }

    .about-quote::before {
      content: '\201C';
      font-family: 'Cormorant Garamond', serif;
      font-size: 80px;
      color: var(--lime);
      opacity: .3;
      position: absolute;
      top: -10px;
      left: 24px;
      line-height: 1
    }

    .about-quote blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 400;
      font-style: italic;
      color: rgba(255, 255, 255, .75);
      line-height: 1.65;
      margin-top: 20px
    }

    .about-quote cite {
      display: block;
      margin-top: 16px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--lime);
      font-style: normal
    }

    /* ── CARDINAL OBJECTIVES ── */
    #objectives {
      padding: 100px 5vw;
      background: var(--forest);
      position: relative;
      overflow: hidden
    }

    .obj-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(114, 194, 58, .07), transparent)
    }

    .obj-inner {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2
    }

    .obj-header {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 72px
    }

    .obj-header .section-title {
      color: #fff
    }

    .obj-header p {
      font-size: 17px;
      color: rgba(255, 255, 255, .5);
      margin-top: 16px;
      line-height: 1.7
    }

    .obj-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3px;
      overflow: hidden;
      border-radius: 12px
    }

    .obj-item {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .06);
      padding: 40px 36px;
      display: flex;
      gap: 24px;
      align-items: flex-start;
      transition: background .25s
    }

    .obj-item:hover {
      background: rgba(255, 255, 255, .08)
    }

    .obj-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 52px;
      font-weight: 900;
      color: var(--lime);
      opacity: .22;
      line-height: 1;
      flex-shrink: 0;
      min-width: 44px
    }

    .obj-body h4 {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
      line-height: 1.3
    }

    .obj-body p {
      font-size: 14px;
      color: rgba(255, 255, 255, .45);
      line-height: 1.65
    }

    .obj-item.full {
      grid-column: span 2;
      background: rgba(114, 194, 58, .06);
      border-color: rgba(114, 194, 58, .18)
    }

    /* ── PARTICIPANT CATEGORIES ── */
    .participant-cats {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-top: 24px
    }

    .p-cat {
      padding: 7px 16px;
      background: rgba(9, 36, 18, .07);
      border: 1px solid rgba(9, 36, 18, .13);
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      color: var(--mid);
      letter-spacing: .03em
    }

    /* ── PARTNERS ── */
    #partners {
      padding: 60px 5vw;
      background: var(--cream);
      border-top: 1px solid rgba(9, 36, 18, .08)
    }

    .partners-inner {
      max-width: 1100px;
      margin: 0 auto;
      text-align: center
    }

    .partners-inner h4 {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 36px
    }

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

    .partner-logo {
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: .35;
      transition: opacity .2s, filter .2s
    }

    .partner-logo:hover {
      opacity: .7
    }

    .partner-logo span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--dg)
    }

    .partner-logo-full {
      height: auto;
      opacity: .8;
      filter: grayscale(15%);
      transition: opacity .25s, filter .25s
    }

    .partner-logo-full:hover {
      opacity: 1;
      filter: grayscale(0%) drop-shadow(0 4px 12px rgba(0, 107, 63, .18))
    }

    /* ── FOOTER ── */
    footer {
      background: #060F08;
      padding: 72px 5vw 40px;
      color: rgba(255, 255, 255, .45)
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 52px;
      border-bottom: 1px solid rgba(255, 255, 255, .07)
    }

    .footer-brand .nav-logo {
      margin-bottom: 16px
    }

    .footer-brand p {
      font-size: 14px;
      line-height: 1.7;
      color: rgba(255, 255, 255, .38);
      max-width: 240px
    }

    .footer-col h5 {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .7);
      margin-bottom: 18px
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .footer-col ul li a {
      font-size: 14px;
      color: rgba(255, 255, 255, .38);
      transition: color .2s
    }

    .footer-col ul li a:hover {
      color: var(--lime)
    }

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

    .footer-bottom p {
      font-size: 13px
    }

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

    .footer-social a {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color .2s, background .2s
    }

    .footer-social a:hover {
      border-color: var(--lime);
      background: rgba(114, 194, 58, .1)
    }

    .footer-social svg {
      width: 16px;
      height: 16px;
      fill: rgba(255, 255, 255, .45)
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px)
      }

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

    @keyframes scrollPulse {

      0%,
      100% {
        opacity: .5
      }

      50% {
        opacity: .15
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s, transform .7s
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0)
    }

    .reveal-delay-1 {
      transition-delay: .1s
    }

    .reveal-delay-2 {
      transition-delay: .2s
    }

    .reveal-delay-3 {
      transition-delay: .3s
    }

    /* ── RESPONSIVE ── */
    @media(max-width:900px) {

      .two-col,
      .register-inner,
      .about-inner {
        grid-template-columns: 1fr;
        gap: 48px
      }

      .obj-grid {
        grid-template-columns: 1fr
      }

      .obj-item.full {
        grid-column: span 1
      }

      .stake-grid {
        grid-template-columns: 1fr
      }

      .stake-card:first-child::before,
      .stake-card:last-child::before {
        height: 3px
      }

      nav ul,
      .nav-cta-wrap {
        display: none
      }

      .hamburger {
        display: flex
      }

      .about-img-badge {
        left: 16px
      }

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

      .media-grid {
        grid-template-columns: 1fr 1fr
      }

      .media-card.large {
        grid-column: span 2
      }

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

      .about-pillars {
        grid-template-columns: 1fr
      }

      .about-text {
        order: -1
      }
    }

    @media(max-width:600px) {
      .hero-content {
        padding-bottom: 60px
      }

      .cd-units {
        justify-content: center;
        width: 100%
      }

      .cd-inner {
        flex-direction: column;
        text-align: center
      }

      .media-grid {
        grid-template-columns: 1fr
      }

      .media-card.large {
        grid-column: span 1;
        aspect-ratio: 4/3
      }

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

      .stat-grid {
        grid-template-columns: 1fr
      }

      .about-img-badge {
        display: none
      }
    }

    /* Wrapper for each logo */
    .partner-logo {
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: .35;
      transition: opacity .2s, filter .2s;
    }

    .partner-logo:hover {
      opacity: .7;
    }

    /* Override for real institutional logos (replaces height: 36px) */
    .partner-logo-full {
      height: auto;
      /* lets the image breathe at its natural height */
      opacity: .8;
      /* slightly visible at rest (not too faded) */
      filter: grayscale(15%);
      transition: opacity .25s, filter .25s;
    }

    .partner-logo-full:hover {
      opacity: 1;
      filter: grayscale(0%) drop-shadow(0 4px 12px rgba(0, 107, 63, .18));
    }
