@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("/assets/fonts/manrope-latin-variable.woff2") format("woff2-variations");
}

:root {
  color-scheme: light;
  --ink: #252638;
  --muted: #676979;
  --line: #e9e7ef;
  --surface: #ffffff;
  --soft: #f7f6fa;
  --accent: #b9bde0;
  --accent-strong: #42456d;
  --safe: #2b7663;
  --danger: #b74450;
  --content: 800px;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  background: var(--surface);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 450;
}

a {
  color: inherit;
  text-decoration-color: var(--accent-strong);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner,
.footer-inner {
  display: flex;
  width: min(1120px, calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-wordmark {
  align-items: baseline;
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1;
}

.brand-drop-letter {
  align-self: center;
  border: 2px solid currentColor;
  border-radius: 52% 52% 52% 0;
  box-sizing: border-box;
  display: inline-block;
  height: 17px;
  margin: 0 1px 0 -1px;
  position: relative;
  top: 1px;
  transform: rotate(-45deg);
  width: 17px;
}

.brand-drop-letter::after {
  background: var(--brand);
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 5px;
  position: absolute;
  top: 5px;
  width: 4px;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.site-nav {
  display: flex;
  overflow-x: auto;
  align-items: center;
  gap: 22px;
  color: #494949;
  font-size: 14px;
  font-weight: 650;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  flex: 0 0 auto;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.page-shell {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 88px;
}

.page-intro {
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--safe);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 18px;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 760;
  letter-spacing: 0;
}

h2 {
  margin: 48px 0 14px;
  font-size: 25px;
  line-height: 1.25;
  font-weight: 750;
  letter-spacing: 0;
}

h3 {
  margin: 28px 0 8px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 720;
  letter-spacing: 0;
}

.lede {
  max-width: 650px;
  margin-bottom: 0;
  color: #414141;
  font-size: 19px;
  line-height: 1.55;
}

.meta {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.content-section {
  padding-top: 1px;
}

.content-section p,
.content-section li {
  color: #353535;
}

.content-section ul,
.content-section ol {
  margin: 12px 0 0;
  padding-left: 24px;
}

.content-section li + li {
  margin-top: 8px;
}

.notice {
  margin-top: 32px;
  padding: 20px 22px;
  border-left: 4px solid var(--accent);
  background: var(--soft);
}

.notice strong {
  display: block;
  margin-bottom: 4px;
}

.membership-page {
  min-height: 100vh;
  background: #fcfbfe;
}

.membership-page .site-header {
  background: rgba(252, 251, 254, 0.96);
}

.membership-header .header-inner {
  width: min(1160px, calc(100% - 48px));
}

.membership-nav,
.membership-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.membership-nav a,
.membership-nav .text-button {
  color: #4f4c47;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.membership-nav a:hover,
.membership-nav .text-button:hover {
  color: var(--ink);
}

.membership-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 112px;
}

.membership-sign-in,
.membership-result {
  width: min(480px, 100%);
  margin: 8vh auto 0;
  text-align: center;
}

.membership-sign-in h1,
.membership-result h1 {
  margin-bottom: 14px;
  font-size: 44px;
  line-height: 1.12;
}

.membership-sign-in .lede,
.membership-result .lede {
  margin: 0 auto 30px;
  font-size: 16px;
}

.membership-mark,
.result-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--accent);
  font-size: 26px;
  font-weight: 760;
}

.membership-mark img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
}

.google-button {
  display: flex;
  min-height: 46px;
  justify-content: center;
}

.identity-buttons {
  display: grid;
  width: min(360px, 100%);
  gap: 12px;
  margin: 0 auto;
}

.apple-sign-in-button {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  color: #ffffff;
  background: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
}

.apple-sign-in-button span {
  font-size: 19px;
  line-height: 1;
}

.apple-sign-in-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.text-button {
  padding: 9px 0;
  border: 0;
  color: #33312e;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
}

.membership-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
  align-items: center;
  gap: 64px;
  padding: 20px 0 52px;
  border-bottom: 1px solid var(--line);
}

.membership-heading h1 {
  margin: 0 0 12px;
  font-size: 46px;
  line-height: 1.1;
  font-weight: 750;
}

.membership-heading-copy > p:last-child {
  max-width: 620px;
  margin: 0;
  color: #504d48;
  font-size: 17px;
  line-height: 1.55;
}

.current-plan {
  display: flex;
  min-width: 0;
  min-height: 132px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border: 1px solid #d8d5ce;
  border-left: 4px solid #aaa69d;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.current-plan span,
.current-plan strong {
  display: block;
}

.current-plan-label {
  display: flex !important;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
  text-transform: uppercase;
}

.current-plan-label i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #aaa69d;
}

.current-plan.is-active {
  border-left-color: var(--safe);
  background: #f3faf7;
}

.current-plan.is-active .current-plan-label i {
  background: var(--safe);
  box-shadow: 0 0 0 4px rgba(22, 122, 104, 0.11);
}

.current-plan.is-ending {
  border-left-color: #a15b48;
  background: #faeee9;
}

.current-plan.is-ending .current-plan-label i {
  background: #a15b48;
  box-shadow: 0 0 0 4px rgba(161, 91, 72, 0.11);
}

.current-plan strong {
  margin: 5px 0 2px;
  font-size: 22px;
  font-weight: 730;
}

#current-plan-period {
  color: var(--muted);
  font-size: 13px;
}

