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

:root {
  --green: #1a73e8;
  --green-dark: #1558b0;
  --green-mid: #2d84f0;
  --green-light: #e8f0fe;
  --yellow: #f9a825;
  --bg: #f1f3f4;
  --white: #ffffff;
  --text: #212121;
  --text-mid: #424242;
  --text-muted: #757575;
  --border: #e0e0e0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.07);
  --radius: 12px;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ── Layout ──────────────────────────────────────────── */

.container {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

main {
  flex: 1;
  padding: 40px 0 60px;
}

/* ── Header ──────────────────────────────────────────── */

header {
  background: var(--green);
  padding: 14px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}

.site-title:hover {
  text-decoration: none;
  opacity: 0.9;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

nav a:hover {
  color: #fff;
  text-decoration: none;
}

/* ── Hero ────────────────────────────────────────────── */

.hero {
  background: var(--white);
  text-align: center;
  padding: 48px 30px 28px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.app-icon {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

.hero .tagline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.hero .description {
  font-size: 1rem;
  max-width: 420px;
  margin: 0 auto;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 8px 14px;
  border-radius: 999px;
  /* background: var(--green-light); */
  /* color: var(--green-dark); */
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.3;
}

/* .hero-note::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.12);
} */

/* ── Store badges ────────────────────────────────────── */

.store-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 48px;
}

.store-badge-link {
  display: inline-block;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}

.store-badge-link:hover {
  transform: translateY(-2px);
  opacity: 0.88;
  text-decoration: none;
}

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

.store-badge-coming {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.store-badge-coming .store-badge {
  opacity: 0.38;
  filter: grayscale(20%);
}

.store-badge-soon {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Cards ───────────────────────────────────────────── */

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 32px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.compare-section {
  position: relative;
  overflow: hidden;
  /* background:
    linear-gradient(135deg, rgba(26, 115, 232, 0.08), rgba(249, 168, 37, 0.06)),
    var(--white); */
  /* border: 1px solid rgba(26, 115, 232, 0.12); */
}

/* .compare-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--green), var(--yellow));
} */

.compare-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(26, 115, 232, 0.1);
  color: var(--green-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.compare-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(249, 168, 37, 0.15);
}

.compare-section .card-title {
  color: var(--green-dark);
  margin-bottom: 10px;
  padding-left: 2px;
  font-size: 1rem;
}

.compare-intro {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--text-mid);
}

.compare-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 18px;
}

.compare-point {
  padding: 16px 16px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(26, 115, 232, 0.08);
  box-shadow: var(--shadow-sm);
}

.compare-point h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
}

.compare-point p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ── Features ────────────────────────────────────────── */

.features ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}

.features ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.95rem;
  color: var(--text-mid);
  padding: 1px 0;
}

.features ul li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E")
    center / 13px no-repeat;
}

/* ── Links ───────────────────────────────────────────── */

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link-list a {
  display: inline-block;
  padding: 9px 20px;
  background: var(--green);
  color: #fff;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 500;
  transition:
    background 0.15s ease,
    transform 0.1s ease,
    box-shadow 0.15s ease;
}

.link-list a:hover {
  background: var(--green-dark);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ── Publisher strip ─────────────────────────────────── */

.publisher-strip {
  text-align: center;
  padding-top: 6px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.publisher-strip strong {
  color: var(--text-mid);
  margin-left: 3px;
}

/* ── Inner page header ───────────────────────────────── */

.page-header {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--green);
}

.page-header h1 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}

.page-header .updated {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Prose (policy / terms pages) ───────────────────── */

.prose p {
  color: var(--text-mid);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.prose h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 28px 0 10px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose ul {
  list-style: none;
  margin-bottom: 14px;
}

.prose ul li {
  display: flex;
  gap: 10px;
  color: var(--text-mid);
  margin-bottom: 8px;
  font-size: 0.95rem;
  align-items: flex-start;
}

.prose ul li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--green)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E")
    center / 13px no-repeat;
}

.prose .note {
  background: var(--green-light);
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
  padding: 13px 16px;
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--text-mid);
}

.prose .contact-block {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.prose .contact-block p {
  margin-bottom: 2px;
}

/* ── Footer ──────────────────────────────────────────── */

footer {
  background: var(--green-dark);
  padding: 22px 0;
  text-align: center;
}

footer p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ── Responsive ──────────────────────────────────────── */

@media (max-width: 600px) {
  .hero {
    padding: 44px 20px 40px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .app-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
  }

  .card {
    padding: 24px 20px;
  }

  .features ul {
    grid-template-columns: 1fr;
  }

  .compare-section ul {
    grid-template-columns: 1fr;
  }

  .compare-points {
    grid-template-columns: 1fr;
  }

  header .container {
    flex-direction: row;
    align-items: center;
  }

  nav {
    gap: 16px;
  }
}
