:root {
  --free-ink: #13231b;
  --free-muted: #526357;
  --free-paper: #f8f3e7;
  --free-card: rgba(255, 252, 242, 0.86);
  --free-line: rgba(19, 35, 27, 0.16);
  --free-forest: #1f5f43;
  --free-moss: #8ca665;
  --free-sun: #f0bb58;
  --free-clay: #cc7045;
  --free-shadow: 0 24px 80px rgba(36, 50, 38, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--free-ink);
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(240, 187, 88, 0.28), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(31, 95, 67, 0.16), transparent 32rem),
    linear-gradient(135deg, #fbf4df 0%, #edf1df 45%, #f8f3e7 100%);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(19, 35, 27, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 35, 27, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 90%);
}

a {
  color: inherit;
}

.ambient {
  position: fixed;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.26;
  pointer-events: none;
  z-index: -1;
}

.ambient-one {
  top: 11rem;
  right: -7rem;
  background: var(--free-moss);
}

.ambient-two {
  bottom: 8rem;
  left: -9rem;
  background: var(--free-clay);
}

.site-header,
main,
footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--free-ink);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff7df;
  background: var(--free-forest);
  border: 2px solid rgba(19, 35, 27, 0.28);
  border-radius: 14px;
  box-shadow: 6px 6px 0 rgba(19, 35, 27, 0.12);
}

nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 750;
}

nav a {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  color: var(--free-muted);
  text-decoration: none;
}

nav a:hover,
.nav-pill {
  color: var(--free-ink);
  background: rgba(255, 252, 242, 0.78);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 1.5rem;
  align-items: stretch;
  padding: 64px 0 38px;
}

.hero-copy,
.proof-card,
.brief-card,
.handoff,
.keep-live,
.operator-note {
  border: 1px solid var(--free-line);
  background: var(--free-card);
  box-shadow: var(--free-shadow);
  backdrop-filter: blur(16px);
}

.hero-copy {
  padding: clamp(2rem, 6vw, 5.5rem);
  border-radius: 42px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 0.85rem;
  color: var(--free-forest);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.07em;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.4rem, 11vw, 8.7rem);
}

h2 {
  font-size: clamp(2.3rem, 6vw, 5.2rem);
}

.lead,
.section-copy,
.proof-card li,
.example-card p,
.keep-live p,
.operator-note p,
footer p {
  color: var(--free-muted);
  font-family: ui-sans-serif, system-ui, sans-serif;
  line-height: 1.7;
}

.lead {
  max-width: 660px;
  margin: 1.45rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.15rem;
  border: 2px solid rgba(19, 35, 27, 0.2);
  border-radius: 999px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: #fff9e9;
  background: var(--free-forest);
  box-shadow: 6px 6px 0 rgba(19, 35, 27, 0.16);
}

.secondary {
  color: var(--free-ink);
  background: #fff8e8;
}

.wide {
  width: 100%;
}

.proof-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  border-radius: 34px;
}

.proof-card ul {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding-left: 1.2rem;
}

.examples,
.brief-section,
.handoff,
.keep-live,
.operator-note {
  margin-top: 28px;
}

.section-heading {
  max-width: 820px;
  margin: 0 0 1.2rem;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.example-card {
  min-height: 270px;
  padding: 1.35rem;
  border: 1px solid var(--free-line);
  border-radius: 30px;
  color: #fff8e8;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.example-card::after {
  position: absolute;
  inset: auto -20% -30% auto;
  width: 15rem;
  height: 15rem;
  border-radius: 999px;
  content: "";
  background: rgba(255, 255, 255, 0.18);
}

.example-card span,
.example-card strong,
.example-card p {
  position: relative;
  z-index: 1;
}

.example-card span {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  opacity: 0.76;
  text-transform: uppercase;
}

.example-card strong {
  display: block;
  max-width: 12rem;
  margin-top: 5.7rem;
  font-size: 1.55rem;
  line-height: 1;
}

.example-card p {
  max-width: 18rem;
  color: rgba(255, 248, 232, 0.82);
}

.dave {
  background: linear-gradient(145deg, #2f5949, #0f241b);
}

.donovan {
  background: linear-gradient(145deg, #955936, #24170f);
}

.yours {
  color: var(--free-ink);
  background: linear-gradient(145deg, #f1bd59, #e5d391);
}

.yours p {
  color: rgba(19, 35, 27, 0.72);
}

.brief-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 1.25rem;
  align-items: start;
}

.brief-card {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 32px;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--free-ink);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--free-line);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  color: var(--free-ink);
  font: inherit;
  background: rgba(255, 255, 255, 0.72);
}

textarea {
  resize: vertical;
}

.handoff,
.keep-live {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.4rem;
  border-radius: 34px;
}

.handoff h2,
.keep-live h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.handoff p,
.keep-live p {
  max-width: 680px;
}

.operator-note {
  padding: 1.2rem 1.4rem;
  border-radius: 26px;
}

footer {
  padding: 42px 0;
}

@media (max-width: 820px) {
  .site-header,
  nav,
  .hero-actions,
  .handoff,
  .keep-live {
    align-items: stretch;
    flex-direction: column;
  }

  nav {
    width: 100%;
  }

  nav a {
    background: rgba(255, 252, 242, 0.74);
  }

  .hero,
  .brief-section,
  .example-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
  }
}