#scheduled-plan {
  margin-top: 6px;
  color: #7d4637;
  font-size: 12px;
  font-weight: 650;
}

.cancel-renewal-button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #bdb9b1;
  border-radius: 6px;
  color: #34312d;
  background: #ffffff;
  font: inherit;
  font-size: 12px;
  font-weight: 680;
  cursor: pointer;
}

.membership-purchase,
.plan-comparison,
.membership-history,
.membership-help {
  scroll-margin-top: 88px;
}

.membership-purchase-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 54px;
}

.membership-purchase-heading h2,
.section-heading h2 {
  margin: 3px 0 0;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 720;
}

.section-intro,
.section-heading-split > p {
  max-width: 480px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.purchase-label,
.billing-control > span {
  display: block;
  margin: 0;
  color: #625e57;
  font-size: 11px;
  font-weight: 730;
  text-transform: uppercase;
}

.billing-control > span {
  margin-bottom: 7px;
}

.billing-tabs {
  display: grid;
  width: 350px;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 4px;
  padding: 4px;
  border: 1px solid #d5d1c9;
  border-radius: 8px;
  background: #ece9e3;
}

.billing-tabs button {
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 5px;
  color: #64605a;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 680;
  cursor: pointer;
}

.billing-tabs button.is-selected {
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(25, 24, 23, 0.1);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.membership-plan-card {
  position: relative;
  display: flex;
  min-height: 540px;
  padding: 30px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d6d2ca;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(41, 36, 29, 0.06);
}

.membership-plan-card.is-featured {
  border-color: #b9bde0;
  background: #f8f8fc;
  box-shadow: 0 16px 40px rgba(66, 69, 109, 0.12);
}

.membership-plan-card.is-featured::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--accent);
  content: "";
}

