:root {
  --cream: #fbf1e4;
  --white: #fffaf4;
  --ink: #3d1a1a;
  --muted: rgba(61, 26, 26, 0.68);
  --soft: rgba(61, 26, 26, 0.08);
  --green: #b5d89a;
  --green-dark: #6f975c;
  --orange: #e56a39;
  --line: rgba(61, 26, 26, 0.14);
  --surface: rgba(255, 250, 244, 0.74);
  --soft-green: rgba(181, 216, 154, 0.22);
  --shadow: 0 24px 80px rgba(61, 26, 26, 0.1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(181, 216, 154, 0.26), transparent 28%),
    linear-gradient(180deg, rgba(181, 216, 154, 0.2), rgba(181, 216, 154, 0) 330px),
    var(--cream);
  color: var(--ink);
  font-family: "Real Text Pro", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

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

.brand img {
  display: block;
  width: 138px;
  height: auto;
}

.header-cta,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta {
  padding: 0 16px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  background: rgba(255, 250, 244, 0.6);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(58px, 8.5vw, 108px) 0 clamp(46px, 7vw, 78px);
}

.hero-copy {
  max-width: 850px;
}

.eyebrow,
.card-label {
  margin: 0;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Bree, "Bree Serif", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  margin-top: 18px;
  font-size: clamp(3.15rem, 6.9vw, 6.6rem);
  line-height: 0.94;
}

.lead {
  max-width: 810px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  padding: 0 22px;
  border: 1px solid var(--ink);
}

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

.secondary {
  background: transparent;
  color: var(--ink);
}

.hero-card,
.steps-grid article,
.included-grid article,
.apps-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.hero-card {
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow);
}

.hero-card ul {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-weight: 740;
}

.hero-card li {
  position: relative;
  padding-left: 20px;
}

.hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.positioning {
  padding: 28px clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
}

.positioning p {
  max-width: 880px;
  margin: 0;
  font-family: Bree, "Bree Serif", Georgia, serif;
  font-size: clamp(1.75rem, 3.3vw, 3.2rem);
  line-height: 1.02;
}

.section {
  padding: clamp(54px, 8vw, 92px) 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 850px;
}

.section-heading h2,
.free-copy h2,
.manifesto h2 {
  margin-top: 12px;
  font-size: clamp(2.15rem, 4.3vw, 4.35rem);
  line-height: 0.96;
}

.section-heading p:not(.eyebrow),
.free-copy p,
.manifesto p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.steps-grid article {
  min-height: 188px;
  padding: 22px;
  background: var(--soft-green);
}

.steps-grid span {
  color: var(--orange);
  font-weight: 900;
  font-size: 0.78rem;
}

.steps-grid h3 {
  margin-top: 38px;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.05;
}

.free {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.included-grid article {
  min-height: 112px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: var(--white);
  font-family: Bree, "Bree Serif", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.05;
}

.apps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.apps-grid article {
  padding: 12px 16px;
  background: rgba(255, 250, 244, 0.7);
  color: var(--ink);
  font-weight: 780;
}

.manifesto {
  margin-top: clamp(36px, 6vw, 64px);
  padding: clamp(28px, 5vw, 48px);
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
}

.manifesto .eyebrow {
  color: var(--green);
}

.manifesto p {
  color: rgba(255, 250, 244, 0.76);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  padding: 30px 0 36px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 900px) {
  .hero,
  .free {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 620px;
  }

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

@media (max-width: 640px) {
  main {
    width: min(100% - 30px, 1180px);
  }

  .site-header {
    padding-top: 22px;
  }

  .brand img {
    width: 116px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(2.72rem, 13vw, 4.25rem);
  }

  .actions,
  .button {
    width: 100%;
  }

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

  .positioning,
  .manifesto {
    padding: 24px 20px;
  }
}
