/* ShotFetch — marketing styles */
:root {
  --bg: #0b0f17;
  --bg-elevated: #121826;
  --bg-card: #151c2c;
  --border: rgba(148, 163, 184, 0.12);
  --text: #e8eef8;
  --text-muted: #94a3b8;
  --accent: #5b8cff;
  --accent-2: #22d3ee;
  --accent-glow: rgba(91, 140, 255, 0.28);
  --success: #34d399;
  --warning: #fbbf24;
  --radius: 16px;
  --font: "Instrument Sans", "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --max: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11, 15, 23, 0.75);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #0b0f17;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  font-size: 0.92rem;
}

.nav-links a { color: var(--text-muted); text-decoration: none; }
.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, #4f7fff, #6b5cff);
  color: #fff;
  box-shadow: 0 6px 22px var(--accent-glow);
}

.btn-primary:hover { box-shadow: 0 12px 36px var(--accent-glow); }

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover { border-color: rgba(148,163,184,0.35); background: rgba(255,255,255,0.03); }

.btn-sm { padding: 0.45rem 0.95rem; font-size: 0.85rem; }

/* Hero */
.hero {
  padding: 5.5rem 0 3.75rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% 20% auto;
  height: 420px;
  background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(91, 140, 255, 0.08);
  border: 1px solid rgba(91, 140, 255, 0.22);
  color: #b6c9f0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.35rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 700;
  max-width: 16ch;
  margin-bottom: 1.15rem;
}

