/* Picksmith — matches app neon theme
   Magenta #FF2EC4 on deep indigo #0B0426, cyan accent #00E5FF */

:root {
  --bg:            #0B0426;
  --surface:       #1A0E3D;
  --surface-2:     #2A1A55;
  --text:          #E8DDFF;
  --text-dim:      #B6A4FF;
  --magenta:       #FF2EC4;
  --magenta-soft:  #FF2EC422;
  --cyan:          #00E5FF;
  --border:        #2A1A55;
  --max-width:     1100px;
  --radius:        18px;
  --radius-sm:     12px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
               Ubuntu, Cantarell, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--magenta); text-decoration: none; }
a:hover { color: var(--cyan); }

img { max-width: 100%; display: block; }

h1, h2, h3 { line-height: 1.15; margin: 0 0 0.6em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 4, 38, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--text);
}
.brand-pick { color: var(--magenta); }
.nav-links a {
  color: var(--text-dim);
  margin-left: 22px;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--text); }

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

.hero {
  padding: clamp(48px, 10vw, 120px) 0 clamp(40px, 8vw, 80px);
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(255, 46, 196, 0.15), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 229, 255, 0.08), transparent 50%);
}
.hero .tagline {
  display: inline-block;
  color: var(--magenta);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--magenta-soft);
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 18px; }
.hero .sub {
  color: var(--text-dim);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 32px;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-primary {
  background: var(--magenta);
  color: #fff;
  box-shadow: 0 6px 24px -4px rgba(255, 46, 196, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px -4px rgba(255, 46, 196, 0.6);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--magenta);
  color: var(--magenta);
}

/* ── Sections ───────────────────────────────────────────── */

section { padding: clamp(48px, 8vw, 96px) 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.feature:hover {
  border-color: var(--magenta);
  transform: translateY(-4px);
}
.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}
.feature h3 { color: var(--text); margin-bottom: 8px; }
.feature p { color: var(--text-dim); font-size: 0.95rem; margin: 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.section-head .kicker {
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head p { color: var(--text-dim); }

/* ── Pricing ────────────────────────────────────────────── */

.pricing {
  background: linear-gradient(180deg, transparent, rgba(42, 26, 85, 0.3));
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.price-card.featured {
  border-color: var(--magenta);
  box-shadow: 0 0 40px -10px rgba(255, 46, 196, 0.4);
}
.price-card .badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--magenta);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
.price-card h3 { margin-bottom: 4px; color: var(--text); }
.price-card .price {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 12px 0 4px;
  color: var(--text);
}
.price-card .price-unit { color: var(--text-dim); font-size: 0.9rem; }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.price-card li {
  padding: 8px 0;
  color: var(--text-dim);
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
}
.price-card li:first-child { border-top: none; }
.price-card li::before {
  content: "→ ";
  color: var(--magenta);
  font-weight: 700;
  margin-right: 6px;
}

/* ── Legal pages (privacy, terms) ───────────────────────── */

.legal {
  padding: 60px 0 100px;
}
.legal .container { max-width: 760px; }
.legal h1 { font-size: 2.2rem; margin-bottom: 8px; }
.legal .updated {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.legal h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  color: var(--magenta);
}
.legal h3 { font-size: 1.1rem; margin-top: 24px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 6px; color: var(--text-dim); }
.legal p { color: var(--text-dim); }
.legal strong { color: var(--text); }

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

footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 32px;
  margin-top: 60px;
  color: var(--text-dim);
  font-size: 0.9rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links a {
  color: var(--text-dim);
  margin-left: 20px;
}
.footer-links a:hover { color: var(--magenta); }

@media (max-width: 560px) {
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links a { margin: 0 10px; }
  .nav-links a { margin-left: 14px; font-size: 0.88rem; }
}
