/* MedMen Awards 2026 — built 2026-05-27T08:18:55.621Z */
:root{
    --bg:        #D4F26B;  
    --bg-dark:   #0B0B0B;
    --bg-cream:  #F6F1E8;
    --bg-bone:   #EFEAD9;
    --fg:        #0B0B0B;
    --fg-inv:    #F6F1E8;
    --accent:    #FF5A1F;  
    --hairline:  rgba(11,11,11,.18);
    --hairline-inv: rgba(246,241,232,.18);

    --display:   "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
    --mono:      "JetBrains Mono", ui-monospace, monospace;

    --ease:      cubic-bezier(.22,.61,.36,1);
  }

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

html{
    scroll-behavior: smooth;
  }

@media (prefers-reduced-motion: reduce){
    html{ scroll-behavior: auto; }
  }

section[id], .big-footer[id]{
    scroll-margin-top: 80px;
  }

html, body{
    background: var(--bg);
    color: var(--fg);
    font-family: var(--display);
    font-feature-settings: "ss01","ss02","cv11";
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

body{ min-height:100vh; }

::selection{ background: var(--fg); color: var(--bg); }

@media (prefers-reduced-motion: no-preference) {
    .reveal-up,
    .reveal-up-soft,
    .reveal-stagger > *,
    .reveal-scale {
      opacity: 0;
      transition: opacity .9s var(--ease), transform .9s var(--ease);
      will-change: opacity, transform;
    }
    .reveal-up        { transform: translateY(28px); }
    .reveal-up-soft   { transform: translateY(14px); transition-duration: .7s; }
    .reveal-stagger > * { transform: translateY(20px); transition-duration: .6s; }
    .reveal-scale     { transform: scale(.97); transition-duration: .8s; }

    .reveal-up.in-view,
    .reveal-up-soft.in-view,
    .reveal-scale.in-view {
      opacity: 1;
      transform: none;
    }

    .reveal-stagger.in-view > * {
      opacity: 1;
      transform: none;
    }
    
    .reveal-stagger.in-view > *:nth-child(1)  { transition-delay: 0ms;   }
    .reveal-stagger.in-view > *:nth-child(2)  { transition-delay: 60ms;  }
    .reveal-stagger.in-view > *:nth-child(3)  { transition-delay: 120ms; }
    .reveal-stagger.in-view > *:nth-child(4)  { transition-delay: 180ms; }
    .reveal-stagger.in-view > *:nth-child(5)  { transition-delay: 240ms; }
    .reveal-stagger.in-view > *:nth-child(6)  { transition-delay: 300ms; }

    
    .sec-head .sec-eyebrow,
    .sec-head .sec-title,
    .sec-head .lead,
    .jc-head .sec-eyebrow,
    .jc-head .jc-h,
    .ss-lead .sec-eyebrow,
    .ss-lead .ss-text{
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .7s var(--ease), transform .7s var(--ease);
      will-change: opacity, transform;
    }
    .sec-head.in-view .sec-eyebrow,
    .jc-head.in-view .sec-eyebrow,
    .ss-lead.in-view .sec-eyebrow{
      opacity: 1; transform: none;
      transition-delay: 0ms;
    }
    .sec-head.in-view .sec-title,
    .jc-head.in-view .jc-h,
    .ss-lead.in-view .ss-text{
      opacity: 1; transform: none;
      transition-delay: 220ms;
    }
    .sec-head.in-view .lead{
      opacity: 1; transform: none;
      transition-delay: 440ms;
    }
    .reveal-stagger.in-view > *:nth-child(7)  { transition-delay: 340ms; }
    .reveal-stagger.in-view > *:nth-child(8)  { transition-delay: 380ms; }
    .reveal-stagger.in-view > *:nth-child(9)  { transition-delay: 420ms; }
    .reveal-stagger.in-view > *:nth-child(10) { transition-delay: 450ms; }
    .reveal-stagger.in-view > *:nth-child(11) { transition-delay: 480ms; }
    .reveal-stagger.in-view > *:nth-child(12) { transition-delay: 510ms; }
    .reveal-stagger.in-view > *:nth-child(13) { transition-delay: 540ms; }
    .reveal-stagger.in-view > *:nth-child(14) { transition-delay: 570ms; }
    .reveal-stagger.in-view > *:nth-child(15) { transition-delay: 600ms; }
    .reveal-stagger.in-view > *:nth-child(16) { transition-delay: 620ms; }

    
    @keyframes hero-rise {
      from { opacity: 0; transform: translateY(36px); }
      to   { opacity: 1; transform: none; }
    }
    .hero-eyebrow { animation: hero-rise 1s var(--ease) both 0.1s; }
    .hero-slogan  { animation: hero-rise 1s var(--ease) both 0.25s; }
    .hero-title   { animation: hero-rise 1.1s var(--ease) both 0.45s; }
    .hero-bottom  { animation: hero-rise 1s var(--ease) both 0.7s; }

    
    @keyframes year-pop {
      0%   { opacity: 0; transform: translateY(8px) scale(.88); }
      100% { opacity: 1; transform: none; }
    }
    .hero-title .year { animation: year-pop .7s var(--ease) both 1.2s; }

    
    .bot-strip {
      transition: opacity .8s var(--ease), transform .8s var(--ease);
    }
    .bot-strip:not(.in-view) {
      opacity: 0; transform: translateY(20px) scale(.98);
    }

    
    .bf-title {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 1s var(--ease), transform 1s var(--ease);
    }
    .big-footer.in-view .bf-title {
      opacity: 1; transform: none;
      transition-delay: 100ms;
    }
    .bf-eyebrow, .bf-sub {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity .8s var(--ease), transform .8s var(--ease);
    }
    .big-footer.in-view .bf-eyebrow { opacity: 1; transform: none; transition-delay: 0ms; }
    .big-footer.in-view .bf-sub     { opacity: 1; transform: none; transition-delay: 400ms; }
  }

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

.page{ width:100%; }

.section{
    position: relative;
    padding: clamp(64px, 9vw, 160px) clamp(20px, 4vw, 64px);
    border-top: 1px solid var(--hairline);
  }

.section.dark{
    background: var(--bg-dark);
    color: var(--fg-inv);
    border-color: var(--hairline-inv);
  }

.section.cream{ background: var(--bg-cream); }

.section.white{ background: #FFFFFF; }

.grid12{
    display:grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(12px, 1.4vw, 24px);
  }

.sec-head{
    grid-column: 1 / -1;
    display:grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 24px;
    margin-bottom: clamp(48px, 7vw, 120px);
  }

.sec-num{
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    color: inherit;
    opacity:.65;
    display:flex; align-items:center; gap:8px;
  }

.sec-num::after{ content:""; display:inline-block; width:48px; height:1px; background: currentColor; opacity:.6; }

.sec-title{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(48px, 8vw, 132px);
    line-height: 0.95;
    letter-spacing: -0.03em;
  }

.sec-title.sec-title-sm{
    font-size: clamp(40px, 5.6vw, 88px);
    line-height: 1;
  }

.sec-eyebrow{
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    display:flex; align-items:center; gap:10px;
    margin-bottom: 20px;
  }

.sec-eyebrow .dot{
    display:inline-block; width:9px; height:9px; border-radius:99px;
    background: var(--fg); flex:0 0 auto;
  }

.dark .sec-eyebrow .dot{ background: var(--fg-inv); }

.lead{
    font-size: clamp(20px, 2vw, 32px);
    line-height: 1.25;
    font-weight: 400;
    max-width: 32ch;
  }

.lead .mark{
    background: var(--accent);
    box-shadow: 0.12em 0 0 var(--accent), -0.12em 0 0 var(--accent);
    color: var(--fg);
    text-decoration: none;
  }

.dark .lead .mark{
    background: var(--bg);
    box-shadow: 0.12em 0 0 var(--bg), -0.12em 0 0 var(--bg);
    color: var(--fg);
    text-decoration: none;
  }

a.mark{ text-decoration: none; }

.btn{
    display:inline-flex; align-items:center; gap:10px;
    padding: 14px 22px 14px 24px;
    border-radius: 999px;
    font-family: var(--display);
    font-size: 16px;
    font-weight: 500;
    border: 1px solid var(--fg);
    background: var(--fg);
    color: var(--bg);
    transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
    will-change: transform;
  }

.btn:hover{ transform: translateY(-2px); }

.btn .arr{ display:inline-block; transition: transform .35s var(--ease); }

.btn:hover .arr{ transform: translateX(4px); }

.btn.ghost{ background: transparent; color: var(--fg); }

.btn.ghost:hover{ background: var(--fg); color: var(--bg); }

.dark .btn{ background: var(--fg-inv); color: var(--bg-dark); border-color: var(--fg-inv); }

.dark .btn.ghost{ background: transparent; color: var(--fg-inv); }

.dark .btn.ghost:hover{ background: var(--fg-inv); color: var(--bg-dark); }

.btn.accent{ background: var(--accent); color: var(--fg); border-color: var(--accent); }

.btn.btn-sm{
    padding: 9px 16px 9px 18px;
    font-size: 15px;
    gap: 8px;
  }

.btn.btn-nav{
    justify-self: end;
    background: var(--bg);
    color: var(--fg);
    border-color: var(--bg);
  }

.btn.btn-nav:hover{
    background: #FFFFFF;
    color: var(--fg);
    border-color: #FFFFFF;
  }

.nav .btn.btn-nav{
    background: var(--bg);
    color: var(--fg);
    border-color: var(--bg);
  }

.nav .btn.btn-nav:hover{
    background: #FFFFFF;
    border-color: #FFFFFF;
  }

.link-cta{
    display:inline-flex; align-items:center; gap:10px;
    font-family: var(--display);
    font-weight:500;
    font-size: 17px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
    transition: gap .25s var(--ease);
  }

.link-cta:hover{ gap: 16px; }

.nav{
    position: fixed; top:0; left:0; right:0;
    z-index: 50;
    display:grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 18px clamp(20px, 4vw, 64px);
    background: var(--bg);
    color: var(--fg);
    border-bottom: 1px solid var(--hairline);
    transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  }

.nav.on-dark{
    background: var(--bg-dark);
    color: var(--fg-inv);
    border-bottom-color: var(--hairline-inv);
  }

.nav.on-hero{
    background: transparent;
    color: var(--fg-inv);
    border-bottom-color: rgba(255,255,255,0.08);
  }

.nav.on-cream{
    background: var(--bg-cream);
  }

.nav.on-white{
    background: #FFFFFF;
  }

.nav .logo{
    font-family: var(--display);
    font-weight: 800;
    font-size: 19px;
    letter-spacing: -.01em;
  }

.nav .menu{
    display:flex; gap: 22px;
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    justify-self: center;
  }

.nav .menu a{
    opacity: .82;
    position: relative;
    transition: opacity .2s var(--ease);
    padding: 4px 0;
  }

.nav .menu a::after{
    content: "";
    position: absolute;
    left: 0; right: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease);
  }

.nav .menu a:hover{ opacity: 1; }

.nav .menu a:hover::after{ transform: scaleX(1); }

.nav .meta{ justify-self:end; font-family: var(--mono); font-size:12px; letter-spacing:.04em; text-transform:uppercase; opacity:.8; }

.hero{
    min-height: 100vh;
    padding-top: clamp(110px, 14vh, 160px);
    padding-bottom: clamp(40px, 5vw, 80px);
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    border-top: none;
    position: relative;
    overflow: hidden;
    background: #141414;
    color: var(--fg-inv);
  }

.hero-media{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 62%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 2.5s ease-out;
    transform: scale(1.02);
    will-change: transform, opacity;
    
    -webkit-mask-image:
      linear-gradient(to right,  transparent 0%, rgba(0,0,0,.4) 14%, #000 32%, #000 100%),
      linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to right,  transparent 0%, rgba(0,0,0,.4) 14%, #000 32%, #000 100%),
      linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-composite: intersect;
  }

.hero-media.ready{
    opacity: 0.78;
    animation:
      hero-breathe 14s ease-in-out infinite,
      hero-driftZoom 26s ease-in-out infinite alternate;
  }

@keyframes hero-breathe {
    0%   { opacity: 0.78; }
    50%  { opacity: 0.45; }
    100% { opacity: 0.78; }
  }

@keyframes hero-driftZoom {
    0%   { transform: scale(1.02) translateX(0); }
    100% { transform: scale(1.06) translateX(-1.2%); }
  }

@media (prefers-reduced-motion: reduce){
    .hero-media.ready{
      animation: none;
      transform: scale(1.04);
    }
  }

.hero::after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to right, rgba(20,20,20,0.65) 0%, rgba(20,20,20,0.35) 30%, rgba(20,20,20,0) 55%);
  }

.hero-canvas{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.2s ease-out;
    display: none; 
  }

.hero-canvas.ready{ opacity: 1; }

.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 55% at 25% 55%, rgba(20,20,20,.4), rgba(20,20,20,0) 65%);
  }

.hero-eyebrow{
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    grid-column: 1 / -1;
    display:flex; align-items:center; gap:14px;
    color: var(--fg-inv);
  }

