    :root {
      --bg: #061f17;
      --bg-2: #09281e;
      --card: rgba(255, 255, 255, 0.08);
      --silver: #d8d8d2;
      --white: #ffffff;
      --muted: #aeb8b2;
      --line: rgba(255, 255, 255, 0.15);
      --glow: rgba(216, 216, 210, 0.22);
      --radius: 30px;
      --shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, Arial, sans-serif;
      background:
        radial-gradient(circle at 10% 10%, rgba(255,255,255,0.08), transparent 28%),
        radial-gradient(circle at 90% 20%, rgba(216,216,210,0.08), transparent 26%),
        linear-gradient(135deg, var(--bg), #03130e);
      color: var(--white);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: radial-gradient(circle at center, black, transparent 75%);
      z-index: -2;
    }

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

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

    .cursor-glow {
      position: fixed;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(216,216,210,0.16), transparent 65%);
      pointer-events: none;
      transform: translate(-50%, -50%);
      z-index: -1;
      transition: opacity 0.2s ease;
    }

    .progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 4px;
      width: 0%;
      background: linear-gradient(90deg, #ffffff, #bdbdb6);
      z-index: 999;
      box-shadow: 0 0 20px var(--silver);
    }

    .container {
      width: min(1180px, 92%);
      margin: auto;
    }

    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
      backdrop-filter: blur(20px);
      background: rgba(6, 31, 23, 0.72);
      border-bottom: 1px solid var(--line);
    }

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

    .logo {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 900;
      letter-spacing: 3px;
    }

    .logo img {
      width: 58px;
      height: 58px;
      object-fit: contain;
      border-radius: 16px;
    }

    .nav-links {
      display: flex;
      gap: 34px;
      color: var(--muted);
      font-size: 14px;
    }

    .nav-links a {
      position: relative;
      transition: 0.25s ease;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 0;
      height: 1px;
      background: var(--silver);
      transition: 0.25s ease;
    }

    .nav-links a:hover {
      color: var(--white);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 25px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: linear-gradient(135deg, #ffffff, #bdbdb6);
      color: #061f17;
      font-weight: 900;
      transition: 0.25s ease;
      box-shadow: 0 14px 38px rgba(255,255,255,0.13);
      position: relative;
      overflow: hidden;
    }

    .btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: -80%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
      transform: skewX(-20deg);
      transition: 0.5s ease;
    }

    .btn:hover::before {
      left: 130%;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 22px 50px rgba(255,255,255,0.2);
    }

    .btn.dark {
      background: rgba(255,255,255,0.06);
      color: var(--white);
    }

    section {
      padding: 110px 0;
      position: relative;
    }

    .hero {
      min-height: 100vh;
      display: grid;
      align-items: center;
      padding-top: 130px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 64px;
      align-items: center;
    }

    .eyebrow {
      color: var(--silver);
      text-transform: uppercase;
      letter-spacing: 4px;
      font-size: 13px;
      margin-bottom: 22px;
    }

    h1 {
      font-size: clamp(50px, 8vw, 110px);
      line-height: 0.92;
      letter-spacing: -6px;
      margin-bottom: 28px;
    }

    h1 span {
      color: var(--silver);
      text-shadow: 0 0 30px rgba(255,255,255,0.18);
    }

    .hero p {
      color: var(--muted);
      font-size: 19px;
      line-height: 1.8;
      max-width: 620px;
      margin-bottom: 36px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-card {
      position: relative;
      padding: 28px;
      border-radius: var(--radius);
      background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.035));
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      overflow: hidden;
      transform-style: preserve-3d;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: -2px;
      background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.28), transparent 35%);
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .hero-card:hover::before {
      opacity: 1;
    }

    .preview {
      aspect-ratio: 4 / 5;
      border-radius: 24px;
      overflow: hidden;
      background: #0b2b21;
      position: relative;
    }

    .preview video,
    .preview img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.86;
      transition: 0.7s ease;
    }

    .hero-card:hover video,
    .hero-card:hover img {
      transform: scale(1.07);
    }

    .floating-box {
      position: absolute;
      left: 28px;
      right: 28px;
      bottom: 28px;
      padding: 22px;
      border-radius: 22px;
      background: rgba(6, 31, 23, 0.82);
      border: 1px solid var(--line);
      backdrop-filter: blur(18px);
    }

    .floating-box h3 {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .floating-box p {
      color: var(--muted);
      font-size: 14px;
      margin: 0;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 30px;
      margin-bottom: 44px;
    }

    .section-head h2 {
      font-size: clamp(38px, 5vw, 72px);
      line-height: 1;
      letter-spacing: -4px;
    }

    .section-head p {
      max-width: 460px;
      color: var(--muted);
      line-height: 1.7;
    }

    .showcase-grid {
      display: grid;
      grid-template-columns: 1.4fr 0.8fr;
      gap: 24px;
    }

    .video-box {
      min-height: 360px;
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--card);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      position: relative;
      display: block;
      width: 100%;
      padding: 0;
      color: inherit;
      cursor: pointer;
      font: inherit;
      text-align: left;
      appearance: none;
    }

    .video-box img {
      width: 100%;
      height: 100%;
      min-height: 360px;
      object-fit: cover;
      transition: 0.7s ease;
      filter: saturate(0.9) contrast(1.08);
    }

    .video-box:hover img {
      transform: scale(1.08);
      filter: saturate(1.15) contrast(1.15);
    }

    .video-box:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 4px;
    }

    .video-box::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 55%);
      pointer-events: none;
    }

    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 2;
      width: 76px;
      height: 76px;
      border-radius: 50%;
      background: rgba(215, 184, 107, 0.95);
      transform: translate(-50%, -50%);
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
      transition: 0.25s ease;
    }

    .play-button::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 54%;
      transform: translate(-50%, -50%);
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-left: 22px solid #051b14;
    }

    .video-box:hover .play-button,
    .video-box:focus-visible .play-button {
      transform: translate(-50%, -50%) scale(1.08);
      background: #f2cf7d;
    }

    .video-info {
      position: absolute;
      left: 24px;
      bottom: 24px;
      right: 24px;
      z-index: 2;
      padding: 20px;
      border-radius: 20px;
      background: rgba(6, 31, 23, 0.78);
      backdrop-filter: blur(16px);
      border: 1px solid var(--line);
    }

    .video-info h3 {
      margin-bottom: 6px;
    }

    .video-info p {
      color: var(--muted);
      font-size: 14px;
    }

    .shorts-section {
      padding-top: 0;
    }

    .shorts-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .short-video-box {
      min-height: 520px;
      aspect-ratio: 9 / 16;
      border-radius: 28px;
    }

    .short-video-box img {
      min-height: 520px;
    }

    .short-video-box .video-info {
      left: 16px;
      right: 16px;
      bottom: 16px;
      padding: 16px;
      border-radius: 18px;
    }

    .short-video-box .video-info h3 {
      font-size: 18px;
    }

    .short-video-box .play-button {
      width: 62px;
      height: 62px;
    }

    .short-video-box .play-button::before {
      border-top-width: 11px;
      border-bottom-width: 11px;
      border-left-width: 18px;
    }

    .video-modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: grid;
      place-items: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
    }

    .video-modal.active {
      opacity: 1;
      pointer-events: auto;
    }

    .video-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.78);
      backdrop-filter: blur(12px);
    }

    .video-modal__dialog {
      position: relative;
      z-index: 1;
      width: min(980px, 100%);
      border: 1px solid var(--line);
      border-radius: 20px;
      background: #03130e;
      box-shadow: var(--shadow);
    }

    .video-modal__close {
      position: absolute;
      top: -18px;
      right: -18px;
      z-index: 2;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: var(--gold);
      color: #051b14;
      cursor: pointer;
      font-size: 30px;
      line-height: 1;
    }

    .video-modal__frame {
      aspect-ratio: 16 / 9;
      overflow: hidden;
      border-radius: 20px;
    }

    .video-modal__dialog.is-short {
      width: min(420px, calc(100vw - 32px));
    }

    .video-modal__dialog.is-short .video-modal__frame {
      aspect-ratio: 9 / 16;
      max-height: calc(100vh - 80px);
    }

    .video-modal__frame iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .stack {
      display: grid;
      gap: 24px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 40px;
    }

    .stat {
      padding: 30px;
      border-radius: 26px;
      background:
        linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.035));
      border: 1px solid var(--line);
      position: relative;
      overflow: hidden;
      transition: 0.25s ease;
    }

    .stat::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 42%);
      opacity: 0;
      transition: 0.25s ease;
    }

    .stat:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.35);
    }

    .stat:hover::before {
      opacity: 1;
    }

    .stat strong {
      font-size: 42px;
      color: var(--silver);
      display: inline-block;
      margin-bottom: 8px;
    }

    .stat .suffix {
      font-size: 34px;
      color: var(--silver);
      font-weight: 900;
    }

    .stat span {
      display: block;
      color: var(--muted);
    }

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

    .service-card {
      padding: 36px;
      border-radius: var(--radius);
      background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.035));
      border: 1px solid var(--line);
      position: relative;
      overflow: hidden;
      transition: 0.3s ease;
    }

    .service-card::after {
      content: "";
      position: absolute;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: rgba(216,216,210,0.12);
      top: -60px;
      right: -60px;
      filter: blur(4px);
      transition: 0.35s ease;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow);
    }

    .service-card:hover::after {
      transform: scale(1.8);
    }

    .service-card .num {
      color: var(--silver);
      font-size: 14px;
      margin-bottom: 28px;
      display: block;
    }

    .service-card h3 {
      font-size: 26px;
      margin-bottom: 16px;
      position: relative;
      z-index: 2;
    }

    .service-card p {
      color: var(--muted);
      line-height: 1.7;
      position: relative;
      z-index: 2;
    }

    .about {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 50px;
      align-items: center;
    }

    .about-img {
      border-radius: var(--radius);
      background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
      border: 1px solid var(--line);
      padding: 30px;
      box-shadow: var(--shadow);
      animation: floatImage 5s ease-in-out infinite;
    }

    .about-img img {
      width: 100%;
      border-radius: 22px;
    }

    .about-text h2 {
      font-size: clamp(38px, 5vw, 66px);
      line-height: 1;
      margin-bottom: 24px;
      letter-spacing: -4px;
    }

    .about-text p {
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 18px;
      font-size: 17px;
    }

    .cta {
      text-align: center;
      padding: 95px 30px;
      border-radius: 38px;
      background:
        radial-gradient(circle at top, rgba(255,255,255,0.18), transparent 45%),
        linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: rgba(216,216,210,0.12);
      top: -120px;
      left: 50%;
      transform: translateX(-50%);
      filter: blur(20px);
    }

    .cta h2 {
      font-size: clamp(42px, 6vw, 84px);
      line-height: 1;
      margin-bottom: 24px;
      letter-spacing: -4px;
      position: relative;
    }

    .cta p {
      color: var(--muted);
      max-width: 620px;
      margin: 0 auto 34px;
      line-height: 1.8;
      position: relative;
    }

    footer {
      padding: 40px 0;
      border-top: 1px solid var(--line);
      color: var(--muted);
    }

    .footer-row {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .reveal {
      opacity: 0;
      transform: translateY(34px);
      transition: 0.85s ease;
    }

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

    @keyframes floatImage {
      0%, 100% {
        transform: translateY(0);
      }

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

    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }

      .hero-grid,
      .showcase-grid,
      .shorts-grid,
      .about {
        grid-template-columns: 1fr;
      }

      .services,
      .stats {
        grid-template-columns: 1fr 1fr;
      }

      h1 {
        letter-spacing: -3px;
      }
    }

    @media (max-width: 560px) {
      section {
        padding: 80px 0;
      }

      .services,
      .shorts-grid,
      .stats {
        grid-template-columns: 1fr;
      }

      .section-head {
        display: block;
      }

      .section-head p {
        margin-top: 18px;
      }

      .btn {
        width: 100%;
      }

      .cursor-glow {
        display: none;
      }
    }
