/* PressdInk — Landing Page Styles */

/* ── Variables ── */
:root {
  --ink: #1a1a2e;
  --paper: #fdfbf7;
  --accent: #e63946;
  --accent-hover: #c1121f;
  --teal: #2a9d8f;
  --teal-light: #e8f4f3;
  --purple: #6c63ff;
  --purple-light: #f0eeff;
  --orange: #f4a261;
  --border: #e8e3d9;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Typography ── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { color: var(--text-muted); }

/* ── Container ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-teal {
  background: var(--teal);
  color: #fff;
}
.btn-teal:hover { background: #228b7d; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-purple {
  background: var(--purple);
  color: #fff;
}
.btn-purple:hover { background: #5a52e0; transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ink);
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1.1rem;
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-link {
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  font-size: 0.95rem;
}
.nav-link:hover { color: var(--text); }
.nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

/* ── Hero ── */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(230,57,70,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-light);
  color: var(--teal);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 { margin-bottom: 20px; color: var(--ink); }
.hero h1 span { color: var(--accent); }
.hero-sub {
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 36px;
  color: var(--text-muted);
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.hero-social-proof .divider { width: 1px; height: 18px; background: var(--border); }
.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-badge-icon {
  width: 20px; height: 20px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero-badge-icon svg { width: 12px; height: 12px; }

/* ── Product Showcase (below hero) ── */
.showcase {
  padding: 0 0 80px;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.showcase-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.showcase-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.showcase-visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.showcase-icon {
  font-size: 3rem;
  position: relative;
  z-index: 1;
}
.showcase-info {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
}
.showcase-info h3 { font-size: 0.95rem; margin-bottom: 2px; }
.showcase-info p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* Category colors */
.cat-tshirt .showcase-visual { background: #fff1f0; }
.cat-mug .showcase-visual { background: #fff8e1; }
.cat-hoodie .showcase-visual { background: #f0f4ff; }
.cat-sticker .showcase-visual { background: #f0fff4; }
.cat-print .showcase-visual { background: #fff0f4; }
.cat-accessories .showcase-visual { background: #f5f0ff; }

/* ── Two Paths ── */
.two-paths { padding: 80px 0; background: #fff; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 500px; margin: 0 auto; font-size: 1.05rem; }
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) { .paths-grid { grid-template-columns: 1fr; } }
.path-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.path-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.path-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.path-card:hover::before { transform: scaleX(1); }
.path-card.teal::before { background: var(--teal); }
.path-card.teal:hover { border-color: var(--teal); }
.path-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.path-card:nth-child(1) .path-card-icon { background: #fff1f0; }
.path-card:nth-child(2) .path-card-icon { background: var(--teal-light); }
.path-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.path-card > p { margin-bottom: 24px; font-size: 0.95rem; }
.path-perks {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.path-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.perk-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.perk-icon-red { background: #fff1f0; color: var(--accent); }
.perk-icon-teal { background: var(--teal-light); color: var(--teal); }

/* ── How It Works ── */
.how-it-works { padding: 80px 0; }
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
@media (max-width: 768px) {
  .steps-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .steps-row { grid-template-columns: 1fr; }
}
.step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.step-connector {
  position: absolute;
  top: 24px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--border);
  display: none;
}
@media (min-width: 769px) { .step-connector { display: block; } }

/* ── Features Strip ── */
.features-strip {
  background: var(--ink);
  color: #fff;
  padding: 48px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}
.feature h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.feature p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 0; }

/* ── CTA Section ── */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #fff1f0 0%, var(--purple-light) 50%, var(--teal-light) 100%);
  opacity: 0.4;
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section > .container > p { max-width: 500px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
  font-size: 0.9rem;
}
.footer .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.1rem; color: #fff; }
.footer-logo-icon {
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 900;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* ── Responsive tweaks ── */
@media (max-width: 640px) {
  .hero { padding: 60px 0 40px; }
  .hero h1 { font-size: 2rem; }
  .nav-link { display: none; }
  .footer .container { flex-direction: column; text-align: center; }
}