.hero-eyebrow span.tag{
    display:inline-flex; align-items:center; gap:8px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--fg-inv);
  }

.hero-eyebrow span.tag > span:first-child{
    background: var(--fg-inv) !important;
  }

.hero-slogan{
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(26px, 3.2vw, 48px);
    line-height: 1.08;
    letter-spacing: -.02em;
    max-width: 22ch;
    margin-top: clamp(48px, 7vh, 88px);
    color: var(--fg-inv);
  }

.hero-slogan .mark{
    background: var(--bg);
    box-shadow: 0.12em 0 0 var(--bg), -0.12em 0 0 var(--bg);
    color: var(--fg);
  }

.hero-title{
    grid-column: 1 / -1;
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(56px, 12vw, 200px);
    line-height: .88;
    letter-spacing: -0.045em;
    margin-top: clamp(20px, 4vh, 48px);
    color: var(--fg-inv);
  }

.hero-title em{
    font-style: italic;
    font-weight: 500;
    letter-spacing: -.04em;
  }

.hero-title .year{
    display: inline-block;
    font-style: italic;
    font-weight: 500;
    font-size: 0.55em;
    letter-spacing: -.03em;
    vertical-align: 0.32em;
    color: var(--bg);  
    margin-left: 0.05em;
  }

.hero-bottom{
    grid-column: 1 / -1;
    display:grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 32px;
    margin-top: clamp(32px, 5vh, 64px);
    padding-top: 28px;
    border-top: 1px solid var(--hairline-inv);
  }

.hero-sub{
    font-family: var(--mono);
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.55;
    max-width: 56ch;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--fg-inv);
    opacity: .75;
  }

.hero-cta{ display:flex; gap: 12px; flex-wrap:wrap; justify-self: end; }

.hero .btn.ghost{ color: var(--fg-inv); border-color: var(--fg-inv); }

.hero .btn.ghost:hover{ background: var(--fg-inv); color: var(--bg-dark); }

.stat-strip{
    padding-top: clamp(60px, 7vw, 110px);
    padding-bottom: clamp(60px, 7vw, 110px);
  }

.stat-strip .grid12{
    grid-template-columns: 1fr;
    gap: clamp(40px, 4vw, 64px);
  }

.stat-strip .ss-lead{
    max-width: 78ch;
  }

.stat-strip .ss-text{
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(22px, 2.4vw, 38px);
    line-height: 1.15;
    letter-spacing: -.015em;
    margin-top: 16px;
  }

.stat-strip .ss-nums{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
  }

.stat-strip .ss-cell{
    background: var(--bg-cream);
    padding: clamp(24px, 2.6vw, 36px) clamp(16px, 1.6vw, 24px);
    display: flex; flex-direction: column; gap: 12px;
    min-width: 0;
  }

.stat-strip .ss-big{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(34px, 3.6vw, 56px);
    line-height: 1;
    letter-spacing: -.035em;
    white-space: nowrap;
  }

.stat-strip .ss-accent .ss-big{ color: var(--accent); }

.stat-strip .ss-lbl{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: .6;
    line-height: 1.3;
  }

@media (max-width: 1024px){
    .stat-strip .ss-nums{ grid-template-columns: repeat(3, 1fr); }
  }

@media (max-width: 640px){
    .stat-strip .ss-nums{ grid-template-columns: repeat(2, 1fr); }
  }

.jury-compact{
    padding-top: clamp(60px, 7vw, 100px);
    padding-bottom: clamp(60px, 7vw, 100px);
  }

.jury-compact .grid12{ grid-template-columns: 1fr; gap: clamp(28px, 3vw, 44px); }

.jc-head{
    max-width: 100ch;
  }

.jc-h{
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(22px, 2.2vw, 34px);
    line-height: 1.2;
    letter-spacing: -.015em;
    margin-top: 14px;
  }

.jc-h em{ font-style: italic; font-weight: 500; }

.jury-companies{
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--hairline-inv);
    border-bottom: none;
    border-right: none;
  }

.jury-companies .jc{
    padding: clamp(18px, 1.8vw, 28px) clamp(16px, 1.4vw, 22px);
    border-bottom: 1px solid var(--hairline-inv);
    border-right: 1px solid var(--hairline-inv);
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(16px, 1.3vw, 22px);
    line-height: 1.15;
    letter-spacing: -.01em;
    display:flex; align-items:center;
    transition: background .25s var(--ease), color .25s var(--ease);
    cursor: default;
    min-height: 72px;
  }

.jury-companies .jc:hover{ background: var(--bg); color: var(--bg-dark); }

.jury-companies .jc.subtle{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: .55;
  }

.jury-companies .jc.subtle:hover{ background: transparent; color: inherit; }

.jury-foot{
    grid-column: 1 / -1;
    margin-top: 40px;
    display:flex; justify-content: space-between; align-items: center; flex-wrap:wrap; gap: 16px;
  }

.jury-orgs{
    display:flex; gap: 24px; flex-wrap:wrap;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
    opacity:.6;
  }

.noms{ display: contents; }

.nom-list{
    grid-column: 1 / -1;
    display:flex; flex-direction: column;
    border-top: 1px solid var(--hairline);
  }

.nom-row{
    display:grid;
    grid-template-columns: 80px 1fr 2fr 1fr;
    gap: 24px;
    align-items: center;
    padding: clamp(24px, 3.5vw, 44px) clamp(16px, 2vw, 32px);
    border-bottom: 1px solid var(--hairline);
    cursor: pointer;
    transition: background .3s var(--ease), color .3s var(--ease), padding-left .3s var(--ease);
    margin: 0 calc(-1 * clamp(16px, 2vw, 32px));
  }

.nom-row:hover{
    background: var(--bg);
    padding-left: clamp(32px, 4vw, 64px);
  }

.nom-row:hover .n-num,
  .nom-row:hover .n-desc,
  .nom-row:hover .n-arrow{ opacity: 1; }

.nom-row .n-num{
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .05em;
    opacity: .55;
  }

.nom-row .n-name{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(40px, 5vw, 76px);
    line-height: .98;
    letter-spacing: -.03em;
  }

.nom-row .n-desc{
    font-size: 16px;
    line-height: 1.4;
    opacity: .8;
    max-width: 42ch;
  }

.nom-row .n-arrow{
    justify-self: end;
    font-family: var(--mono);
    font-size: 13px;
    opacity:.6;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }

.nom-row:hover .n-arrow{ opacity: 1; transform: translateX(6px); }

.stages{
    grid-column: 1 / -1;
    display:grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }

.stage{
    padding: 24px;
    border: 1px solid var(--hairline-inv);
    background: rgba(255,255,255,.02);
    display:flex; flex-direction:column; gap: 16px;
    min-height: 280px;
    cursor: default;
    transition:
      background .35s var(--ease),
      color .35s var(--ease),
      border-color .35s var(--ease),
      transform .35s var(--ease);
    will-change: transform;
  }

.stage:hover{
    background: var(--bg);
    color: var(--bg-dark);
    border-color: var(--bg);
    transform: translateY(-6px);
  }

.stage .s-num{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(48px, 5vw, 76px);
    line-height: 1;
    letter-spacing: -.03em;
    transition: transform .4s var(--ease);
    transform-origin: left top;
  }

.stage:hover .s-num{
    transform: scale(1.08);
  }

.stage .s-h{
    font-family: var(--display);
    font-weight: 600;
    font-size: 20px;
    margin-top: auto;
    transition: color .35s var(--ease);
  }

.stage .s-d{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .04em;
    opacity: .7;
    text-transform: uppercase;
    transition: opacity .35s var(--ease);
  }

.stage:hover .s-d{ opacity: 1; }

.stage.now{ background: var(--bg); color: var(--bg-dark); }

.stage.now:hover{
    background: var(--bg-dark);
    color: var(--fg-inv);
    border-color: var(--bg-dark);
  }

.ceremony-media{
    grid-column: 1 / -1;
    aspect-ratio: 21/9;
    background:
      linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid var(--hairline-inv);
    position: relative;
    overflow: hidden;
    display:flex; align-items:center; justify-content:center;
  }

.ceremony-media::before{
    content:"";
    position:absolute; inset:0;
    background:
      radial-gradient(ellipse at 30% 50%, rgba(212,242,107,.1), transparent 50%),
      radial-gradient(ellipse at 70% 30%, rgba(255,90,31,.08), transparent 55%);
  }

.play-btn{
    width: clamp(80px, 10vw, 140px);
    height: clamp(80px, 10vw, 140px);
    border-radius: 999px;
    border: 1px solid var(--fg-inv);
    background: transparent;
    color: var(--fg-inv);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .3s var(--ease), color .3s var(--ease);
    position: relative; z-index: 1;
  }

.play-btn:hover{ background: var(--fg-inv); color: var(--bg-dark); }

.price-grid{
    grid-column: 1 / -1;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
  }

.price-card{
    background: var(--bg-cream);
    padding: clamp(28px, 3vw, 44px);
    display:flex; flex-direction:column; gap: 16px;
  }

.price-card .p-tag{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
    opacity:.6;
  }

.price-card .p-name{
    font-family: var(--display);
    font-weight: 600;
    font-size: 24px;
  }

.price-card .p-cost{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(40px, 4vw, 64px);
    line-height: 1;
    letter-spacing: -.03em;
    margin-top: 16px;
    white-space: nowrap;
  }

.price-card .p-cost small{
    font-size: 16px;
    font-weight: 400;
    opacity: .6;
    margin-left: 4px;
  }

.price-card .p-list{
    list-style: none;
    margin-top: 12px;
    display:flex; flex-direction:column; gap: 6px;
    font-size: 15px;
  }

.price-card .p-list li::before{ content:"— "; opacity:.5; }

.price-card.best{
    background: var(--bg);
    position: relative;
  }

.price-card.best .p-tag::before{ content:"● "; color: var(--accent); }

.price-note{
    grid-column: 1 / -1;
    margin-top: 24px;
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: .55;
  }

.price-band{
    grid-column: 1 / -1;
    margin-top: clamp(20px, 2.4vw, 36px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hairline-inv);
    border: 1px solid var(--hairline-inv);
  }

.pb-card{
    background: rgba(255,255,255,.02);
    padding: clamp(24px, 3vw, 40px);
    display: flex; flex-direction: column; gap: 12px;
  }

.pb-card.best{
    background: var(--bg);
    color: var(--fg);
  }

.pb-tag{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
    opacity: .7;
  }

.pb-card.best .pb-tag::before{ content: "● "; color: var(--bg-dark); }

.pb-card.best .pb-tag{ opacity: 1; color: var(--bg-dark); }

.pb-date{
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(18px, 1.6vw, 22px);
    margin-top: 4px;
  }

.pb-cost{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(40px, 4.6vw, 64px);
    line-height: 1;
    letter-spacing: -.03em;
    margin-top: auto;
    white-space: nowrap;
  }

.pb-cost small{
    font-size: .35em;
    font-weight: 400;
    opacity: .6;
  }

.how-note{
    grid-column: 1 / -1;
    margin-top: clamp(20px, 2.5vw, 32px);
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .03em;
    opacity: .55;
    max-width: 64ch;
  }

.how-discounts{
    grid-column: 1 / -1;
    margin-top: clamp(20px, 2.4vw, 32px);
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

.hd-row{
    display: flex;
    align-items: baseline;
    gap: clamp(14px, 1.5vw, 22px);
    padding: 16px 20px;
    border: 1px solid var(--hairline-inv);
    background: rgba(255,255,255,.02);
  }

.hd-tag{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
    opacity: .6;
    flex-shrink: 0;
    min-width: 80px;
  }

.hd-text{
    font-family: var(--display);
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.35;
  }

.hd-text em{
    font-style: normal;
    font-weight: 700;
    color: var(--accent);
  }

@media (max-width: 640px){
    .hd-row{ flex-direction: column; align-items: flex-start; gap: 8px; }
    .hd-tag{ min-width: 0; }
  }

@media (max-width: 1024px){
    .price-band{ grid-template-columns: 1fr; }
  }

.price-cta{
    grid-column: 1 / -1;
    margin-top: clamp(40px, 5vw, 80px);
    padding: clamp(32px, 4vw, 64px);
    background: var(--bg);
    color: var(--bg-dark);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(32px, 4vw, 64px);
    align-items: center;
    position: relative;
    overflow: hidden;
  }

.price-cta::after{
    content: "";
    position: absolute;
    right: -80px; bottom: -80px;
    width: 280px; height: 280px;
    border-radius: 99px;
    background: var(--bg-dark);
    opacity: .06;
  }

.price-cta .pc-info{ position: relative; z-index: 1; }

.price-cta .pc-badge{
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 14px;
    border: 1px solid rgba(11,11,11,.18);
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 22px;
  }

.price-cta .pc-dot{
    display: inline-block; width: 8px; height: 8px; border-radius: 99px;
    background: var(--bg-dark);
    animation: pulse-dot 1.8s ease-in-out infinite;
  }

.price-cta .pc-h{
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(28px, 3.2vw, 52px);
    line-height: 1.05;
    letter-spacing: -.025em;
    max-width: 22ch;
  }

.price-cta .pc-h em{
    font-style: italic;
    font-weight: 500;
    background: var(--bg-dark);
    color: var(--bg);
    padding: 0 .15em;
    box-shadow: 0.12em 0 0 var(--bg-dark), -0.12em 0 0 var(--bg-dark);
  }

.price-cta .pc-p{
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.5;
    opacity: .78;
    max-width: 48ch;
  }

.price-cta .pc-actions{
    display: flex; flex-direction: column; gap: 16px;
    align-items: flex-start;
    justify-self: end;
    position: relative; z-index: 1;
  }

.price-cta .pc-actions .btn{
    background: var(--bg-dark); color: var(--fg-inv); border-color: var(--bg-dark);
    padding: 16px 26px 16px 28px;
    font-size: 17px;
  }

.price-cta .pc-actions .btn:hover{
    background: #FFFFFF; color: var(--fg); border-color: #FFFFFF;
  }

@media (max-width: 1024px){
    .price-cta{ grid-template-columns: 1fr; }
    .price-cta .pc-actions{ justify-self: start; }
  }

.sponsors-wrap{
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 5vw, 72px);
  }

