/* Shared public components — loaded by all marketing pages. */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body.tp-page {
  margin: 0;
  overflow-x: hidden;
  color: var(--m-ink);
  background:
    radial-gradient(circle at 10% 12%, var(--m-bg-glow-a), transparent 24rem),
    radial-gradient(circle at 94% 20%, var(--m-bg-glow-b), transparent 28rem),
    var(--m-cream);
  font-family: var(--font);
  line-height: 1.5;
}
.tp-page a {
  color: inherit;
}
.tp-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--m-forest);
  transform: translateY(-150%);
}
.tp-skip-link:focus {
  transform: translateY(0);
}
.tp-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--m-nav-border);
  background: var(--m-nav-bg);
  backdrop-filter: blur(18px);
}
.tp-nav {
  width: min(100% - 48px, 1480px);
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--m-ink);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--m-theme-shadow);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: block;
}
.tp-nav nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.2vw, 40px);
}
.tp-nav nav a,
.tp-nav__dropdown-trigger {
  color: var(--m-nav-link);
  font-size: 14px;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.tp-nav nav a:hover,
.tp-nav nav a:focus-visible,
.tp-nav__dropdown-trigger:hover,
.tp-nav__dropdown-trigger:focus-visible {
  color: var(--m-nav-link-hover);
  text-decoration: underline;
  text-underline-offset: 8px;
}
.tp-nav__dropdown {
  position: relative;
}
.tp-nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  font-family: inherit;
}
.tp-nav__dropdown-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentcolor;
  border-bottom: 1.5px solid currentcolor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}
.tp-nav__dropdown:hover .tp-nav__dropdown-trigger::after,
.tp-nav__dropdown:focus-within .tp-nav__dropdown-trigger::after {
  transform: rotate(-135deg) translateY(1px);
}
.tp-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 180px;
  padding: 8px;
  display: grid;
  gap: 2px;
  border: 1px solid var(--m-border);
  border-radius: 12px;
  background: var(--m-paper);
  box-shadow: var(--m-soft-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.tp-nav__dropdown:hover .tp-nav__dropdown-menu,
.tp-nav__dropdown:focus-within .tp-nav__dropdown-menu,
.tp-nav__dropdown-menu:focus-within {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.tp-nav__dropdown-menu a {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--m-nav-link);
  font-size: 13px;
  white-space: nowrap;
}
.tp-nav__dropdown-menu a:hover,
.tp-nav__dropdown-menu a:focus-visible {
  color: var(--m-nav-link-hover);
  background: var(--m-cream);
  text-decoration: none;
}
.tp-nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tp-nav__menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  appearance: none;
  cursor: pointer;
  border: 1px solid var(--m-border);
  border-radius: 10px;
  color: var(--m-ink);
  background: var(--m-paper);
}
.tp-nav__menu-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentcolor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tp-status-pill,
.eyebrow-pill,
.focus-pill,
.feature-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--m-border);
  border-radius: 999px;
  background: var(--m-pill-bg);
}
.tp-status-pill {
  min-height: 40px;
  padding: 8px 15px;
  color: var(--m-pill-text);
  font-size: 13px;
}
.tp-status-pill span,
.eyebrow-pill span {
  display: none;
}
.tp-theme-toggle {
  width: 40px;
  min-height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  appearance: none;
  cursor: pointer;
  border: 1px solid var(--m-border);
  border-radius: 50%;
  color: var(--m-ink);
  background: var(--m-paper);
  box-shadow: var(--m-theme-shadow);
}
.tp-theme-toggle:hover,
.tp-theme-toggle:focus-visible {
  border-color: var(--m-forest-2);
}
.tp-theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentcolor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.theme-icon-sun {
  display: none;
}
:root[data-theme="dark"] .theme-icon-moon {
  display: none;
}
:root[data-theme="dark"] .theme-icon-sun {
  display: block;
}
.hero-copy h1,
.tp-section-copy h2,
.story-card h3,
.tp-cta-band h2 {
  font-family: var(--serif);
  font-weight: 500;
}
.tp-primary-cta {
  width: min(100%, 342px);
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 14px;
  color: #fff !important;
  background: linear-gradient(110deg, #267450, var(--m-forest));
  box-shadow: 0 15px 34px rgba(18, 69, 50, .2);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}
.tp-primary-cta:hover,
.tp-primary-cta:focus-visible {
  background: #0f3b2b;
  transform: translateY(-1px);
}
.tp-trust-strip,
.tp-section-shell {
  width: min(100% - 64px, 1480px);
  margin: 0 auto;
  border: 1px solid var(--m-shell-border);
  border-radius: 18px;
  background: var(--m-shell-bg);
}
.tp-trust-strip {
  min-height: 74px;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(18px, 2.6vw, 36px);
  color: var(--m-body);
  font-size: 13px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.trust-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.household-section,
.tp-workflow,
.pricing-section {
  margin-top: 28px;
  padding: 42px;
}
.tp-section-kicker {
  margin: 0 0 12px !important;
  color: var(--m-forest-2) !important;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.tp-section-copy h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.12;
  letter-spacing: -.02em;
}
.tp-section-copy > p:not(.tp-section-kicker) {
  max-width: 46ch;
  margin: 18px 0;
  color: rgba(63, 77, 71, .92);
  font-size: 16px;
  line-height: 1.55;
}
.tp-text-link {
  color: var(--m-forest) !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.tp-text-link:hover,
.tp-text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.tp-workflow {
  display: grid;
  grid-template-columns: .38fr 1.62fr;
  gap: 42px;
  align-items: center;
}
.tp-timeline {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  list-style: none;
}
.tp-timeline li {
  position: relative;
  min-width: 0;
  text-align: center;
}
.tp-timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  right: -16px;
  width: 18px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 10' fill='none' stroke='%231f6247' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 5h20M18 1l5 4-5 4'/%3E%3C/svg%3E") no-repeat center/contain;
  opacity: .7;
}
.tp-timeline__icon {
  position: relative;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--m-forest);
  background: linear-gradient(180deg, rgba(255, 253, 248, .9), rgba(250, 244, 232, .95));
  border: 1px solid var(--m-border);
  box-shadow: var(--m-soft-shadow);
}
.tp-timeline__icon svg {
  width: 26px;
  height: 26px;
}
.tp-timeline__icon i {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--m-forest-2);
  font-family: var(--font);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}
