:root {
  color-scheme: light;
  --bg: #f4f1e8;
  --bg-warm: #fbfaf4;
  --ink: #20201d;
  --muted: #62665d;
  --brand: #566331;
  --brand-strong: #3f4b24;
  --accent: #c86a5b;
  --accent-soft: #f5ddd6;
  --leaf-soft: #e3e7d2;
  --on-brand: #fbfaf4;
  --surface: #fffdf7;
  --surface-alt: #eeeadd;
  --line: #d8d1bf;
  --shadow: 0 24px 70px rgba(37, 42, 31, 0.14);
  --shadow-soft: 0 18px 50px rgba(37, 42, 31, 0.1);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 3% 8%, rgba(216, 209, 191, 0.58) 0 9rem, transparent 9.1rem),
    radial-gradient(circle at 96% 32%, rgba(227, 231, 210, 0.8) 0 13rem, transparent 13.1rem),
    var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 209, 191, 0.82);
  background: rgba(244, 241, 232, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.2;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--brand-strong);
}

.nav-links .nav-cta {
  order: 1;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--brand);
  color: var(--on-brand);
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  background: var(--brand);
  color: var(--on-brand);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(86, 99, 49, 0.24);
}

.button:hover {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
}

.site-header .nav-links .button.nav-cta:hover,
.site-header .nav-links .button.nav-cta:focus-visible,
.site-header .nav-links .button.nav-cta:active {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
  color: var(--on-brand);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 253, 247, 0.78);
  color: var(--brand-strong);
  box-shadow: none;
}

.button.secondary:hover {
  border-color: var(--brand);
  background: var(--surface);
}

.google-play-cta {
  min-height: 58px;
  padding: 8px 18px;
  gap: 11px;
  border-color: #202124;
  background: #202124;
  box-shadow: 0 12px 28px rgba(32, 33, 36, 0.24);
}

.google-play-cta:hover {
  border-color: #000;
  background: #000;
}

.google-play-cta img {
  width: 30px;
  height: 30px;
}

.google-play-cta span {
  display: grid;
  gap: 1px;
  font-size: 1.08rem;
  line-height: 1;
  text-align: left;
}

.google-play-cta small {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section,
.hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 44px 0 38px;
  gap: 42px;
}

.hero-copy-block {
  position: relative;
  z-index: 2;
}

.hero-brand-burnin {
  display: flex;
  align-items: center;
  gap: 30px;
  width: min(840px, 100%);
  margin-bottom: 10px;
  filter: drop-shadow(0 18px 34px rgba(86, 99, 49, 0.12));
}

.hero-brand-icon {
  display: block;
  flex: 0 0 auto;
  width: 26%;
  height: auto;
}

.hero-wordmark-stack {
  flex: 1 1 auto;
  min-width: 0;
}

.hero-wordmark {
  display: block;
  width: 100%;
  height: auto;
}

.hero-brand-burnin .hero-strapline {
  margin: 6px 0 0;
  font-size: 1.25rem;
  line-height: 1.15;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 4.15rem;
}

h2 {
  font-size: 3.65rem;
}

h3 {
  font-size: 1.22rem;
}

.hero-lede {
  max-width: 630px;
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 720;
  line-height: 1.28;
}

.hero-support {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.hero-art {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
}

.soft-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.2px);
}

.shape-one {
  top: 16px;
  right: -42px;
  width: 330px;
  height: 330px;
  background: rgba(227, 231, 210, 0.86);
}

.shape-two {
  bottom: 12px;
  left: -38px;
  width: 260px;
  height: 260px;
  background: rgba(245, 221, 214, 0.56);
}

.phone-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 285px);
  padding: 8px;
  border: 9px solid #4a5334;
  border-radius: 34px;
  background: #252a1f;
  box-shadow: var(--shadow);
}

.phone-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 20px;
  object-fit: cover;
  object-position: top center;
}

.hero-phone {
  width: min(100%, 305px);
  transform: rotate(4deg);
}

.problem-section {
  padding: 66px 0 52px;
}

.problem-section .eyebrow {
  font-size: 0.9rem;
}

