* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2028;
  --muted: #6d6670;
  --line: #eadbd5;
  --paper: #fffaf7;
  --soft: #ffe5dd;
  --rose: #ffb9ad;
  --coral: #ef5a3d;
  --clay: #a8675a;
  --sage: #5f8378;
  --mint: #d9eee5;
  --butter: #fff1ba;
  --deep: #2a3230;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(62, 37, 29, 0.13);
  --radius: 8px;
  --font-body: "Manrope", Arial, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

img.is-missing {
  opacity: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 16px 20px auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  width: calc(100% - 40px);
  max-width: 1220px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.78);
  box-shadow: 0 14px 40px rgba(53, 36, 30, 0.08);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 247, 0.94);
  box-shadow: 0 18px 48px rgba(53, 36, 30, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), #ff8768);
  box-shadow: inset 0 -8px 14px rgba(118, 34, 18, 0.2);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #3d3438;
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--coral);
  background: rgba(239, 90, 61, 0.1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 16px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

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

.button-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 18px 36px rgba(239, 90, 61, 0.24);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 24px 34px;
  background: #eeb3a9;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
  opacity: 0.86;
}

.hero-screen {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(31, 32, 40, 0.72) 0%, rgba(31, 32, 40, 0.38) 42%, rgba(255, 229, 221, 0.2) 100%),
    linear-gradient(180deg, rgba(255, 250, 247, 0.12), rgba(31, 32, 40, 0.24));
}

.hero-content {
  width: min(760px, 100%);
  margin: 0 auto 40px;
  color: var(--white);
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--butter);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 3.25rem;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-meter {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.hero-meter div {
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.hero-meter strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
}

.hero-meter span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.motion-lanes {
  position: absolute;
  right: 8%;
  bottom: 14%;
  width: 210px;
  height: 210px;
  pointer-events: none;
}

.motion-lanes span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 241, 186, 0.38);
  border-radius: 50%;
  animation: lanePulse 4s ease-in-out infinite;
}

.motion-lanes span:nth-child(2) {
  inset: 28px;
  animation-delay: 0.5s;
}

.motion-lanes span:nth-child(3) {
  inset: 56px;
  animation-delay: 1s;
}

.app-snapshot {
  width: min(1220px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin: 20px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.snapshot-item {
  min-height: 122px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  padding: 16px 10px;
  text-align: center;
  background: var(--white);
}

.snapshot-item span,
.snapshot-item small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.snapshot-item strong {
  font-size: 1.35rem;
  line-height: 1.1;
}

.snapshot-item i {
  color: var(--coral);
}

.section {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}

.intro-band {
  width: 100%;
  max-width: none;
  margin-top: 80px;
  padding: 110px 24px;
  background:
    linear-gradient(135deg, rgba(255, 229, 221, 0.9), rgba(217, 238, 229, 0.8)),
    repeating-linear-gradient(135deg, rgba(239, 90, 61, 0.08) 0 2px, transparent 2px 26px);
}

.intro-band .section-kicker,
.intro-layout {
  width: min(1220px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.intro-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: start;
}

.intro-copy p,
.section-heading p,
.split-copy p,
.knowledge-copy p,
.legal-content p,
.legal-content li {
  color: var(--muted);
}

.intro-copy p {
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.intro-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.intro-stack article,
.knowledge-board article,
.plan-card,
.recipe-card,
.screen-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 50px rgba(86, 49, 39, 0.08);
}

.intro-stack article {
  min-height: 220px;
  padding: 22px;
}

.intro-stack i,
.knowledge-board i,
.plan-card i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--coral);
  background: rgba(239, 90, 61, 0.1);
}

.intro-stack p,
.knowledge-board p,
.plan-card p,
.screen-card p,
.recipe-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.screen-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.screen-card {
  overflow: hidden;
  background: var(--white);
}

.screen-card img {
  width: 100%;
  aspect-ratio: 9 / 15;
  object-fit: cover;
  background: var(--soft);
}

.screen-card div {
  padding: 20px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media::before {
  content: "";
  position: absolute;
  inset: 34px -18px -18px 34px;
  z-index: -1;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--sage), var(--mint)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.24) 0 2px, transparent 2px 18px);
}

.split-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--soft);
}

.split-copy p {
  margin: 22px 0;
}

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

.feature-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-list i {
  color: var(--sage);
}

.nutrition {
  width: 100%;
  max-width: none;
  padding-left: 24px;
  padding-right: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 229, 221, 0.62) 18%, rgba(255, 229, 221, 0.62) 82%, transparent 100%);
}

.nutrition .section-heading,
.recipe-grid {
  width: min(1220px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.recipe-card {
  overflow: hidden;
  background: var(--white);
}

.recipe-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  background: var(--soft);
}

.recipe-card div {
  padding: 20px;
}

.recipe-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.knowledge-section {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 44px;
  align-items: center;
}

.knowledge-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.knowledge-board article {
  min-height: 210px;
  padding: 22px;
  background: var(--white);
}

.subscription-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 110px 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(31, 32, 40, 0.96), rgba(42, 50, 48, 0.96)),
    repeating-linear-gradient(135deg, rgba(255, 185, 173, 0.08) 0 2px, transparent 2px 26px);
}

