/* ══════════════════════════════════════
     TOKENS
  ══════════════════════════════════════ */
  :root {
    --green:      #39ff14;
    --green-dim:  #22cc00;
    --green-glow: rgba(57,255,20,.35);
    --dark:       #080e08;
    --glass:      rgba(8,18,8,.88);
    --white:      #f4f4ee;
    --nav-h:      68px;
    --dur:        7000ms;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html, body {
    width: 100%; height: 100%;
    -webkit-font-smoothing: antialiased;
  }

  /* ══════════════════════════════════════
     SCANLINES + GRAIN OVERLAY
  ══════════════════════════════════════ */
  .fx-scanlines {
    position: fixed; inset: 0; z-index: 900; pointer-events: none;
    background: repeating-linear-gradient(
      to bottom,
      transparent 0, transparent 3px,
      rgba(0,0,0,.055) 3px, rgba(0,0,0,.055) 4px
    );
  }

  /* ══════════════════════════════════════
     NAVBAR
  ══════════════════════════════════════ */
  .tcpm-nav {
    position: fixed; inset-block-start: 0; left: 0; right: 0;
    z-index: 800;
    height: var(--nav-h);
    display: flex; align-items: center;
    padding: 12px clamp(16px, 5vw, 52px) 6px;
    background: linear-gradient(to bottom, rgb(9, 9, 9) 0%, #59595959 100%);
    backdrop-filter: blur(3px);
    transition: background .45s, backdrop-filter .45s;
  }
  .tcpm-nav.is-open {
    background: var(--glass);
    backdrop-filter: blur(22px);
  }

  /* Logo */
  .nav-logo {
    display: flex; align-items: center; gap: 11px;
    text-decoration: none; flex-shrink: 0;
  }
  .nav-logo img{max-height: 80px;}

  /* Desktop links */
  .nav-links {
    display: flex; gap: 30px; list-style: none;
    margin-left: auto; padding: 0;
  }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem;
    letter-spacing: .16em; text-transform: uppercase;
    color: rgba(255,255,255,.78); text-decoration: none;
    position: relative; white-space: nowrap;
    transition: color .2s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -3px; left: 0;
    width: 0; height: 1px; background: var(--green);
    transition: width .3s ease;
  }
  .nav-links a:hover { color: var(--green); }
  .nav-links a:hover::after { width: 100%; }

  /* ── HAMBURGER BUTTON ── */
  .hamburger {
    display: none; /* desktop: hidden */
    margin-left: auto;
    width: 44px; height: 44px;
    background: none; border: none; cursor: pointer;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 6px; padding: 6px; position: relative; z-index: 850;
  }
  .hamburger span {
    display: block; height: 2px; border-radius: 2px;
    background: var(--white);
    transform-origin: center;
    transition:
      transform   .45s cubic-bezier(.23,1,.32,1),
      opacity     .3s ease,
      width       .3s ease,
      background  .3s ease;
  }
  .hamburger span:nth-child(1) { width: 28px; }
  .hamburger span:nth-child(2) { width: 20px; }
  .hamburger span:nth-child(3) { width: 28px; }

  .hamburger.is-open span:nth-child(1) {
    width: 28px;
    transform: translateY(8px) rotate(45deg);
    background: var(--green);
  }
  .hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
  .hamburger.is-open span:nth-child(3) {
    width: 28px;
    transform: translateY(-8px) rotate(-45deg);
    background: var(--green);
  }

  /* ── FULLSCREEN MOBILE MENU ── */
  .mob-menu {
    position: fixed; inset: 0; z-index: 780;
    background: var(--glass);
    backdrop-filter: blur(26px);
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    /* circular reveal from top-right */
    clip-path: circle(0% at calc(100% - 38px) 34px);
    transition: clip-path .7s cubic-bezier(.77,0,.18,1);
    pointer-events: none;
  }
  .mob-menu.is-open {
    clip-path: circle(160% at calc(100% - 38px) 34px);
    pointer-events: auto;
  }

  /* Brand tag inside menu */
  .mob-brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
    color: var(--green); margin-bottom: 6px;
    opacity: 0; transform: translateY(12px);
    transition: opacity .4s ease .1s, transform .4s ease .1s;
  }
  .mob-menu.is-open .mob-brand { opacity: 1; transform: none; }

  .mob-divider {
    width: 36px; height: 2px;
    background: var(--green);
    box-shadow: 0 0 10px var(--green-glow);
    margin-bottom: 32px;
    transform: scaleX(0); opacity: 0;
    transition: transform .5s ease .15s, opacity .5s ease .15s;
  }
  .mob-menu.is-open .mob-divider { transform: scaleX(1); opacity: 1; }

  .mob-links { list-style: none; padding: 0; text-align: center; }
  .mob-links li {
    overflow: hidden;
    opacity: 0; transform: translateY(28px);
    transition: opacity .5s ease, transform .5s ease;
  }
  .mob-menu.is-open .mob-links li { opacity: 1; transform: none; }
  .mob-menu.is-open .mob-links li:nth-child(1) { transition-delay: .18s; }
  .mob-menu.is-open .mob-links li:nth-child(2) { transition-delay: .23s; }
  .mob-menu.is-open .mob-links li:nth-child(3) { transition-delay: .28s; }
  .mob-menu.is-open .mob-links li:nth-child(4) { transition-delay: .33s; }
  .mob-menu.is-open .mob-links li:nth-child(5) { transition-delay: .38s; }
  .mob-menu.is-open .mob-links li:nth-child(6) { transition-delay: .43s; }
  .mob-menu.is-open .mob-links li:nth-child(7) { transition-delay: .48s; }

  .mob-links a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 10vw, 62px);
    letter-spacing: .06em; color: var(--white);
    text-decoration: none; display: inline-block;
    padding: 2px 24px;
    position: relative;
    transition: color .2s, letter-spacing .35s;
  }
  .mob-links a .num {
    position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
    letter-spacing: .2em; color: var(--green);
    opacity: 0; transition: opacity .2s;
  }
  .mob-links a:hover { color: var(--green); letter-spacing: .11em; }
  .mob-links a:hover .num { opacity: 1; }

  .mob-footer {
    position: absolute; bottom: 28px;
    font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
    letter-spacing: .22em; text-transform: uppercase;
    color: rgba(255,255,255,.28);
    opacity: 0; transform: translateY(14px);
    transition: opacity .5s ease .55s, transform .5s ease .55s;
  }
  .mob-menu.is-open .mob-footer { opacity: 1; transform: none; }

  /* ══════════════════════════════════════
     SLIDER
  ══════════════════════════════════════ */
  .slider {
    position: relative; width: 100%; height: 100vh; overflow: hidden;
  }

  /* Ambient green glow */
  .flare {
    position: absolute; z-index: 4; pointer-events: none;
    border-radius: 50%; filter: blur(90px);
    width: clamp(260px, 40vw, 520px);
    height: clamp(260px, 40vw, 520px);
    top: 15%; left: 4%;
    background: radial-gradient(circle, rgba(57,255,20,.16) 0%, transparent 70%);
    animation: flare-pulse 6s ease-in-out infinite;
    transition: transform .8s ease;
  }
  @keyframes flare-pulse {
    0%,100% { opacity:.55; transform:scale(1); }
    50%      { opacity:.9;  transform:scale(1.18); }
  }

  /* ── SLIDES ── */
  .slide {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    opacity: 0; transition: opacity 1.5s ease;
    pointer-events: none;
  }
  .slide.active { opacity: 1; pointer-events: auto; }

  .slide-bg {
    position: absolute; inset: -9%;
    background-blend-mode: multiply;
    background-color: #5b5a5a;
    background-size: cover; background-position: center;
    transform: scale(1.09);
    transition: transform 9s cubic-bezier(.25,.46,.45,.94);
    will-change: transform;
    overflow: hidden;
  }
  .slide.active .slide-bg { transform: scale(1); }

  .slide:nth-child(1) .slide-bg {
    background-image:
      linear-gradient(135deg,rgba(10,30,10,.62),rgba(40,60,10,.38) 50%,rgba(60,40,0,.52)),
      url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?w=1600&q=80');
  }
  .slide:nth-child(2) .slide-bg {
    background-image:
      linear-gradient(135deg,rgba(0,10,20,.62),rgba(10,30,10,.38) 60%,rgba(30,20,0,.52)),
      url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?w=1600&q=80');
  }
  .slide:nth-child(3) .slide-bg {
    background-image:
      linear-gradient(135deg,rgba(5,20,5,.68),rgba(20,40,0,.42) 60%,rgba(50,30,0,.52)),
      url('https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?w=1600&q=80');
  }
  .slide-bg::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 28% 52%, transparent 22%, rgba(0,0,0,.62) 100%);
  }

  /* ── SLIDE CONTENT ── */
  .slide-content {
    position: relative; z-index: 10;
    padding: calc(var(--nav-h) + clamp(20px,5vh,50px)) clamp(20px,5vw,56px) clamp(80px,16vh,130px) clamp(20px,8vw,120px);
    padding: 0 18%;
    max-width: min(1200px, 90vw);
  }

  /* stagger-in helpers */
  .s-in {
    opacity: 0; transform: translateY(32px);
    transition: opacity .95s ease, transform .95s ease;
  }
  .slide.active .s-in { opacity: 1; transform: none; }
  .slide.active .s-d1 { transition-delay: .28s; }
  .slide.active .s-d2 { transition-delay: .52s; }
  .slide.active .s-d3 { transition-delay: .76s; }
  .slide.active .s-d4 { transition-delay: 1.00s; }

  .slide-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(10px,1.3vw,13px); letter-spacing: .24em; text-transform: uppercase;
    color: rgba(255,255,255,.58); margin-bottom: clamp(10px,2vh,18px);
  }
  .slide-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px,8.5vw,100px); line-height: .94;
    color: var(--white);
  }
  .slide-headline .accent { color: var(--green); }

  .slide-body {
    font-family: 'Barlow', sans-serif; font-weight: 300;
    font-size: clamp(13px,1.5vw,15px); line-height: 1.72;
    color: rgba(255,255,255,.72);
    margin-top: clamp(12px,2.5vh,20px); max-width: 440px;
  }

  .slide-actions {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-top: clamp(18px,3.5vh,32px);
  }

  /* CTA buttons */
  .btn-tcpm-primary {
    font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem;
    font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    padding: 13px 30px; border: none; cursor: pointer;
    background: var(--green); color: var(--dark);
    clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
    transition: background .2s, transform .2s, box-shadow .2s;
    text-decoration: none;
  }
  .btn-tcpm-primary:hover {
    background: #fff; transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--green-glow);
  }
  .btn-tcpm-ghost {
    font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem;
    letter-spacing: .14em; text-transform: uppercase;
    padding: 12px 28px; cursor: pointer;
    background: transparent; color: var(--white);
    border: 1px solid rgba(255,255,255,.32);
    transition: border-color .2s, color .2s, background .2s;
    text-decoration: none;
  }
  .btn-tcpm-ghost:hover {
    border-color: var(--green); color: var(--green);
    background: rgba(57,255,20,.06);
  }

  /* ── STATS STRIP ── */
  .stats-strip {
    position: absolute;
    bottom: clamp(52px,9vh,88px);
    left:   clamp(20px,8vw,120px);
    z-index: 20;
    display: flex; gap: clamp(22px,4vw,52px);
    opacity: 0; transform: translateY(18px);
    transition: opacity .9s ease 1.2s, transform .9s ease 1.2s;
  }
  .slide.active .stats-strip { opacity: 1; transform: none; }

  .stat { display: flex; flex-direction: column; }
  .stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(26px,4vw,40px); color: var(--green); line-height: 1;
  }
  .stat-label {
    font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
    letter-spacing: .16em; text-transform: uppercase;
    color: rgba(255,255,255,.48); margin-top: 4px;
  }

  /* ── INFO CARD (desktop only) ── */
  .info-card {
    position: absolute;
    right: clamp(16px,6vw,60px);
    bottom: clamp(44px,8vh,78px);
    z-index: 20; width: min(284px, 42vw);
    background: rgba(12,22,12,.78);
    border: 1px solid rgba(57,255,20,.2);
    backdrop-filter: blur(16px);
    padding: clamp(14px,2.5vw,28px);
    clip-path: polygon(0 0,calc(100% - 16px) 0,100% 16px,100% 100%,0 100%);
    opacity: 0; transform: translateX(36px);
    transition: opacity 1s ease 1.35s, transform 1s ease 1.35s;
  }
  .slide.active .info-card { opacity: 1; transform: none; }
  .info-card p {
    font-family: 'Barlow', sans-serif; font-weight: 300;
    font-size: clamp(12px,1.4vw,14px); line-height: 1.65;
    color: rgba(255,255,255,.78);
  }
  .info-card-link {
    display: inline-block; margin-top: 16px;
    font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
    letter-spacing: .16em; text-transform: uppercase;
    color: var(--green);
    background: none; border: none; border-bottom: 1px solid var(--green-dim);
    padding-bottom: 2px; cursor: pointer;
    transition: letter-spacing .25s;
    text-decoration: none;
  }
  .info-card-link:hover { letter-spacing: .26em; }

  /* ── SLIDER UI CHROME ── */
  .slide-counter {
    position: absolute; right: clamp(16px,6vw,60px); top: 50%;
    transform: translateY(-50%); z-index: 20;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
  }
  .counter-curr {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(34px,4vw,50px); color: var(--white); line-height: 1;
  }
  .counter-line { width: 1px; height: 28px; background: rgba(255,255,255,.22); }
  .counter-tot  {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(18px,2vw,24px); color: rgba(255,255,255,.32); line-height: 1;
  }

  .slide-dots {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
    z-index: 30; display: flex; gap: 10px;
  }
  .dot {
    width: 28px; height: 3px; border: none; cursor: pointer;
    background: rgba(255,255,255,.25);
    transition: background .3s, transform .3s;
  }
  .dot.active {
    background: var(--green); transform: scaleX(1.45);
    box-shadow: 0 0 9px var(--green-glow);
  }

  .progress-bar {
    position: absolute; bottom: 0; left: 0; z-index: 31;
    height: 2px; width: 0%;
    background: linear-gradient(90deg, #ccfdc2a8, #8fa98b);
    box-shadow: 0 0 10px var(--green-glow);
    transition: width linear;
  }

  .vert-text {
    position: absolute; left: 22px; top: 50%; z-index: 20;
    transform: translateY(-50%) rotate(-90deg);
    font-family: 'Barlow Condensed', sans-serif; font-size: 9px;
    letter-spacing: .32em; text-transform: uppercase;
    color: rgba(255,255,255,.22); white-space: nowrap;
  }

  /* swipe hint */
  .swipe-hint {
    display: none;
    position: absolute; bottom: 48px; right: 20px; z-index: 20;
    font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
    letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.28);
    animation: fade-hint 3s ease 2.5s forwards;
  }
  @keyframes fade-hint { to { opacity:0; } }

  /* ══════════════════════════════════════
     RESPONSIVE
  ══════════════════════════════════════ */
  @media (max-width: 991.98px) {
    .nav-links    { display: none; }
    .hamburger    { display: flex; }
    .info-card    { display: none; }
    .slide-counter{ display: none; }
    .vert-text    { display: none; }
  }

  @media (max-width: 767.98px) {
    .stats-strip  { bottom: 48px; }
    .swipe-hint   { display: block; }
    .flare        { width: 280px; height: 280px; filter: blur(60px); }
    .nav-logo img {max-height: 50px;}
  }

  @media (max-width: 479.98px) {
    .stats-strip  { display: none; }
    .slide-content {
      padding-left: 20px; padding-right: 20px;
      padding-bottom: 56px;
    }
    .slide-headline { font-size: clamp(40px, 12vw, 56px); }
  }

  /* Landscape + small height */
  @media (max-height: 500px) {
    .stats-strip  { display: none; }
    .slide-body   { display: none; }
    .slide-headline { font-size: 36px; }
  }
