    :root {
      --page-bg: #ffffff;
      --footer-bg: #000000;
      --icon-size: clamp(148px, 24vw, 220px);
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      min-height: 100%;
      background: var(--page-bg);
    }

    body {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      color: #111;
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
    }

    main {
      flex: 1;
      display: grid;
      place-items: center;
      padding: max(36px, env(safe-area-inset-top)) 24px 48px;
    }

    .download-card {
      width: min(100%, 760px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 34px;
      text-align: center;
    }

    .app-icon {
      width: var(--icon-size);
      height: var(--icon-size);
      display: block;
      object-fit: cover;
      border-radius: 22.5%;
      box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.10),
        0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .store-badges {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .store-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      text-decoration: none;
      transition: transform 160ms ease, opacity 160ms ease;
    }

    .store-badge:hover {
      transform: translateY(-2px);
    }

    .store-badge:active {
      transform: translateY(0) scale(0.985);
    }

    .store-badge:focus-visible {
      outline: 3px solid #111;
      outline-offset: 5px;
      border-radius: 10px;
    }

    .store-badge img {
      display: block;
      width: auto;
      height: 52px;
    }

    footer {
      min-height: 118px;
      padding: 26px max(24px, env(safe-area-inset-right)) max(26px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
      background: var(--footer-bg);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-inner {
      width: min(100%, 1100px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .griffure-logo {
      width: 128px;
      height: auto;
      display: block;
    }

    .copyright {
      margin: 0;
      font-size: 13px;
      line-height: 1.4;
      color: rgba(255, 255, 255, 0.72);
      text-align: right;
      white-space: nowrap;
    }

    @media (max-width: 560px) {
      main {
        padding-inline: 18px;
      }

      .download-card {
        gap: 28px;
      }

      .store-badges {
        width: 100%;
        flex-direction: column;
        gap: 10px;
      }

      .store-badge img {
        height: 50px;
      }

      footer {
        min-height: 142px;
      }

      .footer-inner {
        flex-direction: column;
        justify-content: center;
        gap: 14px;
      }

      .griffure-logo {
        width: 118px;
      }

      .copyright {
        text-align: center;
        white-space: normal;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .store-badge {
        transition: none;
      }
    }

    .footer-details { display: grid; gap: 12px; }
    .footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 20px; font-size: 13px; }
    .footer-links a { color: #fff; text-underline-offset: 4px; }
    a:focus-visible { outline: 3px solid currentColor; outline-offset: 5px; }
    .legal-main { display: block; width: min(100%, 800px); margin-inline: auto; padding-block: 48px 72px; }
    .back-link { color: #444; text-underline-offset: 4px; font-size: 14px; }
    .legal-main h1 { font-size: clamp(30px, 6vw, 44px); line-height: 1.15; margin: 36px 0 16px; overflow-wrap: anywhere; }
    .legal-main h2 { font-size: 21px; line-height: 1.3; margin: 32px 0 12px; }
    .legal-main p, .legal-main li { font-size: 16px; line-height: 1.7; }
    .legal-main p { margin: 12px 0; }
    .legal-main a { color: inherit; text-underline-offset: 4px; overflow-wrap: anywhere; }
    .legal-main .legal-meta { color: #666; font-size: 14px; }
    .privacy-highlight { padding: 20px 24px; background: #f4f4f4; border-radius: 16px; }
    @media (max-width: 560px) {
      .footer-links { justify-content: center; text-align: center; }
      .legal-main { padding-block: 32px 48px; }
    }