.subscription-section .section-heading,
.plan-grid,
.subscription-note {
  width: min(1220px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.subscription-section .section-heading p,
.subscription-note {
  color: rgba(255, 255, 255, 0.72);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.plan-card {
  padding: 26px;
  color: var(--ink);
  background: var(--white);
}

.plan-card.featured {
  background: var(--butter);
}

.plan-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--coral);
  font-weight: 800;
}

.subscription-note {
  margin-top: 20px;
  font-size: 0.94rem;
}

.faq-section {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item i {
  transition: transform 0.2s ease;
}

.faq-item button[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-panel p {
  overflow: hidden;
  margin: 0;
  padding: 0 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-panel p {
  padding-bottom: 20px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(239, 90, 61, 0.92), rgba(95, 131, 120, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0 1px, transparent 1px 42px);
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 16px;
  background: repeating-linear-gradient(90deg, var(--butter) 0 60px, var(--ink) 60px 120px, var(--mint) 120px 180px);
}

.final-cta-content {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.final-cta .eyebrow {
  color: var(--butter);
}

.final-cta .button {
  margin-top: 28px;
  background: var(--ink);
}

.site-footer {
  padding: 54px 24px 30px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer-main,
.footer-links,
.footer-disclaimer,
.footer-bottom {
  width: min(1220px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

.site-footer .brand {
  color: var(--white);
}

.footer-main p,
.footer-disclaimer {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 34px;
}

.footer-links a,
.footer-bottom a {
  color: var(--white);
  font-weight: 700;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--rose);
}

.footer-disclaimer {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.legal-hero {
  padding: 155px 24px 70px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(31, 32, 40, 0.94), rgba(95, 131, 120, 0.86)),
    repeating-linear-gradient(135deg, rgba(255, 185, 173, 0.16) 0 2px, transparent 2px 28px);
}

.legal-hero-inner {
  width: min(940px, 100%);
  margin: 0 auto;
}

.legal-hero h1 {
  font-size: 4rem;
}

.legal-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.legal-shell {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 100px;
}

.legal-card {
  padding: 34px;
  background: var(--white);
}

.legal-content h2 {
  margin-top: 38px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.1;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin: 14px 0 0;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
  color: var(--muted);
}

.legal-content a {
  color: var(--coral);
  font-weight: 800;
}

.legal-meta {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 26px;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: var(--clay);
  background: var(--soft);
  font-weight: 800;
}

.not-found {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 150px 24px 90px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 229, 221, 0.92), rgba(217, 238, 229, 0.92)),
    repeating-linear-gradient(90deg, rgba(239, 90, 61, 0.1) 0 2px, transparent 2px 38px);
}

.not-found-content {
  width: min(680px, 100%);
}

.not-found-code {
  display: inline-grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--coral);
  font-size: 2rem;
  font-weight: 800;
}

.not-found p {
  color: var(--muted);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-banner a {
  color: var(--coral);
  font-weight: 800;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  min-height: 40px;
  padding: 9px 12px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes lanePulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.34;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.72;
  }
}

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

  h2 {
    font-size: 2.75rem;
  }

  .app-snapshot {
    grid-template-columns: repeat(3, 1fr);
  }

  .intro-layout,
  .split-section,
  .knowledge-section {
    grid-template-columns: 1fr;
  }

  .screen-rail,
  .recipe-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .knowledge-board {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 250, 247, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .nav-cta {
    justify-self: end;
  }

  .nav-toggle {
    display: block;
  }

  .intro-stack,
  .plan-grid,
  .knowledge-board {
    grid-template-columns: 1fr;
  }

  .hero-meter {
    grid-template-columns: 1fr;
  }

  .motion-lanes {
    display: none;
  }
}

@media (max-width: 700px) {
  .site-header {
    inset: 10px 12px auto;
    width: calc(100% - 24px);
    gap: 10px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .main-nav {
    left: 12px;
    right: 12px;
    top: 72px;
  }

  .hero {
    min-height: 88vh;
    padding: 125px 18px 24px;
  }

  h1 {
    font-size: 3rem;
  }

  h2,
  .legal-hero h1 {
    font-size: 2.35rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .not-found-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .app-snapshot,
  .screen-rail,
  .recipe-grid {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
  }

  .section,
  .legal-shell {
    width: calc(100% - 24px);
    padding: 72px 0;
  }

  .intro-band,
  .nutrition,
  .subscription-section,
  .final-cta {
    padding-left: 12px;
    padding-right: 12px;
  }

  .screen-card img {
    aspect-ratio: 4 / 5;
  }

  .recipe-card img {
    aspect-ratio: 4 / 3;
  }

  .legal-card {
    padding: 22px;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-bottom {
    justify-content: start;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    grid-template-columns: 1fr;
  }
}

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

  h2,
  .legal-hero h1 {
    font-size: 2rem;
  }

  .nav-cta {
    max-width: 132px;
  }

  .snapshot-item {
    min-height: 104px;
  }
}