.sp-group{
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: clamp(24px, 3vw, 48px);
    align-items: baseline;
    padding-top: clamp(28px, 3vw, 40px);
    border-top: 1px solid var(--hairline);
  }

.sp-cat{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
    opacity: .6;
    line-height: 1.4;
  }

.sp-list{
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 2.4vw, 36px) clamp(28px, 3vw, 48px);
    align-items: baseline;
  }

.sp-item{
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(20px, 2vw, 32px);
    line-height: 1.05;
    letter-spacing: -.015em;
    color: var(--fg);
    text-decoration: none;
    position: relative;
    transition: color .25s var(--ease), transform .25s var(--ease);
    will-change: transform;
  }

.sp-item:hover{
    color: var(--accent);
    transform: translateY(-2px);
  }

.sp-group.sp-main .sp-item{
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: -.025em;
  }

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

.rating-card{
    grid-column: 1 / -1;
    margin-top: clamp(8px, 1.5vw, 20px);
    display: grid;
    grid-template-columns: 1.6fr auto;
    gap: clamp(28px, 4vw, 64px);
    align-items: center;
    padding: clamp(32px, 3.6vw, 56px);
    border: 1px solid var(--hairline-inv);
    background: rgba(255,255,255,.03);
  }

.rating-card .rc-info{ min-width: 0; }

.rating-card .rc-h{
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 1.15;
    letter-spacing: -.015em;
    max-width: 32ch;
  }

.rating-card .rc-p{
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.5;
    max-width: 64ch;
    opacity: .72;
  }

.rating-card .btn{ justify-self: end; }

@media (max-width: 1024px){
    .rating-card{ grid-template-columns: 1fr; }
    .rating-card .btn{ justify-self: start; }
  }

.quotes{
    grid-column: 1 / -1;
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

.quote{
    padding: 32px;
    border: 1px solid var(--hairline-inv);
    background: rgba(255,255,255,.02);
  }

.quote .q-text{
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(20px, 1.6vw, 26px);
    line-height: 1.35;
    letter-spacing: -.01em;
  }

.quote .q-meta{
    margin-top: 24px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity:.7;
    display:flex; gap: 14px; flex-wrap: wrap;
  }

.quote .q-meta b{ font-weight: 500; opacity: 1; }

.pn-stats{
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--hairline);
  }

.pn-stat{
    padding: clamp(24px, 2.6vw, 40px) clamp(20px, 2vw, 32px);
    border-right: 1px solid var(--hairline);
    display: flex; flex-direction: column; gap: 12px;
  }

.pn-stat:last-child{ border-right: none; }

.pn-big{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(36px, 4vw, 64px);
    line-height: 1;
    letter-spacing: -.03em;
    white-space: nowrap;
  }

.pn-stat:nth-child(2) .pn-big{ color: var(--accent); }

.pn-lbl{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
    opacity: .6;
    max-width: 22ch;
  }

.partnership .sponsors-wrap{ margin-top: clamp(28px, 3vw, 44px); }

.partners-cta{
    grid-column: 1 / -1;
    margin-top: clamp(32px, 4vw, 56px);
    padding: clamp(28px, 3.5vw, 56px);
    border: 1px solid var(--hairline);
    background: rgba(0,0,0,.02);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: center;
  }

.partners-cta .pc-h{
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(24px, 2.4vw, 36px);
    line-height: 1.1;
    letter-spacing: -.02em;
    max-width: 24ch;
  }

.partners-cta .pc-p{
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.5;
    opacity: .8;
    max-width: 48ch;
  }

.partners-cta-actions{
    display:flex; flex-direction:column; gap: 16px;
    align-items: flex-start;
    justify-self: end;
  }

@media (max-width: 1024px){
    .pn-stats{ grid-template-columns: repeat(2, 1fr); }
    .pn-stat:nth-child(2n){ border-right: none; }
    .pn-stat{ border-bottom: 1px solid var(--hairline); }
  }

@media (max-width: 640px){
    .pn-stats{ grid-template-columns: 1fr; }
    .pn-stat{ border-right: none; }
  }

.bot-strip{
    grid-column: 1 / -1;
    margin-top: clamp(40px, 5vw, 80px);
    padding: clamp(28px, 3.4vw, 52px);
    background: var(--accent);
    color: var(--fg);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

.bot-strip::after{
    content: "";
    position: absolute;
    right: -40px; top: -40px;
    width: 200px; height: 200px;
    border-radius: 99px;
    background: var(--fg);
    opacity: .06;
  }

.bot-strip .bs-eyebrow{
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .05em;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 16px;
  }

.bot-strip .bs-dot{
    display:inline-block; width:9px; height:9px; border-radius:99px;
    background: var(--fg);
    animation: pulse-dot 1.8s ease-in-out infinite;
  }

@keyframes pulse-dot{
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.4); opacity: .55; }
  }

.bot-strip .bs-h{
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 1.15;
    letter-spacing: -.015em;
    max-width: 38ch;
    position: relative; z-index: 1;
  }

.bot-strip .bs-handle{
    background: var(--fg);
    color: #FFFFFF;
    box-shadow: 0.15em 0 0 var(--fg), -0.15em 0 0 var(--fg);
    text-decoration: none;
    font-family: var(--mono);
    font-weight: 500;
    transition: background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  }

.bot-strip .bs-handle:hover{
    background: #FFFFFF;
    box-shadow: 0.15em 0 0 #FFFFFF, -0.15em 0 0 #FFFFFF;
    color: var(--accent);
  }

.bot-strip .bs-cta{
    background: var(--fg);
    color: #FFFFFF;
    border-color: var(--fg);
    position: relative; z-index: 1;
  }

.bot-strip .bs-cta:hover{
    background: #FFFFFF;
    color: var(--accent);
    border-color: #FFFFFF;
  }

@media (max-width: 1024px){
    .bot-strip{ grid-template-columns: 1fr; }
    .bot-strip .bs-cta{ justify-self: start; }
  }

.support-row{
    grid-column: 1 / -1;
    margin-top: clamp(16px, 1.6vw, 24px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

.sr-item{
    padding: 18px 22px;
    border: 1px solid rgba(11,11,11,.12);
    background: rgba(255,255,255,.35);
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    transition: border-color .25s var(--ease), background .25s var(--ease);
  }

.sr-item:hover{
    background: rgba(255,255,255,.55);
    border-color: rgba(11,11,11,.22);
  }

.sr-tag{
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .05em;
    text-transform: uppercase;
    opacity: .65;
  }

.sr-link{
    font-family: var(--mono);
    font-weight: 500;
    font-size: 14px;
    color: var(--fg);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    transition: opacity .2s var(--ease);
  }

.sr-link:hover{ opacity: .65; }

.sr-note{
    font-size: 13px;
    opacity: .7;
    flex: 1;
    min-width: 200px;
  }

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

.faq{
    grid-column: 1 / -1;
    display:flex; flex-direction:column;
    border-top: 1px solid var(--hairline);
  }

.faq-item{
    border-bottom: 1px solid var(--hairline);
  }

.faq-q{
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: clamp(24px, 3vw, 36px) 0;
    display:grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    cursor: pointer;
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(20px, 1.8vw, 28px);
    letter-spacing: -.01em;
    color: inherit;
  }

.faq-q .plus{
    width: 24px; height: 24px;
    position: relative;
    transition: transform .35s var(--ease);
  }

.faq-q .plus::before, .faq-q .plus::after{
    content:""; position:absolute;
    background: currentColor;
  }

.faq-q .plus::before{ left:50%; top:0; bottom:0; width:1.5px; transform: translateX(-50%); }

.faq-q .plus::after{ top:50%; left:0; right:0; height:1.5px; transform: translateY(-50%); }

.faq-a{
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s var(--ease), padding-bottom .35s var(--ease);
    font-size: 17px;
    line-height: 1.55;
    max-width: 64ch;
    opacity: .85;
  }

.faq-item.open .faq-q .plus{ transform: rotate(45deg); }

.faq-item.open .faq-a{ max-height: 600px; padding-bottom: 28px; }

.big-footer{
    padding: clamp(80px, 12vw, 200px) clamp(20px, 4vw, 64px) clamp(40px, 6vw, 80px);
    background: var(--bg-dark);
    color: var(--fg-inv);
  }

.big-footer .bf-eyebrow{
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    display:flex; align-items:center; gap: 10px;
    margin-bottom: 28px;
    opacity:.85;
  }

.big-footer .bf-eyebrow .dot{
    display:inline-block; width:9px; height:9px; border-radius:99px;
    background: var(--bg);
  }

.big-footer .bf-title{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(48px, 7vw, 120px);
    line-height: .95;
    letter-spacing: -.03em;
    max-width: 18ch;
  }

.big-footer .bf-title em{ font-style: italic; font-weight: 500; }

.big-footer .bf-sub{
    margin-top: 24px;
    font-size: clamp(17px, 1.4vw, 22px);
    line-height: 1.4;
    opacity: .8;
    max-width: 48ch;
  }

.bf-grid{
    margin-top: clamp(60px, 8vw, 120px);
    display:grid;
    grid-template-columns: repeat(12,1fr);
    gap: clamp(12px, 1.4vw, 24px);
  }

.bf-card{
    grid-column: span 4;
    border: 1px solid var(--hairline-inv);
    padding: 32px;
    min-height: 280px;
    display:flex; flex-direction:column; justify-content: space-between;
    transition:
      background .35s var(--ease),
      border-color .35s var(--ease),
      transform .35s var(--ease);
    will-change: transform;
    cursor: default;
  }

.bf-card:hover{
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.18);
    transform: translateY(-4px);
  }

.bf-card .bf-num{
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .05em;
    opacity:.6;
    transition: color .35s var(--ease), opacity .35s var(--ease);
  }

.bf-card:hover .bf-num{
    color: var(--accent);
    opacity: 1;
  }

.bf-card h4{
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(26px, 2.2vw, 36px);
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 16px 0 12px;
  }

.bf-card p{
    font-size: 15px;
    line-height: 1.45;
    opacity: .8;
    max-width: 38ch;
  }

.bf-card .link-cta{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 4px;
    transition: color .25s var(--ease), gap .25s var(--ease);
  }

.bf-card .link-cta::after{
    content: "";
    position: absolute;
    left: 0; right: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform .3s var(--ease), background-color .3s var(--ease);
  }

.bf-card:hover .link-cta{
    color: var(--accent);
    gap: 12px;
  }

.bf-meta{
    margin-top: clamp(80px, 10vw, 140px);
    padding-top: 32px;
    border-top: 1px solid var(--hairline-inv);
    display:grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
  }

.bf-credits{
    margin-top: clamp(40px, 5vw, 64px);
    padding-top: 24px;
    border-top: 1px solid var(--hairline-inv);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
    opacity: .55;
  }

@media (max-width: 768px){
    .bf-credits{ flex-direction: column; align-items: flex-start; gap: 8px; }
  }

.bf-meta a{
    display: block;
    opacity: .75;
    padding: 4px 0;
    transition: opacity .2s var(--ease), color .2s var(--ease);
  }

.bf-meta a:hover{
    opacity: 1;
    color: var(--accent);
  }

.bf-meta .col h6{ font-weight: 500; opacity:.5; margin-bottom: 12px; font-size: 11px; }

a.mark{
    cursor: pointer;
    transition: background-color .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  }

a.mark:hover{
    background-color: var(--fg);
    color: var(--accent);
    box-shadow: 0.15em 0 0 var(--fg), -0.15em 0 0 var(--fg);
  }

@media (max-width: 1024px){
    .jury-companies{ grid-template-columns: repeat(4, 1fr); }
    .stages{ grid-template-columns: repeat(2, 1fr); }
    .price-grid{ grid-template-columns: 1fr; }
    .partners-cta{ grid-template-columns: 1fr; }
    .partners-cta-actions{ justify-self: start; }
    .nom-row{ grid-template-columns: 60px 1fr 1fr; }
    .nom-row .n-arrow{ display:none; }
    .bf-card{ grid-column: span 12; }
    .bf-meta{ grid-template-columns: 1fr 1fr; }
    .hero-bottom{ grid-template-columns: 1fr; gap: 24px; }
    .hero-cta{ justify-self: start; }
  }

@media (max-width: 640px){
    .nav .menu{ display:none; }
    .jury-companies{ grid-template-columns: repeat(2, 1fr); }
    .stages{ grid-template-columns: 1fr; }
    .nom-row{ grid-template-columns: 1fr; gap: 8px; }
  }

:root{
    --bg:        #D4F26B;  
    --lime:      #D4F26B;  
    --bg-dark:   #0B0B0B;
    --bg-cream:  #F6F1E8;
    --bg-bone:   #EFEAD9;
    --fg:        #0B0B0B;
    --fg-inv:    #F6F1E8;
    --accent:    #FF5A1F;  
    --hairline:  rgba(11,11,11,.18);
    --hairline-inv: rgba(246,241,232,.18);

    --display:   "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
    --mono:      "JetBrains Mono", ui-monospace, monospace;

    --ease:      cubic-bezier(.22,.61,.36,1);
  }

.menu-item-dropdown{
    position: relative;
    display: inline-flex;
    align-items: center;
  }

.menu-with-arrow{
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

.menu-arrow{
    font-size: 9px;
    opacity: .65;
    transition: transform .25s var(--ease);
    transform-origin: center;
  }

.menu-item-dropdown:hover .menu-arrow{
    transform: rotate(180deg);
  }

.menu-dropdown{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 130px;
    padding: 14px 0;
    background: var(--bg-dark);
    border: 1px solid var(--hairline-inv);
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
    z-index: 100;
  }

.menu-item-dropdown:hover .menu-dropdown,
  .menu-item-dropdown:focus-within .menu-dropdown{
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear 0s;
  }

.menu-dropdown a{
    display: block;
    padding: 8px 22px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .05em;
    color: var(--fg-inv);
    opacity: .8;
    text-align: center;
    transition: opacity .15s var(--ease), background .15s var(--ease), color .15s var(--ease);
  }

.menu-dropdown a::after{ display: none; }

.menu-dropdown a:hover{
    opacity: 1;
    color: var(--lime);
    background: rgba(212, 242, 107, 0.06);
  }

.menu-dropdown a.dropdown-soon{
    opacity: .35;
    pointer-events: none;
  }

.nav.on-cream .menu-dropdown,
  .nav.on-hero .menu-dropdown,
  .nav.on-white .menu-dropdown{
    background: var(--bg-dark);
  }

.hero-media{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 65% center;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 2.5s ease-out;
    transform: translateZ(0);
    will-change: transform, filter, opacity;
    filter: brightness(1) saturate(1);
    mix-blend-mode: lighten;
  }

.hero-media.ready{
    opacity: 1;
    animation: hero-breathe 6s ease-in-out infinite;
  }

@keyframes hero-breathe {
    0%, 100% {
      transform: translateZ(0) scale(1);
      filter: brightness(0.95) saturate(0.96);
    }
    50% {
      transform: translateZ(0) scale(1.025);
      filter: brightness(1.18) saturate(1.1);
    }
  }

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

.hero::after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(to right,  rgba(20,20,20,0.85) 0%, rgba(20,20,20,0.55) 45%, rgba(20,20,20,0.15) 75%, rgba(20,20,20,0.05) 100%),
      linear-gradient(to bottom, rgba(20,20,20,0.55) 0%, rgba(20,20,20,0.0) 18%, rgba(20,20,20,0.0) 65%, rgba(20,20,20,0.45) 100%);
  }

.hero-canvas{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.6s ease-out;
  }

.hero-canvas-wings{
    z-index: 1; 
    mix-blend-mode: lighten; 
  }

.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(ellipse 70% 60% at 30% 55%, rgba(20,20,20,.55), rgba(20,20,20,0) 70%);
  }

