﻿:root {
      --bg: #000;
      --text: #fff;
      --blue-glass: rgba(8, 25, 92, 0.30);
      --blue-glass-strong: rgba(26, 62, 150, 0.40);
      --hero-h: min(1080px, 100vh);
      --frame-gap: clamp(8px, 0.833vw, 16px);
      --peek: clamp(64px, 16.458vw, 316px);
      --slide-w: min(1604px, calc(100vw - var(--peek)));
      --shell-w: min(1920px, 100vw);
      --nav-x: clamp(18px, 3.229vw, 62px);
      --pill-h: clamp(50px, 4.167vw, 80px);
      --pill-w: clamp(160px, 14.323vw, 275px);
      --tracking: clamp(3px, 0.5vw, 9.6px);
      color-scheme: dark;
      background: var(--bg);
    }

    * {
      box-sizing: border-box;
    }

    html {
      min-height: 100%;
      scroll-behavior: smooth;
      background: var(--bg);
    }

    body {
      min-height: 100%;
      margin: 0;
      overflow-x: hidden;
      background: var(--bg);
      color: var(--text);
      font-family: "Barlow Semi Condensed", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
      font-weight: 700;
      letter-spacing: 0;
    }

    @media (hover: hover) and (pointer: fine) {
      body.cursor-ready,
      body.cursor-ready * {
        cursor: none !important;
      }
    }

    button {
      border: 0;
      color: inherit;
      font: inherit;
    }

    img {
      display: block;
      user-select: none;
      -webkit-user-drag: none;
    }

    .wallpone {
      width: 100%;
      min-height: 100vh;
      background: #000;
    }

    .hero {
      position: relative;
      width: 100%;
      height: var(--hero-h);
      min-height: 620px;
      overflow: hidden;
      background: #06070a;
    }

    .hero-media {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.10) 63%, rgba(0, 0, 0, 0.50) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.20), transparent 38%, rgba(0, 0, 0, 0.16));
    }

    .hero-bar {
      position: absolute;
      z-index: 2;
      left: var(--nav-x);
      right: clamp(18px, 5.469vw, 105px);
      bottom: clamp(42px, 5.463vh, 59px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: clamp(20px, 4vw, 80px);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      min-width: 0;
      gap: 16px;
      color: #fff;
      text-decoration: none;
    }

    .brand img {
      width: clamp(38px, 2.969vw, 57px);
      height: clamp(44px, 3.438vw, 66px);
      object-fit: contain;
      flex: 0 0 auto;
    }

    .brand span {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-size: clamp(28px, 2.083vw, 40px);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: clamp(6px, 0.833vw, 16px);
    }

    .top-nav {
      display: flex;
      justify-content: flex-end;
      gap: clamp(14px, 2.552vw, 49px);
      min-width: min(100%, 680px);
      max-width: 1247px;
      flex: 1 1 auto;
    }

    .nav-pill,
    .section-pill,
    .slider-arrow {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 999px;
      background: var(--blue-glass);
      color: #fff;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        inset 0 -18px 30px rgba(0, 0, 0, 0.18),
        0 14px 35px rgba(0, 0, 0, 0.28);
      backdrop-filter: blur(18px) saturate(145%);
      -webkit-backdrop-filter: blur(18px) saturate(145%);
      text-transform: uppercase;
      transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
    }

    .nav-pill {
      width: var(--pill-w);
      height: var(--pill-h);
      padding: 0 clamp(20px, 2vw, 40px);
      font-size: clamp(15px, 1.25vw, 24px);
      font-weight: 700;
      letter-spacing: var(--tracking);
      white-space: nowrap;
    }

    .nav-pill:hover,
    .nav-pill:focus-visible,
    .section-pill:hover,
    .section-pill:focus-visible,
    .slider-arrow:hover,
    .slider-arrow:focus-visible {
      background: var(--blue-glass-strong);
      border-color: rgba(255, 255, 255, 0.30);
      transform: translateY(-1px);
      outline: none;
    }

    .content {
      width: 100%;
      padding-bottom: clamp(32px, 5vw, 80px);
      background: #000;
    }

    .slider-section {
      position: relative;
      width: var(--shell-w);
      max-width: 1920px;
      margin: 0 auto;
      padding-top: clamp(76px, 6.354vw, 122px);
      overflow: hidden;
      background: #000;
    }

    .slider-section:first-child {
      padding-top: clamp(40px, 6.354vw, 122px);
    }

    .slider-stage {
      position: relative;
      width: 100%;
    }

    .section-header {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: clamp(10px, 0.833vw, 16px);
      margin: 0 var(--nav-x) clamp(20px, 1.094vw, 21px);
    }

    .section-pill {
      width: var(--pill-w);
      height: var(--pill-h);
      padding: 0 clamp(22px, 2.5vw, 52px);
      font-size: clamp(15px, 1.25vw, 24px);
      font-weight: 700;
      letter-spacing: var(--tracking);
      white-space: nowrap;
    }

    .slider-counter {
      min-width: clamp(82px, 5.625vw, 108px);
      height: clamp(38px, 2.604vw, 50px);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 clamp(14px, 1.042vw, 20px);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 999px;
      background: var(--blue-glass);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 10px 32px rgba(0, 0, 0, 0.28);
      backdrop-filter: blur(18px) saturate(135%);
      -webkit-backdrop-filter: blur(18px) saturate(135%);
      color: rgba(255, 255, 255, 0.92);
      font-size: clamp(13px, 0.885vw, 17px);
      font-weight: 700;
      letter-spacing: 1px;
      line-height: 1;
      white-space: nowrap;
      font-variant-numeric: tabular-nums;
    }

    .slider-controls {
      position: absolute;
      z-index: 4;
      top: 50%;
      left: calc(var(--slide-w) + (var(--frame-gap) / 2));
      display: flex;
      flex-direction: column;
      gap: 10px;
      transform: translate(-50%, -50%);
      pointer-events: auto;
    }

    .slider-arrow {
      position: relative;
      width: clamp(44px, 3.333vw, 64px);
      height: clamp(44px, 3.333vw, 64px);
      padding: 0;
      font-size: 0;
      transform: none;
    }

    .arrow-svg {
      display: block;
      width: clamp(20px, 1.354vw, 26px);
      height: clamp(20px, 1.354vw, 26px);
      color: #fff;
      pointer-events: none;
    }

    .slider-arrow:hover,
    .slider-arrow:focus-visible {
      transform: scale(1.04);
    }

    .slider-arrow.is-disabled {
      opacity: 0.42;
      pointer-events: none;
    }

    .slider-viewport {
      position: relative;
      width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scroll-padding-inline: 0;
      scrollbar-width: none;
      touch-action: pan-x pan-y;
      overscroll-behavior-x: contain;
      background: #090909;
    }

    .slider-viewport::-webkit-scrollbar {
      display: none;
    }

    .slider-track {
      display: flex;
      align-items: stretch;
      gap: var(--frame-gap);
      min-width: max-content;
    }

    .slide {
      position: relative;
      flex: 0 0 var(--slide-w);
      aspect-ratio: 1604 / 902;
      overflow: hidden;
      scroll-snap-align: start;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01) 42%, rgba(0, 0, 0, 0.22)),
        #090909;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .custom-cursor {
      position: fixed;
      z-index: 2147483647;
      top: 0;
      left: 0;
      width: 18px;
      height: 18px;
      border: 1px solid #fff;
      border-radius: 50%;
      background: transparent;
      opacity: 0;
      pointer-events: none;
      transform: translate3d(-50%, -50%, 0);
      transition: opacity 120ms ease, width 120ms ease, height 120ms ease;
      mix-blend-mode: difference;
    }

    .custom-cursor.is-visible {
      opacity: 1;
    }

    .custom-cursor.is-active {
      width: 24px;
      height: 24px;
    }

    @media (max-width: 1180px) {
      .hero-bar {
        align-items: flex-start;
        flex-direction: column;
        right: var(--nav-x);
      }

      .top-nav {
        width: 100%;
        min-width: 0;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
      }

      .top-nav::-webkit-scrollbar {
        display: none;
      }

      .nav-pill {
        flex: 0 0 auto;
      }
    }

    @media (max-width: 760px) {
      :root {
        --hero-h: 100svh;
        --peek: 32px;
        --slide-w: calc(100vw - 32px);
        --pill-h: 52px;
        --pill-w: 158px;
        --tracking: 3px;
      }

      .hero {
        min-height: 560px;
      }

      .hero-bar {
        bottom: 28px;
        gap: 18px;
      }

      .brand {
        gap: 10px;
      }

      .brand span {
        max-width: calc(100vw - 100px);
        letter-spacing: 7px;
      }

      .top-nav {
        gap: 10px;
      }

      .nav-pill,
      .section-pill {
        font-size: 15px;
      }

      .slider-section {
        padding-top: 64px;
      }

      .slider-section:first-child {
        padding-top: 38px;
      }

      .section-header {
        gap: 10px;
        margin-bottom: 16px;
      }

      .slider-counter {
        min-width: 76px;
        height: 38px;
        font-size: 13px;
      }

      .slider-arrow {
        width: 42px;
        height: 42px;
      }

    }

    .not-found-page {
      min-height: 100vh;
      display: grid;
      place-items: center;
      background: #050505;
    }

    .not-found {
      width: min(90vw, 520px);
      text-align: center;
    }

    .not-found img {
      width: 58px;
      height: auto;
      margin: 0 auto 24px;
    }

    .not-found h1 {
      margin: 0 0 12px;
      font-size: clamp(36px, 8vw, 72px);
      letter-spacing: 0.08em;
    }

    .not-found p {
      margin: 0 0 28px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 16px;
      line-height: 1.5;
    }

    .not-found a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 22px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 999px;
      color: #fff;
      text-decoration: none;
      background: rgba(255, 255, 255, 0.08);
    }