.section {
  padding: 76px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.copy-stack p,
.panel-copy p,
.benefit-layout p,
.final-cta p,
.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.copy-stack .statement {
  color: var(--brand-strong);
  font-size: 1.22rem;
  font-weight: 800;
}

.rooted-way {
  padding-top: 44px;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 48px;
  padding: 44px;
  border: 1px solid rgba(216, 209, 191, 0.85);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 10%, rgba(227, 231, 210, 0.78) 0 8rem, transparent 8.1rem),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.panel-copy {
  display: grid;
  gap: 16px;
}

.panel-copy .eyebrow {
  margin-bottom: 0;
}

.shared-plan-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 209, 191, 0.9);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.shared-plan-visual picture,
.shared-plan-visual img {
  display: block;
  width: 100%;
}

.shared-plan-visual img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

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

.section-heading p {
  margin-top: 18px;
}

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

.step-card {
  position: relative;
  min-height: 100%;
  padding: 18px 18px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: 0 14px 34px rgba(37, 42, 31, 0.06);
}

.step-media {
  width: min(100%, 210px);
  margin: 0 auto 22px;
  padding: 7px;
  border-radius: 18px;
  background: #252a1f;
  box-shadow: 0 18px 44px rgba(37, 42, 31, 0.15);
}

.step-media img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 12px;
  object-fit: cover;
  object-position: top center;
}

.step-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 999px;
  background: var(--leaf-soft);
  color: var(--brand-strong);
  font-weight: 900;
}

.step-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.benefit-band {
  background:
    radial-gradient(circle at 88% 18%, rgba(245, 221, 214, 0.22) 0 14rem, transparent 14.1rem),
    var(--brand-strong);
  color: var(--on-brand);
}

.benefit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.benefit-layout .eyebrow {
  color: var(--leaf-soft);
}

.benefit-layout p {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(251, 250, 244, 0.84);
}

.benefit-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  padding: 16px 18px;
  border: 1px solid rgba(251, 250, 244, 0.18);
  border-radius: 8px;
  background: rgba(251, 250, 244, 0.08);
  color: rgba(251, 250, 244, 0.9);
}

.story-section {
  padding-bottom: 68px;
}

.final-cta {
  background:
    radial-gradient(circle at 15% 20%, rgba(227, 231, 210, 0.82) 0 11rem, transparent 11.1rem),
    var(--surface);
}

.final-cta-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-cta h2 {
  max-width: 820px;
  font-size: 2.9rem;
}

.final-cta .button {
  margin-top: 30px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.recipe-showcase-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.recipe-showcase-heading h2 {
  max-width: 780px;
}

.recipe-showcase-heading .button {
  flex: 0 0 auto;
}

.recipe-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.recipe-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(37, 42, 31, 0.08);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.recipe-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.recipe-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.recipe-card-body {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.recipe-card-body strong {
  font-size: 1.3rem;
  line-height: 1.15;
}

.recipe-card-body > span:last-child {
  color: var(--muted);
}

.recipe-card-meta,
.recipe-kicker {
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.recipes-main {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.recipes-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  gap: 54px;
  align-items: end;
}

.recipes-intro h1,
.recipe-hero h1 {
  max-width: 840px;
  font-size: 4.2rem;
}

.recipes-lede,
.recipe-summary {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.recipes-intro-note {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--leaf-soft);
  color: var(--brand-strong);
}

.recipes-intro-note strong,
.recipes-intro-note span {
  display: block;
}

.recipes-intro-note span {
  margin-top: 8px;
}

.recipe-main {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 96px;
}

.recipe-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 50px;
  align-items: center;
}

.recipe-hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.recipe-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.recipe-facts li {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--leaf-soft);
  color: var(--brand-strong);
  font-size: 0.88rem;
  font-weight: 800;
}

.recipe-content {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1fr);
  gap: 58px;
  margin-top: 64px;
  align-items: start;
}

.recipe-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.86);
}

.recipe-panel h2,
.recipe-method h2 {
  font-size: 2rem;
}

.ingredient-list,
.instruction-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ingredient-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.ingredient-list li:last-child {
  border-bottom: 0;
}

.instruction-list {
  counter-reset: recipe-step;
}

.instruction-list li {
  position: relative;
  min-height: 48px;
  padding: 0 0 24px 58px;
  color: var(--muted);
  counter-increment: recipe-step;
}