.jury-companies .jc{
    padding: clamp(18px, 1.8vw, 28px) clamp(16px, 1.4vw, 22px);
    border-bottom: 1px solid var(--hairline-inv);
    border-right: 1px solid var(--hairline-inv);
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(16px, 1.3vw, 22px);
    line-height: 1.15;
    letter-spacing: -.01em;
    display:flex; align-items:center;
    transition: background .12s linear, color .12s linear;
    transition-delay: 0s;
    cursor: default;
    min-height: 72px;
  }

.jury-companies.reveal-stagger.in-view > .jc{ transition-delay: 0s; }

.jury-companies .jc:hover{ background: var(--bg); color: var(--bg-dark); transition-duration: 0s; transition-delay: 0s; }

#rating{
    position: relative;
    overflow: hidden;
  }

.rating-canvas{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.6s ease-out;
  }

.rating-canvas.ready{ opacity: 1; }

#rating .grid12{ position: relative; z-index: 1; }

.rating-card{
    grid-column: 1 / -1;
    margin-top: clamp(8px, 1.5vw, 20px);
    display: grid;
    grid-template-columns: 1.6fr auto;
    gap: clamp(28px, 4vw, 64px);
    align-items: center;
    padding: clamp(32px, 3.6vw, 56px);
    border: 1px solid var(--hairline-inv);
    background: rgba(20,20,20,.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    position: relative;
    z-index: 2;
  }

.bot-strip .bs-handle{
    background: var(--fg);
    color: var(--accent);
    box-shadow: 0.15em 0 0 var(--fg), -0.15em 0 0 var(--fg);
    text-decoration: none;
    font-family: var(--mono);
    font-weight: 500;
    transition: background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  }

.bot-strip .bs-cta{
    background: var(--fg);
    color: var(--accent);
    border-color: var(--fg);
    position: relative; z-index: 1;
  }

.sr-item{
    padding: 18px 22px;
    border: 1px solid rgba(246,241,232,.10);
    background: #1A1A1A;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    transition: border-color .25s var(--ease), background .25s var(--ease);
  }

.sr-item:hover{
    background: #232323;
    border-color: rgba(246,241,232,.22);
  }

.sr-tag{
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .05em;
    text-transform: uppercase;
    opacity: .6;
  }

.sr-link{
    font-family: var(--mono);
    font-weight: 500;
    font-size: 14px;
    color: var(--fg-inv);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    transition: opacity .2s var(--ease);
  }

.sr-note{
    font-size: 13px;
    opacity: .65;
    flex: 1;
    min-width: 200px;
  }

.bf-manifesto{
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 4px;
  }

.bf-mani-text{
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(15px, 1.6vw, 22px);
    line-height: 1.05;
    letter-spacing: -.015em;
    color: var(--fg-inv);
  }

.bf-mani-line{
    display: block;
  }

.bf-mani-line em{
    font-style: italic;
    font-weight: 500;
    background: var(--bg);
    color: var(--fg);
    box-shadow: 0.12em 0 0 var(--bg), -0.12em 0 0 var(--bg);
    padding: 0 0.02em;
  }

.bf-mani-since{
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .55;
    white-space: nowrap;
  }

.bf-mani-since-dash{
    display: block;
    width: 36px;
    height: 1px;
    background: var(--fg-inv);
    opacity: .55;
  }

.bf-meta{
    margin-top: clamp(80px, 10vw, 140px);
    padding-top: 32px;
    border-top: 1px solid var(--hairline-inv);
    display:grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
  }

.bf-brand{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    max-width: 360px;
  }

.bf-logo{
    display: block;
    width: auto;
    height: auto;
    max-width: 240px;
    max-height: 80px;
    object-fit: contain;
    object-position: left center;
    opacity: .95;
  }

.bf-c-left{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 24px;
  }

.bf-c-link{
    position: relative;
    transition: opacity .2s var(--ease), color .2s var(--ease);
  }

.bf-c-link::before{
    content: "·";
    margin-right: 24px;
    margin-left: -16px;
    opacity: .5;
  }

.bf-c-link:hover{ color: var(--accent); }

@media (max-width: 768px){
    .bf-credits{ flex-direction: column; align-items: flex-start; gap: 8px; }
    .bf-c-left{ flex-direction: column; align-items: flex-start; gap: 6px; }
    .bf-c-link::before{ display: none; }
    .bf-meta{ grid-template-columns: 1fr; gap: 28px; }
    .bf-brand{ flex-direction: column; align-items: flex-start; gap: 18px; }
    .bf-logo{ height: 56px; }
  }

.inner-page .section{
    padding-top: clamp(48px, 6vw, 96px);
    padding-bottom: clamp(48px, 6vw, 96px);
  }

.inner-page{
    position: relative;
    background: var(--bg-dark);
  }

.inner-page::before,
  .inner-page::after{
    content: "";
    position: absolute;
    pointer-events: none;
  }

.inner-page::before{
    z-index: 0;
    left: 0;
    right: 0;
    top: 0;
    height: 95vh;
    background-color: var(--bg-dark);
    background-image: radial-gradient(
      circle at 1.2px 1.2px,
      rgba(212, 242, 107, 0.22) 1px,
      transparent 1.6px
    );
    background-size: 30px 30px;
    -webkit-mask-image: radial-gradient(
      ellipse 65% 70% at 30% 50%,
      #000 0%,
      rgba(0, 0, 0, 0.6) 45%,
      transparent 90%
    );
            mask-image: radial-gradient(
      ellipse 65% 70% at 30% 50%,
      #000 0%,
      rgba(0, 0, 0, 0.6) 45%,
      transparent 90%
    );
  }

.inner-page::after{
    z-index: 1;
    width: 35vw;
    height: 40vh;
    left: 5vw;
    top: 15vh;
    background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(212, 242, 107, 0.10), transparent 65%);
    filter: blur(50px);
    animation: aurora-drift 22s ease-in-out infinite alternate;
    will-change: transform, opacity;
  }

.inner-page .page-intro{
    padding-top: clamp(112px, 13vh, 168px);
    padding-bottom: clamp(40px, 5vw, 72px);
    position: relative;
    background: transparent;
    border-top: none;
  }

.inner-page .page-intro > .grid12{
    position: relative;
    z-index: 2;
  }

.inner-page > .section:not(.page-intro),
  .inner-page > .big-footer{
    position: relative;
    z-index: 5;
  }

.inner-page .nav.on-hero{
    border-bottom-color: transparent;
  }

@keyframes aurora-drift{
    0%   { transform: translate3d(0%,   0%,  0) scale(1);    opacity: .85; }
    50%  { transform: translate3d(4%,  -3%, 0) scale(1.05); opacity: 1;   }
    100% { transform: translate3d(-3%,  4%, 0) scale(0.97); opacity: .8;  }
  }

@media (prefers-reduced-motion: reduce){
    .inner-page::after{ animation: none; }
  }

.inner-page .grid12{
    grid-row-gap: 16px;
  }

.page-intro-eyebrow{
    grid-column: 1 / -1;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .7;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }

.page-intro-eyebrow .dot{
    display: inline-block;
    width: 7px; height: 7px;
    background: var(--lime);
    border-radius: 99px;
  }

.page-intro-title{
    grid-column: 1 / -1;
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(48px, 7vw, 104px);
    line-height: .92;
    letter-spacing: -.04em;
    color: var(--fg-inv);
  }

.page-intro-lead{
    grid-column: 1 / 9;
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.5;
    opacity: .8;
    max-width: 64ch;
    margin-top: clamp(20px, 2.4vw, 32px);
  }

.page-intro-meta{
    grid-column: 1 / -1;
    margin-top: clamp(28px, 3.5vw, 44px);
    padding-top: 18px;
    border-top: 1px solid var(--hairline-inv);
    display: flex;
    flex-wrap: wrap;
    gap: clamp(18px, 2.6vw, 32px);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

.page-intro-meta a{
    opacity: .65;
    transition: opacity .2s var(--ease), color .2s var(--ease);
  }

.page-intro-meta a::before{
    content: "→ ";
    margin-right: 4px;
    opacity: .5;
  }

.page-intro-meta a:hover{ opacity: 1; color: var(--lime); }

.inner-page .ip-title{
    grid-column: 1 / -1;
    margin-bottom: clamp(20px, 2.6vw, 36px);
  }

.inner-page .ip-title h2{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 48px);
    line-height: 1;
    letter-spacing: -.025em;
  }

.dates-strip{
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
  }

.date-card{
    background: var(--bg-cream);
    padding: clamp(22px, 2.4vw, 36px);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

.date-card-end .date-value{ color: var(--accent); }

.date-label{
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .6;
  }

.date-value{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(32px, 4vw, 56px);
    line-height: .95;
    letter-spacing: -.03em;
  }

.dates-note{
    grid-column: 1 / -1;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
    opacity: .7;
    max-width: 64ch;
  }

.works-compact{
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--hairline-inv);
    border: 1px solid var(--hairline-inv);
  }

