    :root {
      --bg: #0f0f0f;
      --bg-soft: #171717;
      --gold: #c9a227;
      --gold-soft: rgba(201, 162, 39, 0.16);
      --text: #ffffff;
      --muted: rgba(255, 255, 255, 0.72);
      --border: rgba(255, 255, 255, 0.09);
      --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
      --radius: 28px;
      --transition: 280ms ease;
      --container: 1140px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      font-family: "Montserrat", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(201, 162, 39, 0.18), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(201, 162, 39, 0.12), transparent 22%),
        linear-gradient(145deg, #0a0a0a 0%, #0f0f0f 38%, #151515 100%);
      overflow-x: hidden;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      inset: auto;
      pointer-events: none;
      z-index: 0;
    }

    body::before {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.22;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 120px 120px;
      mask-image: radial-gradient(circle at center, black 28%, transparent 88%);
    }

    body::after {
      right: -140px;
      bottom: -140px;
      width: 360px;
      height: 360px;
      background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, transparent 68%);
      filter: blur(10px);
    }

    .page-shell {
      position: relative;
      z-index: 1;
      width: min(calc(100% - 2rem), var(--container));
      margin: 0 auto;
      min-height: 100vh;
      display: grid;
      place-items: center;
      padding: 2rem 0;
    }

    .hero-card {
      position: relative;
      width: 100%;
      max-width: 920px;
      padding: clamp(2rem, 4vw, 4rem);
      text-align: center;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        rgba(17, 17, 17, 0.72);
      backdrop-filter: blur(16px);
      box-shadow: var(--shadow);
      overflow: hidden;
      animation: fadeUp 1.1s ease both;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(135deg, rgba(201, 162, 39, 0.5), rgba(255, 255, 255, 0.06), rgba(201, 162, 39, 0.25));
      -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }

    .hero-card::after {
      content: "";
      position: absolute;
      top: -20%;
      left: -30%;
      width: 180px;
      height: 180%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
      transform: rotate(18deg);
      animation: shine 6s ease-in-out infinite;
      pointer-events: none;
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      padding: 0.75rem 1.1rem;
      margin-bottom: 1.6rem;
      border-radius: 999px;
      border: 1px solid rgba(201, 162, 39, 0.34);
      background: rgba(201, 162, 39, 0.08);
      color: #f6deb1;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      animation: fadeUp 1.05s ease both 0.1s;
    }

    .status-pill__dot {
      width: 0.65rem;
      height: 0.65rem;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.5);
      animation: pulse 2.4s infinite;
    }

    .logo-frame {
      position: relative;
      width: fit-content;
      margin: 0 auto 1.8rem;
      padding: clamp(1rem, 2vw, 1.3rem);
      border-radius: 26px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 14px 40px rgba(0, 0, 0, 0.28);
      animation: fadeUp 1s ease both 0.18s;
      transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    }

    .logo-frame:hover {
      transform: translateY(-4px);
      border-color: rgba(201, 162, 39, 0.35);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 42px rgba(0, 0, 0, 0.34);
    }

    .logo-frame img {
      display: block;
      width: clamp(150px, 24vw, 220px);
      max-width: 100%;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 12px 24px rgba(201, 162, 39, 0.18));
      animation: none;
    }

    h1 {
      font-family: "Playfair Display", Georgia, serif;
      font-size: clamp(2.35rem, 6vw, 4.8rem);
      line-height: 1.05;
      letter-spacing: 0.02em;
      font-weight: 700;
      margin-bottom: 1rem;
      animation: fadeUp 1s ease both 0.24s;
    }

    .lead {
      max-width: 670px;
      margin: 0 auto 0.85rem;
      font-size: clamp(1rem, 2.3vw, 1.3rem);
      line-height: 1.8;
      color: var(--muted);
      animation: fadeUp 1s ease both 0.32s;
    }

    .subtext {
      max-width: 560px;
      margin: 0 auto 2rem;
      font-size: 0.98rem;
      line-height: 1.85;
      color: rgba(255, 255, 255, 0.58);
      animation: fadeUp 1s ease both 0.4s;
    }

    .divider {
      width: min(180px, 44%);
      height: 1px;
      margin: 0 auto 2rem;
      background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.6), transparent);
      animation: fadeUp 1s ease both 0.46s;
    }

    .actions {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      animation: fadeUp 1s ease both 0.52s;
    }

    .button {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-width: 220px;
      padding: 0.95rem 1.5rem;
      border-radius: 999px;
      text-decoration: none;
      font-size: 0.92rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      transition:
        transform var(--transition),
        box-shadow var(--transition),
        background-color var(--transition),
        color var(--transition),
        border-color var(--transition);
    }

    .button--primary {
      color: #111;
      background: linear-gradient(135deg, #d7b548, #c9a227);
      box-shadow: 0 14px 34px rgba(201, 162, 39, 0.24);
    }

    .button--primary:hover,
    .button--primary:focus-visible {
      transform: translateY(-3px);
      box-shadow: 0 18px 38px rgba(201, 162, 39, 0.3);
    }

    .button--secondary {
      color: var(--text);
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .button--secondary:hover,
    .button--secondary:focus-visible {
      transform: translateY(-3px);
      border-color: rgba(201, 162, 39, 0.42);
      color: #f6deb1;
    }

    .footer {
      margin-top: 2.4rem;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.48);
      letter-spacing: 0.03em;
      animation: fadeUp 1s ease both 0.6s;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .button:focus-visible {
      outline: 2px solid rgba(201, 162, 39, 0.9);
      outline-offset: 4px;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(18px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes floatLogo {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.42);
      }
      70% {
        box-shadow: 0 0 0 12px rgba(201, 162, 39, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(201, 162, 39, 0);
      }
    }

    @keyframes shine {
      0%, 16% {
        transform: translateX(0) rotate(18deg);
        opacity: 0;
      }
      22% {
        opacity: 1;
      }
      48%, 100% {
        transform: translateX(860px) rotate(18deg);
        opacity: 0;
      }
    }

    @media (max-width: 767px) {
      .page-shell {
        width: min(calc(100% - 1.2rem), var(--container));
        padding: 1rem 0;
      }

      .hero-card {
        padding: 1.6rem 1.2rem 1.8rem;
        border-radius: 24px;
      }

      .status-pill {
        gap: 0.55rem;
        padding: 0.7rem 0.9rem;
        letter-spacing: 0.14em;
      }

      .lead {
        line-height: 1.65;
      }

      .subtext {
        font-size: 0.95rem;
        line-height: 1.7;
      }

      .actions {
        flex-direction: column;
      }

      .button {
        width: 100%;
        min-width: 0;
      }
    }

    @media (min-width: 768px) and (max-width: 1024px) {
      .hero-card {
        padding-inline: 2.6rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation: none !important;
        transition: none !important;
      }
    }