.instruction-list li::before {
  position: absolute;
  top: -4px;
  left: 0;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: var(--brand);
  color: var(--on-brand);
  content: counter(recipe-step);
  font-weight: 900;
}

.recipe-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  margin-top: 66px;
  padding: 36px;
  border-radius: 8px;
  background: var(--brand-strong);
  color: var(--on-brand);
}

.recipe-cta h2 {
  font-size: 2rem;
}

.recipe-cta p {
  margin: 10px 0 0;
  color: rgba(251, 250, 244, 0.82);
}

.recipe-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.recipe-cta .button.secondary {
  border-color: rgba(251, 250, 244, 0.5);
  background: transparent;
  color: var(--on-brand);
}

@media (max-width: 820px) {
  .recipe-card-grid,
  .recipes-intro,
  .recipe-hero,
  .recipe-content,
  .recipe-cta {
    grid-template-columns: 1fr;
  }

  .recipe-showcase-heading {
    align-items: start;
    flex-direction: column;
  }

  .recipe-hero-image {
    order: -1;
  }

  .recipe-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .recipe-card-grid {
    grid-template-columns: 1fr;
  }

  .recipes-intro h1,
  .recipe-hero h1 {
    font-size: 2.65rem;
  }

  .recipe-panel,
  .recipe-cta {
    padding: 22px;
  }
}

.legal-main {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.legal-main h1 {
  font-size: 4.2rem;
}

.legal-main h2 {
  margin-top: 42px;
  font-size: 1.45rem;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
}

.legal-main ul {
  padding-left: 1.2rem;
}

.updated {
  margin-top: 16px;
  color: var(--brand);
  font-weight: 700;
}

.help-main {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.help-main h1 {
  max-width: 820px;
  font-size: 4.2rem;
}

.help-main h2 {
  font-size: 1.6rem;
}

.help-main p,
.help-main li {
  color: var(--muted);
}

.help-main a {
  overflow-wrap: anywhere;
}

.help-lede {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.help-support-note {
  margin-top: 18px;
}

.help-category-section,
.article-list,
.article-section,
.support-panel {
  margin-top: 42px;
}

.help-category-section > h2 {
  margin-bottom: 18px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.help-section-heading {
  margin-bottom: 18px;
}

.help-section-heading .eyebrow {
  margin-bottom: 8px;
}

.help-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-card-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.84);
  box-shadow: 0 14px 34px rgba(37, 42, 31, 0.06);
}

.help-card,
.article-link {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.84);
  box-shadow: 0 14px 34px rgba(37, 42, 31, 0.06);
  text-decoration: none;
}

.article-link {
  position: relative;
  min-height: 96px;
  padding: 22px 56px 22px 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.article-link:last-child {
  border-bottom: 0;
}

.article-link::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 28px;
  height: 28px;
  border: 2px solid var(--brand);
  border-radius: 999px;
  color: var(--brand);
  content: ">";
  font-size: 1rem;
  font-weight: 900;
  line-height: 24px;
  text-align: center;
  transform: translateY(-50%);
}

.help-card:hover,
.article-link:hover {
  border-color: var(--brand);
  background: var(--surface);
}

.help-card-kicker {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.help-card-title,
.article-link-title {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 850;
  line-height: 1.2;
}

.help-card-copy,
.article-link-copy {
  color: var(--muted);
}

.support-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(216, 209, 191, 0.88);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.support-panel h2,
.support-panel p {
  margin: 0;
}

.support-panel .eyebrow {
  margin-bottom: 8px;
}

.support-panel p {
  margin-top: 10px;
}

.priority-panel {
  border-color: rgba(86, 99, 49, 0.36);
  background:
    radial-gradient(circle at 92% 8%, rgba(227, 231, 210, 0.72) 0 7rem, transparent 7.1rem),
    var(--surface);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--brand-strong);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.article-list h2 {
  margin-bottom: 16px;
}

.article-main {
  width: min(880px, calc(100% - 32px));
}

.article-section {
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.article-section h2 {
  margin-bottom: 14px;
}

.article-section p {
  margin: 0 0 16px;
}

.article-section ol,
.article-section ul {
  margin: 0;
  padding-left: 1.4rem;
}

.article-section li + li {
  margin-top: 10px;
}

.beta-main {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.beta-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 64px;
}

.beta-intro h1 {
  max-width: 720px;
}

.beta-lede {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.beta-play-panel {
  display: grid;
  justify-items: center;
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  text-align: center;
}

.beta-play-panel img {
  width: 82px;
  margin-bottom: 18px;
}

.beta-play-panel strong {
  color: var(--ink);
  font-size: 1.55rem;
}

.beta-steps {
  display: grid;
  gap: 20px;
  margin-top: 64px;
}

.beta-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.84);
  box-shadow: 0 14px 34px rgba(37, 42, 31, 0.06);
}

.beta-step-number {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: var(--leaf-soft);
  color: var(--brand-strong);
  font-size: 1.4rem;
  font-weight: 900;
}

.beta-step-copy .eyebrow {
  margin-bottom: 8px;
}

.beta-step-copy h2 {
  font-size: 2rem;
}

.beta-step-copy p:not(.eyebrow) {
  max-width: 710px;
  margin: 14px 0 22px;
  color: var(--muted);
}

.beta-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 36px;
  padding: 28px 32px;
  border: 1px solid rgba(86, 99, 49, 0.36);
  border-radius: 8px;
  background: var(--leaf-soft);
}

.beta-help .eyebrow,
.beta-help h2,
.beta-help p {
  margin: 0;
}

.beta-help h2 {
  font-size: 1.35rem;
}

.beta-help p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 8px;
  color: var(--muted);
}

