/*  Landing hero · source-order-preserving landing stylesheet.  */

      .hero {
        position: relative;
        min-height: calc(100svh - var(--nav-height));
        display: grid;
        place-items: center;
        overflow: hidden;
        isolation: isolate;
        border-bottom: 1px solid var(--line-dark);
        background:
          linear-gradient(
            90deg,
            rgba(9, 10, 14, 0.98) 0%,
            rgba(9, 10, 14, 0.92) 42%,
            rgba(9, 10, 14, 0.38) 100%
          ),
          url("/res/page/hero.png") center right / cover no-repeat;
      }

      .hero::before {
        content: "";
        position: absolute;
        z-index: -1;
        inset: auto -8vw -20vh 43%;
        height: 72vh;
        background: linear-gradient(
          135deg,
          rgba(237, 185, 76, 0.19),
          rgba(77, 184, 176, 0.05) 62%,
          transparent 63%
        );
        clip-path: polygon(23% 0, 100% 8%, 100% 100%, 0 100%);
        transform: rotate(-4deg);
      }

      .hero::after {
        content: "";
        position: absolute;
        z-index: -1;
        width: min(54vw, 920px);
        aspect-ratio: 3.2 / 1;
        right: -7vw;
        top: 10vh;
        background: var(--logo) center / contain no-repeat;
        filter: brightness(0) invert(1);
        opacity: 0.035;
        transform: rotate(-8deg);
      }

      .hero-inner {
        width: min(calc(100% - 72px), 1260px);
        margin: 0 auto;
        padding: 112px 0 94px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
      }

      .hero h1 {
        max-width: 980px;
        margin: 0;
        font-family: var(--serif);
        font-size: clamp(4.8rem, 9.1vw, 9.3rem);
        line-height: 0.94;
        letter-spacing: -0.075em;
        font-weight: 900;
        text-wrap: balance;
      }

      .hero h1 em {
        color: var(--amber);
        font-style: normal;
      }

      .hero p {
        max-width: 660px;
        margin: 32px auto 0;
        color: #aaa59d;
        font-size: 16px;
        line-height: 2;
      }

      .hero-actions {
        margin-top: 38px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
      }

      .button-primary,
      .button-secondary {
        min-height: 52px;
        padding: 0 25px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 22px;
        font-size: 14px;
        font-weight: 600;
        transition:
          transform 0.2s ease,
          background 0.2s ease,
          color 0.2s ease,
          border-color 0.2s ease;
      }

      .button-primary {
        color: var(--night);
        background: var(--amber);
        border: 1px solid var(--amber);
      }

      .button-secondary {
        color: var(--text);
        border: 1px solid rgba(238, 234, 227, 0.27);
        background: rgba(9, 10, 14, 0.38);
      }

      .button-primary:hover,
      .button-secondary:hover {
        transform: translateY(-2px);
      }
      .button-primary:hover {
        background: var(--amber-soft);
      }
      .button-secondary:hover {
        border-color: rgba(238, 234, 227, 0.56);
      }

      .hero-trust {
        margin-top: 35px;
        display: flex;
        justify-content: center;
        gap: 12px 26px;
        flex-wrap: wrap;
        color: #76726c;
        font-size: 10px;
      }

      .hero-trust span::before {
        content: "";
        width: 4px;
        height: 4px;
        margin-right: 9px;
        display: inline-block;
        border-radius: 50%;
        background: var(--teal);
        vertical-align: middle;
      }
