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

    :root {
      --app-primary: #2563eb;
      --app-primary-dark: #1d4ed8;
      --app-primary-soft: #3b82f6;
      --app-glow: rgba(37, 99, 235, 0.12);
      --bg: #f8fafc;
      --surface: #ffffff;
      --surface-card: #ffffff;
      --border: #e2e8f0;
      --text-primary: #0f172a;
      --text-secondary: #334155;
      --text-muted: #64748b;
      --shadow-sm: 0 1px 2px rgba(0,0,0,0.03), 0 4px 8px rgba(0,0,0,0.02);
      --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.05);
      --radius: 24px;
      --radius-sm: 18px;
    }

    [data-theme="dark"] {
      --bg: #0a0c12;
      --surface: #141822;
      --surface-card: #1a1f2c;
      --border: #28303f;
      --text-primary: #f1f5f9;
      --text-secondary: #cbd5e1;
      --text-muted: #94a3b8;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text-primary);
      line-height: 1.5;
    }

    .page {
      max-width: 1100px;
      margin: 0 auto;
      padding: 36px 24px 64px;
    }

    /* back button */
    .nav-back {
      margin-bottom: 32px;
    }
    .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--surface);
      padding: 8px 18px;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text-secondary);
      text-decoration: none;
      border: 1px solid var(--border);
      transition: all 0.2s;
    }
    .nav-link:hover {
      border-color: var(--app-primary);
      color: var(--app-primary);
      transform: translateX(-3px);
    }

    /* hero - distinct layout (centered with badge) */
    .hero-block {
      text-align: center;
      margin-bottom: 56px;
    }
    .hero-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(145deg, var(--surface), var(--bg));
      padding: 12px;
      border-radius: 32px;
      margin-bottom: 20px;
      box-shadow: var(--shadow-sm);
    }
    .hero-icon img {
      width: 80px;
      height: 80px;
      border-radius: 20px;
      object-fit: cover;
    }
    .hero-badge {
      background: rgba(37, 99, 235, 0.12);
      color: var(--app-primary);
      padding: 4px 14px;
      border-radius: 30px;
      font-size: 0.7rem;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 16px;
    }
    .hero-title {
      font-family: 'Outfit', sans-serif;
      font-size: 2.3rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
      background: linear-gradient(to right, var(--text-primary), var(--app-primary));
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }
    .hero-desc {
      color: var(--text-secondary);
      max-width: 650px;
      margin: 0 auto 28px;
      font-size: 1rem;
    }
    .btn-download {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--app-primary);
      color: white;
      font-weight: 600;
      padding: 12px 32px;
      border-radius: 44px;
      text-decoration: none;
      transition: 0.2s;
      box-shadow: 0 8px 18px rgba(37,99,235,0.2);
    }
    .btn-download:hover {
      background: var(--app-primary-dark);
      transform: translateY(-2px);
    }

    /* features grid - different style: minimal borderless cards with subtle background */
    .section-title {
      font-size: 1.65rem;
      font-weight: 700;
      margin-bottom: 28px;
      letter-spacing: -0.3px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-bottom: 52px;
    }
    .feature {
      background: var(--surface-card);
      border-radius: var(--radius-sm);
      padding: 28px 24px;
      transition: 0.2s;
      border: 1px solid var(--border);
    }
    .feature:hover {
      transform: translateY(-4px);
      border-color: var(--app-primary-soft);
      box-shadow: var(--shadow-md);
    }
    .feature .icon {
      font-size: 2rem;
      color: var(--app-primary);
      margin-bottom: 20px;
      display: inline-block;
    }
    .feature h3 {
      font-weight: 700;
      font-size: 1.15rem;
      margin-bottom: 12px;
    }
    .feature p {
      color: var(--text-secondary);
      font-size: 0.9rem;
      line-height: 1.5;
    }

    /* benefits / use cases in chip style */
    .benefits-section {
      background: var(--surface);
      border-radius: var(--radius);
      padding: 32px 36px;
      margin-bottom: 40px;
      border: 1px solid var(--border);
    }
    .benefits-title {
      font-weight: 700;
      font-size: 1.3rem;
      margin-bottom: 20px;
    }
    .chip-list {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .chip {
      background: var(--bg);
      padding: 10px 22px;
      border-radius: 60px;
      font-size: 0.85rem;
      font-weight: 500;
      border: 1px solid var(--border);
      color: var(--text-primary);
    }
    .chip i {
      color: var(--app-primary);
      margin-right: 8px;
    }

    /* privacy highlight (different layout: inline) */
    .privacy-inline {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      background: var(--surface-card);
      border-radius: var(--radius-sm);
      padding: 24px 28px;
      margin-bottom: 32px;
      border-left: 4px solid var(--app-primary);
    }
    .privacy-left h4 {
      font-weight: 700;
      margin-bottom: 6px;
    }
    .privacy-left p {
      color: var(--text-secondary);
      font-size: 0.85rem;
    }
    .privacy-btn {
      background: transparent;
      border: 1px solid var(--border);
      padding: 8px 22px;
      border-radius: 60px;
      text-decoration: none;
      color: var(--app-primary);
      font-weight: 500;
      transition: 0.2s;
    }
    .privacy-btn:hover {
      background: var(--app-primary);
      color: white;
      border-color: var(--app-primary);
    }

    .footer-note {
      text-align: center;
      padding-top: 32px;
      border-top: 1px solid var(--border);
      color: var(--text-muted);
      font-size: 0.8rem;
    }
    .footer-note a {
      color: var(--app-primary);
      text-decoration: none;
    }

    @media (max-width: 800px) {
      .page { padding: 24px 18px 48px; }
      .features-grid { grid-template-columns: 1fr; gap: 16px; }
      .benefits-section { padding: 24px; }
      .hero-title { font-size: 1.8rem; }
      .privacy-inline { flex-direction: column; gap: 16px; text-align: center; }
    }
