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

    :root {
      --app-primary: #10b981;
      --app-primary-dark: #059669;
      --app-primary-soft: #34d399;
      --app-glow: rgba(16, 185, 129, 0.12);
      --bg: #fefdf8;
      --surface: #ffffff;
      --surface-card: #ffffff;
      --border: #f0ede8;
      --text-primary: #1e293b;
      --text-secondary: #475569;
      --text-muted: #78716c;
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.02), 0 1px 2px rgba(0,0,0,0.03);
      --shadow-md: 0 12px 28px -10px rgba(0,0,0,0.05);
      --radius-card: 28px;
      --radius-element: 20px;
    }

    [data-theme="dark"] {
      --bg: #0f1217;
      --surface: #181d25;
      --surface-card: #1f2632;
      --border: #2a313e;
      --text-primary: #edf2f7;
      --text-secondary: #cbd5e1;
      --text-muted: #94a3b8;
      --app-primary: #34d399;
      --app-primary-dark: #10b981;
    }

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

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

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

    /* hero – calm, clean, with leaf accent */
    .hero-simple {
      display: flex;
      align-items: center;
      gap: 28px;
      background: var(--surface);
      border-radius: var(--radius-card);
      padding: 32px 36px;
      margin-bottom: 56px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }
    .hero-icon img {
      width: 84px;
      height: 84px;
      border-radius: 24px;
      object-fit: cover;
      box-shadow: 0 10px 18px -8px rgba(0,0,0,0.1);
    }
    .hero-content {
      flex: 1;
    }
    .hero-chip {
      display: inline-block;
      background: rgba(16, 185, 129, 0.12);
      padding: 4px 14px;
      border-radius: 30px;
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--app-primary);
      margin-bottom: 14px;
    }
    .hero-title {
      font-family: 'Outfit', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
      color: var(--text-primary);
    }
    .hero-desc {
      color: var(--text-secondary);
      font-size: 0.95rem;
      max-width: 90%;
      margin-bottom: 24px;
    }
    .btn-google {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--app-primary);
      color: white;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 44px;
      text-decoration: none;
      transition: 0.2s;
      box-shadow: 0 6px 14px rgba(16,185,129,0.25);
    }
    .btn-google:hover {
      background: var(--app-primary-dark);
      transform: translateY(-2px);
    }

    /* features: horizontal flow with clean cards */
    .section-title {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 28px;
      letter-spacing: -0.3px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 52px;
    }
    .habit-card {
      background: var(--surface-card);
      border-radius: var(--radius-element);
      padding: 28px 22px;
      border: 1px solid var(--border);
      transition: all 0.2s;
    }
    .habit-card:hover {
      transform: translateY(-5px);
      border-color: var(--app-primary-soft);
      box-shadow: var(--shadow-md);
    }
    .card-icon {
      font-size: 2rem;
      color: var(--app-primary);
      margin-bottom: 20px;
      display: inline-block;
      background: rgba(16,185,129,0.08);
      padding: 10px;
      border-radius: 18px;
    }
    .habit-card h3 {
      font-weight: 700;
      font-size: 1.2rem;
      margin-bottom: 12px;
    }
    .habit-card p {
      color: var(--text-secondary);
      font-size: 0.9rem;
      line-height: 1.5;
    }

    /* minimal stats & privacy */
    .info-row {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: space-between;
      background: var(--surface);
      border-radius: var(--radius-element);
      padding: 28px 32px;
      margin-bottom: 40px;
      border: 1px solid var(--border);
    }
    .info-block {
      flex: 1;
    }
    .info-block h4 {
      font-weight: 700;
      margin-bottom: 10px;
      font-size: 1rem;
    }
    .info-block p {
      font-size: 0.85rem;
      color: var(--text-secondary);
    }
    .badge-group {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 12px;
    }
    .mini-badge {
      background: var(--bg);
      border-radius: 50px;
      padding: 5px 14px;
      font-size: 0.75rem;
      font-weight: 500;
      border: 1px solid var(--border);
    }

    .privacy-note {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(16,185,129,0.05);
      border-radius: var(--radius-element);
      padding: 20px 28px;
      margin-bottom: 32px;
      flex-wrap: wrap;
      gap: 16px;
    }
    .privacy-note span {
      font-weight: 500;
    }
    .privacy-link {
      background: transparent;
      border: 1px solid var(--border);
      padding: 8px 24px;
      border-radius: 60px;
      text-decoration: none;
      color: var(--app-primary);
      font-weight: 500;
      transition: 0.2s;
    }
    .privacy-link:hover {
      background: var(--app-primary);
      color: white;
      border-color: var(--app-primary);
    }

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

    @media (max-width: 780px) {
      .wrapper { padding: 24px 18px 48px; }
      .hero-simple { flex-direction: column; text-align: center; padding: 28px 24px; }
      .hero-desc { max-width: 100%; }
      .grid-3 { grid-template-columns: 1fr; gap: 18px; }
      .info-row { flex-direction: column; gap: 20px; }
      .hero-title { font-size: 1.7rem; }
    }
