    :root {
      --bg: #ffffff;
      --text: #000000;
      --subtext: #6e6e73;
      --accent: #0071e3;
      --border: #d2d2d7;
    }

    * { box-sizing: border-box; }
    html, body { height: 100%; }

    body {
      margin: 0;
      background-color: var(--bg);
      color: var(--text);
      font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
      -webkit-font-smoothing: antialiased;
    }

    .container {
      max-width: 800px;
      width: 100%;
      padding: 60px 30px;
      text-align: center;
    }

    h1.brand {
      font-size: clamp(48px, 8vw, 96px);
      font-weight: 800;
      margin: 0;
      line-height: 1;
      letter-spacing: -0.03em;
      position: relative;
      text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.1);
      text-align: center;
    }

    p.lead {
      margin: 16px 0 48px;
      font-size: clamp(18px, 2vw, 24px);
      color: var(--subtext);
      font-weight: 500;
      text-align: center;
    }

    h2#our-apps {
      font-size: 20px;
      font-weight: 600;
      color: var(--subtext);
      margin-bottom: 16px;
      text-align: left;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .apps {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 40px;
    }

    .app-card {
      background: #f5f5f7;
      border-radius: 28px;
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      min-width: 320px;
      border: 1px solid var(--border);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      text-decoration: none;
      color: inherit;
    }

    .app-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    .app-icon {
      width: 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
    }

    .app-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .app-info {
      text-align: left;
    }
    .app-info .title {
      font-size: 17px;
      font-weight: 700;
      margin: 0;
      color: var(--text);
    }
    .app-info .meta {
      font-size: 14px;
      color: var(--subtext);
      margin-top: 4px;
    }

    .links {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 24px;
    }

    a.btn {
      display: inline-block;
      padding: 12px 24px;
      border-radius: 980px;
      background-color: var(--accent);
      color: #fff;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    a.btn:hover {
      background-color: #0077ed;
    }

    a.link-plain {
      color: var(--accent);
      text-decoration: none;
      font-weight: 500;
    }

    a.link-plain:hover {
      text-decoration: underline;
    }
    
footer {
position: fixed;
bottom: 16px;
left: 24px;
font-size: 0.875rem;
color: #a1a1a6;
}

footer a {
color: #a1a1a6;
text-decoration: none;
margin-left: 6px;
}

footer a:hover {
text-decoration: underline;
}