.hero h1 .grad {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 44ch;
  margin-bottom: 1.85rem;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

/* Product preview demo */
.demo-frame {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.demo-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  background: #0e1420;
  border-bottom: 1px solid var(--border);
}

.demo-dots { display: flex; gap: 5px; }
.demo-dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: #334155;
}
.demo-dots span:nth-child(1) { background: #f87171; }
.demo-dots span:nth-child(2) { background: #fbbf24; }
.demo-dots span:nth-child(3) { background: #34d399; }

.demo-urlbar {
  flex: 1;
  background: #1a2233;
  border-radius: 7px;
  padding: 0.35rem 0.7rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  overflow: hidden;
  white-space: nowrap;
}

.demo-urlbar .typing {
  color: var(--accent-2);
  border-right: 2px solid var(--accent-2);
  animation: blink 0.8s step-end infinite;
}

@keyframes blink { 50% { border-color: transparent; } }

.demo-body {
  padding: 1.1rem;
  min-height: 260px;
  display: grid;
  place-items: center;
  position: relative;
}

.demo-stage {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 10px;
  background: linear-gradient(160deg, #1e293b, #0f172a);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.demo-site {
  position: absolute;
  inset: 0;
  padding: 1rem;
  opacity: 0;
  animation: siteIn 8s ease-in-out infinite;
}

.demo-site .bar {
  height: 10px;
  border-radius: 4px;
  background: rgba(91,140,255,0.35);
  width: 40%;
  margin-bottom: 0.75rem;
}

.demo-site .row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.demo-site .card {
  height: 48px;
  border-radius: 6px;
  background: rgba(148,163,184,0.12);
}

.demo-site .line {
  height: 7px;
  border-radius: 3px;
  background: rgba(148,163,184,0.15);
  margin-bottom: 0.4rem;
}

.demo-site .line.w60 { width: 60%; }
.demo-site .line.w80 { width: 80%; }
.demo-site .line.w40 { width: 40%; }

.demo-spinner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(11,15,23,0.55);
  opacity: 0;
  animation: spinShow 8s ease-in-out infinite;
}

.spinner {
  width: 36px; height: 36px;
  border: 3px solid rgba(91,140,255,0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: rotate 0.7s linear infinite;
}

@keyframes rotate { to { transform: rotate(360deg); } }

.demo-png {
  position: absolute;
  inset: 8%;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  opacity: 0;
  transform: scale(0.92) translateY(12px);
  animation: pngIn 8s ease-in-out infinite;
  overflow: hidden;
  padding: 0.75rem;
}

.demo-png .png-label {
  position: absolute;
  top: 8px; right: 8px;
  background: #0b0f17;
  color: var(--success);
  font-family: var(--mono);
  font-size: 0.65rem;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  font-weight: 700;
}

.demo-png .bar { background: #c7d2fe; }
.demo-png .card { background: #e2e8f0; }
.demo-png .line { background: #cbd5e1; }

@keyframes siteIn {
  0%, 8% { opacity: 0; }
  15%, 35% { opacity: 1; }
  42%, 100% { opacity: 0.25; }
}

@keyframes spinShow {
  0%, 30% { opacity: 0; }
  35%, 50% { opacity: 1; }
  55%, 100% { opacity: 0; }
}

@keyframes pngIn {
  0%, 48% { opacity: 0; transform: scale(0.92) translateY(12px); }
  58%, 88% { opacity: 1; transform: scale(1) translateY(0); }
  95%, 100% { opacity: 0; transform: scale(0.98) translateY(-4px); }
}

.demo-caption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* Sections */
section { padding: 4.5rem 0; }

.section-title {
  font-size: clamp(1.65rem, 3vw, 2.05rem);
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.section-sub {
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 2rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.step-num {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(91,140,255,0.15);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.step p { color: var(--text-muted); font-size: 0.92rem; }

.code {
  font-family: var(--mono);
  font-size: 0.78rem;
  background: #0a0e16;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 0.8rem;
  color: #a5b4fc;
  margin-top: 0.75rem;
  overflow-x: auto;
  white-space: nowrap;
}

/* Pricing */
.packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pack {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 40%), var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.pack.featured {
  border-color: rgba(91,140,255,0.55);
  box-shadow:
    0 0 0 1px rgba(91,140,255,0.2),
    0 0 40px rgba(91,140,255,0.14),
    0 24px 48px rgba(0,0,0,0.35);
  transform: translateY(-4px);
}

.pack-badge {
  position: absolute;
  top: -11px;
  right: 1rem;
  background: linear-gradient(135deg, #4f7fff, #6b5cff);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pack h3 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
  text-transform: uppercase;
}
.pack .price {
  font-size: 2.35rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0.35rem 0 0.2rem;
  color: var(--text);
}
.pack .price span { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }
.pack .credits { color: #9adcf0; font-weight: 600; font-size: 0.95rem; margin-bottom: 1.15rem; }
.pack ul {
  list-style: none;
  flex: 1;
  margin-bottom: 1.25rem;
}
.pack li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.pack li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.founding-banner {
  margin-top: 1.75rem;
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(91, 140, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.16);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.founding-banner strong { color: var(--text); }

.pricing-compare {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.5;
}

.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  margin-top: 0.25rem;
  padding: 0;
}
.trust-row li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}
.trust-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(91, 140, 255, 0.7);
}

/* Audiences */
.audiences {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.audience {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.audience .icon {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.audience h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.audience p { font-size: 0.88rem; color: var(--text-muted); }

/* Why / Privacy */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.card-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.card-block h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.card-block ul { list-style: none; }
.card-block li {
  padding: 0.45rem 0;
  color: var(--text-muted);
  font-size: 0.93rem;
  padding-left: 1.15rem;
  position: relative;
}
.card-block li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Waitlist form */
.waitlist {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
}

.waitlist h2 { margin-bottom: 0.4rem; }
.waitlist > p { color: var(--text-muted); margin-bottom: 1.5rem; }

.form-embed-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

.waitlist-iframe {
  display: block;
  width: 100%;
  min-height: 900px;
  border: 0;
  background: #fff;
}

.form-fallback {
  margin: 1rem 0 0.35rem;
  font-size: 0.9rem;
}

.form-fallback a {
  color: var(--accent-2);
  font-weight: 600;
}

.form-note {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

input, select, textarea {
  width: 100%;
  background: #0a0e16;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91,140,255,0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* FAQ */
.faq { display: grid; gap: 0.75rem; }

.faq details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.15rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--text-muted); font-size: 1.2rem; }
.faq details[open] summary::after { content: "−"; }

.faq details p {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 0.93rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer a { color: var(--text-muted); }
.footer a:hover { color: var(--text); }

/* Legal pages */
.legal-block {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.legal-block h2 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.legal-block p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 0.6rem; max-width: 70ch; }

/* Docs / SEO pages */
.page-hero {
  padding: 3rem 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.prose {
  max-width: 70ch;
  color: var(--text-muted);
}

.prose h2 {
  color: var(--text);
  font-size: 1.25rem;
  margin: 2rem 0 0.6rem;
}

.prose h3 {
  color: var(--text);
  font-size: 1.05rem;
  margin: 1.4rem 0 0.45rem;
}

.prose p, .prose li { margin-bottom: 0.65rem; }
.prose ul, .prose ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.prose code {
  font-family: var(--mono);
  font-size: 0.85em;
  background: #121826;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  color: #a5b4fc;
}

.prose pre {
  background: #0a0e16;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  overflow-x: auto;
  margin: 1rem 0;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: #c7d2fe;
}

.table-wrap { overflow-x: auto; margin: 1rem 0; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
th, td {
  border: 1px solid var(--border);
  padding: 0.65rem 0.85rem;
  text-align: left;
}
th { background: var(--bg-elevated); color: var(--text); }
td { color: var(--text-muted); }

.thanks-card {
  max-width: 480px;
  margin: 5rem auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem 2rem;
}

.thanks-card h1 { font-size: 1.8rem; margin-bottom: 0.75rem; }
.thanks-card p { color: var(--text-muted); margin-bottom: 1.5rem; }

@media (max-width: 900px) {
  .hero-grid, .steps, .packs, .audiences, .two-col, .form-row {
    grid-template-columns: 1fr;
  }
  .nav-links .hide-sm { display: none; }
  .audiences { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .audiences { grid-template-columns: 1fr; }
  .hero { padding-top: 3rem; }
}