.beta-help .button {
  flex: 0 0 auto;
}

@media (max-width: 940px) {
  h1 {
    font-size: 3.65rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  .final-cta h2 {
    font-size: 2.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 46px;
    gap: 34px;
  }

  .hero-art {
    min-height: 480px;
  }

  .hero-phone {
    width: min(72vw, 310px);
  }

  .split,
  .feature-panel,
  .benefit-layout,
  .help-card-grid,
  .beta-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .beta-play-panel {
    grid-template-columns: auto auto;
    justify-content: center;
    column-gap: 16px;
  }

  .beta-play-panel img {
    grid-row: span 2;
    width: 62px;
    margin: 0;
  }

  .feature-panel {
    padding: 30px;
  }

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

  .step-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    column-gap: 22px;
    align-items: start;
  }

  .step-media {
    grid-row: span 4;
    width: 180px;
    margin: 0;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: 2.95rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .final-cta h2 {
    font-size: 2rem;
  }

  .hero-lede {
    font-size: 1.24rem;
  }

  .hero-support {
    font-size: 1.02rem;
  }

  .legal-main h1,
  .help-main h1 {
    font-size: 3.1rem;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 92px;
    padding: 12px 0;
    gap: 10px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 3px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .hero,
  .section,
  .legal-main,
  .help-main,
  .beta-main,
  .footer-inner {
    width: min(100% - 24px, 1160px);
  }

  .hero {
    padding: 34px 0 46px;
  }

  .hero-brand-burnin {
    gap: 22px;
    width: min(500px, 100%);
  }

  .hero-brand-icon {
    width: 26%;
  }

  .hero-brand-burnin .hero-strapline {
    margin-top: 5px;
    font-size: 1rem;
  }

  .hero-art {
    min-height: 400px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 54px 0;
  }

  .problem-section {
    padding-top: 48px;
  }

  .feature-panel {
    padding: 24px;
  }

  .shared-plan-visual img {
    aspect-ratio: 16 / 9;
  }

  .step-card {
    display: block;
  }

  .step-media {
    width: min(100%, 190px);
    margin: 0 auto 22px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .beta-main {
    padding: 52px 0 72px;
  }

  .beta-step {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .beta-step-copy h2 {
    font-size: 1.65rem;
  }

  .beta-help {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .final-cta h2 {
    font-size: 1.7rem;
  }

  .legal-main h1,
  .help-main h1,
  .beta-main h1 {
    font-size: 2.35rem;
  }

  .brand img {
    width: 128px;
  }

  .hero-art {
    min-height: 360px;
  }

  .hero-phone,
  .phone-frame {
    width: min(74vw, 250px);
  }

  .shape-one {
    right: -76px;
  }

  .shape-two {
    left: -88px;
  }
}