.tp-timeline > li > strong {
  display: block;
  font-size: 13px;
}
.tp-timeline > li > p {
  max-width: 28ch;
  margin: 6px auto 0;
  color: var(--m-muted);
  font-size: 11px;
  line-height: 1.45;
}
.tp-price-card {
  position: relative;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--m-border);
  border-radius: 14px;
  background: var(--m-card-bg);
}
.tp-price-card.featured {
  border: 2px solid var(--m-orange);
}
.popular {
  position: absolute;
  top: -12px;
  left: 50%;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--m-orange);
  font-size: 8px;
  transform: translateX(-50%);
}
.tp-price-card p {
  margin: 0;
  font-weight: 700;
}
.tp-price-card h3 {
  margin: 2px 0 0;
  font-size: 30px;
}
.tp-price-card h3 small {
  font-size: 10px;
  font-weight: 400;
}
.tp-price-card > small {
  color: var(--m-muted);
  font-size: 8px;
}
.tp-price-card ul {
  margin: 16px 0 18px;
  padding: 0;
  display: grid;
  gap: 7px;
  list-style: none;
  font-size: 9px;
}
.tp-price-card li::before {
  content: "\2713";
  margin-right: 7px;
  color: var(--m-forest-2);
}
.tp-price-card a {
  min-height: 37px;
  margin-top: auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--m-forest);
  background: color-mix(in srgb, var(--m-sage) 55%, var(--m-paper));
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}
.tp-price-card.featured a {
  color: #fff;
  background: var(--m-forest-2);
}
.tp-price-trust {
  margin: 0;
  padding: 26px 0 0 22px;
  display: grid;
  align-content: start;
  gap: 20px;
  border-left: 1px solid var(--m-border);
  list-style: none;
  color: var(--m-body);
  font-size: 10px;
}
.tp-price-trust li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 10px;
}
.tp-price-trust svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #7b8d83;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tp-cta-band {
  position: relative;
  min-height: 240px;
  padding: 48px max(24px, calc((100% - 760px) / 2));
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(98, 146, 104, .2), transparent 35%),
    linear-gradient(120deg, #0c3929, #124f39);
}
.tp-cta-band > img {
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 320px;
  height: 180px;
  object-fit: contain;
  object-position: left bottom;
  filter: saturate(.92) contrast(1.02);
  opacity: .12;
  pointer-events: none;
  z-index: -1;
}
.tp-cta-band > div {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.tp-cta-band h2 {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.tp-cta-band p {
  margin: 10px 0 20px;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
}
.tp-cta-band a {
  width: min(100%, 260px);
  min-height: 50px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--m-forest);
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tp-cta-band a:hover,
.tp-cta-band a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
}
.tp-cta-band small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
}
.tp-footer {
  padding: 52px max(24px, calc((100% - 1380px) / 2)) 44px;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
  border-top: 1px solid var(--m-border);
  background: var(--m-paper);
}
.tp-footer .brand {
  font-size: 22px;
}
.tp-footer .brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  font-size: 12px;
}
.tp-footer p {
  max-width: 32ch;
  margin: 14px 0 10px;
  color: var(--m-body);
  font-size: 12px;
  line-height: 1.55;
}
.tp-footer small {
  color: var(--m-muted);
  font-size: 10px;
}
.tp-footer > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tp-footer strong {
  margin-bottom: 6px;
  color: var(--m-ink);
  font-size: 11px;
  letter-spacing: .04em;
}
.tp-footer > div > a {
  color: var(--m-body);
  font-size: 11px;
  text-decoration: none;
}
.tp-footer > div > a:hover,
.tp-footer > div > a:focus-visible {
  color: var(--m-forest);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-brand .tp-theme-toggle {
  width: 34px;
  min-height: 34px;
  margin-bottom: 10px;
}
.footer-brand .tp-theme-toggle svg {
  width: 16px;
  height: 16px;
}
.tp-theme-toggle[aria-pressed="true"] {
  color: #fff;
  border-color: var(--m-forest-2);
  background: var(--m-forest-2);
}
:root[data-theme="dark"] .today-preview,
:root[data-theme="dark"] .preview-tabs,
:root[data-theme="dark"] .reward-stats span,
:root[data-theme="dark"] .reward-grid div,
:root[data-theme="dark"] .stat-grid > div,
:root[data-theme="dark"] .dashboard-grid > article,
:root[data-theme="dark"] .economy-stats span,
:root[data-theme="dark"] .economy-columns > div,
:root[data-theme="dark"] .tp-price-card,
:root[data-theme="dark"] .phone-content,
:root[data-theme="dark"] .preview-action {
  border-color: var(--m-border);
  background: var(--m-field-bg);
}
:root[data-theme="dark"] .tp-timeline__icon {
  color: var(--m-forest-2);
  background: var(--m-card-bg);
}
:root[data-theme="dark"] .tp-timeline li:not(:last-child)::after {
  filter: brightness(1.6);
}
:root[data-theme="dark"] .tp-text-link {
  color: var(--m-forest-2) !important;
}
:root[data-theme="dark"] .story-card {
  background: var(--m-card-bg);
}
:root[data-theme="dark"] .tag-row span {
  color: var(--m-body);
  background: var(--m-field-bg);
  border-color: var(--m-border);
}
:root[data-theme="dark"] .household-section {
  background: linear-gradient(180deg, rgba(19, 37, 30, .85), rgba(15, 32, 25, .55));
}
:root[data-theme="dark"] .hero-lede,
:root[data-theme="dark"] .tp-section-copy > p:not(.tp-section-kicker),
:root[data-theme="dark"] .story-card p {
  color: var(--m-body);
}
:root[data-theme="dark"] .reward-grid div {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
}
:root[data-theme="dark"] .tp-trust-strip strong,
:root[data-theme="dark"] .tp-price-trust svg,
:root[data-theme="dark"] .tp-section-kicker,
:root[data-theme="dark"] .tp-price-card li::before {
  color: var(--m-gold);
}
:root[data-theme="dark"] .economy-columns mark {
  color: #f3c983;
  background: rgba(124, 82, 21, .32);
}
:root[data-theme="dark"] .economy-columns mark.approved,
:root[data-theme="dark"] .economy-preview > h3 em {
  color: #b7e7c4;
  background: rgba(41, 108, 71, .32);
}
:root[data-theme="dark"] .tp-price-card a {
  color: var(--m-ink);
}
:root[data-theme="dark"] .tp-price-card.featured a,
:root[data-theme="dark"] .tp-primary-cta {
  color: #fff;
}
:root[data-theme="dark"] .line-illustration path:not(.foliage) {
  stroke: #d7c08d;
}
:root[data-theme="dark"] .line-illustration .foliage {
  stroke: #89b093;
}
:root[data-theme="dark"] .story-art,
:root[data-theme="dark"] .pricing-plant,
:root[data-theme="dark"] .hero-plant {
  mix-blend-mode: normal;
  filter: brightness(1.08) saturate(.92);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 1240px) {
  .tp-nav {
    gap: 24px;
  }
  .tp-nav nav {
    gap: 18px;
  }
}

@media (max-width: 980px) {
  .tp-nav {
    position: relative;
    min-height: 78px;
    grid-template-columns: auto 1fr;
  }
  .tp-nav nav {
    display: none;
  }
  .tp-nav__menu-toggle {
    display: inline-flex;
  }
  .tp-nav.nav-open nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--m-panel-border);
    border-radius: 14px;
    background: var(--m-panel-bg);
    box-shadow: var(--m-shadow);
    z-index: 50;
  }
  .tp-nav.nav-open nav > a,
  .tp-nav.nav-open .tp-nav__dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
  }
  .tp-nav.nav-open nav > a:hover,
  .tp-nav.nav-open .tp-nav__dropdown-trigger:hover {
    background: var(--m-field-bg);
    text-decoration: none;
  }
  .tp-nav.nav-open .tp-nav__dropdown-menu {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px 0 0 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .tp-nav__actions {
    justify-self: end;
  }
  .tp-primary-cta,
  .cta-note,
  .platform-note {
    margin-left: auto;
    margin-right: auto;
  }
  .tp-trust-strip {
    flex-wrap: wrap;
    gap: 18px 34px;
  }
  .household-section,
  .tp-workflow {
    grid-template-columns: 1fr;
  }
  .tp-section-copy {
    max-width: 680px;
  }
  .tp-price-trust {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    border-left: 0;
  }
  .tp-cta-band {
    padding-inline: 30px;
    grid-template-columns: 190px 1fr;
  }
  .tp-footer {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .tp-nav,
  .landing-hero,
  .tp-trust-strip,
  .tp-section-shell {
    width: min(100% - 28px, 1480px);
  }
  .tp-nav {
    min-height: 68px;
  }
  .brand {
    font-size: 23px;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
  }
  .tp-status-pill {
    display: none;
  }
  .tp-primary-cta {
    width: 100%;
  }
  .tp-trust-strip {
    margin-top: 12px;
    padding: 18px;
    justify-content: flex-start;
  }
  .tp-trust-strip em {
    width: 100%;
  }
  .household-section,
  .tp-workflow,
  .pricing-section {
    padding: 26px 20px;
  }
  .tp-workflow .tp-section-copy {
    text-align: center;
  }
  .tp-workflow .tp-section-copy > p,
  .tp-workflow .tp-section-copy > h2 {
    margin-inline: auto;
  }
  .tp-timeline {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .tp-timeline li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .tp-timeline li:not(:last-child)::after {
    content: "\2193";
    position: static;
    display: block;
    margin-top: 2px;
    color: var(--m-forest-2);
    font-size: 14px;
    opacity: .7;
  }
  .tp-timeline__icon {
    margin: 0;
    align-self: center;
  }
  .tp-timeline > li > strong {
    font-size: 15px;
  }
  .tp-timeline > li > p {
    max-width: 32ch;
    margin: 0;
    padding: 0;
    font-size: 12px;
  }
  .pricing-section .tp-section-copy,
  .tp-price-trust {
    grid-column: auto;
  }
  .tp-price-trust {
    grid-template-columns: 1fr;
  }
  .tp-price-card.featured {
    order: 0;
  }
  .tp-cta-band {
    min-height: 0;
    padding: 32px 24px;
    text-align: left;
  }
  .tp-cta-band > div {
    width: 100%;
    max-width: none;
  }
  .tp-cta-band h2 {
    font-size: clamp(26px, 7vw, 32px);
  }
  .tp-cta-band a {
    width: auto;
    margin: 0;
    padding: 0 28px;
  }
  .tp-cta-band small {
    margin-top: 8px;
  }
  .tp-cta-band > img {
    left: auto;
    right: -20px;
    bottom: -20px;
    width: 260px;
    height: 130px;
    transform: none;
    opacity: .08;
  }
  .tp-section-copy h2 {
    font-size: clamp(28px, 7vw, 34px);
  }
  .tp-section-copy > p:not(.tp-section-kicker) {
    font-size: 14px;
  }
  .tp-price-card {
    padding: 22px 18px;
  }
  .tp-price-card h3 {
    font-size: 28px;
  }
  .tp-price-card > small {
    font-size: 10px;
  }
  .tp-price-card ul {
    font-size: 11px;
  }
  .tp-price-card a {
    min-height: 42px;
    font-size: 12px;
  }
  .tp-footer {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .tp-footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tp-footer > div:not(.footer-brand) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
  }
  .tp-footer > div:not(.footer-brand) strong {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }
  .tp-footer a {
    padding: 6px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}

