
      html, body{
        margin: 0;
      }

      svg {
        max-width: 100%;
        height: auto;
      }

      .v16-root,
      .v16-root * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      .v16-root {
        font-family: 'Inter', sans-serif;
        color: #ffffff;
        min-height: 100vh;
        width: 100%;
        background: #000000;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow-x: hidden;
      }

      .v16-root::before {
        content: '';
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80vw;
        height: 80vw;
        max-width: 1000px;
        max-height: 1000px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.025) 0%, transparent 60%);
        pointer-events: none;
        z-index: 0;
      }

      .v16-nav {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding: 32px 48px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        z-index: 10;
      }

      .v16-nav-logo {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        opacity: 0;
        animation: v16FadeIn 1.2s ease-out 0.2s forwards;
      }

      .v16-nav-logo-mark {
        height: 40px;
        width: auto;
        display: block;
        margin-bottom: 6px;
      }

      .v16-nav-logo-mark svg {
        height: 100%;
        width: auto;
        display: block;
      }

      .v16-nav-logo-text {
        font-family: 'Cormorant Garamond', serif;
        font-size: 9px;
        font-weight: 400;
        letter-spacing: 0.18em;
        color: rgba(255, 255, 255, 0.92);
        text-transform: uppercase;
      }

      .v16-nav-logo-tagline {
        font-family: 'Inter', sans-serif;
        font-size: 6px;
        font-weight: 400;
        letter-spacing: 0.3em;
        color: rgba(255, 255, 255, 0.45);
        text-transform: uppercase;
        margin-top: 0;
      }

      .v16-hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 120px 24px 120px;
        position: relative;
        z-index: 1;
        text-align: center;
      }

      .v16-hero-mark {
        width: auto;
        height: 180px;
        display: block;
        margin-bottom: 24px;
        opacity: 0;
        transform: translateY(20px);
        animation: v16Rise 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
      }

      .v16-hero-mark svg {
        width: auto;
        height: 100%;
        display: block;
        filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.08));
      }

      .v16-hero-brand {
        font-family: 'Cormorant Garamond', serif;
        font-size: 22px;
        font-weight: 500;
        letter-spacing: 0.18em;
        color: rgba(255, 255, 255, 0.92);
        text-transform: uppercase;
        margin-bottom: 6px;
        opacity: 0;
        transform: translateY(20px);
        animation: v16Rise 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
      }

      .v16-hero-brand-tag {
        font-family: 'Inter', sans-serif;
        font-size: 9px;
        font-weight: 400;
        letter-spacing: 0.3em;
        color: rgba(255, 255, 255, 0.45);
        text-transform: uppercase;
        margin-bottom: 140px;
        opacity: 0;
        transform: translateY(20px);
        animation: v16Rise 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
      }

      .v16-hero-tagline {
        font-family: 'Cormorant Garamond', serif;
        font-size: 42px;
        font-weight: 400;
        letter-spacing: -0.01em;
        line-height: 1.1;
        color: #ffffff;
        margin-bottom: 28px;
        opacity: 0;
        transform: translateY(20px);
        animation: v16Rise 1.4s cubic-bezier(0.16, 1, 0.3, 1) 1.0s forwards;
      }

      .v16-hero-supporting {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 300;
        letter-spacing: 0.04em;
        color: rgba(255, 255, 255, 0.55);
        margin-bottom: 56px;
        opacity: 0;
        transform: translateY(20px);
        animation: v16Rise 1.4s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
      }

      .v16-hero-coming {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 0.4em;
        color: rgba(255, 255, 255, 0.35);
        text-transform: uppercase;
        opacity: 0;
        animation: v16PulseFade 3s ease-in-out 1.6s infinite;
      }

      .v16-footer {
        padding: 32px 24px;
        text-align: center;
        position: relative;
        z-index: 1;
        opacity: 0;
        animation: v16FadeIn 1.2s ease-out 1.8s forwards;
      }

      .v16-footer-copyright {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        font-weight: 300;
        letter-spacing: 0.05em;
        color: rgba(255, 255, 255, 0.3);
        margin-bottom: 8px;
      }

      .v16-footer-links {
        display: flex;
        justify-content: center;
        gap: 14px;
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        font-weight: 300;
        letter-spacing: 0.05em;
      }

      .v16-footer-links a {
        color: rgba(255, 255, 255, 0.3);
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .v16-footer-links a:hover {
        color: rgba(255, 255, 255, 0.7);
      }

      .v16-footer-links span {
        color: rgba(255, 255, 255, 0.2);
      }

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

      @keyframes v16FadeIn {
        to {
          opacity: 1;
        }
      }

      @keyframes v16PulseFade {

        0%,
        100% {
          opacity: 0.35;
        }

        50% {
          opacity: 0.6;
        }
      }

      @media (max-width: 768px) {
        .v16-nav {
          padding: 24px 28px;
        }

        .v16-hero {
          padding: 100px 24px 100px;
        }

        .v16-hero-mark {
          height: 140px;
          margin-bottom: 20px;
        }

        .v16-hero-brand {
          font-size: 18px;
          margin-bottom: 5px;
        }

        .v16-hero-brand-tag {
          font-size: 8px;
          margin-bottom: 100px;
        }

        .v16-hero-tagline {
          font-size: 34px;
          margin-bottom: 24px;
        }

        .v16-hero-supporting {
          font-size: 13px;
          margin-bottom: 48px;
        }

        .v16-hero-coming {
          font-size: 10px;
        }
      }

      @media (max-width: 380px) {
        .v16-hero-mark {
          height: 120px;
        }

        .v16-hero-tagline {
          font-size: 28px;
        }
      }