:root {
  --navy: #0a2540;
  --teal: #00bfa6;
  --teal-dark: #009e8a;
  --teal-light: #d4f5ef;
  --bg: #eef2f8;
  --bg-soft: #f8fafc;
  --white: #ffffff;
  --text: #0a2540;
  --text-secondary: #5a6b7d;
  --accent: #ffb84d;
  --border: rgba(10, 37, 64, 0.08);
  --shadow: 0 18px 50px rgba(10, 37, 64, 0.12);
  --radius: 22px;
  --radius-lg: 32px;
  --radius-xl: 36px;
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(0, 191, 166, 0.12), transparent 28%),
    radial-gradient(circle at 20% 40%, rgba(126, 184, 255, 0.12), transparent 24%),
    var(--bg);
  line-height: 1.6;
}

body.has-announcement {
  --header-offset: 44px;
  scroll-padding-top: calc(44px + 5.5rem);
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 44px;
  padding: 0.65rem 3rem 0.65rem 1rem;
  background: linear-gradient(90deg, var(--navy), #12385a);
  color: var(--white);
  font-size: 0.92rem;
  position: relative;
}

.announcement__text {
  margin: 0;
  text-align: center;
}

.announcement__link {
  color: var(--teal-light);
  font-weight: 600;
  white-space: nowrap;
}

.announcement__link:hover {
  text-decoration: underline;
}

.announcement__close {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.announcement__link--button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: var(--teal-light);
  font-weight: 600;
  white-space: nowrap;
}

.announcement__link--button:hover {
  text-decoration: underline;
}

.waitlist-modal[hidden] {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.waitlist-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 37, 64, 0.55);
  backdrop-filter: blur(4px);
}

