:root {
  --accent: #009688;
  --bg: #f9fafb;
  --text: #111;
  --muted: #555;
  --radius: 16px;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  text-align: center;
}

.fade-in { opacity: 0; animation: fade 0.8s ease forwards; }
@keyframes fade { to { opacity: 1; } }

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
}

/* --- Logo with right-aligned tagline --- */
header {
  display: inline-block;
  position: relative;
  text-align: left;
}

.logo {
  font-family: "Questrial", sans-serif;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
}

.tagline {
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  color: var(--muted);
  margin: 0.3rem 0 3rem 0;
  text-align: right;       /* aligns text to the right edge */
  display: block;
}

.apps {
  display: flex;
  justify-content: center;
}
.app-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.app-icon {
  width: 72px;
  height: 72px;
  border-radius: 20%;
}
.app-info h2 { margin: 0; font-size: 1.5rem; }
.app-info p { color: var(--muted); margin: 0.25rem 0 0; }

footer {
  margin-top: 4rem;
  color: var(--muted);
  font-size: 0.9rem;
}