.works-compact > div{
    background: var(--bg-dark);
    padding: clamp(22px, 2.4vw, 36px);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

.works-compact .wc-label{
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .6;
  }

.works-compact .wc-period{
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.1;
    letter-spacing: -.015em;
    color: var(--lime);
  }

.works-compact .wc-desc{
    font-size: 14px;
    line-height: 1.5;
    opacity: .8;
    max-width: 42ch;
  }

.inner-page .price-grid{
    grid-column: 1 / -1;
  }

.inner-page .price-card{
    padding: clamp(22px, 2.4vw, 36px);
    gap: 10px;
  }

.inner-page .price-card .p-cost{
    font-size: clamp(36px, 4vw, 56px);
    margin-top: 8px;
  }

.inner-page .price-card .p-list{
    margin-top: 6px;
    font-size: 14px;
    gap: 4px;
  }

.price-foot{
    grid-column: 1 / -1;
    margin-top: 16px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: .55;
  }

.disc-grid{
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hairline-inv);
    border: 1px solid var(--hairline-inv);
  }

.disc-card{
    background: var(--bg-dark);
    padding: clamp(22px, 2.4vw, 36px);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

.disc-num{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(40px, 4.6vw, 64px);
    line-height: 1;
    letter-spacing: -.035em;
    color: var(--lime);
  }

.disc-name{
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(17px, 1.4vw, 22px);
    line-height: 1.15;
    letter-spacing: -.005em;
    margin-top: 4px;
  }

.disc-desc{
    font-size: 14px;
    line-height: 1.5;
    opacity: .75;
    max-width: 38ch;
  }

.disc-note{
    grid-column: 1 / -1;
    margin-top: 16px;
    padding: 14px 18px;
    border-left: 3px solid var(--accent);
    background: rgba(255,90,31,.06);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
  }

.disc-note-mark{
    flex: 0 0 auto;
    width: 20px; height: 20px;
    background: var(--accent);
    color: var(--bg-dark);
    font-weight: 700;
    font-family: var(--mono);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 99px;
    margin-top: 1px;
  }

.pay-steps{
    grid-column: 1 / -1;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
  }

.pay-steps li{
    background: var(--bg-cream);
    padding: clamp(22px, 2.4vw, 36px);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

.pay-num{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .06em;
    color: var(--accent);
  }

.pay-steps h5{
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(17px, 1.4vw, 22px);
    line-height: 1.15;
    letter-spacing: -.01em;
    margin-bottom: 2px;
  }

.pay-steps p{
    font-size: 14px;
    line-height: 1.5;
    opacity: .8;
    max-width: 36ch;
  }

.contacts-grid{
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
  }

.section.dark .contacts-grid{
    background: var(--hairline-inv);
    border-color: var(--hairline-inv);
  }

.contact-card{
    background: var(--bg-cream);
    color: inherit;
    text-decoration: none;
    padding: clamp(28px, 3vw, 44px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 260px;
    transition: background .25s var(--ease), color .25s var(--ease);
  }

.section.dark .contact-card{ background: var(--bg-dark); }

.contact-card:hover{
    background: var(--lime);
    color: var(--bg-dark);
  }

.section.dark .contact-card:hover{
    background: var(--lime);
    color: var(--bg-dark);
  }

.contact-kind{
    display: flex;
    align-items: baseline;
    gap: 12px;
  }

.contact-num{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .06em;
    color: var(--accent);
    opacity: .85;
    
    position: relative;
    display: inline-block;
  }

.contacts-grid.reveal-stagger > .contact-card{
    transform: translateY(40px) scale(0.96);
    opacity: 0;
    transition: opacity .9s var(--ease), transform .9s var(--ease);
  }

.contacts-grid.reveal-stagger.in-view > .contact-card{
    transform: translateY(0) scale(1);
    opacity: 1;
  }

.contacts-grid.reveal-stagger.in-view > .contact-card:nth-child(1){ transition-delay: 0ms; }

.contacts-grid.reveal-stagger.in-view > .contact-card:nth-child(2){ transition-delay: 120ms; }

.contacts-grid.reveal-stagger.in-view > .contact-card:nth-child(3){ transition-delay: 240ms; }

.contacts-grid.reveal-stagger > .contact-card .contact-num{
    transform: scale(0.3);
    opacity: 0;
    transition: transform .55s var(--ease), opacity .55s var(--ease);
    transform-origin: left center;
  }

.contacts-grid.reveal-stagger.in-view > .contact-card .contact-num{
    transform: scale(1);
    opacity: .85;
  }

.contacts-grid.reveal-stagger.in-view > .contact-card:nth-child(1) .contact-num{ transition-delay: 350ms; }

.contacts-grid.reveal-stagger.in-view > .contact-card:nth-child(2) .contact-num{ transition-delay: 470ms; }

.contacts-grid.reveal-stagger.in-view > .contact-card:nth-child(3) .contact-num{ transition-delay: 590ms; }

.contact-label{
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .65;
  }

.contact-value{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.05;
    letter-spacing: -.02em;
    word-break: break-word;
    margin-top: 4px;
  }

.contact-desc{
    font-size: 14px;
    line-height: 1.5;
    opacity: .8;
    margin-top: auto;
    max-width: 40ch;
  }

.contact-cta{
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--hairline);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: .85;
  }

.section.dark .contact-cta{ border-top-color: var(--hairline-inv); }

.contact-card:hover .contact-cta{
    border-top-color: rgba(11, 11, 11, 0.3);
    opacity: 1;
  }

.contact-arr{ transition: transform .25s var(--ease); }

.contact-card:hover .contact-arr{ transform: translateX(4px); }

.org-grid{
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--hairline-inv);
    border: 1px solid var(--hairline-inv);
  }

.org-card{
    background: var(--bg-dark);
    padding: clamp(28px, 3vw, 44px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: inherit;
    text-decoration: none;
    transition: background .25s var(--ease), color .25s var(--ease);
  }

.org-card-link:hover{
    background: var(--lime);
    color: var(--bg-dark);
  }

.org-card-link:hover .org-label{ opacity: .7; }

.org-card-link:hover .org-desc{ opacity: 1; }

.org-cta{
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--hairline-inv);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: .85;
    color: var(--lime);
  }

.org-card-link:hover .org-cta{
    color: var(--bg-dark);
    border-top-color: rgba(11, 11, 11, 0.25);
    opacity: 1;
  }

.org-arr{ transition: transform .25s var(--ease); }

.org-card-link:hover .org-arr{ transform: translateX(4px); }

.org-card:not(.org-card-link):hover{
    background: var(--lime);
    color: var(--bg-dark);
  }

.org-card:not(.org-card-link):hover .org-label{ opacity: .7; }

.org-card:not(.org-card-link):hover .org-desc{ opacity: 1; }

.org-label{
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .55;
  }

.org-value{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1;
    letter-spacing: -.025em;
  }

.org-desc{
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.55;
    opacity: .8;
    max-width: 48ch;
  }

@media (max-width: 1024px){
    .contacts-grid{ grid-template-columns: 1fr; }
    .org-grid{ grid-template-columns: 1fr; }
  }

#story.section.cream{
    padding-top: clamp(60px, 7vw, 110px);
    padding-bottom: clamp(60px, 7vw, 110px);
  }

#story .grid12 > *{
    grid-column: 2 / 11;
  }

#story .about-stats{
    grid-column: 2 / 12;
  }

@media (max-width: 1024px){
    #story .grid12 > *,
    #story .about-stats{
      grid-column: 1 / -1;
    }
  }

.about-statement{
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(22px, 2.4vw, 34px);
    line-height: 1.2;
    letter-spacing: -.015em;
    margin-bottom: clamp(36px, 4.5vw, 64px);
    max-width: 32ch;
  }

.about-statement strong{ font-weight: 700; }

.about-statement em{
    font-style: italic;
    color: var(--accent);
  }

.about-body{
    font-size: clamp(17px, 1.4vw, 22px);
    line-height: 1.5;
    margin-bottom: clamp(28px, 3.4vw, 48px);
    max-width: 38ch;
    opacity: .88;
  }

.about-closer{
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.3;
    letter-spacing: -.015em;
    margin-bottom: clamp(56px, 7vw, 96px);
    max-width: 32ch;
    border-left: 3px solid var(--accent);
    padding-left: clamp(20px, 2vw, 28px);
  }

.about-closer em{
    font-style: italic;
    color: var(--accent);
  }

.about-stats{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
  }

.about-stat{
    background: var(--bg-cream);
    padding: clamp(24px, 2.8vw, 36px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

.about-stat-num{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(48px, 5.2vw, 80px);
    line-height: 0.9;
    letter-spacing: -.04em;
    color: var(--accent);
  }

.about-stat-label{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .7;
    max-width: 22ch;
  }

@media (max-width: 1024px){
    .about-stats{ grid-template-columns: 1fr 1fr; }
  }

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

.about-tagline{
    grid-column: 2 / 11;
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 2vw, 28px);
  }

.about-tagline-eyebrow{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .7;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

.about-tagline-eyebrow .dot{
    display: inline-block;
    width: 7px; height: 7px;
    background: var(--lime);
    border-radius: 99px;
  }

.about-tagline-text{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(40px, 6.5vw, 104px);
    line-height: 1;
    letter-spacing: -.035em;
  }

.about-tagline-text em{
    font-style: italic;
    font-weight: 500;
    color: var(--lime);
  }

@media (max-width: 1024px){
    .about-tagline{ grid-column: 1 / -1; }
  }

#contact-bot .bot-strip{
    grid-column: 1 / -1;
    margin-top: 0;
  }

#contact-bot .bot-strip{
    background: var(--lime);
    color: var(--bg-dark);
  }

#contact-bot .bot-strip::after{
    background: var(--bg-dark);
    opacity: .05;
  }

#contact-bot .bot-strip .bs-dot{
    background: var(--bg-dark);
  }

#contact-bot .bot-strip .bs-handle{
    background: var(--bg-dark);
    color: var(--lime);
    box-shadow: 0.15em 0 0 var(--bg-dark), -0.15em 0 0 var(--bg-dark);
  }

#contact-bot .bot-strip .bs-handle:hover{
    background: var(--bg-dark);
    color: var(--accent);
    box-shadow: 0.15em 0 0 var(--bg-dark), -0.15em 0 0 var(--bg-dark);
  }

#contact-bot .bot-strip .bs-cta{
    background: var(--bg-dark);
    color: var(--lime);
    border-color: var(--bg-dark);
  }

#contact-bot .bot-strip .bs-cta:hover{
    background: var(--bg-dark);
    color: var(--accent);
    border-color: var(--bg-dark);
  }

.inner-page .big-footer{
    padding-top: clamp(48px, 6vw, 96px);
  }

.inner-page .big-footer .bf-meta{
    margin-top: 0;
  }

@media (max-width: 1024px){
    .page-intro-lead{ grid-column: 1 / -1; }
    .dates-strip{ grid-template-columns: 1fr; }
    .works-compact{ grid-template-columns: 1fr; }
    .disc-grid{ grid-template-columns: 1fr; }
    .pay-steps{ grid-template-columns: 1fr; }
  }

@media (max-width: 1024px){
    .jury-companies{ grid-template-columns: repeat(4, 1fr); }
    .stages{ grid-template-columns: repeat(2, 1fr); }
    .price-grid{ grid-template-columns: 1fr; }
    .partners-cta{ grid-template-columns: 1fr; }
    .partners-cta-actions{ justify-self: start; }
    .nom-row{ grid-template-columns: 60px 1fr 1fr; }
    .nom-row .n-arrow{ display:none; }
    .bf-card{ grid-column: span 12; }
    .bf-meta{ grid-template-columns: 1fr 1fr; }
    .bf-brand{ grid-column: 1 / -1; max-width: none; flex-direction: row; align-items: center; gap: 32px; margin-bottom: 8px; }
    .bf-tagline{ flex: 1; }
    .hero-bottom{ grid-template-columns: 1fr; gap: 24px; }
    .hero-cta{ justify-self: start; }
  }

.bot-strip .bs-handle:hover{
    background: #FFFFFF;
    box-shadow: 0.15em 0 0 #FFFFFF, -0.15em 0 0 #FFFFFF;
    color: var(--fg);
  }

.bot-strip .bs-cta:hover{
    background: #FFFFFF;
    color: var(--fg);
    border-color: #FFFFFF;
  }

.audience-grid{
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
  }

