
        :root {
        --bg1: #bdbdbd;
        --bg2: #a9a9a9;


        --base: #1e750d;
        --base-hover: #22910c;
        --shine: rgba(255, 255, 255, 1);


        --text: #102410;
        --card: rgba(255, 255, 255, 0.28);
      }


      html,
      body {
        height: 100%;
        margin: 0;
      }


      body {
        min-height: 100svh;
        margin: 0;

        background: linear-gradient(135deg, var(--bg1), var(--bg2));
        font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
          Helvetica, Arial;

        overflow-x: hidden;

        display: flex;
        flex-direction: column;
        align-items: center;

        padding-top: 120px;
        padding-bottom: 0px;
        box-sizing: border-box;
      }


    .site-header {
        position: fixed;
        top: 12px;
        left: 0;
        right: 0;
        z-index: 10;
        font-family: "Ramabhadra", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        min-height: 75px;
        padding: 10px 24px;
        box-sizing: border-box;

        background: #1e750dd0;
        color:#ffffff;
        
    
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;

        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);

    }

    .coming-soon-wrap {
        width: min(100%, 980px);
        padding: 48px 24px 0;
        text-align: center;
        box-sizing: border-box;
    }

    .wrap {
        width: min(100%, 820px);
        padding: 58px 24px 0;
        text-align: center;
        box-sizing: border-box;
        font-family: "Ramabhadra", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        font-weight: 550;
    }
    .wrap span {
            font-size: 1.2em;
            color:#1e750d;
            font-family: "Ramabhadra", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            font-weight: 900;
        }

    .brand {
        grid-column: 2;
        justify-self: center;
        margin: 0;
        color: #ffffff;
        font-size: clamp(24px, 4vw, 44px);
        font-weight: 900;
        letter-spacing: 0.02em;
        text-align: center;
        padding: 0 16px;
    }

      .brand sup {
            font-size: 0.3em;
            vertical-align: super;
        }

    .brand-logo-frame {
        width: 58px;
        height: 58px;
        box-sizing: border-box;

        border: 3px solid white;
        border-radius: 14px;

        overflow: hidden;
        background: white;

        display: flex;
        align-items: center;
        justify-content: center;

        box-shadow:
            0 8px 18px rgba(0, 0, 0, 0.22),
            0 0 0 2px rgba(255, 255, 255, 0.2);
    }


    .brand-logo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

      .logo {
        font-size: clamp(65px, 10vw, 102px);
        font-weight: 850;
        letter-spacing: 0.02em;
        line-height: 1.18;
        padding: 0.1em 0.06em 0.16em;
        display: inline-block;
        color: transparent;
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        background-clip: text;
        background-image:
          linear-gradient(var(--base), var(--base)),
          linear-gradient(
            110deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 35%,
            var(--shine) 50%,
            rgba(255, 255, 255, 0) 65%,
            rgba(255, 255, 255, 0) 100%
          );
        background-repeat: no-repeat, no-repeat;
        background-size: 100% 100%, 320% 100%;
        background-position: 0 0, -220% 0;
        background-blend-mode: screen;
        filter:
          drop-shadow(0 3px 0 rgba(0, 0, 0, 0.1))
          drop-shadow(0 14px 30px rgba(0, 0, 0, 0.18));
        animation:
          shineMove 3.5s linear infinite,
          floatY 4.5s ease-in-out infinite;
      }

      .subtitle {
        max-width: 640px;
        margin: 18px auto 0;
        color: var(--text);
        font-size: clamp(16px, 2.2vw, 20px);
        font-weight: 700;
        line-height: 1.55;
      }

      .social-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: clamp(32px, 10vw, 100px);
        margin-top: 0;
        flex-wrap: nowrap;
      }

      .social-wrap {
        width: min(100%, 820px);
        padding: 36px 24px clamp(32px, 5vh, 54px);
        text-align: center;
        box-sizing: border-box;
      }

    .social-link {
        width: 74px;
        height: 74px;
        box-sizing: border-box;
        border: 3px solid white;
        border-radius: 50%;
        background: var(--base);
        color: white;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        overflow: hidden;
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
        transition:
            background-color 0.2s ease,
            box-shadow 0.2s ease,
            border-color 0.2s ease;
    }

    .social-icon {
        width: 75%;
        height: 75%;
        object-fit: contain;
        display: block;
        pointer-events: none;
    }

      .social-link:hover {
        background: var(--base-hover);
        border-color: white;
        box-shadow:
            0 14px 28px rgba(30, 117, 13, 0.45),
            0 12px 24px rgba(48, 48, 48, 0.28);
      }

      .small-note {
        margin-top: 24px;
        color: rgba(16, 36, 16, 0.82);
        font-size: 0.95rem;
        font-weight: 700;
      }

    .footer {
        position: static;
        flex-shrink: 0;

        width: 100%;
        min-height: 46px;
        margin-top: auto;
        padding: 8px 16px;
        box-sizing: border-box;

        background: #1e750dd0;
        color: #ffffff;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: clamp(0.68rem, 1.6vw, 0.86rem);
        font-weight: 800;
        line-height: 1.25;
        text-align: center;

        box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.12);
    }


        .footer p {
            margin: 5px;
            font-family: "Ramabhadra", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            font-weight: 550;
            font-size: 1.1em;
          }


        .footer sup {
            font-size: 0.6em;
            vertical-align: super;
            font-family: "Ramabhadra", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color:#000000d0;;
        }
        .footer span {
            font-size: 1.1em;
            font-family: "Ramabhadra", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color:#000000d0;;
        }


      @keyframes shineMove {
        from {
          background-position: 0 0, -220% 0;
        }


        to {
          background-position: 0 0, 220% 0;
        }
      }


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


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

      @media (prefers-reduced-motion: reduce) {
        .logo {
          animation: none !important;
        }
      }


    @media (max-width: 520px) {
    .site-header {
        top: 8px;
        min-height: 74px;
        padding: 8px 10px;
        grid-template-columns: auto 1fr auto;
        gap: 8px;
  }


  .brand-logo-frame {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }


  .brand {
    justify-self: center;
    font-size: clamp(18px, 6vw, 28px);
    text-align: center;
    padding: 0 4px;
  }

  body {
    padding-top: 96px;
    padding-bottom: 0;
  }
  .coming-soon-wrap {
    padding: 32px 18px 0;
  }

  .wrap {
    padding: 6px 18px 0;
  }

  .social-links {
    gap: 24px;
  }

  .social-wrap {
    padding: 30px 18px 24px;
  }

  .social-link {
    width: 64px;
    height: 64px;
  }

}