/* Printly — conversion landing page */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Figtree:wght@300;400;500;600&display=swap');

/* ── Tokens ─────────────────────────────────────────── */
:root {
  --bg:        #f7f4ef;
  --ink:       #1a1714;
  --ink-muted: #7a7168;
  --accent:    #e85d04;
  --accent-h:  #d45503;
  --surface:   #ffffff;
  --surface-2: #f0ede7;
  --border:    #e2ddd5;
  --radius:    14px;
  --shadow:    0 2px 16px rgba(26,23,20,.08), 0 1px 3px rgba(26,23,20,.05);
  --shadow-lg: 0 8px 40px rgba(26,23,20,.12), 0 2px 8px rgba(26,23,20,.06);
  --font-head: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
  --max-w:     1100px;
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Nav ────────────────────────────────────────────── */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }
.nav-badge {
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  padding: 80px 0 64px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: #fff0e8;
  border: 1px solid #fbd6c0;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

/* ── Email form ─────────────────────────────────────── */
.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.waitlist-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--surface);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.waitlist-form input[type="email"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,93,4,.12);
}
.waitlist-form input[type="email"]::placeholder { color: #aaa; }
.btn-primary {
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 12px rgba(232,93,4,.28);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,93,4,.32);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #2e7d32;
  background: #f0faf0;
  border: 1px solid #b9f6ca;
  padding: 14px 20px;
  border-radius: var(--radius);
  max-width: 480px;
  margin: 0 auto;
}
.form-success.show { display: flex; }
.form-error {
  display: none;
  font-size: 0.85rem;
  color: #c62828;
  margin-top: 8px;
  text-align: center;
}
.form-error.show { display: block; }
.social-proof {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--ink-muted);
}
.social-proof strong { color: var(--ink); }

/* ── Categories ─────────────────────────────────────── */
.categories {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 48px;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
  cursor: default;
}
.category-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: #d4cdc2;
}
.category-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.category-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.category-card p {
  font-size: 0.87rem;
  color: var(--ink-muted);
  line-height: 1.55;
}
.category-tag {
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* ── Value props ────────────────────────────────────── */
.value-props {
  padding: 80px 0;
  background: var(--ink);
  color: #fff;
}
.value-props .section-label { color: rgba(255,255,255,.5); }
.value-props .section-title { color: #fff; }
.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.prop {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prop-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.prop h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
}
.prop p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

/* ── CTA band ───────────────────────────────────────── */
.cta-band {
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 1rem;
  color: var(--ink-muted);
  margin-bottom: 36px;
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

/* ── Animations ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow  { animation: fadeUp 0.5s ease both; }
.hero h1       { animation: fadeUp 0.5s 0.1s ease both; }
.hero-sub      { animation: fadeUp 0.5s 0.2s ease both; }
.waitlist-form { animation: fadeUp 0.5s 0.3s ease both; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 640px) {
  .hero { padding: 56px 0 48px; }
  .categories, .value-props, .cta-band { padding: 56px 0; }
  .waitlist-form { flex-direction: column; }
  .btn-primary { width: 100%; }
}