/* paralaks.tools — landing site
 * ─────────────────────────────────────────────────────────────────────────────
 * Deliberately the same palette as the plugin window: white ground, Claude
 * clay accent, Apple-grey ink. Somebody who sees the site and then installs
 * the extension should feel they are in the same product.
 * ───────────────────────────────────────────────────────────────────────────── */

:root {
  --ink:        #1d1d1f;
  --muted:      #6e6e73;
  --subtle:     #8a8a8e;
  --accent:     #d97757;
  --accent-dk:  #c15f3c;
  --accent-wash:rgba(217, 119, 87, 0.08);
  --line:       rgba(0, 0, 0, 0.10);
  --line-soft:  rgba(0, 0, 0, 0.06);
  --wash:       #fafafa;
  --radius:     10px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: #ffffff;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent-dk); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Header ──────────────────────────────────────────────────────────────── */
.site-head {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.brand { display: flex; align-items: center; gap: 10px; }

.brand__mark {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #e0876b 0%, #d97757 100%);
  flex: 0 0 auto;
}

.brand__name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.brand__by { font-size: 13px; color: var(--subtle); margin-left: 2px; }

.site-nav { display: flex; gap: 26px; font-size: 15px; }
.site-nav a { color: var(--muted); }
.site-nav a:hover { color: var(--ink); text-decoration: none; }

/* ─── Hero ────────────────────────────────────────────────────────────────── */
.hero { padding: 96px 0 72px; text-align: center; }

.hero h1 {
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.038em;
  margin-bottom: 22px;
}

.hero h1 em { font-style: normal; color: var(--accent); }

.hero p {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 34px;
}

.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease;
}

.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dk); text-decoration: none; }

.btn--ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: rgba(0,0,0,.22); text-decoration: none; }

.hero__note { margin-top: 18px; font-size: 14px; color: var(--subtle); }

/* ─── Window mock ─────────────────────────────────────────────────────────── */
.shot {
  margin: 56px auto 0;
  max-width: 880px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 18px 50px rgba(0,0,0,.08);
  background: #fff;
}

.shot__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 15px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--wash);
}
.shot__dot { width: 11px; height: 11px; border-radius: 50%; background: #d8d8dc; }
.shot__title { margin-left: 8px; font-size: 13px; color: var(--subtle); }

.shot__body { display: flex; min-height: 300px; }

.shot__side {
  width: 190px; flex: 0 0 auto;
  border-right: 1px solid var(--line-soft);
  padding: 14px 10px;
  font-size: 13px;
}
.shot__group { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--subtle); padding: 12px 8px 5px; }
.shot__row { display: flex; align-items: center; gap: 8px; padding: 7px 8px; border-radius: 6px; color: var(--muted); }
.shot__row.on { background: var(--accent-wash); color: var(--accent-dk); font-weight: 500; }
.shot__row span:last-child { margin-left: auto; font-size: 12px; color: var(--subtle); }

.shot__main { flex: 1; padding: 14px; min-width: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.chip { font-size: 12px; padding: 5px 11px; border-radius: 14px; border: 1px solid var(--line); color: var(--muted); }
.chip.on { background: var(--accent); border-color: transparent; color: #fff; font-weight: 500; }

.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.tile { border: 1px solid var(--line-soft); border-radius: 9px; overflow: hidden; }
.tile__img { height: 62px; background: var(--wash); }
.tile__name { padding: 7px 9px; font-size: 12px; color: var(--ink); }

/* ─── Sections ────────────────────────────────────────────────────────────── */
section { padding: 76px 0; }
section.alt { background: var(--wash); border-block: 1px solid var(--line-soft); }

.sec-head { text-align: center; margin-bottom: 48px; }
.sec-head h2 {
  font-size: clamp(27px, 3.6vw, 36px);
  font-weight: 700;
  letter-spacing: -0.028em;
  margin-bottom: 12px;
}
.sec-head p { color: var(--muted); max-width: 560px; margin: 0 auto; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }

.feature h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.015em; }
.feature p { color: var(--muted); font-size: 15.5px; }

.feature__mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--accent-wash);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--accent-dk);
  margin-bottom: 14px;
}

/* ─── Pricing ─────────────────────────────────────────────────────────────── */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; max-width: 720px; margin: 0 auto; }

.plan {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
  background: #fff;
}
.plan--pick { border-color: var(--accent); border-width: 2px; }

.plan__badge {
  display: inline-block; font-size: 12px; font-weight: 500;
  color: var(--accent-dk); background: var(--accent-wash);
  padding: 3px 11px; border-radius: 20px; margin-bottom: 12px;
}
.plan h3 { font-size: 19px; font-weight: 600; margin-bottom: 6px; }
.plan__price { font-size: 38px; font-weight: 700; letter-spacing: -0.03em; }
.plan__per { font-size: 15px; color: var(--subtle); font-weight: 400; }
.plan ul { list-style: none; margin: 20px 0 0; }
.plan li { padding: 7px 0 7px 24px; position: relative; color: var(--muted); font-size: 15px; }
.plan li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 600; }

/* ─── Requirements strip ──────────────────────────────────────────────────── */
.specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; }
.spec dt { font-size: 13px; color: var(--subtle); margin-bottom: 3px; }
.spec dd { font-size: 15.5px; }

/* ─── Prose (privacy / terms) ─────────────────────────────────────────────── */
.prose { padding: 60px 0 90px; }
.prose h1 { font-size: 36px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 8px; }
.prose .stamp { color: var(--subtle); font-size: 14px; margin-bottom: 40px; }
.prose h2 { font-size: 22px; font-weight: 600; margin: 38px 0 12px; letter-spacing: -0.018em; }
.prose h3 { font-size: 17px; font-weight: 600; margin: 26px 0 8px; }
.prose p, .prose li { color: #37373a; font-size: 16.5px; }
.prose p { margin-bottom: 14px; }
.prose ul { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 7px; }
.prose table { width: 100%; border-collapse: collapse; margin: 18px 0 24px; font-size: 15.5px; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.prose th { font-weight: 600; font-size: 14px; color: var(--muted); }
.prose strong { font-weight: 600; }

.callout {
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--accent-wash);
  padding: 16px 20px;
  margin: 22px 0;
}
.callout p:last-child { margin-bottom: 0; }

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.site-foot { border-top: 1px solid var(--line-soft); padding: 40px 0; background: var(--wash); }
.site-foot .wrap { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.site-foot p { font-size: 14px; color: var(--subtle); }
.site-foot nav { display: flex; gap: 22px; font-size: 14px; }
.site-foot nav a { color: var(--muted); }

@media (max-width: 720px) {
  .site-nav { display: none; }
  .shot__side { display: none; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  section { padding: 56px 0; }
  .hero { padding: 64px 0 48px; }
}
