@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #faf8f4;
  --surface: #ffffff;
  --surface-2: #fff6f2;
  --text: #17140f;
  --text-dim: #6f6a5f;
  --border: #e8e2d5;
  --brand: #ff4a26;
  --brand-dark: #d93a1a;
  --on-brand: #fff9f6;
  --ink: #17140f;
  --danger: #b0492e;
  --radius: 14px;
  --radius-sm: 8px;
  --sans: 'Manrope', system-ui, sans-serif;
  --display: 'Space Grotesk', 'Manrope', system-ui, sans-serif;
  --shadow: 0 1px 2px rgba(23,20,15,.04), 0 8px 24px rgba(23,20,15,.06);
  --panel-peach: #fff1e6;
  --panel-cream: #fffaf0;
  --panel-rose: #ffe8e1;
  --hero-deep: #23100a;
  --hero-mid: #7a2c12;
}

@keyframes twinkle {
  0%, 100% { opacity: .12; transform: scale(1); }
  50% { opacity: .95; transform: scale(1.4); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes drift {
  0% { background-position: 0% 0%; }
  100% { background-position: 0% 100%; }
}

.reveal { opacity: 0; }
.reveal.is-visible { animation: fadeUp .7s cubic-bezier(.2,.7,.3,1) forwards; }

.badge-pill {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand); color: var(--on-brand); font-weight: 800; font-size: 12px;
  letter-spacing: .04em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px;
}

.hover-lift { transition: transform .25s ease, box-shadow .25s ease; }
.hover-lift:hover { transform: translateY(-4px); box-shadow: 0 4px 6px rgba(23,20,15,.05), 0 16px 32px rgba(23,20,15,.09); }

* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--sans); }
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.02em; margin: 0; }
a { color: inherit; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px; padding: 0 28px; border-radius: 999px; border: 0; cursor: pointer;
  font-family: var(--sans); font-weight: 800; font-size: 16px; letter-spacing: -.01em; text-decoration: none;
  background: var(--brand); color: var(--on-brand);
  box-shadow: 0 2px 4px rgba(217,58,26,.18), 0 8px 20px rgba(217,58,26,.22);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { background: var(--brand-dark); transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(217,58,26,.22), 0 12px 28px rgba(217,58,26,.3); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border); box-shadow: none; }
.btn.ghost:hover { background: var(--surface-2); border-color: var(--brand); box-shadow: none; }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow);
}

input, select, textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--text);
  background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 14px; outline: none; transition: border-color .15s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--brand); }
label { display: block; font-weight: 700; font-size: 13px; margin-bottom: 6px; color: var(--ink); }