.membership-plan-header {
  display: flex;
  min-height: 96px;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.membership-plan-header h3 {
  margin: 0 0 9px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 730;
}

.membership-plan-header p {
  max-width: 370px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.recommended-label {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 4px;
  color: #42456d;
  background: #eff0fa;
  font-size: 11px;
  font-weight: 730;
}

.membership-plan-price {
  margin-top: 22px;
}

.membership-plan-price strong,
.membership-plan-price span {
  display: block;
}

.membership-plan-price strong {
  font-size: 34px;
  line-height: 1.18;
  font-weight: 750;
}

.membership-plan-price span {
  min-height: 22px;
  margin-top: 5px;
  color: #514e49;
  font-size: 13px;
  font-weight: 620;
}

.plan-renewal-copy {
  margin: 12px 0 0;
  color: #625f59;
  font-size: 12px;
  line-height: 1.45;
}

.membership-benefit-list {
  margin: 26px 0 28px;
  padding: 20px 0 0;
  border-top: 1px solid #e9e6df;
  list-style: none;
}

.membership-benefit-list li {
  display: flex;
  align-items: center;
  min-height: 38px;
  gap: 11px;
  color: #312f2b;
  font-size: 14px;
  line-height: 1.4;
}

.membership-benefit-list li span {
  display: grid;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--safe);
  font-size: 11px;
  font-weight: 780;
}

.membership-plan-footer {
  margin-top: auto;
}

.membership-plan-footer .plan-cta {
  width: 100%;
  min-height: 50px;
}

.membership-plan-footer .secondary-button {
  border: 1px solid #aaa69e;
  color: var(--ink);
  background: #ffffff;
  box-shadow: none;
}

.membership-plan-footer p {
  min-height: 38px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.plans-unavailable {
  grid-column: 1 / -1;
  margin: 0;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.primary-button {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid #42456d;
  border-radius: 7px;
  color: #ffffff;
  background: #42456d;
  font: inherit;
  font-size: 14px;
  font-weight: 730;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(66, 69, 109, 0.16);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.primary-button:hover:not(:disabled) {
  background: #30324f;
  box-shadow: 0 11px 25px rgba(66, 69, 109, 0.22);
  transform: translateY(-1px);
}

.primary-button:active:not(:disabled) {
  transform: translateY(0);
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(22, 122, 104, 0.34);
  outline-offset: 3px;
}

.primary-button:disabled {
  cursor: default;
  box-shadow: none;
  opacity: 0.58;
}

.payment-disclosure {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.payment-disclosure-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--safe);
  font-size: 12px;
  font-weight: 760;
}

.payment-disclosure strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.payment-disclosure p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.payment-disclosure a {
  font-size: 12px;
  font-weight: 650;
}

.checkout-message {
  min-height: 22px;
  margin-top: 10px;
}

.plan-comparison,
.membership-history,
.membership-help {
  margin-top: 76px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.section-heading-split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading-split > p {
  margin: 0;
  text-align: right;
}

.comparison-table {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid #d7d3cb;
  border-radius: 8px;
  background: #ffffff;
}

.comparison-unavailable {
  margin: 0;
  padding: 28px 22px;
  color: var(--muted);
  font-size: 13px;
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: minmax(230px, 1.45fr) repeat(2, minmax(170px, 1fr));
}

.comparison-header {
  color: #ffffff;
  background: var(--ink);
}

.comparison-header > div,
.comparison-row > div {
  min-width: 0;
  padding: 17px 22px;
}

.comparison-header > div {
  font-size: 13px;
  font-weight: 700;
}

.comparison-header > div + div,
.comparison-row > div + div {
  border-left: 1px solid rgba(221, 217, 210, 0.72);
}

.comparison-header .is-featured-column {
  color: var(--ink);
  background: var(--accent);
}

.comparison-row + .comparison-row {
  border-top: 1px solid #ebe8e2;
}

.comparison-row:nth-child(odd) {
  background: #fbfaf7;
}

.comparison-feature-label {
  color: #35322e;
  font-size: 13px;
  font-weight: 650;
}

.comparison-value {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #47443f;
  font-size: 13px;
  font-weight: 620;
}

.comparison-value.is-included::before {
  display: grid;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--safe);
  content: "\2713";
  font-size: 11px;
  font-weight: 760;
}

.comparison-value.is-unavailable {
  color: #99958e;
}

.comparison-value.is-unavailable::before {
  content: "\2014";
}

.confirmation-dialog {
  width: min(430px, calc(100% - 32px));
  padding: 0;
  border: 1px solid #d4d0c8;
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(25, 24, 23, 0.24);
}

.plan-change-dialog {
  width: min(590px, calc(100% - 32px));
}

.confirmation-dialog::backdrop {
  background: rgba(18, 18, 18, 0.58);
  backdrop-filter: blur(3px);
}

.confirmation-dialog form {
  position: relative;
  padding: 32px;
}

.plan-change-summary {
  display: grid;
  grid-template-columns: 0.72fr 1.15fr 1.13fr;
  gap: 18px;
  margin-top: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plan-change-summary span,
.plan-change-summary strong {
  display: block;
}

.plan-change-summary span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.plan-change-summary strong {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.plan-change-summary > div:first-child strong {
  color: #12684f;
  font-size: 18px;
}

.plan-change-summary > div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.confirmation-dialog h2 {
  margin: 0 0 10px;
  font-size: 27px;
}

.confirmation-dialog p:not(.eyebrow):not(.form-message) {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 0;
  color: #55514b;
  background: transparent;
  font: inherit;
  font-size: 26px;
  cursor: pointer;
}

.dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 26px;
}

.secondary-button,
.danger-button,
.dialog-actions .primary-button {
  min-height: 48px;
  padding: 0 15px;
  border-radius: 6px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.secondary-button {
  border: 1px solid #bdb9b1;
  background: var(--surface);
}

.danger-button {
  border: 1px solid #a52a2a;
  color: #ffffff;
  background: #a52a2a;
}

.danger-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 3px 0 0;
  color: var(--danger);
  font-size: 13px;
}

.form-message.is-success {
  color: var(--safe);
}

.history-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.history-row:first-child {
  margin-top: 22px;
}

.history-row strong,
.history-row span {
  display: block;
}

.history-row div > span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.history-status {
  color: var(--safe);
  font-size: 11px;
  font-weight: 730;
  text-transform: capitalize;
}

.history-status.is-failed,
.history-status.is-refunded {
  color: var(--danger);
}

.history-more {
  margin-top: 12px;
}

.help-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.75fr);
  gap: 64px;
  margin-top: 24px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 20px 42px 20px 0;
  color: #2b2926;
  font-size: 15px;
  font-weight: 680;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 6px;
  color: #5e5a54;
  content: "+";
  font-size: 22px;
  font-weight: 450;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list details p {
  max-width: 690px;
  margin: -4px 42px 20px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.support-callout {
  align-self: start;
  padding: 26px;
  border: 1px solid #d7d3cb;
  border-radius: 8px;
  background: #ffffff;
}

.support-callout h3 {
  margin: 5px 0 8px;
  font-size: 20px;
  font-weight: 710;
}

.support-callout > p:not(.purchase-label) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.support-link {
  display: flex;
  margin-top: 22px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.membership-return-shell {
  display: grid;
  min-height: calc(100vh - 70px);
  place-items: center;
  padding-top: 36px;
}

.membership-result {
  margin: 0 auto;
}

.result-icon.is-success {
  color: #ffffff;
  background: var(--safe);
}

.result-icon.is-failed {
  color: #ffffff;
  background: var(--danger);
}

.membership-result .primary-button {
  margin-top: 8px;
}

@media (max-width: 780px) {
  .membership-header .header-inner,
  .membership-shell {
    width: min(1120px, calc(100% - 32px));
  }

  .membership-nav-links {
    display: none;
  }

  .membership-heading {
    display: block;
    padding-top: 4px;
  }

  .current-plan {
    margin-top: 28px;
  }

  .membership-purchase-heading,
  .section-heading-split {
    display: block;
  }

  .section-heading-split > p {
    margin-top: 9px;
    text-align: left;
  }

  .billing-control {
    margin-top: 20px;
  }

  .billing-tabs {
    width: 100%;
  }

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

  .membership-plan-card {
    min-height: 0;
  }

  .help-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .membership-shell {
    padding: 38px 0 80px;
  }

  .membership-heading h1,
  .membership-sign-in h1,
  .membership-result h1 {
    font-size: 35px;
  }

  .membership-heading-copy > p:last-child {
    font-size: 15px;
  }

  .current-plan {
    display: block;
    min-height: 0;
    padding: 20px;
  }

  .cancel-renewal-button {
    width: 100%;
    margin-top: 18px;
  }

  .membership-plan-card {
    padding: 26px 22px;
  }

  .membership-plan-header {
    min-height: 0;
  }

  .recommended-label {
    max-width: 90px;
    text-align: center;
  }

  .payment-disclosure {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .payment-disclosure a {
    grid-column: 2;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-header .comparison-feature-label {
    display: none;
  }

  .comparison-feature-label {
    grid-column: 1 / -1;
    padding-bottom: 8px !important;
  }

  .comparison-row > div + div {
    border-left: 0;
  }

  .comparison-row .comparison-value + .comparison-value {
    border-left: 1px solid #ebe8e2;
  }

  .comparison-header > div,
  .comparison-row > div {
    padding: 14px 16px;
  }

  .comparison-header > div:not(.comparison-feature-label) {
    text-align: center;
  }

  .comparison-value {
    justify-content: center;
    text-align: center;
  }

  .dialog-actions,
  .plan-change-summary {
    grid-template-columns: 1fr;
  }

  .plan-change-summary > div + div {
    padding: 14px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .primary-button {
    width: 100%;
  }

  .history-row {
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .primary-button {
    transition: none;
  }
}

.directory {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.directory-link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.directory-link:hover .directory-title {
  text-decoration: underline;
  text-decoration-color: var(--accent-strong);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.directory-title {
  display: block;
  margin-bottom: 3px;
  font-size: 20px;
  font-weight: 730;
}

.directory-copy {
  display: block;
  color: var(--muted);
  font-size: 15px;
}

.directory-arrow {
  align-self: center;
  font-size: 24px;
  font-weight: 500;
}

.step-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.step-list li {
  position: relative;
  min-height: 46px;
  padding: 7px 0 22px 58px;
  counter-increment: steps;
}

.step-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  content: counter(steps);
  font-weight: 760;
}

.support-topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.support-topic {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-topic h2 {
  margin: 0 0 8px;
  font-size: 19px;
}

.support-topic p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.primary-link {
  display: inline-flex;
  min-height: 48px;
  margin-top: 26px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 720;
  text-decoration: none;
}

.primary-link:hover {
  background: #343434;
}

.site-footer {
  border-top: 1px solid #2d2b28;
  color: #f6f3ec;
  background: #1d1c1a;
}

.footer-inner {
  min-height: 110px;
  color: #c7c2b9;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
}

.site-footer a {
  color: #f6f3ec;
  text-decoration-color: #736e65;
}

.membership-footer .footer-inner {
  width: min(1160px, calc(100% - 48px));
  min-height: 180px;
}

.membership-footer .footer-brand {
  color: #ffffff;
}

.membership-footer p {
  margin: 10px 0 0;
  color: #aaa59c;
}

@media (max-width: 720px) {
  .header-inner {
    width: 100%;
    min-height: auto;
    padding: 12px 20px 0;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .site-nav {
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 20px 12px;
  }

  .membership-page .header-inner {
    width: min(1120px, calc(100% - 28px));
    min-height: 60px;
    padding: 0;
    flex-direction: row;
    align-items: center;
  }

  .membership-page .site-nav {
    width: auto;
    margin: 0;
    padding: 0;
  }

  .page-shell {
    padding-top: 48px;
  }

  h1 {
    font-size: 38px;
  }

  .support-topics {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    padding: 26px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
