:root {
  --cream: #fbf5e6;
  --cream-soft: #f3eacf;
  --cream-deep: #e9dbb6;
  --ink: #1a1814;
  --muted: #6b5e47;
  --red: #c0392b;
  --red-dark: #9c2c20;
  --teal: #6e9088;
  --teal-dark: #547069;
  --border: #d9c89e;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

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

h1, h2 {
  font-family: "Fredoka", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

a { color: var(--red); }
a:hover { color: var(--red-dark); }

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  padding: 1rem 0;
  background: var(--cream);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.by-conjoy {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  font-family: "Fredoka", sans-serif;
  font-weight: 500;
}
.by-conjoy:hover { color: var(--ink); }

.nav { display: flex; gap: 1.5rem; align-items: center; }
.nav-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.15s;
}
.nav-link:hover {
  color: var(--ink);
  border-bottom-color: var(--red);
}

/* Hero */
.hero {
  padding: 3rem 0 5rem;
  text-align: center;
}
.logo {
  max-width: 100%;
  width: 520px;
  height: auto;
  display: block;
  margin: 0 auto 2rem;
  mix-blend-mode: multiply;
}
.hero h1 {
  font-size: 2.25rem;
  margin: 0 0 1rem;
  line-height: 1.1;
}
.lede {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto 2.5rem;
}

/* Buttons */
.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  font-family: inherit;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}

/* Sections */
section { padding: 4rem 0; }

/* Recurring "He's still just a little guy" beat */
.closer {
  font-style: italic;
  color: var(--muted);
  text-align: center;
  margin: 2.5rem auto 0;
  font-size: 1rem;
}

.what {
  background: var(--cream-soft);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  text-align: center;
}
.what h2 {
  font-size: 2rem;
  margin: 0 0 1.5rem;
}
.what p {
  max-width: 38rem;
  margin: 0 auto 1.25rem;
  font-size: 1.0625rem;
  color: var(--ink);
}
.what p:last-child { margin-bottom: 0; }

.made-by {
  background: var(--cream);
  text-align: center;
}
.made-by h2 {
  font-size: 1.75rem;
  margin: 0 0 1rem;
  color: var(--teal-dark);
}
.heart {
  color: var(--red);
  font-style: normal;
}
.made-by p {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.0625rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 2rem 0;
  font-size: 0.9rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { margin: 0; }
.footer-links { margin: 0; }
.footer-links a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.footer-links a:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}
.sep {
  color: var(--muted);
  margin: 0 0.5rem;
}

/* Press kit (follows dopresskit/presskit() conventions) */
.press-main { padding: 3rem 0 5rem; }
.press-title {
  text-align: center;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--border);
}
.press-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
}
.press-title h1 {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}
.press-pitch {
  font-size: 1.25rem;
  color: var(--muted);
  margin: 0;
}
.press-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.press-section:last-child { border-bottom: none; }
.press-section h2 {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}
.press-section p {
  margin: 0 0 1rem;
  font-size: 1rem;
  max-width: 42rem;
}
.press-section p.closer {
  font-style: italic;
  color: var(--muted);
  text-align: left;
  margin: 1.5rem 0 0;
}
.press-note {
  font-size: 0.9375rem;
  color: var(--muted);
}
.factsheet {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 0.5rem 1.5rem;
  margin: 0;
  font-size: 0.95rem;
}
.factsheet dt {
  font-weight: 600;
  color: var(--muted);
}
.factsheet dd {
  margin: 0;
}
.feature-list, .link-list, .team-list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 1rem;
}
.feature-list li, .link-list li, .team-list li {
  margin: 0.4rem 0;
}
.asset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
  max-width: 42rem;
}
.asset {
  display: block;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  background: #fff;
  transition: border-color 0.15s, transform 0.15s;
}
.asset:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.asset img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
  mix-blend-mode: multiply;
}
.asset-label {
  font-family: ui-monospace, "SF Mono", "Cascadia Mono", Consolas, monospace;
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 640px) {
  .hero h1 { font-size: 1.875rem; }
  .lede { font-size: 1.1rem; }
  .logo { width: 360px; }
  .what h2, .made-by h2 { font-size: 1.5rem; }
  .nav { gap: 1rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .press-title h1 { font-size: 2rem; }
  .factsheet { grid-template-columns: 1fr; gap: 0.25rem; }
  .factsheet dt { margin-top: 0.75rem; }
}
