/* Lashon — minimal verification site styles
   Temporary/utility styling for Paddle verification.
   The real branded landing page will come from Claude Design and replace this. */

:root {
  --ink: #1a1a2e;
  --muted: #5a5a72;
  --accent: #2d5bd7;
  --line: #e6e6ef;
  --bg: #ffffff;
  --soft: #f7f8fc;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

header.site {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink);
  text-decoration: none;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 20px;
  font-size: 15px;
}

nav a:hover { color: var(--accent); }

.hero {
  padding: 72px 0 48px;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0 0 16px;
}

.hero p.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

section { padding: 40px 0; }

section h2 {
  font-size: 26px;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
}

.tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  background: var(--soft);
}

.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.tier {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}

.tier.featured {
  border-color: var(--accent);
  box-shadow: 0 4px 18px rgba(45, 91, 215, 0.10);
}

.tier .name { font-weight: 700; font-size: 16px; }
.tier .price { font-size: 30px; font-weight: 700; margin: 12px 0 4px; }
.tier .price span { font-size: 15px; font-weight: 400; color: var(--muted); }
.tier .desc { color: var(--muted); font-size: 14px; margin-top: 8px; }
.tier .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(45, 91, 215, 0.10);
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 10px;
}

.note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 18px;
  text-align: center;
}

.legal {
  padding: 56px 0;
  max-width: 720px;
}

.legal h1 { font-size: 30px; letter-spacing: -0.5px; }
.legal h2 { font-size: 19px; margin-top: 32px; }
.legal p, .legal li { color: #33334a; }
.legal .updated { color: var(--muted); font-size: 14px; }

footer.site {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  margin-top: 40px;
  font-size: 14px;
  color: var(--muted);
}

footer.site .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  align-items: center;
}

footer.site a { color: var(--muted); text-decoration: none; }
footer.site a:hover { color: var(--accent); }
footer.site .links a { margin-left: 16px; }

@media (max-width: 620px) {
  .tools, .tiers { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
}