.audience-card{
    background: var(--bg-cream);
    padding: clamp(24px, 2.6vw, 36px);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

.audience-label{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: .85;
  }

.audience-mark{
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: var(--accent);
  }

.audience-mark-hw{
    background: var(--lime);
    box-shadow: inset 0 0 0 1px var(--bg-dark);
  }

.audience-card p{
    font-size: 15px;
    line-height: 1.55;
    max-width: 48ch;
  }

.audience-note{
    grid-column: 1 / -1;
    margin-top: 16px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: .6;
    max-width: 80ch;
  }

.inner-page .track-section{
    
  }

.track-head{
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(20px, 3vw, 40px);
    align-items: start;
    margin-bottom: clamp(20px, 2.4vw, 32px);
  }

.track-num{
    font-family: var(--mono);
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 500;
    line-height: 0.85;
    letter-spacing: -.02em;
    opacity: .35;
  }

.track-name{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(36px, 4.6vw, 64px);
    line-height: .95;
    letter-spacing: -.035em;
    margin-bottom: 14px;
  }

.track-name em{
    font-style: italic;
    font-weight: 500;
  }

.section.dark .track-name em{ color: var(--lime); }

.section.cream .track-name em{ color: var(--accent); }

.track-meta{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }

.track-tag{
    display: inline-flex;
    align-items: center;
    padding: 5px 11px 6px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 1px solid currentColor;
    border-radius: 99px;
    opacity: .8;
  }

.track-tag-ph{ color: var(--accent); }

.track-tag-hw{ color: var(--lime); }

.section.cream .track-tag-hw{ color: var(--bg-dark); border-color: var(--bg-dark); }

.track-count{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .55;
    margin-left: 4px;
  }

.track-desc{
    grid-column: 1 / -1;
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.55;
    max-width: 72ch;
    opacity: .85;
    margin-bottom: clamp(20px, 2.4vw, 32px);
  }

.track-audience{
    grid-column: 1 / -1;
    margin-bottom: clamp(28px, 3.2vw, 44px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--hairline-inv);
    border: 1px solid var(--hairline-inv);
  }

.section.cream .track-audience{
    background: var(--hairline);
    border-color: var(--hairline);
  }

.ta-card{
    background: var(--bg-dark);
    padding: clamp(18px, 2vw, 26px) clamp(18px, 2vw, 26px);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

.section.cream .ta-card{ background: var(--bg-cream); }

.ta-label{
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .85;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

.ta-dot{
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 99px;
  }

.ta-dot-ph{ background: var(--accent); }

.ta-dot-hw{ background: var(--lime); }

.section.cream .ta-dot-hw{ box-shadow: inset 0 0 0 1px var(--bg-dark); }

.ta-card p{
    font-size: 13.5px;
    line-height: 1.5;
    opacity: .8;
    margin-top: 2px;
  }

@media (max-width: 720px){
    .track-audience{ grid-template-columns: 1fr; }
  }

.track-note{
    grid-column: 1 / -1;
    margin-bottom: clamp(20px, 2.4vw, 32px);
    padding: 16px 20px;
    border-left: 3px solid var(--lime);
    background: rgba(212, 242, 107, 0.06);
    font-size: 14px;
    line-height: 1.55;
    max-width: 80ch;
  }

.section.cream .track-note{
    border-left-color: var(--accent);
    background: rgba(255, 90, 31, 0.05);
  }

.cat-list{
    grid-column: 1 / -1;
    border-top: 1px solid var(--hairline-inv);
  }

.section.cream .cat-list{ border-top-color: var(--hairline); }

.cat-item{
    border-bottom: 1px solid var(--hairline-inv);
  }

.section.cream .cat-item{ border-bottom-color: var(--hairline); }

.cat-item summary{
    list-style: none;
    cursor: pointer;
    padding: 16px 4px;
    display: grid;
    grid-template-columns: 50px 1fr 24px;
    gap: 16px;
    align-items: baseline;
    transition: background .15s ease, padding .15s ease;
  }

.cat-item summary::-webkit-details-marker{ display: none; }

.cat-item summary:hover{
    background: rgba(255,255,255,.02);
    padding-left: 12px;
    padding-right: 12px;
  }

.section.cream .cat-item summary:hover{ background: rgba(0,0,0,.025); }

.cat-num{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .06em;
    opacity: .5;
  }

.cat-name{
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.2;
    letter-spacing: -.005em;
  }

.cat-plus{
    position: relative;
    width: 14px;
    height: 14px;
    align-self: center;
    justify-self: end;
    opacity: .55;
    transition: transform .25s ease, opacity .2s ease;
  }

.cat-plus::before,
  .cat-plus::after{
    content: "";
    position: absolute;
    background: currentColor;
  }

.cat-plus::before{
    top: 50%; left: 0; right: 0;
    height: 1px;
    transform: translateY(-50%);
  }

.cat-plus::after{
    left: 50%; top: 0; bottom: 0;
    width: 1px;
    transform: translateX(-50%);
    transition: transform .25s ease;
  }

.cat-item[open] .cat-plus{ opacity: .9; }

.cat-item[open] .cat-plus::after{ transform: translateX(-50%) scaleY(0); }

.cat-body{
    grid-column: 1 / -1;
    padding: 4px 4px 18px 66px;
    font-size: 14.5px;
    line-height: 1.55;
    opacity: .8;
    max-width: 80ch;
  }

.cat-foot{
    grid-column: 1 / -1;
    margin-top: 20px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: .55;
  }

.cat-flat-grid{
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
  }

.section.dark .cat-flat-grid{
    background: var(--hairline-inv);
    border-color: var(--hairline-inv);
  }

.cat-flat{
    background: var(--bg-cream);
    padding: 16px 18px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-family: var(--display);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: -.005em;
  }

.section.dark .cat-flat{ background: var(--bg-dark); }

.cat-flat .cat-num{
    font-family: var(--mono);
    font-weight: 500;
    color: var(--accent);
    opacity: .85;
  }

.tech-grid{
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
  }

.section.dark .tech-grid{
    background: var(--hairline-inv);
    border-color: var(--hairline-inv);
  }

.tech-card{
    background: var(--bg-cream);
    padding: clamp(22px, 2.4vw, 32px);
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

.section.dark .tech-card{ background: var(--bg-dark); }

.tech-icon{
    font-family: var(--mono);
    font-size: 28px;
    color: var(--lime);
    opacity: .7;
    line-height: 1;
  }

.section.cream .tech-icon{ color: var(--accent); opacity: .8; }

.tech-card h4{
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(17px, 1.3vw, 20px);
    line-height: 1.15;
    letter-spacing: -.01em;
  }

.tech-card ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
    opacity: .85;
  }

.tech-card li{
    position: relative;
    padding-left: 16px;
  }

.tech-card li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 1px;
    background: var(--lime);
    opacity: .7;
  }

.section.cream .tech-card li::before{ background: var(--accent); opacity: .8; }

.tech-rules{
    grid-column: 1 / -1;
    margin-top: clamp(20px, 2.4vw, 32px);
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

.tech-rules > p{
    font-size: 15px;
    line-height: 1.55;
  }

.tech-warn{
    padding: 14px 18px;
    border-left: 3px solid var(--accent);
    background: rgba(255, 90, 31, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.55;
  }

.tech-warn-mark{
    flex: 0 0 auto;
    width: 20px; height: 20px;
    background: var(--accent);
    color: var(--bg-dark);
    font-weight: 700;
    font-family: var(--mono);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 99px;
    margin-top: 1px;
  }

.exc-stages{
    grid-column: 1 / -1;
    margin-bottom: clamp(28px, 3.2vw, 44px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
  }

.section.dark .exc-stages{
    background: var(--hairline-inv);
    border-color: var(--hairline-inv);
  }

.exc-stage{
    background: var(--bg-cream);
    padding: clamp(24px, 3vw, 40px);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(20px, 2.4vw, 32px);
    align-items: start;
  }

.section.dark .exc-stage{ background: var(--bg-dark); }

.exc-stage-num{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(40px, 4.5vw, 64px);
    line-height: 0.9;
    letter-spacing: -.035em;
    color: var(--accent);
    opacity: .9;
  }

.exc-stage-body h4{
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(19px, 1.5vw, 24px);
    line-height: 1.15;
    letter-spacing: -.01em;
    margin-bottom: 10px;
  }

.exc-stage-body > p{
    font-size: 14.5px;
    line-height: 1.5;
    opacity: .8;
    margin-bottom: 18px;
    max-width: 38ch;
  }

.exc-stage-dates{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--hairline);
  }

.section.dark .exc-stage-dates{ border-top-color: var(--hairline-inv); }

.exc-stage-dates > div{
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

.exc-date-label{
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .6;
  }

.exc-date-value{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1;
    letter-spacing: -.015em;
  }

@media (max-width: 1024px){
    .exc-stages{ grid-template-columns: 1fr; }
  }

@media (max-width: 600px){
    .exc-stage{ grid-template-columns: 1fr; gap: 12px; }
    .exc-stage-num{ font-size: 32px; }
  }

.cta-block{
    grid-column: 1 / -1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 2.6vw, 32px);
    padding: clamp(40px, 6vw, 80px) 0;
  }

.cta-eyebrow{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .65;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

.cta-eyebrow .dot{
    display: inline-block;
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 99px;
  }

.cta-headline{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(40px, 5.6vw, 88px);
    line-height: .98;
    letter-spacing: -.035em;
  }

.cta-headline em{
    font-style: italic;
    font-weight: 500;
    color: var(--accent);
  }

.cta-sub{
    font-size: clamp(15px, 1.2vw, 19px);
    line-height: 1.5;
    opacity: .75;
    max-width: 50ch;
  }

.cta-btn{
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: clamp(20px, 2.2vw, 28px) clamp(36px, 4vw, 56px);
    background: var(--bg-dark);
    color: var(--fg-inv);
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(18px, 1.6vw, 24px);
    letter-spacing: -.01em;
    border: 1px solid var(--bg-dark);
    transition: background .25s var(--ease), color .25s var(--ease), gap .25s var(--ease), transform .25s var(--ease);
  }

.cta-btn:hover{
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-dark);
    gap: 22px;
  }

.cta-btn-arrow{
    font-size: 1.05em;
    transition: transform .25s var(--ease);
  }

.cta-btn:hover .cta-btn-arrow{ transform: translateX(2px); }

@media (max-width: 1024px){
    .audience-grid{ grid-template-columns: 1fr; }
    .cat-flat-grid{ grid-template-columns: 1fr 1fr; }
    .tech-grid{ grid-template-columns: 1fr; }
    .track-head{ grid-template-columns: 1fr; gap: 12px; }
    .track-num{ font-size: 32px; }
    .cat-item summary{ grid-template-columns: 40px 1fr 20px; gap: 12px; }
    .cat-body{ padding-left: 52px; }
  }

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

.jury-soon{
    grid-column: 1 / -1;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.4vw, 32px);
  }

.js-eyebrow{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .75;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    align-self: flex-start;
  }

.js-pulse{
    position: relative;
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 99px;
    background: var(--accent);
  }

.js-pulse::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--accent);
    animation: js-pulse 2.4s ease-out infinite;
  }

@keyframes js-pulse {
    0%   { transform: scale(1);   opacity: .55; }
    100% { transform: scale(2.8); opacity: 0;   }
  }

@media (prefers-reduced-motion: reduce){
    .js-pulse::before{ animation: none; }
  }

.js-headline{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(40px, 5.6vw, 88px);
    line-height: .98;
    letter-spacing: -.035em;
  }

.js-headline em{
    font-style: italic;
    font-weight: 500;
    background: var(--bg-dark);
    color: var(--fg-inv);
    box-shadow: 0.12em 0 0 var(--bg-dark), -0.12em 0 0 var(--bg-dark);
    padding: 0 0.02em;
  }

.js-body{
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.55;
    opacity: .8;
    max-width: 60ch;
  }

.js-tracks{
    margin-top: clamp(12px, 2vw, 24px);
    padding-top: clamp(20px, 2.5vw, 32px);
    border-top: 1px solid var(--hairline);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
  }

.js-track{
    background: var(--bg-cream);
    padding: clamp(18px, 2vw, 28px) clamp(16px, 1.6vw, 22px);
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(15px, 1.2vw, 18px);
    letter-spacing: -.005em;
    display: flex;
    align-items: baseline;
    gap: 10px;
  }

.js-track-num{
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--accent);
  }

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

.r-intro-link{
    position: relative;
    color: inherit;
    border-bottom: 1px dashed var(--lime);
    padding-bottom: 1px;
    transition: color .2s var(--ease), border-color .2s var(--ease);
  }

.r-intro-link:hover{ color: var(--lime); border-bottom-style: solid; }

.r-about-lead{
    grid-column: 1 / -1;
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.55;
    max-width: 80ch;
    margin-bottom: clamp(28px, 3.2vw, 44px);
  }

