/* Background Remover — ProductShot — shared styles */

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

:root {
  --bg: #0f0f11;
  --bg-card: #1a1a1f;
  --border: #2a2a35;
  --accent: #7c6cfc;
  --accent-light: #a89dfd;
  --text: #e8e8f0;
  --text-muted: #888899;
  --max-w: 760px;
  --radius: 10px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

/* ── header ── */
header {
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, #c084fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.logo-text span {
  color: var(--accent-light);
}

/* ── main content ── */
main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 24px 80px;
}

/* ── hero (welcome page) ── */
.hero {
  text-align: center;
  padding: 40px 0 56px;
}

.hero-badge {
  display: inline-block;
  background: rgba(124, 108, 252, 0.15);
  border: 1px solid rgba(124, 108, 252, 0.35);
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}

.btn-primary:hover { background: #6a5af0; transform: translateY(-1px); }

/* ── steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}

.step-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 6px;
}

.step-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── feature list ── */
.features {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 48px;
}

.features h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.feature-row:last-child { border-bottom: none; }

.feature-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  margin-top: 2px;
}

.feature-row h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.feature-row p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── legal pages ── */
.page-title {
  margin-bottom: 8px;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.legal h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 24px 0 8px;
  color: var(--accent-light);
}

.legal p {
  margin-bottom: 14px;
  color: var(--text);
}

.legal ul, .legal ol {
  margin: 8px 0 16px 20px;
  color: var(--text);
}

.legal li {
  margin-bottom: 6px;
}

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

.highlight-box {
  background: rgba(124, 108, 252, 0.1);
  border: 1px solid rgba(124, 108, 252, 0.3);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 20px 0;
}

.highlight-box p {
  margin: 0;
  font-size: 14px;
  color: var(--accent-light);
}

/* ── footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

footer a { color: var(--text-muted); text-decoration: none; }
footer a:hover { color: var(--text); }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
  flex-wrap: wrap;
}
