 :root {
      --bg: #031226;
      --bg-dark: #020d1c;
      --card: #0b2038;
      --card-soft: #102943;
      --accent: #00b7c2;
      --accent-light: #42d6de;
      --text: #ffffff;
      --muted: #9fb3c8;
      --line: rgba(0, 183, 194, 0.26);
      --warning: #facc15;
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      min-height: 100%;
      background: var(--bg);
      color: var(--text);
      font-family:
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
      overflow-x: hidden;
    }

    body {
      opacity: 0;
      transition: opacity 0.55s ease;
    }

    body.loaded {
      opacity: 1;
    }

    .page {
      min-height: 100vh;
      display: grid;
      place-items: center;
      padding: 28px 18px;
      background:
        radial-gradient(
          circle at top right,
          rgba(0, 183, 194, 0.16),
          transparent 34%
        ),
        radial-gradient(
          circle at bottom left,
          rgba(0, 183, 194, 0.08),
          transparent 32%
        ),
        linear-gradient(
          180deg,
          var(--bg) 0%,
          var(--bg-dark) 100%
        );
    }

    .card {
      width: min(680px, 100%);
      padding: 36px 30px 30px;
      border: 1px solid var(--line);
      border-radius: 28px;
      background:
        linear-gradient(
          180deg,
          rgba(255, 255, 255, 0.04),
          rgba(255, 255, 255, 0)
        ),
        var(--card);
      box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.44),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
      text-align: center;
    }

    .brand {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      margin-bottom: 22px;
    }

    .brand-logo {
      width: 78px;
      height: 78px;
      border-radius: 20px;
      object-fit: contain;
      background: #ffffff;
      padding: 8px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
    }

    .brand-copy {
      text-align: left;
    }

    .brand-title {
      margin: 0;
      font-size: clamp(25px, 4vw, 35px);
      line-height: 1.05;
      font-weight: 900;
    }

    .brand-subtitle {
      margin: 6px 0 0;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .gear-wrap {
      width: 104px;
      height: 104px;
      margin: 6px auto 22px;
      position: relative;
    }

    .gear-wrap::before,
    .gear-wrap::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 7px solid var(--accent);
      clip-path: polygon(
        48% 0,
        52% 0,
        60% 12%,
        72% 8%,
        80% 18%,
        76% 30%,
        88% 38%,
        88% 62%,
        76% 70%,
        80% 82%,
        72% 92%,
        60% 88%,
        52% 100%,
        48% 100%,
        40% 88%,
        28% 92%,
        20% 82%,
        24% 70%,
        12% 62%,
        12% 38%,
        24% 30%,
        20% 18%,
        28% 8%,
        40% 12%
      );
      animation: spin 6s linear infinite;
    }

    .gear-wrap::after {
      inset: 16px;
      border-width: 6px;
      border-color: #ffffff;
      animation: spinReverse 4s linear infinite;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    @keyframes spinReverse {
      to {
        transform: rotate(-360deg);
      }
    }

    .status-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 17px;
      padding: 9px 15px;
      border-radius: 999px;
      border: 1px solid rgba(250, 204, 21, 0.3);
      background: rgba(250, 204, 21, 0.09);
      color: var(--warning);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: var(--warning);
      box-shadow: 0 0 14px rgba(250, 204, 21, 0.7);
    }

    .title {
      margin: 0;
      font-size: clamp(29px, 5vw, 43px);
      line-height: 1.08;
      font-weight: 900;
    }

    .description {
      max-width: 550px;
      margin: 18px auto 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.65;
    }

    .info-box {
      margin-top: 25px;
      padding: 20px;
      border-radius: 18px;
      background: var(--card-soft);
      border: 1px solid rgba(255, 255, 255, 0.08);
      text-align: left;
    }

    .info-title {
      margin: 0 0 11px;
      color: var(--text);
      font-size: 16px;
      font-weight: 900;
    }

    .feature-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 9px;
    }

    .feature-list li {
      position: relative;
      padding-left: 25px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .feature-list li::before {
      content: "✓";
      position: absolute;
      top: 0;
      left: 0;
      color: var(--accent-light);
      font-weight: 900;
    }

    .stores {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
      margin-top: 25px;
    }

    .store-card {
      min-height: 122px;
      padding: 18px 14px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.035);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .store-card img {
      display: block;
      width: min(190px, 90%);
      height: auto;
      opacity: 0.65;
    }

    .store-status {
      margin: 0;
      color: var(--warning);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 26px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 13px 18px;
      border-radius: 16px;
      text-decoration: none;
      font-size: 15px;
      font-weight: 900;
      transition:
        transform 0.15s ease,
        filter 0.15s ease,
        background 0.15s ease;
    }

    .button:hover {
      transform: translateY(-1px);
      filter: brightness(1.05);
      text-decoration: none;
    }

    .button-primary {
      background: var(--accent);
      color: #031226;
    }

    .button-secondary {
      color: var(--accent-light);
      border: 1px solid var(--accent);
      background: transparent;
    }

    .small-note {
      margin: 19px 0 0;
      color: #71859d;
      font-size: 12px;
      line-height: 1.55;
    }

    @media (max-width: 560px) {
      .page {
        padding: 18px 12px;
      }

      .card {
        padding: 28px 18px 24px;
        border-radius: 22px;
      }

      .brand {
        flex-direction: column;
      }

      .brand-copy {
        text-align: center;
      }

      .brand-logo {
        width: 70px;
        height: 70px;
      }

      .gear-wrap {
        width: 88px;
        height: 88px;
      }

      .stores,
      .actions {
        grid-template-columns: 1fr;
      }

      .description {
        font-size: 15px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
    }