  :root {
      --orange: #ff8409;
      --orange-light: #ffa144;
      --ink: #060B14;
      --white: #FFFFFF;
      --header-pad: clamp(20px, 3.2vw, 48px);
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
  }

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

  html,
  body {
      height: 100%;
      margin: 0;
      overflow: hidden;
      overscroll-behavior: none;
  }

  body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--white);
      background: var(--ink);
      -webkit-font-smoothing: antialiased;
      width: 100vw;
      height: 100dvh;
      position: relative;
  }

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

  button {
      font: inherit;
      color: inherit;
      background: none;
      border: 0;
      cursor: pointer;
  }

  ul {
      list-style: none;
      margin: 0;
      padding: 0;
  }

  @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
          animation-duration: .01ms !important;
          transition-duration: .01ms !important;
      }
  }

  /* ============= BACKGROUND VIDEO ============= */
  .bg-video-wrap {
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100dvh;
      overflow: hidden;
      z-index: 0;
      background: var(--ink);
  }

  .bg-video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%);
      object-fit: cover;
  }

  .bg-video-loop {
      opacity: 0;
      transition: opacity .6s ease;
  }

  .bg-video-loop.is-visible {
      opacity: 1;
  }

  .scrim {
      position: fixed;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background-image:
          linear-gradient(to top, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, 0) 100%),
          linear-gradient(to bottom, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, 0) 100%),
          radial-gradient(120% 90% at 50% 50%, rgba(4, 8, 16, 0) 40%, rgba(4, 8, 16, .35) 100%);
      background-repeat: no-repeat, no-repeat, no-repeat;
      background-position: bottom, top, center;
      background-size: 100% 300px, 100% 300px, 100% 100%;
  }

  /* ============= BIRDS ============= */
  .birds-layer {
      position: fixed;
      inset: 0;
      z-index: 4;
      overflow: hidden;
      pointer-events: none;
  }

  .bird {
      position: absolute;
      top: var(--bird-top, 15%);
      left: 0;
      width: var(--bird-size, 80px);
      opacity: 0;
      animation: bird-fly-rtl var(--bird-duration, 7s) linear forwards;
  }

  .bird.ltr {
      animation-name: bird-fly-ltr;
  }

  .bird.ltr .bird-img {
      transform: scaleX(-1);
  }

  .bird-bob {
      animation: bird-bob var(--bird-bob, 2s) ease-in-out infinite;
  }

  .bird-img {
      display: block;
      width: 100%;
      height: auto;
  }

  @keyframes bird-fly-rtl {
      0% {
          opacity: 0;
          transform: translate(112vw, 0);
      }

      6%, 94% {
          opacity: var(--bird-opacity, .9);
      }

      100% {
          opacity: 0;
          transform: translate(-18vw, calc(-1 * var(--bird-rise, 0px)));
      }
  }

  @keyframes bird-fly-ltr {
      0% {
          opacity: 0;
          transform: translate(-18vw, 0);
      }

      6%, 94% {
          opacity: var(--bird-opacity, .9);
      }

      100% {
          opacity: 0;
          transform: translate(112vw, calc(-1 * var(--bird-rise, 0px)));
      }
  }

  @keyframes bird-bob {
      0%, 100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-8px);
      }
  }

  /* ============= INTRO VEIL ============= */
  .intro-veil {
      position: fixed;
      inset: 0;
      z-index: 999;
      background: #000;
      pointer-events: none;
      animation: introFade 3s ease-out both;
  }

  @keyframes introFade {
      0% {
          opacity: 1;
      }

      100% {
          opacity: 0;
      }
  }

  /* ============= HEADER ============= */
  .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: var(--header-pad);
  }

  .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: clamp(1rem, 1.6vw, 1.25rem);
      letter-spacing: .06em;
      text-transform: uppercase;
      animation: slideInLeft 1s 1.6s var(--ease) both;
  }

  .brand img {
      width: 200px;
  }

  .menu-toggle {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      align-items: center;
      transition: background .3s var(--ease);
      animation: slideInRight 1s 1.6s var(--ease) both;
  }

  .menu-toggle:hover {
      background: rgba(255, 255, 255, .08);
  }

  .menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: transform .4s var(--ease), opacity .3s var(--ease), width .3s var(--ease);
  }

  .menu-toggle span:nth-child(2) {
      width: 17px;
      align-self: flex-end;
  }

  body.menu-open .menu-toggle span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
      width: 24px;
  }

  body.menu-open .menu-toggle span:nth-child(2) {
      opacity: 0;
  }

  body.menu-open .menu-toggle span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }

  /* ============= HERO CONTENT ============= */
  .hero {
      position: fixed;
      inset: 0;
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 24px;
      pointer-events: none;
  }

  .hero h1 {
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: clamp(1.9rem, 4.6vw, 3.4rem);
      text-transform: uppercase;
      letter-spacing: .02em;
      line-height: 1.15;
      margin: 0;
      text-shadow: 0 4px 30px rgba(0, 0, 0, .55);
  }

  .hero h1 .char {
      display: inline-block;
  }

  .hero h1 .typing-cursor {
      display: inline-block;
      width: 3px;
      height: .85em;
      margin-left: 4px;
      vertical-align: -.1em;
      background: var(--orange-light);
      opacity: 0;
  }

  .hero h1 .typing-cursor.active {
      opacity: 1;
      animation: cursorBlink .9s step-end infinite;
  }

  @keyframes cursorBlink {
      50% {
          opacity: 0;
      }
  }

  .hero p {
      margin: 16px 0 0;
      font-weight: 400;
      color: rgba(255, 255, 255, .88);
      font-size: clamp(.95rem, 1.3vw, 1.2rem);
      letter-spacing: .01em;
      opacity: 0;
      background: var(--orange);
      padding: 5px 15px;
  }

  .hero p.is-visible {
      animation: fadeUp 1s var(--ease) both;
  }

  /* ============= CTA STACK ============= */
  .cta-stack {
      position: fixed;
      right: var(--header-pad);
      bottom: clamp(20px, 4vw, 40px);
      z-index: 15;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: stretch;
      animation: slideInRight 1s 2s var(--ease) both;
  }

  .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 13px 26px;
      border-radius: 999px;
      font-weight: 600;
      font-size: .92rem;
      letter-spacing: .01em;
      white-space: nowrap;
      transition: all .35s var(--ease);
      border: 1.5px solid transparent;
  }

  .btn-primary {
      background: var(--orange);
      color: var(--white);
      box-shadow: 0 10px 26px rgba(0, 86, 163, .4);
  }

  .btn-primary:hover {
      background: var(--orange-light);
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(0, 86, 163, .55);
  }

  .btn-outline {
      background: rgba(10, 16, 28, .35);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      border-color: rgba(255, 255, 255, .55);
      color: var(--white);
  }

  .btn-outline:hover {
      background: rgba(255, 255, 255, .12);
      border-color: var(--white);
      transform: translateY(-2px);
  }

  /* ============= STATE TICKER ============= */
  .state-ticker {
      position: fixed;
      left: 50%;
      bottom: calc(clamp(20px, 3vw, 30px) + 42px + 100px);
      transform: translateX(-50%);
      z-index: 15;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 20px;
      color: #fff;
      text-align: center;
      white-space: nowrap;
      text-shadow: 0 4px 20px rgba(0, 0, 0, .4);
      pointer-events: none;
  }

  .state-ticker .cursor {
      display: inline-block;
      width: 2px;
      height: 1em;
      margin-left: 2px;
      vertical-align: -0.15em;
      background: currentColor;
      opacity: 0;
  }

  .state-ticker .cursor.active {
      opacity: 1;
      animation: cursorBlink .9s step-end infinite;
  }

  /* ============= SOCIAL STRIP ============= */
  .social-strip {
      position: fixed;
      left: 50%;
      bottom: clamp(20px, 3.4vw, 34px);
      z-index: 15;
      display: flex;
      gap: 14px;
      animation: slideInUpCentered 1s 2.3s var(--ease) both;
  }

  .social-strip a {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 5px;

      background: rgba(10, 16, 28, .3);
      backdrop-filter: blur(6px);
      transition: all .3s var(--ease);
  }

  .social-strip a:hover {
      background: var(--orange);
      border-color: var(--orange);
      transform: translateY(-3px);
  }

  .social-strip svg {
      width: 17px;
      height: 17px;
      fill: currentColor;
  }

  /* ============= 360 BADGE ============= */
  .badge-360 {
      position: fixed;
      left: var(--header-pad);
      bottom: clamp(20px, 4vw, 40px);
      z-index: 15;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
       background: rgba(10,16,28,.3);
       backdrop-filter: blur(6px);
       transition: all .3s var(--ease);
       animation: slideInLeft 1s 2s var(--ease) both;
  }

  .badge-360:hover {
      background: var(--orange);
      border-color: var(--orange);
      transform: translateY(-3px);
  }
 
 

 
 



  .badge-360 svg {
      width: 16px;
      height: 16px;
      margin-bottom: 2px;
  }

  @keyframes spin {
      from {
          transform: rotate(0);
      }

      to {
          transform: rotate(360deg);
      }
  }

  .badge-360 span {
      animation: counterSpin 14s linear infinite;
      display: block;
  }

  @keyframes counterSpin {
      from {
          transform: rotate(0);
      }

      to {
          transform: rotate(-360deg);
      }
  }

  /* ============= NAV MENU (SLIDE-IN) ============= */
  .menu-scrim {
      position: fixed;
      inset: 0;
      z-index: 25;
      background: rgba(3, 6, 12, .55);
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
      opacity: 0;
      pointer-events: none;
      transition: opacity .5s var(--ease);
  }

  body.menu-open .menu-scrim {
      opacity: 1;
      pointer-events: auto;
  }

  .site-menu {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 30;
      width: min(460px, 92vw);
      height: 100dvh;
      background: linear-gradient(160deg, #050a14 0%, #0a1526 60%, #0b1c33 100%);
      border-left: 1px solid rgba(255, 255, 255, .08);
      transform: translateX(100%);
      transition: transform .6s var(--ease);
      display: flex;
      flex-direction: column;
      padding: clamp(24px, 4vw, 48px);
      overflow: hidden;
  }

  body.menu-open .site-menu {
      transform: translateX(0);
  }

  .menu-top {
      display: flex;
      justify-content: flex-end;
  }

  .menu-close {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, .25);
      transition: all .3s var(--ease);
  }

  .menu-close:hover {
      background: rgba(255, 255, 255, .1);
      transform: rotate(90deg);
  }

  .menu-close svg {
      width: 18px;
      height: 18px;
  }

  .menu-links {
      margin: clamp(28px, 6vh, 56px) 0 auto;
  }

  .menu-links li {
      overflow: hidden;
  }

  .menu-links a {
      display: flex;
      align-items: baseline;
      gap: 14px;
      padding: 13px 2px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: clamp(1.3rem, 2.6vw, 1.5rem);
      text-transform: uppercase;
      letter-spacing: .01em;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      position: relative;
      transform: translateY(100%);
      opacity: 0;
      transition: color .3s var(--ease), padding .3s var(--ease);
  }

  body.menu-open .menu-links a {
      animation: linkIn .7s var(--ease) forwards;
  }

  .menu-links li:nth-child(1) a {
      animation-delay: .15s;
  }

  .menu-links li:nth-child(2) a {
      animation-delay: .21s;
  }

  .menu-links li:nth-child(3) a {
      animation-delay: .27s;
  }

  .menu-links li:nth-child(4) a {
      animation-delay: .33s;
  }

  .menu-links li:nth-child(5) a {
      animation-delay: .39s;
  }

  .menu-links li:nth-child(6) a {
      animation-delay: .45s;
  }

  .menu-links li:nth-child(7) a {
      animation-delay: .51s;
  }

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

  .menu-links a .idx {
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: .75rem;
      color: var(--orange-light);
  }

  .menu-links a:hover {
      color: var(--orange-light);
      padding-left: 12px;
  }

  .menu-bottom {
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .menu-contact {
      display: flex;
      flex-direction: column;
      gap: 6px;
      font-size: .92rem;
      color: rgba(255, 255, 255, .75);
  }

  .menu-contact a:hover {
      color: var(--white);
  }

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

  .menu-social a {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .25);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .3s var(--ease);
  }

  .menu-social a:hover {
      background: var(--orange);
      border-color: var(--orange);
  }

  .menu-social svg {
      width: 15px;
      height: 15px;
      fill: currentColor;
  }

  @keyframes fadeDown {
      from {
          opacity: 0;
          transform: translateY(-16px);
      }

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

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

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

  @keyframes slideInLeft {
      from {
          opacity: 0;
          transform: translateX(-46px);
      }

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

  @keyframes slideInRight {
      from {
          opacity: 0;
          transform: translateX(46px);
      }

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

  @keyframes slideInUpCentered {
      from {
          opacity: 0;
          transform: translateX(-50%) translateY(40px);
      }

      to {
          opacity: 1;
          transform: translateX(-50%) translateY(0);
      }
  }

  /* ============= RESPONSIVE ============= */
  @media (max-width:640px) {
      .cta-stack {
          right: 16px;
          left: 16px;
          bottom: 16px;
      }

      .btn {
          padding: 12px 18px;
          font-size: .85rem;
      }

      .social-strip {
          bottom: 96px;
      }

      .state-ticker {
          bottom: calc(96px + 42px + 100px);
          font-size: 18px;
      }

      .badge-360 {
          display: none;
      }
  }