.r-about-note{
    grid-column: 1 / -1;
    margin-top: clamp(24px, 3vw, 36px);
    padding: 14px 18px;
    border-left: 3px solid var(--accent);
    background: rgba(255, 90, 31, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    line-height: 1.55;
    max-width: 80ch;
  }

.r-about-note-mark{
    font-family: var(--mono);
    color: var(--accent);
    font-size: 20px;
    line-height: 1;
    opacity: .85;
  }

.score-heading{
    grid-column: 1 / -1;
    margin-bottom: clamp(14px, 1.5vw, 20px);
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
  }

.score-heading h3{
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(20px, 1.8vw, 26px);
    line-height: 1;
    letter-spacing: -.015em;
  }

.score-heading p{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .55;
  }

.score-grid{
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
  }

.section.dark .score-grid{
    background: var(--hairline-inv);
    border-color: var(--hairline-inv);
  }

.score-card{
    background: var(--bg-cream);
    padding: clamp(20px, 2.4vw, 32px);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

.section.dark .score-card{ background: var(--bg-dark); }

.score-points{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(40px, 4.4vw, 64px);
    line-height: 0.95;
    letter-spacing: -.035em;
    color: var(--accent);
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
  }

.score-unit{
    font-family: var(--mono);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: inherit;
    opacity: .55;
  }

.score-label{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .75;
  }

.r-track-lead{
    grid-column: 1 / -1;
    margin-top: -8px;
    margin-bottom: clamp(24px, 3vw, 40px);
    font-size: clamp(15px, 1.15vw, 17px);
    line-height: 1.5;
    max-width: 70ch;
    opacity: .8;
  }

.r-cards{
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
  }

.section.dark .r-cards{
    background: var(--hairline-inv);
    border-color: var(--hairline-inv);
  }

.r-card{
    background: var(--bg-cream);
    color: inherit;
    padding: clamp(24px, 2.8vw, 36px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    position: relative;
    min-height: 200px;
    transition: background .25s var(--ease);
  }

.section.dark .r-card{ background: var(--bg-dark); }

.r-card-soon{
    cursor: default;
    transition: background .25s var(--ease), color .25s var(--ease);
  }

.r-card-soon:hover{
    background: var(--lime);
    color: var(--bg-dark);
  }

.section.dark .r-card-soon:hover{
    background: var(--lime);
    color: var(--bg-dark);
  }

.r-card-soon .r-card-link{
    color: var(--accent);
    opacity: 1;
  }

.r-card-soon:hover .r-card-link{
    color: var(--bg-dark);
  }

a.r-card:hover{
    background: rgba(212, 242, 107, 0.18);
  }

.section.dark a.r-card:hover{
    background: rgba(212, 242, 107, 0.12);
  }

a.r-card:hover .r-card-link{
    color: var(--bg-dark);
    opacity: 1;
  }

.section.dark a.r-card:hover .r-card-link{
    color: var(--lime);
  }

a.r-card:hover .r-card-arrow{
    transform: translateX(4px);
  }

.r-card-tag{
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .6;
    align-self: flex-start;
  }

.r-card-title{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 48px);
    line-height: 0.95;
    letter-spacing: -.03em;
    margin-top: auto;
  }

.r-card-sub{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .6;
  }

.r-card-link{
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--hairline);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: .85;
    transition: opacity .25s var(--ease), color .25s var(--ease);
  }

.section.dark .r-card-link{ border-top-color: var(--hairline-inv); }

.r-card-arrow{
    transition: transform .25s var(--ease);
  }

.r-card:first-child{
    background: var(--bg-dark);
    color: var(--fg-inv);
  }

.section.dark .r-card:first-child{
    background: var(--bg-cream);
    color: var(--fg);
  }

.r-card:first-child .r-card-tag{
    color: var(--lime);
    opacity: 1;
  }

.section.dark .r-card:first-child .r-card-tag{
    color: var(--accent);
  }

.r-card:first-child .r-card-title{
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.05;
  }

.r-card:first-child .r-card-link{
    border-top-color: var(--hairline-inv);
  }

.section.dark .r-card:first-child .r-card-link{
    border-top-color: var(--hairline);
  }

.r-card-soon:first-child:hover{
    background: var(--lime);
    color: var(--bg-dark);
  }

.section.dark .r-card-soon:first-child:hover{
    background: var(--lime);
    color: var(--bg-dark);
  }

@media (max-width: 1100px){
    .score-grid{ grid-template-columns: repeat(5, 1fr); }
    .r-cards{ grid-template-columns: 1fr 1fr; }
  }

@media (max-width: 820px){
    .score-grid{ grid-template-columns: repeat(3, 1fr); }
  }

@media (max-width: 600px){
    .score-grid{ grid-template-columns: 1fr 1fr; }
    .r-cards{ grid-template-columns: 1fr; }
  }

.contact-num{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .06em;
    color: var(--accent);
    opacity: .85;
  }

.org-card{
    background: var(--bg-dark);
    padding: clamp(28px, 3vw, 44px);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

.legal-doc{
    grid-column: 1 / 11;
    max-width: 920px;
    font-size: 15px;
    line-height: 1.65;
  }

.legal-doc > * + *{
    margin-top: 16px;
  }

.legal-section-title{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(20px, 2.1vw, 28px);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-top: clamp(36px, 4vw, 56px);
    padding-top: clamp(20px, 2.4vw, 28px);
    border-top: 1px solid var(--hairline);
  }

.legal-doc > .legal-section-title:first-child{
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

.legal-doc p{
    font-size: 15px;
    line-height: 1.65;
    opacity: .9;
  }

.legal-list{
    list-style: none;
    counter-reset: legal-counter;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

.legal-list li{
    counter-increment: legal-counter;
    position: relative;
    padding-left: 40px;
    font-size: 15px;
    line-height: 1.6;
    opacity: .9;
  }

.legal-list li::before{
    content: counter(legal-counter, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .06em;
    color: var(--accent);
    opacity: .85;
    padding-top: 4px;
  }

.legal-list strong{
    font-weight: 600;
    color: var(--fg);
    opacity: 1;
  }

.legal-doc a{
    color: var(--fg);
    border-bottom: 1px solid var(--accent);
    transition: color .2s var(--ease), border-color .2s var(--ease);
  }

.legal-doc a:hover{
    color: var(--accent);
  }

@media (max-width: 1024px){
    .legal-doc{ grid-column: 1 / -1; }
  }

.page-intro-title .year{
    display: inline-block;
    font-style: italic;
    font-weight: 500;
    font-size: 0.55em;
    letter-spacing: -.03em;
    vertical-align: 0.32em;
    color: var(--lime);
    margin-left: 0.05em;
  }

.w-ceremony-link{
    display: inline-flex;
    align-items: center;
    color: var(--lime);
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .04em;
    border-bottom: 1px solid var(--lime);
    padding-bottom: 2px;
    transition: color .2s var(--ease), border-color .2s var(--ease);
  }

.w-ceremony-link:hover{
    color: var(--fg-inv);
    border-bottom-color: var(--fg-inv);
  }

.year-nav-section{
    padding-top: clamp(28px, 3vw, 44px) !important;
    padding-bottom: clamp(28px, 3vw, 44px) !important;
    border-top: 1px solid var(--hairline-inv);
  }

.year-nav{
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 44px);
    flex-wrap: wrap;
  }

.year-nav-label{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .55;
  }

.year-nav-list{
    display: flex;
    align-items: center;
    gap: clamp(8px, 1vw, 14px);
    flex-wrap: wrap;
  }

.year-nav-item{
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(15px, 1.3vw, 18px);
    letter-spacing: -.005em;
    padding: 8px 16px;
    border: 1px solid var(--hairline-inv);
    border-radius: 99px;
    transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  }

.year-nav-item:hover{
    background: var(--lime);
    color: var(--bg-dark);
    border-color: var(--lime);
  }

.year-nav-active{
    background: var(--lime);
    color: var(--bg-dark);
    border-color: var(--lime);
    pointer-events: none;
  }

.year-nav-soon{
    opacity: .35;
    pointer-events: none;
    cursor: default;
  }

@media (max-width: 600px){
    .year-nav{ flex-direction: column; align-items: flex-start; gap: 14px; }
  }

.w-track-head{
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(20px, 3vw, 40px);
    align-items: start;
    margin-bottom: clamp(28px, 3.4vw, 48px);
  }

.w-categories{
    grid-column: 1 / -1;
    border-top: 1px solid var(--hairline-inv);
    display: flex;
    flex-direction: column;
  }

.section.cream .w-categories{ border-top-color: var(--hairline); }

.w-category{
    border-bottom: 1px solid var(--hairline-inv);
    padding: clamp(28px, 3.4vw, 44px) 0;
  }

.section.cream .w-category{ border-bottom-color: var(--hairline); }

.w-category-summary{
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
    align-items: baseline;
    margin-bottom: clamp(20px, 2.4vw, 32px);
  }

.w-category-num{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .06em;
    opacity: .55;
  }

.w-category-name{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.1;
    letter-spacing: -.02em;
  }

.w-category-body{
    padding-left: 66px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

.w-medal-group{
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 32px;
    align-items: start;
  }

.w-medal{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 7px;
    border-radius: 99px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    align-self: start;
  }

.w-medal-gold{
    background: #E5C260;
    color: #2A1F00;
  }

.w-medal-silver{
    background: #C8CDD3;
    color: #1B1F23;
  }

.w-medal-bronze{
    background: #C28C5A;
    color: #2A1500;
  }

.w-medal-icon{
    font-size: 12px;
    line-height: 1;
  }

.w-works{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

.w-work{
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--hairline-inv);
  }

.section.cream .w-work{ border-bottom-color: var(--hairline); }

.w-work:last-child{
    border-bottom: none;
    padding-bottom: 0;
  }

.w-work-title{
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(15px, 1.15vw, 17px);
    line-height: 1.45;
    letter-spacing: -.005em;
    margin-bottom: 4px;
  }

.w-work-agency{
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .04em;
    color: var(--accent);
    opacity: .9;
  }

.w-special-grid{
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
  }

.w-special-card{
    background: var(--bg-cream);
    padding: clamp(22px, 2.4vw, 32px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 160px;
    transition: background .25s var(--ease), color .25s var(--ease);
    cursor: default;
  }

.w-special-card:hover{
    background: var(--lime);
    color: var(--bg-dark);
  }

.w-special-card:hover .w-special-label{ opacity: .75; }

.w-special-card:hover .w-special-winner{ color: var(--bg-dark); }

.w-special-label{
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .6;
  }

.w-special-winner{
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(18px, 1.7vw, 24px);
    line-height: 1.15;
    letter-spacing: -.015em;
    margin-top: auto;
  }

@media (max-width: 1024px){
    .w-medal-group{ grid-template-columns: 1fr; gap: 14px; }
    .w-category-body{ padding-left: 8px; }
    .w-special-grid{ grid-template-columns: 1fr 1fr; }
    .w-track-head{ grid-template-columns: 1fr; gap: 12px; }
  }

@media (max-width: 600px){
    .w-special-grid{ grid-template-columns: 1fr; }
    .w-category-summary{ grid-template-columns: 40px 1fr; gap: 12px; }
    .w-category-body{ padding-left: 0; }
  }

/* =========================================================
   MedMen Awards 2026 — extras added on top of imported page CSS
   - no-JS reveal fallback (CRITICAL: keeps content visible if JS fails)
   - cookie banner
   - mobile burger menu
   - "soon" winners page layout
   - skip-link for a11y
   ========================================================= */

/* ---------- A11y: skip-link ---------- */
.skip-link{
  position:absolute; top:-40px; left:0;
  background:#0B0B0B; color:#F6F1E8; padding:8px 16px;
  z-index:9999; text-decoration:none; border-radius:0 0 8px 0;
  font-family: var(--mono, "JetBrains Mono", monospace); font-size:13px;
}
.skip-link:focus{ top:0; }
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ---------- Reveal-on-scroll DISABLED ----------
   Изначально reveal-* элементы имеют opacity:0 и появляются по
   IntersectionObserver. Проблема: при первой загрузке (или скриншоте
   без скролла) пользователь видит пустые блоки между секциями.

   Аварийное решение: жёстко форсируем всё reveal-* в видимое состояние.
   Анимация load-in убирается, но контент всегда доступен.
   Если будут жалобы на «слишком статично» — заведём отдельную задачу
   на корректный reveal с rootMargin и фолбэком на видимость.        */
.reveal-up,
.reveal-up-soft,
.reveal-stagger > *,
.reveal-stagger,
.reveal-scale,
.sec-head .sec-eyebrow,
.sec-head .sec-title,
.sec-head .lead,
.jc-head .sec-eyebrow,
.jc-head .jc-h,
.ss-lead .sec-eyebrow,
.ss-lead .ss-text,
.big-footer .bf-title,
.big-footer .bf-eyebrow,
.big-footer .bf-sub,
.bot-strip{
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* ---------- Cookie banner ---------- */
.cookie-banner{
  position:fixed; left:16px; right:16px; bottom:16px; z-index:9000;
  display:flex; gap:16px; align-items:center; flex-wrap:wrap;
  background:#0B0B0B; color:#F6F1E8;
  padding:14px 18px; border-radius:14px;
  box-shadow:0 12px 40px rgba(0,0,0,.35);
  font-family: var(--display, "Bricolage Grotesque", sans-serif);
  font-size:14px; line-height:1.45;
  transform:translateY(120%); opacity:0;
  transition: transform .35s var(--ease, cubic-bezier(.22,.61,.36,1)), opacity .35s var(--ease, cubic-bezier(.22,.61,.36,1));
  max-width: 720px; margin-left:auto;
}
.cookie-banner.is-visible{ transform:translateY(0); opacity:1; }
.cookie-banner[hidden]{ display:none !important; }
.cookie-banner .cb-text{ flex:1 1 220px; min-width:0; }
.cookie-banner a{ color:#D4F26B; text-decoration:underline; text-underline-offset:3px; }
.cookie-banner .cb-accept{
  background:#D4F26B; color:#0B0B0B; border:0;
  padding:10px 18px; border-radius:99px; cursor:pointer;
  font-weight:600; font-family:inherit; font-size:14px;
  min-height:44px;
}
.cookie-banner .cb-accept:hover{ background:#c4e25a; }
.cookie-banner .cb-accept:focus-visible{ outline:2px solid #FF5A1F; outline-offset:2px; }
@media (max-width: 480px){
  .cookie-banner{ left:8px; right:8px; bottom:8px; padding:12px 14px; font-size:13px; }
}

/* ---------- Mobile burger menu ---------- */
.nav-toggle{
  display:none;
  background:transparent; border:0; cursor:pointer;
  width:44px; height:44px; padding:10px;
  position:relative; z-index:10001;
}
.nav-toggle span{
  display:block; width:24px; height:2px; margin:5px auto;
  background: currentColor; border-radius:2px;
  transition: transform .25s var(--ease, ease), opacity .25s var(--ease, ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px){
  .nav-toggle{ display:block; }
  .nav .menu{
    position:fixed; inset:0; top:64px;
    background:#0B0B0B; color:#F6F1E8;
    flex-direction:column; align-items:flex-start; justify-content:flex-start;
    gap:0; padding:24px clamp(20px, 5vw, 40px);
    transform: translateX(100%);
    transition: transform .35s var(--ease, ease);
    z-index:10000; overflow-y:auto;
  }
  .nav .menu.is-open{ transform: translateX(0); }
  .nav .menu > a,
  .nav .menu > .menu-item-dropdown > a{
    width:100%; padding:16px 0; font-size:18px;
    border-bottom:1px solid rgba(246,241,232,.12);
    min-height:44px; display:flex; align-items:center;
  }
  .nav .menu .menu-dropdown{
    position:static; display:flex; flex-direction:column;
    background:transparent; box-shadow:none; padding:0 0 0 16px;
    opacity:1; visibility:visible; transform:none;
  }
  .nav .menu .menu-dropdown a{
    padding:10px 0; font-size:15px; opacity:.75;
    border-bottom:0;
  }
  .nav .btn-nav{ display:none; }
  body.nav-open{ overflow:hidden; }
}

/* dropdown soon-style links */
.dropdown-soon{ opacity:.55; }
.menu-with-arrow.is-active{ color:#D4F26B; }

/* Plate where the «Подать работу» button used to be — shows when applications open */
.nav-cta-soon{
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: 1px solid rgba(246,241,232,.35);
  border-radius: 99px;
  opacity: .75;
  white-space: nowrap;
  color: inherit;
}
@media (max-width: 900px){
  .nav-cta-soon{ display: none; }
}

/* Disabled-state for any «Подать работу» CTA elsewhere on the site (price-cta, nominations cta) */
.btn.is-disabled,
.cta-btn.is-disabled,
a.btn-apply-soon{
  pointer-events: none;
  opacity: .6;
  cursor: not-allowed;
  background: rgba(212,242,107,.55) !important;
  color: #0B0B0B !important;
}
.apply-soon-note{
  display: inline-block;
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .65;
  margin-top: 8px;
}

/* ---------- Soon page (winners archives) — standalone block, no .sec-head ---------- */
.soon-page{
  min-height: 70vh;
  background:#0B0B0B; color:#F6F1E8;
  padding: clamp(96px, 14vw, 180px) clamp(20px, 5vw, 64px) clamp(64px, 9vw, 120px);
}
.soon-wrap{
  max-width: 980px; margin: 0 auto;
  display:flex; flex-direction:column; gap: 20px;
}
.soon-eyebrow{
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(246,241,232,.7);
  display:flex; align-items:center; gap:10px;
}
.soon-eyebrow .dot{
  width:7px; height:7px; border-radius:99px; background:#D4F26B; display:inline-block;
}
.soon-title{
  font-family: var(--display, "Bricolage Grotesque", sans-serif);
  font-weight: 700;
  font-size: clamp(40px, 9vw, 96px);
  line-height: 1.02; letter-spacing: -.02em;
  margin: 0; color: #F6F1E8;
}
.soon-title em{ color:#D4F26B; font-style:normal; }
.soon-lead{
  color: rgba(246,241,232,.78);
  max-width: 56ch;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
  margin: 0;
}
.soon-actions{
  display:flex; gap:18px; align-items:center; flex-wrap:wrap;
  margin-top: 12px;
}
.soon-actions .link-cta{
  color:#F6F1E8;
  border-bottom: 1px solid rgba(246,241,232,.4);
  padding-bottom: 2px;
  font-weight: 500;
}
.soon-actions .link-cta:hover{ color:#D4F26B; border-color:#D4F26B; }

/* ---------- Active nav state ---------- */
.nav .menu > a[aria-current="page"]{
  color:#D4F26B; font-weight:600;
}

/* ---------- Misc fixes ---------- */
html{ scroll-behavior: smooth; }
img, video{ max-width:100%; height:auto; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}

/* Prevent horizontal scroll on mobile */
html, body{ overflow-x: hidden; max-width: 100vw; }

/* Ensure touch targets are >= 44px on key controls (a11y) */
.btn, .btn-sm, .menu a, .faq-q{ min-height: 44px; }

/* Page-updated stamp */
.page-updated{
  text-align:center; padding:24px 16px;
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size:12px; opacity:.5;
}

/* =========================================================
   404 page — standalone visual layer.
   Selectors are .nf-* (not-found) and body[data-page="404"]-scoped
   so they don't conflict with the rest of the site.
   ========================================================= */
body[data-page="404"]{
  background: #0B0B0B;
  color: #F6F1E8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
body[data-page="404"] main#main{
  flex: 1;
  display: flex;
}
/* Скрываем тяжёлый big-footer на 404 — оставляем минимальный stage + nav */
body[data-page="404"] .big-footer{ display: none; }

/* Stage — aurora + dot grid background */
.nf-stage{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(96px, 12vw, 160px) clamp(20px, 4vw, 60px) clamp(48px, 8vw, 96px);
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(rgba(246,241,232,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 16px 16px;
  width: 100%;
}
.nf-stage::before,
.nf-stage::after{
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  will-change: transform, opacity;
}
.nf-stage::before{
  width: 50vw; height: 50vw;
  top: -10vw; right: -8vw;
  background: radial-gradient(circle at 50% 50%, rgba(255,90,31,.4), rgba(255,90,31,0) 60%);
  animation: nf-aurora-1 22s ease-in-out infinite alternate;
}
.nf-stage::after{
  width: 55vw; height: 55vw;
  bottom: -18vw; left: -12vw;
  background: radial-gradient(circle at 50% 50%, rgba(212,242,107,.3), rgba(212,242,107,0) 60%);
  animation: nf-aurora-2 28s ease-in-out infinite alternate;
}
@keyframes nf-aurora-1 {
  0%   { transform: translate(0, 0)        scale(1);     opacity: .45; }
  100% { transform: translate(-6vw, 4vw)    scale(1.15);  opacity: .65; }
}
@keyframes nf-aurora-2 {
  0%   { transform: translate(0, 0)        scale(1);     opacity: .35; }
  100% { transform: translate(5vw, -3vw)    scale(1.2);   opacity: .55; }
}
@media (prefers-reduced-motion: reduce){
  .nf-stage::before, .nf-stage::after{ animation: none; }
}
/* На очень узких экранах отключаем aurora-блобы (батарея, fps) */
@media (max-width: 480px){
  .nf-stage::before, .nf-stage::after{ animation: none; opacity: .25; filter: blur(40px); }
}

.nf-stage-inner{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 72px);
}

/* Eyebrow */
.nf-eyebrow{
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: .7;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nf-eyebrow .dot{
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #FF5A1F;
  box-shadow: 0 0 12px #FF5A1F;
  animation: nf-dot-pulse 2.4s ease-in-out infinite;
}
@keyframes nf-dot-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .5; transform: scale(.85); }
}
@media (prefers-reduced-motion: reduce){
  .nf-eyebrow .dot{ animation: none; }
}

/* Big 404 */
.nf-num{
  font-family: var(--display, "Bricolage Grotesque", sans-serif);
  font-weight: 700;
  font-size: clamp(120px, 28vw, 460px);
  line-height: .85;
  letter-spacing: -.05em;
  display: flex;
  align-items: baseline;
  gap: clamp(4px, 1.2vw, 24px);
  color: #F6F1E8;
  user-select: none;
  flex-wrap: nowrap;
}
.nf-d1, .nf-d2, .nf-d3{ display: inline-block; transition: transform .6s var(--ease, cubic-bezier(.22,.61,.36,1)); }
.nf-d1{ transform: translateY(-3%) rotate(-2deg);   animation: nf-drift-1 9s ease-in-out infinite alternate; }
.nf-d2{
  background: #D4F26B; color: #0B0B0B; padding: 0 .04em;
  box-shadow: 0.12em 0 0 #D4F26B, -0.12em 0 0 #D4F26B;
  transform: translateY(4%); animation: nf-drift-2 11s ease-in-out infinite alternate;
}
.nf-d3{ transform: translateY(-2%) rotate(1.5deg);  animation: nf-drift-3 10s ease-in-out infinite alternate; }
@keyframes nf-drift-1 { 0% { transform: translateY(-3%) rotate(-2deg); }   100% { transform: translateY(-1%) rotate(-3.5deg); } }
@keyframes nf-drift-2 { 0% { transform: translateY(4%) scale(1); }          100% { transform: translateY(2%) scale(1.04); } }
@keyframes nf-drift-3 { 0% { transform: translateY(-2%) rotate(1.5deg); }   100% { transform: translateY(0%) rotate(3deg); } }
@media (prefers-reduced-motion: reduce){
  .nf-d1, .nf-d2, .nf-d3{ animation: none; }
}

/* Message */
.nf-msg{ max-width: 56ch; display: flex; flex-direction: column; gap: 18px; }
.nf-h{
  font-family: var(--display, "Bricolage Grotesque", sans-serif);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.05; letter-spacing: -.02em;
  margin: 0; color: #F6F1E8;
}
.nf-h em{
  font-style: italic; font-weight: 500;
  background: #FF5A1F; color: #0B0B0B; padding: 0 .12em;
  box-shadow: 0.12em 0 0 #FF5A1F, -0.12em 0 0 #FF5A1F;
}
.nf-p{
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55; opacity: .8; max-width: 52ch; margin: 0;
}
.nf-p a.inline{
  color: inherit; border-bottom: 1px solid currentColor;
  transition: color .2s var(--ease, ease);
}
.nf-p a.inline:hover{ color: #D4F26B; }

/* Buttons */
.nf-actions{
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 12px;
}
.nf-actions .btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px 14px 24px;
  border-radius: 999px;
  background: #D4F26B; color: #0B0B0B; border: 1px solid #D4F26B;
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-weight: 500; font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; min-height: 44px; text-decoration: none;
  transition: background .25s var(--ease, ease), color .25s var(--ease, ease), border-color .25s var(--ease, ease);
}
.nf-actions .btn:hover{ background: #FFFFFF; border-color: #FFFFFF; color: #0B0B0B; }
.nf-actions .btn.ghost{
  background: transparent; color: #F6F1E8; border-color: rgba(246,241,232,.5);
}
.nf-actions .btn.ghost:hover{ background: #F6F1E8; color: #0B0B0B; border-color: #F6F1E8; }
.nf-actions .btn .arr{ display: inline-block; transition: transform .2s var(--ease, ease); }
.nf-actions .btn:hover .arr{ transform: translateX(3px); }

/* Quick links */
.nf-quick{
  margin-top: clamp(20px, 4vw, 64px);
  padding-top: clamp(20px, 3vw, 44px);
  border-top: 1px solid rgba(246,241,232,.18);
  display: grid; grid-template-columns: auto 1fr;
  gap: clamp(20px, 3vw, 48px); align-items: baseline;
}
.nf-quick-tag{
  font-family: var(--mono, "JetBrains Mono", monospace);
  font-size: 12px; letter-spacing: .05em; text-transform: uppercase;
  opacity: .55; white-space: nowrap;
}
.nf-quick-list{
  display: flex; flex-wrap: wrap; gap: clamp(16px, 3vw, 40px);
}
.nf-quick-list a{
  font-family: var(--display, "Bricolage Grotesque", sans-serif);
  font-weight: 500; font-size: clamp(17px, 1.6vw, 22px); line-height: 1;
  padding-bottom: 4px; border-bottom: 1px solid transparent;
  color: #F6F1E8; text-decoration: none;
  transition: border-color .25s var(--ease, ease), color .25s var(--ease, ease), transform .25s var(--ease, ease);
}
.nf-quick-list a:hover{ border-bottom-color: #D4F26B; color: #D4F26B; transform: translateY(-1px); }
.nf-quick-list a .arr{
  display: inline-block; margin-left: 6px;
  transition: transform .25s var(--ease, ease); opacity: .6;
}
.nf-quick-list a:hover .arr{ transform: translateX(4px); opacity: 1; }

/* Responsive */
@media (max-width: 900px){
  .nf-num{ font-size: clamp(110px, 32vw, 260px); }
  .nf-quick{ grid-template-columns: 1fr; gap: 16px; }
  .nf-quick-list{ flex-direction: column; gap: 14px; }
}
@media (max-width: 540px){
  .nf-stage{ padding: 96px 16px 56px; }
  .nf-num{ font-size: clamp(96px, 36vw, 200px); }
  .nf-actions{ flex-direction: column; align-items: stretch; }
  .nf-actions .btn{ justify-content: center; }
}
@media (max-width: 360px){
  .nf-num{ font-size: 88px; }
}
