/* Fullo marketing — tokens from design/brand/visual-direction.md */
:root {
  --bg-canvas: #fff9f2;
  --bg-elevated: #ffffff;
  --ink-brand: #2d4b37;
  --ink-primary: #1f2a24;
  --ink-secondary: #6b736c;
  --cta-peach: #ffd1b0;
  --accent-purple: #9e8bdb;
  --border-subtle: #e8e2da;
  --insight-sage: #e7f2e8;
  --insight-apricot: #ffe8d6;
  --font-display: "Lora", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --font-body: "Source Sans 3", "Source Sans Pro", "Segoe UI", sans-serif;
  --max: 40rem;
  --wide: 56rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink-primary);
  background:
    radial-gradient(ellipse 120% 80% at 10% -20%, var(--insight-apricot) 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 0%, var(--insight-sage) 0%, transparent 50%),
    var(--bg-canvas);
}

a {
  color: var(--ink-brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-purple);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--wide);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink-brand);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand:hover {
  color: var(--ink-brand);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-secondary);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink-brand);
}

.hero {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4.5rem;
  animation: rise 0.7s ease-out both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 4.25rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--ink-brand);
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
  animation: rise 0.8s 0.08s ease-out both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink-primary);
  margin: 0 0 1rem;
  max-width: 28rem;
  animation: rise 0.8s 0.16s ease-out both;
}

.hero .lede {
  margin: 0 0 2rem;
  max-width: 28rem;
  color: var(--ink-secondary);
  font-size: 1.125rem;
  animation: rise 0.8s 0.24s ease-out both;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  animation: rise 0.8s 0.32s ease-out both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--cta-peach);
  color: var(--ink-primary);
}

.btn-primary:hover {
  color: var(--ink-primary);
  background: #ffc49a;
}

.btn-ghost {
  background: transparent;
  color: var(--ink-brand);
  border: 1px solid var(--border-subtle);
}

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

.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  animation: rise 0.55s ease-out both;
}

.page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  color: var(--ink-brand);
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.page .meta {
  color: var(--ink-secondary);
  font-size: 0.95rem;
  margin: 0 0 2rem;
}

.page h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink-brand);
  margin: 2rem 0 0.65rem;
}

.page p,
.page li {
  color: var(--ink-primary);
}

.page ul {
  padding-left: 1.2rem;
}

.page li + li {
  margin-top: 0.35rem;
}

.site-footer {
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
  padding: 1.75rem 1.5rem 2.5rem;
  background: color-mix(in srgb, var(--bg-elevated) 70%, transparent);
}

.footer-inner {
  max-width: var(--wide);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink-brand);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--ink-secondary);
}

.footer-note {
  width: 100%;
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-secondary);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