.waitlist-modal__panel {
  position: relative;
  width: min(100%, 440px);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  animation: modal-in 0.22s ease;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.waitlist-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  border: 0;
  background: transparent;
  color: var(--text-secondary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.waitlist-modal__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.waitlist-modal__title {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.waitlist-modal__subtitle {
  margin: 0.65rem 0 1.25rem;
  color: var(--text-secondary);
}

.waitlist-form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field__label {
  font-size: 0.88rem;
  font-weight: 600;
}

.field__input {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
  color: var(--text);
  background: var(--bg-soft);
}

.field__input:focus {
  outline: 2px solid rgba(0, 191, 166, 0.35);
  border-color: rgba(0, 191, 166, 0.55);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
}

.checkbox input {
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--teal);
}

.checkbox__label {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.45;
}

.waitlist-form__error {
  margin: 0;
  color: #c53030;
  font-size: 0.9rem;
}

.waitlist-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.toast-host {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 110;
  display: grid;
  gap: 0.65rem;
  width: min(calc(100vw - 2rem), 360px);
}

.toast {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  color: var(--white);
  font-weight: 600;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.toast--success {
  background: linear-gradient(135deg, #00d4ba, var(--teal-dark));
}

.toast--error {
  background: #c53030;
}

.site-header {
  position: sticky;
  top: var(--header-offset, 0);
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.1rem;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(0, 191, 166, 0.14);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav__link {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav__link:hover {
  color: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #00d4ba, var(--teal), var(--teal-dark));
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 191, 166, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 191, 166, 0.34);
}

.button--ghost {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
  box-shadow: none;
}

.button--ghost:hover {
  box-shadow: var(--shadow);
}

.button--small {
  min-height: 42px;
  padding-inline: 1rem;
  font-size: 0.92rem;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 191, 166, 0.12);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero__subtitle {
  margin: 1.25rem 0 0;
  max-width: 38rem;
  color: var(--text-secondary);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.brand__logo {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  object-fit: contain;
}

.brand__logo--long {
  width: auto;
  height: 2.1rem;
  max-width: min(42vw, 11.5rem);
  border-radius: 0;
}

.brand--logo-only {
  gap: 0;
}

.brand__name[hidden] {
  display: none;
}

.hero__image {
  width: min(100%, 320px);
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-bento {
  width: min(100%, 340px);
  display: grid;
  gap: 0.75rem;
}

.hero-bento__stats,
.hero-bento__actions {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0.75rem;
}

.hero-bento__stack {
  display: grid;
  gap: 0.75rem;
}

.hero-bento__tile {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(10, 37, 64, 0.08);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 4.5rem;
}

.hero-bento__tile--budget {
  min-height: 9.25rem;
}

.hero-bento__tile--accent {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-color: rgba(0, 191, 166, 0.35);
  color: var(--white);
}

.hero-bento__tile--accent .hero-bento__label {
  color: rgba(255, 255, 255, 0.85);
}

.hero-bento__meal {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.hero-bento__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.65rem;
}

.hero-bento__meal-photo {
  height: 8.5rem;
  border-radius: calc(var(--radius-lg) - 4px);
  margin-bottom: 0.75rem;
  background:
    linear-gradient(180deg, rgba(10, 37, 64, 0.02), rgba(10, 37, 64, 0.12)),
    linear-gradient(135deg, rgba(0, 191, 166, 0.22), rgba(255, 184, 77, 0.18));
  overflow: hidden;
}

.hero-bento__meal-inner {
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.hero-bento__meal-inner .meal-card__photo {
  height: 8.5rem;
  margin-bottom: 0.75rem;
}

.hero-bento__meal-inner .meal-card__title {
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--navy);
}

.section--meals {
  padding-top: 1rem;
}

.meals-rotation-note {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-dark);
}

.meals-empty {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

.meal-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(10, 37, 64, 0.08);
  padding: 1rem;
}

.meal-card__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.65rem;
}

.meal-card__photo {
  position: relative;
  height: 10.5rem;
  border-radius: calc(var(--radius-lg) - 4px);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 37, 64, 0.02), rgba(10, 37, 64, 0.12)),
    linear-gradient(135deg, rgba(0, 191, 166, 0.22), rgba(255, 184, 77, 0.18));
}

.meal-card__photo--fallback {
  background:
    linear-gradient(180deg, rgba(10, 37, 64, 0.02), rgba(10, 37, 64, 0.12)),
    linear-gradient(135deg, rgba(0, 191, 166, 0.22), rgba(255, 184, 77, 0.18));
}

.meal-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.meal-card__title {
  display: block;
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--navy);
}

.meal-card__meta {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.86rem;
  color: var(--text-secondary);
}

@media (max-width: 960px) {
  .meals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.hero-bento__meal strong,
.hero-bento__tile strong {
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--navy);
}

.hero-bento__tile--accent strong {
  color: var(--white);
}

.hero-bento__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.hero-bento__meta {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.phone-mock[hidden],
.hero-bento[hidden],
.hero__image[hidden],
.brand__logo[hidden],
.brand__mark[hidden] {
  display: none;
}

.feature-card__image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.85rem;
}

.phone-mock {
  width: min(100%, 320px);
  padding: 0.85rem;
  border-radius: 2rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
}

.phone-mock__screen {
  border-radius: 1.4rem;
  background: linear-gradient(180deg, #f7fafc, #eef6f4);
  padding: 1rem;
  min-height: 420px;
}

.phone-mock__header {
  height: 14px;
  width: 38%;
  border-radius: 999px;
  background: rgba(10, 37, 64, 0.12);
  margin-bottom: 1rem;
}

.phone-mock__card {
  height: 88px;
  border-radius: 1rem;
  margin-bottom: 0.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.06);
}

.phone-mock__card--1 {
  background: linear-gradient(135deg, rgba(0, 191, 166, 0.18), rgba(255, 255, 255, 0.95));
}

.phone-mock__card--2 {
  height: 72px;
}

.phone-mock__card--3 {
  height: 64px;
  margin-bottom: 0;
}

.hero__tagline {
  margin: 0;
  color: var(--text-secondary);
  font-weight: 600;
}

.section {
  padding: 5rem 0;
}

.section__intro {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.section__title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
}

.section__subtitle {
  margin: 0.85rem 0 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.section--features {
  background: rgba(255, 255, 255, 0.45);
}

.section__intro--center {
  text-align: center;
  margin-inline: auto;
}

.section--pricing {
  background: rgba(255, 255, 255, 0.72);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(10, 37, 64, 0.06);
}

.pricing-card--featured {
  border-color: rgba(0, 191, 166, 0.35);
  box-shadow: 0 18px 40px rgba(0, 191, 166, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(212, 245, 239, 0.35));
}

.pricing-card__name {
  margin: 0;
  font-size: 1.35rem;
}

.pricing-card__desc {
  margin: 0.45rem 0 0;
  color: var(--text-secondary);
  font-size: 0.96rem;
}

.pricing-card__prices {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.pricing-card--featured .pricing-card__prices {
  background: rgba(255, 255, 255, 0.72);
}

.pricing-card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.pricing-card__price-row--yearly {
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border);
}

.pricing-card__label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-card__amount {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pricing-card__amount--free {
  font-size: 2rem;
  color: var(--teal-dark);
}

.pricing-card__note,
.pricing-card__save {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.pricing-card__save {
  color: var(--teal-dark);
  font-weight: 600;
}

.pricing-card__features {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  flex: 1;
}

.pricing-card__feature {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-card__feature::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
}

.pricing-card__cta {
  width: 100%;
  margin-top: auto;
}

.pricing-footnote {
  margin: 1.25rem 0 0;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

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

.feature-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(10, 37, 64, 0.05);
}

.feature-card__icon {
  font-size: 1.6rem;
  margin-bottom: 0.85rem;
}

.feature-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.feature-card__text {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.96rem;
}

.section--cta {
  padding-block: 4.5rem;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy), #12385a 55%, #0f766e);
  color: var(--white);
  box-shadow: var(--shadow);
}

.section__title--inverse,
.section__subtitle--inverse {
  color: var(--white);
}

.section__subtitle--inverse {
  opacity: 0.86;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.store-badge img {
  height: 52px;
  width: auto;
}

.store-badges__soon {
  margin: 0;
  opacity: 0.85;
}

.section--contact {
  padding-top: 3rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact__email-label {
  margin: 1.5rem 0 0.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

.contact__email {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.contact__note {
  margin-top: 0.75rem;
  color: var(--text-secondary);
}

.contact__card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(10, 37, 64, 0.06);
}

.contact__card-title {
  margin: 0 0 0.5rem;
}

.contact__card-text {
  margin: 0 0 1.25rem;
  color: var(--text-secondary);
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__brand {
  margin: 0 0 0.25rem;
  font-weight: 800;
}

.site-footer__company {
  margin: 0 0 0.35rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

.site-footer__copy {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__link {
  color: var(--text-secondary);
  font-weight: 600;
}

.footer__link:hover {
  color: var(--navy);
}

@media (max-width: 960px) {
  .hero__grid,
  .contact,
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .site-header__inner {
    position: relative;
  }

  .hero__grid,
  .contact,
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Legal & support pages */
.legal-page main {
  padding: 3rem 0 4rem;
}

.legal-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
}

.legal-card__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.legal-card__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.8rem, 4vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.legal-card__updated {
  margin: 0 0 2rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.legal-section + .legal-section {
  margin-top: 1.75rem;
}

.legal-section__title {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  line-height: 1.3;
}

.legal-section__body p {
  margin: 0 0 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-section__body p:last-child {
  margin-bottom: 0;
}

.legal-section__body a {
  color: var(--teal-dark);
  font-weight: 600;
}

.legal-section__body a:hover {
  color: var(--navy);
}

.legal-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.legal-card__footer a {
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.legal-card__footer-dot {
  color: var(--text-secondary);
}

@media (max-width: 760px) {
  .legal-card {
    padding: 1.35rem;
  }

  .legal-page main {
    padding: 2rem 0 3rem;
  }
}
