:root {
  --bg-0: #09090b;
  --bg-1: #0c1210;
  --green: #22ff88;
  --green-soft: #7dffb5;
  --text: #fafafa;
  --muted: #a1a1aa;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(34, 255, 136, 0.16);
  --maxw: 720px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 680px at 50% -12%, rgba(34, 255, 136, 0.12), transparent 58%),
    radial-gradient(800px 520px at 90% 110%, rgba(6, 182, 212, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0));
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 22px 40px;
}

.logo-tile {
  width: 112px;
  height: 112px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(34, 255, 136, 0.1), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--card-border);
  box-shadow:
    0 0 0 1px rgba(34, 255, 136, 0.08),
    0 18px 60px rgba(34, 255, 136, 0.12);
}
.logo-tile img {
  width: 78px;
  height: 78px;
  border-radius: 18px;
  object-fit: contain;
}

.brand {
  margin-top: 30px;
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 9vw, 68px);
  letter-spacing: -0.03em;
  line-height: 1;
  /* Solid color so Google brand scanners always see the app name text. */
  color: #fafafa;
}

.tagline-sm {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  padding-left: 0.36em;
}

.lead {
  margin: 26px auto 0;
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(16px, 2.4vw, 18px);
}

.privacy-top {
  margin: 18px auto 0;
  max-width: 560px;
  font-size: 14px;
  color: var(--muted);
}
.privacy-top a {
  font-weight: 600;
}

.about {
  margin: 28px auto 0;
  max-width: 560px;
  text-align: left;
  padding: 18px 18px 16px;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.03);
}
.about h2 {
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.about p {
  color: #d4d4d8;
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 10px;
}
.about p:last-child {
  margin-bottom: 0;
}
.about a {
  font-weight: 600;
}

.hook {
  margin: 22px auto 0;
  max-width: 520px;
  font-style: italic;
  color: rgba(125, 255, 181, 0.88);
  font-size: 15px;
}

.stores {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.store-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  min-width: 200px;
  cursor: default;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.store-btn[href]:not([href="#"]) {
  cursor: pointer;
}
.store-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 255, 136, 0.45);
  background: rgba(34, 255, 136, 0.06);
  text-decoration: none;
}
.store-btn svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: var(--text);
}
.store-btn .st-text {
  text-align: left;
  line-height: 1.15;
}
.store-btn .st-text small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.store-btn .st-text strong {
  font-size: 16px;
  font-weight: 600;
}
.soon {
  position: absolute;
  top: -9px;
  right: 12px;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--green);
  color: #062016;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
}

.contact {
  margin-top: 40px;
  font-size: 15px;
  color: var(--muted);
}
.contact a {
  font-weight: 600;
}

.footer {
  margin-top: 54px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 8px 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.footer .dot {
  opacity: 0.4;
}

.legal {
  padding: 64px 22px 96px;
}
.legal .topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 38px;
}
.legal .topbar a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}
.legal .topbar img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--card-border);
}
.legal .topbar .name {
  font-family: "Syne", "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
  font-weight: 800;
  font-size: 18px;
}
.legal h1 {
  font-family: "Syne", "Space Grotesk", sans-serif;
  font-size: clamp(28px, 6vw, 38px);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.legal .updated {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 34px;
}
.legal h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--green-soft);
}
.legal p,
.legal li {
  color: #d4d4d8;
  font-size: 15.5px;
}
.legal p {
  margin-bottom: 14px;
}
.legal ul,
.legal ol {
  margin: 0 0 16px 22px;
}
.legal li {
  margin-bottom: 8px;
}
.legal a.back {
  display: inline-block;
  margin-top: 40px;
  color: var(--green-soft);
  font-weight: 600;
}
.legal .card-note {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 22px 0;
  color: var(--muted);
  font-size: 14px;
}
