/* TapMap Daily — marketing site.
 * Static, self-contained (one stylesheet, system + Google display font).
 * Brand: warm cream field, coral map-pin accent, teal "ocean" secondary,
 * gold coin accent. Light-only (the app itself is light). */

:root {
  --cream-50: #faf7f0;
  --cream-100: #f4f0e6;
  --cream-200: #ece6d7;
  --cream-300: #ddd4bf;
  --ink-900: #221f19;
  --ink-700: #433d31;
  --ink-500: #726a58;
  --ink-400: #948b76;
  --coral-600: #d9542f;
  --coral-500: #e0623c;
  --coral-100: #f6d9cd;
  --teal-700: #2f6b6b;
  --teal-600: #3a7d7d;
  --gold-500: #e5a13a;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --wrap: 68rem;
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream-100);
  color: var(--ink-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink-900);
  margin: 0 0 0.4em;
}

p { margin: 0 0 1rem; }

a { color: var(--coral-600); text-decoration: none; }
a:hover { color: var(--coral-500); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--cream-100) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid color-mix(in srgb, var(--cream-300) 60%, transparent);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.9rem; padding-bottom: 0.9rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--ink-900); }
.brand:hover { color: var(--ink-900); }
.brand .pin { width: 26px; height: 26px; flex: none; }
.nav { display: flex; align-items: center; gap: 1.6rem; font-size: 0.9rem; }
.nav a { color: var(--ink-700); }
.nav a:hover { color: var(--coral-600); }
.nav .cta { padding: 0.5rem 1rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-block; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  padding: 0.8rem 1.6rem; transition: transform 0.12s ease, background 0.15s ease;
  cursor: pointer; border: 0;
}
.btn-primary { background: var(--coral-600); color: #fff; }
.btn-primary:hover { background: var(--coral-500); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink-900); border: 1.5px solid var(--cream-300); }
.btn-ghost:hover { color: var(--ink-900); border-color: var(--ink-400); }

/* ---- Hero ---- */
.hero { padding: 4.5rem 0 3rem; text-align: center; }
.eyebrow { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--coral-600); margin-bottom: 1.1rem; font-weight: 600; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
.hero .lede { font-size: 1.2rem; color: var(--ink-700); max-width: 40rem; margin: 1rem auto 0.4rem; }
.hero .sub { font-size: 1rem; color: var(--ink-500); max-width: 34rem; margin: 0 auto 1.8rem; }
.hero-actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.badge-row { margin-top: 1.4rem; font-size: 0.8rem; color: var(--ink-400); letter-spacing: 0.02em; }

/* Hero map card */
.hero-art {
  margin: 2.6rem auto 0; max-width: 40rem;
  background: var(--cream-50); border: 1px solid var(--cream-300);
  border-radius: var(--radius); padding: 1.4rem;
  box-shadow: 0 24px 60px -30px rgba(60,40,20,0.35);
}
.hero-art svg { width: 100%; height: auto; display: block; border-radius: 12px; }

/* ---- Sections ---- */
section { padding: 3.5rem 0; }
.section-tag { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 0.9rem; font-weight: 600; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); max-width: 30rem; }
.section-lead { color: var(--ink-700); max-width: 34rem; font-size: 1.05rem; }
.bordered { border-top: 1px solid color-mix(in srgb, var(--cream-300) 60%, transparent); }

/* Steps */
.steps { display: grid; gap: 1.6rem; margin-top: 2rem; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem 3rem; } }
.step { display: flex; gap: 1rem; }
.step .n {
  flex: none; width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--coral-100); color: var(--coral-600);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.25rem; }
.step p { color: var(--ink-700); margin: 0; }

/* Feature grid */
.features { display: grid; gap: 1.6rem 2.4rem; margin-top: 2rem; }
@media (min-width: 720px) { .features { grid-template-columns: repeat(3, 1fr); } }
.feature h3 { font-size: 1.1rem; }
.feature p { color: var(--ink-700); font-size: 0.95rem; margin: 0; }
.feature .ico { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* Pricing */
.price-grid { display: grid; gap: 1.2rem; margin-top: 2rem; }
@media (min-width: 720px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  background: var(--cream-50); border: 1px solid var(--cream-300);
  border-radius: var(--radius); padding: 1.6rem;
}
.price-card.feature-card { border-color: var(--coral-500); background: #fff; }
.price-card h3 { font-size: 1.4rem; margin-bottom: 0.15rem; }
.price-card .tag { font-size: 0.85rem; color: var(--ink-500); margin-bottom: 1rem; }
.price-card ul { list-style: none; padding: 0; margin: 0; }
.price-card li { padding: 0.3rem 0; color: var(--ink-700); font-size: 0.92rem; display: flex; gap: 0.5rem; }
.price-card li::before { content: "·"; color: var(--coral-500); font-weight: 700; }

/* Coin pack table */
.packs { margin-top: 1.4rem; width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.packs th, .packs td { text-align: left; padding: 0.7rem 0.6rem; border-bottom: 1px solid var(--cream-200); }
.packs th { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-400); font-weight: 600; }
.packs .coins { color: var(--gold-500); font-weight: 600; font-variant-numeric: tabular-nums; }
.packs .price { font-variant-numeric: tabular-nums; }

.note {
  margin-top: 1.4rem; background: var(--cream-50); border: 1px solid var(--cream-300);
  border-radius: 12px; padding: 1rem 1.2rem; font-size: 0.88rem; color: var(--ink-500);
}

/* Callout card */
.callout {
  background: var(--cream-50); border: 1px solid var(--cream-300);
  border-radius: var(--radius); padding: 2rem;
}
.callout h2 { font-size: 1.5rem; }
.callout ul { padding-left: 1.1rem; color: var(--ink-700); }
.callout li { margin-bottom: 0.4rem; }

/* CTA band */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid color-mix(in srgb, var(--cream-300) 60%, transparent);
  background: var(--cream-50); margin-top: 3rem;
}
.site-footer .wrap { display: grid; gap: 2rem; padding-top: 2.6rem; padding-bottom: 2.6rem; }
@media (min-width: 720px) { .site-footer .wrap { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer .col-title { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 0.8rem; font-weight: 600; }
.site-footer a { display: block; color: var(--ink-700); font-size: 0.92rem; padding: 0.2rem 0; }
.site-footer a:hover { color: var(--coral-600); }
.site-footer .studio { font-size: 0.9rem; color: var(--ink-500); }
.site-footer .studio .name { font-family: var(--font-display); font-weight: 600; color: var(--ink-900); font-size: 1.05rem; }

/* ---- Legal / policy pages ---- */
.legal { max-width: 44rem; margin: 0 auto; padding: 3rem 1.5rem 1rem; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.legal .updated { color: var(--ink-500); font-size: 0.9rem; margin-bottom: 2.4rem; }
.legal h2 { font-size: 1.3rem; margin-top: 2.2rem; }
.legal p, .legal li { color: var(--ink-700); }
.legal ul { padding-left: 1.2rem; }
.legal a { text-decoration: underline; }

.back { display: inline-block; margin-bottom: 1.4rem; font-size: 0.9rem; color: var(--ink-500); }
