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

:root {
  --terracotta: #D4724A;
  --terracotta-dark: #B85C35;
  --terracotta-light: #F0C4AE;
  --terracotta-pale: #FDF5F0;
  --cream: #FAF7F2;
  --ink: #1C1C1C;
  --muted: #6E5B4E;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.15);
  --white: #FFFFFF;
  --radius: 10px;
  --max-w: 1080px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.025em;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Nav ─────────────────────────────── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--terracotta);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.18s ease;
}

.nav-cta:hover {
  background: var(--terracotta-dark);
}

/* ─── Buttons ─────────────────────────── */

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 1.5rem;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.18s ease;
  border: none;
  line-height: 1;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border-strong);
}

.btn-ghost:hover {
  color: var(--ink);
  border-color: var(--ink);
}

/* ─── Hero ────────────────────────────── */

.hero {
  padding: 7rem 2rem 6rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.75rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 1.75rem;
  max-width: 16ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 54ch;
  line-height: 1.75;
  margin-bottom: 2.75rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ─── How it works ────────────────────── */

.how-it-works {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5.5rem 0;
}

.how-it-works h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 3.5rem;
}

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

.steps li {
  display: flex;
  gap: 1.25rem;
}

.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--terracotta-light);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}

.steps li strong {
  display: block;
  font-size: 0.975rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.steps li p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── Catalogue ───────────────────────── */

.catalogue {
  padding: 5.5rem 0;
}

.catalogue h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 2.5rem;
}

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

/* ─── Cards ───────────────────────────── */

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.card-paid {
  border-color: var(--terracotta-light);
  background: linear-gradient(150deg, var(--white) 0%, var(--terracotta-pale) 100%);
}

.card-coming-soon {
  background: var(--cream);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
}

.badge-paid {
  background: var(--terracotta);
  color: var(--white);
}

.badge-free {
  background: #E8F5E9;
  color: #2D6A31;
}

.badge-soon {
  background: #EBEBEB;
  color: #666;
}

.card-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
}

.card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.skills-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.skills-list li {
  font-size: 0.875rem;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.skills-list li::before {
  content: '—';
  color: var(--terracotta);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ─── Notify form ─────────────────────── */

.notify-wrap {
  margin-top: auto;
}

.notify-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.notify-form {
  display: flex;
  gap: 0.5rem;
}

.notify-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border-strong);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s ease;
}

.notify-form input:focus {
  border-color: var(--terracotta);
}

.notify-form input::placeholder {
  color: #AAA;
}

.notify-form button {
  padding: 0.65rem 1.1rem;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease;
  white-space: nowrap;
}

.notify-form button:hover {
  background: #333;
}

/* ─── About ───────────────────────────── */

.about {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5.5rem 0;
}

.about-inner {
  max-width: 58ch;
}

.about h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
}

.about p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 0.975rem;
}

.about-links {
  display: flex;
  gap: 1.75rem;
  margin-top: 2.25rem;
}

.about-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--terracotta);
  padding-bottom: 0.15rem;
  transition: color 0.18s ease;
}

.about-links a:hover {
  color: var(--terracotta);
}

/* ─── Footer ──────────────────────────── */

footer {
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-inner a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-inner a:hover {
  color: var(--terracotta);
}

/* ─── Responsive ──────────────────────── */

@media (max-width: 760px) {
  nav {
    padding: 0.875rem 1.25rem;
  }

  .hero {
    padding: 4.5rem 1.25rem 4rem;
  }

  .how-it-works {
    padding: 4rem 0;
  }

  .how-it-works .container,
  .catalogue .container,
  .about .container,
  .footer-inner {
    padding: 0 1.25rem;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .catalogue {
    padding: 4rem 0;
  }

  .about {
    padding: 4rem 0;
  }

  .notify-form {
    flex-direction: column;
  }

  .notify-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }

  .about-links {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}
