@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Manrope:wght@400;500;600;700;800&family=Noto+Serif:wght@500;600;700&display=swap');

body.editorial-site {
  --paper: #f7f1e8;
  --paper-strong: #eee5d8;
  --stone: #e9e0d2;
  --stone-strong: #dccfbc;
  --ink: #1f1a15;
  --ink-soft: #514941;
  --ink-muted: #7f776d;
  --line: rgba(84, 72, 57, 0.13);
  --line-strong: rgba(84, 72, 57, 0.24);
  --accent: #2e5e3c;
  --accent-strong: #183723;
  --accent-soft: #dde8db;
  --accent-ink: #24442d;
  --moss: #173022;
  --moss-strong: #102117;
  --cream: #fbf7f1;
  --warm-shadow: 0 26px 60px rgba(22, 26, 18, 0.12);
  --soft-shadow: 0 18px 42px rgba(22, 26, 18, 0.08);
  --body-font: 'Manrope', sans-serif;
  --display-font: 'Noto Serif', serif;
  --mono-font: 'IBM Plex Mono', monospace;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--body-font);
  background:
    radial-gradient(circle at 14% 8%, rgba(219, 232, 214, 0.76) 0%, rgba(219, 232, 214, 0) 24%),
    radial-gradient(circle at 88% 14%, rgba(239, 225, 204, 0.7) 0%, rgba(239, 225, 204, 0) 26%),
    linear-gradient(180deg, #f8f2ea 0%, #f5ede4 52%, #faf5ee 100%);
}

body.editorial-site,
body.editorial-site button,
body.editorial-site input,
body.editorial-site select,
body.editorial-site textarea {
  font-family: var(--body-font);
}

body.editorial-site::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--line) 70%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--line) 70%, transparent) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.14;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 78%);
  z-index: 0;
}

body.editorial-site::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 16%, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0) 24%),
    radial-gradient(circle at 76% 28%, rgba(46, 94, 60, 0.08) 0%, rgba(46, 94, 60, 0) 24%);
  z-index: 0;
}

body.editorial-site[data-theme='brand-light']::before,
body.editorial-site[data-theme='brand-light']::after {
  opacity: inherit;
}

body.editorial-site--memo.editorial-site {
  background:
    linear-gradient(180deg, #f8f2ea 0%, #f5ede4 58%, #faf5ee 100%);
}

body.editorial-site--memo.editorial-site::after {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(270deg, rgba(239, 225, 204, 0.34) 0%, rgba(239, 225, 204, 0) 36%);
}

body.editorial-site main,
body.editorial-site header,
body.editorial-site section,
body.editorial-site footer {
  position: relative;
  z-index: 1;
}

body.editorial-site h1,
body.editorial-site h2,
body.editorial-site h3,
body.editorial-site h4 {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.052em;
  text-wrap: balance;
}

body.editorial-site p,
body.editorial-site li {
  color: var(--ink-soft);
}

body.editorial-site .container {
  width: min(1240px, calc(100% - 2rem));
}

body.editorial-site .site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  border-bottom: 1px solid rgba(84, 72, 57, 0.08);
  background: rgba(247, 241, 232, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

body.editorial-site .site-header.is-scrolled {
  background: rgba(247, 241, 232, 0.92);
  box-shadow: 0 16px 34px rgba(22, 26, 18, 0.07);
  border-bottom-color: rgba(84, 72, 57, 0.12);
}

body.editorial-site .header-row {
  min-height: 82px;
  gap: 1rem;
}

body.editorial-site .brand {
  gap: 0;
}

body.editorial-site .brand-copy {
  display: block;
}

body.editorial-site .brand-title {
  font-family: var(--display-font);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.055em;
  color: var(--ink);
}

body.editorial-site .brand-parent,
body.editorial-site .brand-mark {
  display: none;
}

body.editorial-site .site-nav {
  gap: 0.28rem;
}

body.editorial-site .nav-link {
  font-weight: 600;
}

body.editorial-site .header-actions {
  gap: 0.55rem;
}

body.editorial-site .btn {
  min-height: 46px;
  padding: 0.88rem 1.26rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

body.editorial-site .btn-primary {
  background: linear-gradient(135deg, #2d613a 0%, #173822 100%);
  box-shadow: 0 16px 34px rgba(25, 71, 37, 0.2);
}

body.editorial-site .btn-primary:hover {
  box-shadow: 0 22px 42px rgba(25, 71, 37, 0.24);
}

body.editorial-site .btn-secondary,
body.editorial-site .btn-ghost {
  border-color: rgba(84, 72, 57, 0.14);
  background: rgba(255, 255, 255, 0.54);
}

body.editorial-site .btn-secondary:hover,
body.editorial-site .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.82);
}

body.editorial-site .mobile-panel {
  background: rgba(247, 241, 232, 0.97);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.28rem;
  border: 1px solid rgba(84, 72, 57, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: var(--soft-shadow);
}

.language-switch__option {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 40px;
  padding: 0.5rem 0.72rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.language-switch__option:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 85%, white 15%);
  outline-offset: 2px;
}

.language-switch__option.is-active {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(22, 26, 18, 0.08);
}

.language-switch__icon {
  width: 1rem;
  height: 0.75rem;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(84, 72, 57, 0.12);
}

.site-main {
  overflow: clip;
}

.page-hero {
  padding: clamp(7.2rem, 10.5vw, 9rem) 0 clamp(4rem, 6vw, 5.8rem);
}

.page-hero-grid,
.two-grid,
.three-grid,
.four-grid,
.moss-grid,
.contact-grid,
.hero-card-grid {
  display: grid;
  gap: 1.15rem;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.page-hero-grid > *,
.two-grid > *,
.three-grid > *,
.four-grid > *,
.moss-grid > *,
.contact-grid > * {
  min-width: 0;
}

.page-hero--compact .page-hero-grid {
  grid-template-columns: 1fr;
  max-width: 62rem;
  margin-right: auto;
}

.page-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 94, 60, 0.16);
  background: rgba(236, 232, 222, 0.88);
  color: var(--accent-ink);
  font-family: var(--mono-font);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-kicker::before,
.section-kicker::before {
  content: '';
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
}

.display-title,
.section-display,
.moss-display {
  margin-top: 1rem;
  font-family: var(--display-font);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.display-title {
  max-width: 8.8ch;
  font-size: clamp(3.3rem, 6vw, 6rem);
}

.display-title--wide,
.section-display--wide {
  max-width: 10.6ch;
}

.lead-copy,
.section-lead,
.moss-copy {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.72;
}

.lead-copy {
  max-width: 34ch;
}

.hero-cta-group,
.stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.55rem;
}

.hero-pills,
.inline-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.hero-pills span,
.inline-pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(84, 72, 57, 0.12);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.cta-whatsapp-note {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  margin-top: 0.72rem;
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.cta-whatsapp-note::before {
  content: '';
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: #2f7e46;
  box-shadow: 0 0 0 4px rgba(47, 126, 70, 0.12);
}

.cta-whatsapp-note--center {
  justify-content: center;
}

.hero-output-card {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(84, 72, 57, 0.12);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.58);
}

.field-rows {
  display: grid;
  gap: 0;
  margin: 0.85rem 0 0;
}

.field-rows div {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 0.8rem;
  padding: 0.58rem 0;
  border-bottom: 1px solid rgba(84, 72, 57, 0.1);
}

.field-rows div:first-child {
  padding-top: 0;
}

.field-rows div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.field-rows dt,
.field-rows dd {
  margin: 0;
}

.field-rows dt {
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.field-rows dd {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.32;
  text-align: right;
}

.field-rows--compact div {
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
}

.hero-note,
.section-note {
  margin-top: 1rem;
  color: var(--ink-muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.paper-panel,
.editorial-card,
.media-card,
.dark-panel,
.contact-channel,
.schedule-shell,
.faq-item,
.proof-panel,
.stat-card {
  border: 1px solid var(--line);
  border-radius: 1.9rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
}

.paper-panel,
.editorial-card,
.contact-channel,
.schedule-shell,
.proof-panel {
  padding: clamp(1.45rem, 2.2vw, 2rem);
}

.paper-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0) 20%),
    radial-gradient(circle at 76% 62%, rgba(243, 233, 216, 0.52) 0%, rgba(243, 233, 216, 0) 24%),
    linear-gradient(180deg, rgba(252, 248, 241, 0.98) 0%, rgba(246, 238, 227, 0.96) 100%);
  box-shadow: var(--warm-shadow);
}

.paper-panel--torn::before,
.paper-panel--torn::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  background: inherit;
  z-index: -1;
}

.paper-panel--torn::before {
  top: -1rem;
  height: 1.4rem;
  clip-path: polygon(0 100%, 0 50%, 2% 34%, 4% 8%, 6% 26%, 8% 4%, 10% 24%, 12% 0, 14% 18%, 16% 6%, 18% 30%, 20% 10%, 22% 22%, 24% 0, 26% 26%, 28% 8%, 30% 24%, 32% 4%, 34% 22%, 36% 6%, 38% 28%, 40% 8%, 42% 24%, 44% 0, 46% 22%, 48% 10%, 50% 30%, 52% 12%, 54% 24%, 56% 4%, 58% 18%, 60% 0, 62% 24%, 64% 10%, 66% 28%, 68% 12%, 70% 24%, 72% 6%, 74% 20%, 76% 8%, 78% 26%, 80% 4%, 82% 18%, 84% 0, 86% 22%, 88% 8%, 90% 26%, 92% 10%, 94% 18%, 96% 2%, 98% 18%, 100% 8%, 100% 100%);
}

.paper-panel--torn::after {
  bottom: -1rem;
  height: 1.3rem;
  clip-path: polygon(0 0, 0 58%, 2% 74%, 4% 96%, 6% 70%, 8% 100%, 10% 76%, 12% 96%, 14% 68%, 16% 92%, 18% 72%, 20% 100%, 22% 78%, 24% 94%, 26% 70%, 28% 96%, 30% 76%, 32% 100%, 34% 78%, 36% 92%, 38% 70%, 40% 96%, 42% 76%, 44% 100%, 46% 78%, 48% 92%, 50% 70%, 52% 98%, 54% 78%, 56% 100%, 58% 76%, 60% 90%, 62% 70%, 64% 96%, 66% 78%, 68% 100%, 70% 74%, 72% 96%, 74% 72%, 76% 88%, 78% 70%, 80% 96%, 82% 78%, 84% 100%, 86% 74%, 88% 92%, 90% 70%, 92% 94%, 94% 78%, 96% 100%, 98% 82%, 100% 94%, 100% 0);
}

.paper-panel__meta {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.7rem;
}

.paper-panel__meta strong {
  color: var(--ink);
  font-size: 1rem;
}

.editorial-card {
}

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  background: rgba(43, 91, 56, 0.1);
  color: var(--accent-ink);
  font-family: var(--mono-font);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-tag::before {
  content: '';
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--accent);
}

.card-title {
  margin-top: 1rem;
  font-size: 1.18rem;
  line-height: 1.08;
}

.card-copy {
  margin-top: 0.78rem;
  font-size: 0.96rem;
  line-height: 1.7;
}

.card-list,
.check-list,
.plain-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 1.35rem;
  line-height: 1.56;
}

.plain-list li {
  padding-left: 0;
}

.check-list li::before {
  content: '';
  position: absolute;
  inset: 0.42rem auto auto 0;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: rgba(43, 91, 56, 0.18);
  border: 1px solid rgba(43, 91, 56, 0.2);
}

.hero-figure,
.media-card {
  position: relative;
}

.memo-how-page .moss-band .media-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-figure__frame,
.media-card__frame {
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--warm-shadow);
  background: rgba(231, 223, 211, 0.82);
}

.hero-figure__frame {
  aspect-ratio: 1.04 / 1;
}

.hero-figure__frame--wide {
  aspect-ratio: 1.22 / 0.98;
}

.hero-figure__frame--phone {
  max-width: 24rem;
  margin-inline: auto;
  padding: 0.75rem;
  border-radius: 2.2rem;
  background: linear-gradient(180deg, #202120 0%, #444847 100%);
}

.hero-figure__frame--phone img {
  border-radius: 1.55rem;
}

.hero-figure__frame img,
.media-card__frame img,
.story-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note,
.floating-stat {
  position: absolute;
  padding: 0.75rem 0.85rem;
  border-radius: 1.1rem;
  background: rgba(255, 252, 247, 0.92);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.floating-note {
  inset: auto auto 1rem 1rem;
  max-width: 15rem;
}

.floating-stat {
  inset: 1rem 1rem auto auto;
  min-width: 9rem;
}

.floating-note strong,
.floating-stat strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
}

.floating-note span,
.floating-stat span {
  display: block;
  margin-top: 0.25rem;
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.section-shell {
  padding: clamp(4rem, 6vw, 5.8rem) 0;
}

.section-shell--tight {
  padding: clamp(3.1rem, 4.8vw, 4.35rem) 0;
}

.section-intro {
  max-width: 50rem;
  margin-bottom: 2.35rem;
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro.centered .section-kicker {
  margin-inline: auto;
}

.section-display {
  max-width: 10.5ch;
  font-size: clamp(2.7rem, 4.7vw, 4.9rem);
}

.section-lead {
  max-width: 40rem;
}

.proof-forward {
  padding-top: clamp(1.8rem, 3.2vw, 3rem);
}

.proof-forward-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(1.6rem, 3.4vw, 3.4rem);
}

.proof-forward-grid > * {
  min-width: 0;
}

.memo-how-page .section-intro.centered .section-display--wide {
  max-width: 14.5ch;
}

.proof-forward-media {
  margin: 0;
  padding: 0.55rem;
  border: 1px solid rgba(84, 72, 57, 0.14);
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--warm-shadow);
}

.proof-forward-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.22rem;
}

.proof-forward-media--mock {
  padding: clamp(0.9rem, 1.8vw, 1.2rem);
}

.receipt-to-record {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) auto minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(0.65rem, 1.4vw, 1rem);
}

.receipt-proof-card,
.record-proof-card {
  min-width: 0;
  border-radius: 1.25rem;
}

.receipt-proof-card {
  padding: clamp(1rem, 1.7vw, 1.35rem);
  background:
    linear-gradient(180deg, rgba(31, 56, 39, 0.96) 0%, rgba(20, 36, 26, 0.98) 100%);
  color: rgba(251, 247, 241, 0.95);
  box-shadow: 0 18px 42px rgba(17, 24, 16, 0.15);
  transform: rotate(-1deg);
}

.receipt-proof-label,
.record-proof-header span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.9rem;
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  font-family: var(--mono-font);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.receipt-proof-label {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(251, 247, 241, 0.86);
}

.receipt-proof-card strong {
  display: block;
  margin-top: 1rem;
  color: rgba(251, 247, 241, 0.98);
  font-family: var(--mono-font);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.receipt-proof-card > span:not(.receipt-proof-label),
.receipt-proof-card dt,
.receipt-proof-card dd,
.receipt-proof-card p {
  color: rgba(251, 247, 241, 0.78);
}

.receipt-proof-card > span:not(.receipt-proof-label) {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--mono-font);
  font-size: 0.72rem;
}

.receipt-proof-card dl {
  display: grid;
  gap: 0.5rem;
  margin: 1.05rem 0 0;
  padding: 0.82rem 0;
  border-top: 1px dashed rgba(251, 247, 241, 0.28);
  border-bottom: 1px dashed rgba(251, 247, 241, 0.28);
}

.receipt-proof-card dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.receipt-proof-card dt,
.receipt-proof-card dd {
  margin: 0;
  font-family: var(--mono-font);
  font-size: 0.72rem;
}

.receipt-proof-card dd {
  color: rgba(251, 247, 241, 0.92);
  font-weight: 700;
}

body.editorial-site .receipt-proof-card p {
  margin: 0.82rem 0 0;
  padding-top: 0.72rem;
  border-top: 1px solid rgba(251, 247, 241, 0.16);
  color: #fff7e8;
  font-family: var(--mono-font);
  font-size: 0.88rem;
  font-weight: 800;
}

.proof-arrow {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(84, 72, 57, 0.14);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.94);
  color: var(--accent-ink);
  font-size: 1.85rem;
  box-shadow: var(--soft-shadow);
}

.record-proof-card {
  padding: clamp(1rem, 1.7vw, 1.35rem);
  border: 1px solid rgba(84, 72, 57, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96) 0%, rgba(247, 241, 232, 0.9) 100%);
}

.record-proof-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.record-proof-header span {
  background: rgba(43, 91, 56, 0.12);
  color: var(--accent-ink);
}

.record-proof-header strong {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  background: rgba(221, 232, 219, 0.72);
  color: var(--accent-ink);
  font-size: 0.78rem;
}

.owner-question-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.owner-question-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(46, 94, 60, 0.15);
  border-radius: 999px;
  background: rgba(221, 232, 219, 0.55);
  color: var(--accent-ink);
  font-size: 0.82rem;
  font-weight: 750;
}

.section-intro.centered .section-display,
.section-intro.centered .section-lead {
  margin-inline: auto;
}

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

.three-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1.35rem;
}

.stat-card {
  padding: 1rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.stat-card strong {
  display: block;
  color: rgba(251, 247, 241, 0.98);
  font-family: var(--display-font);
  font-size: 1.55rem;
  letter-spacing: -0.05em;
}

.stat-card span {
  display: block;
  margin-top: 0.28rem;
  color: rgba(245, 239, 231, 0.74);
  font-size: 0.82rem;
}

.moss-band {
  position: relative;
  padding: clamp(4rem, 6vw, 5.8rem) 0;
  color: rgba(251, 247, 241, 0.96);
  background:
    radial-gradient(circle at 16% 18%, rgba(89, 145, 102, 0.18) 0%, rgba(89, 145, 102, 0) 28%),
    linear-gradient(135deg, #183123 0%, #102116 54%, #1d3928 100%);
}

.moss-band::after {
  content: '';
  position: absolute;
  inset: auto 8% -12% auto;
  width: min(28vw, 20rem);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(222, 232, 219, 0.16) 0%, rgba(222, 232, 219, 0) 72%);
  filter: blur(10px);
}

.moss-grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: clamp(1.8rem, 3.4vw, 3.6rem);
}

.moss-band .section-kicker {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(251, 247, 241, 0.94);
  border-color: rgba(255, 255, 255, 0.12);
}

.moss-display {
  max-width: 9.6ch;
  color: rgba(251, 247, 241, 0.98);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.moss-band .check-list li {
  color: rgba(245, 239, 231, 0.8);
}

.moss-band .moss-copy {
  color: rgba(251, 247, 241, 0.9);
}

.moss-band h1,
.moss-band h2,
.moss-band h3,
.moss-band h4,
.moss-band strong,
.moss-band .card-title,
.moss-band .section-display,
.moss-band .moss-display,
.moss-band .proof-value {
  color: rgba(251, 247, 241, 0.98);
}

.moss-band p,
.moss-band li,
.moss-band .card-copy,
.moss-band .proof-row span,
.moss-band .stat-card span,
.moss-band .dark-panel p,
.moss-band .dark-panel li,
.moss-band .dark-panel span {
  color: rgba(245, 239, 231, 0.84);
}

.moss-band .check-list li::before {
  background: rgba(207, 227, 213, 0.16);
  border-color: rgba(207, 227, 213, 0.28);
}

.dark-panel {
  padding: clamp(1.2rem, 1.8vw, 1.6rem);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(251, 247, 241, 0.96);
}

.dark-panel p,
.dark-panel li,
.dark-panel span {
  color: rgba(245, 239, 231, 0.78);
}

.proof-stack {
  display: grid;
  gap: 0.85rem;
}

.proof-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: start;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(84, 72, 57, 0.1);
}

.proof-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.proof-row strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.proof-row span {
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.proof-value {
  color: var(--accent-ink);
  font-family: var(--mono-font);
  font-size: 0.82rem;
}

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

.process-card {
  position: relative;
}

.process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(43, 91, 56, 0.12);
  color: var(--accent-ink);
  font-family: var(--mono-font);
  font-size: 0.74rem;
}

.process-card .card-title {
  margin-top: 1rem;
}

.process-example {
  margin: 1rem 0 0;
  padding-top: 0.78rem;
  border-top: 1px solid rgba(84, 72, 57, 0.11);
  color: var(--accent-ink);
  font-family: var(--mono-font);
  font-size: 0.72rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.dashboard-callout strong {
  font-size: 1.42rem;
  letter-spacing: -0.04em;
}

.dashboard-callout span {
  max-width: 12.5rem;
}

.dashboard-caption {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.58rem;
  padding: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(14, 31, 21, 0.82);
}

.dashboard-caption span {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.38rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 239, 231, 0.86);
  font-size: 0.72rem;
  font-weight: 750;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.memo-pricing-page .pricing-shell,
.memo-pricing-page .pricing-cta {
  max-width: 72rem;
  margin-inline: auto;
}

.memo-pricing-page .pricing-header,
.memo-pricing-page .pricing-cta {
  text-align: center;
}

.memo-pricing-page .pricing-header .page-kicker,
.memo-pricing-page .pricing-cta .section-kicker {
  margin-inline: auto;
}

.memo-pricing-page .pricing-header .display-title,
.memo-pricing-page .pricing-cta .section-display {
  max-width: 11.5ch;
  margin-inline: auto;
  color: var(--ink);
}

.memo-pricing-page .pricing-header .lead-copy,
.memo-pricing-page .pricing-cta .section-lead {
  max-width: 38rem;
  margin-inline: auto;
  color: var(--ink-soft);
}

.pricing-included {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(1rem, 2.6vw, 2rem);
  align-items: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.15rem, 2vw, 1.55rem);
  border: 1px solid rgba(46, 94, 60, 0.16);
  border-radius: 1.45rem;
  background:
    linear-gradient(135deg, rgba(221, 232, 219, 0.72) 0%, rgba(255, 252, 247, 0.9) 52%, rgba(246, 238, 227, 0.86) 100%);
  box-shadow: var(--soft-shadow);
  text-align: left;
}

.pricing-included h2 {
  margin-top: 0.65rem;
  max-width: 18ch;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 2rem;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.pricing-included p {
  margin-top: 0.78rem;
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.pricing-included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-included-list li {
  position: relative;
  min-height: 2.65rem;
  padding: 0.68rem 0.78rem 0.68rem 1.85rem;
  border: 1px solid rgba(46, 94, 60, 0.12);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.72);
  color: var(--accent-ink);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.28;
}

.pricing-included-list li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0.78rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.memo-pricing-page .pricing-cta .hero-cta-group,
.memo-pricing-page .pricing-paper .hero-pills {
  justify-content: center;
}

.memo-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.5vw, 1.25rem);
  margin-top: clamp(2rem, 4vw, 3.2rem);
  align-items: stretch;
}

.memo-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: clamp(1.2rem, 2vw, 1.6rem);
  border: 1px solid rgba(84, 72, 57, 0.12);
  border-radius: 1.55rem;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.94) 0%, rgba(247, 241, 232, 0.9) 100%);
  box-shadow: 0 18px 38px rgba(22, 26, 18, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.memo-price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px rgba(22, 26, 18, 0.1);
}

.memo-price-card--featured {
  border-color: rgba(46, 94, 60, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(246, 241, 233, 0.98) 100%);
  box-shadow:
    0 0 0 5px rgba(46, 94, 60, 0.055),
    0 24px 44px rgba(22, 26, 18, 0.1);
}

.memo-price-card--featured::before {
  content: '';
  position: absolute;
  inset: 0.58rem;
  border: 1px solid rgba(46, 94, 60, 0.11);
  border-radius: 1.08rem;
  pointer-events: none;
}

.memo-price-card__badge {
  position: absolute;
  top: -0.92rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  background: var(--accent-strong);
  color: var(--cream);
  font-family: var(--mono-font);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.memo-price-card__head {
  display: grid;
  gap: 0.7rem;
}

.memo-price-card h2 {
  font-size: clamp(1.8rem, 2.9vw, 2.45rem);
  line-height: 0.95;
}

.memo-price-card__price {
  color: var(--accent-strong);
  font-family: var(--display-font);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.memo-price-card__currency-note {
  display: block;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.memo-price-card__target {
  min-height: 4.6rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.58;
}

.memo-price-card__divider {
  height: 1px;
  margin: 1.1rem 0 1rem;
  background: linear-gradient(90deg, rgba(46, 94, 60, 0.26), rgba(84, 72, 57, 0.08));
}

.memo-price-card__limits {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem 0.92rem;
  border-radius: 1rem;
  background: rgba(235, 229, 219, 0.56);
}

.memo-price-card__limits p {
  position: relative;
  padding-left: 0.9rem;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.35;
}

.memo-price-card__limits p::before {
  content: '';
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 999px;
  background: var(--accent);
}

.memo-feature-list {
  display: grid;
  gap: 0.68rem;
  margin: 1.1rem 0 1.25rem;
  padding: 0;
  list-style: none;
}

.memo-feature-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.56rem;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.45;
}

.memo-check {
  display: inline-grid;
  place-items: center;
  width: 1.18rem;
  height: 1.18rem;
  margin-top: 0.1rem;
  border-radius: 999px;
  background: rgba(46, 94, 60, 0.13);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

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

.pricing-faq {
  margin-top: clamp(3rem, 5vw, 4.7rem);
}

.pricing-faq .section-intro {
  margin-bottom: 1.55rem;
}

.memo-pricing-page .pricing-faq .section-display {
  font-size: 2.8rem;
}

.pricing-faq-list {
  max-width: 58rem;
  margin-inline: auto;
}

.memo-contact-page .contact-hero {
  padding-bottom: clamp(2.4rem, 4.6vw, 3.8rem);
}

.memo-contact-page .contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 0.62fr);
  align-items: stretch;
  gap: clamp(1rem, 2.4vw, 1.8rem);
}

.contact-hero-copy,
.contact-action-panel {
  border: 1px solid rgba(84, 72, 57, 0.12);
  border-radius: 1.85rem;
  box-shadow: var(--soft-shadow);
}

.contact-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(34rem, 52vw, 45rem);
  padding: clamp(1.55rem, 3vw, 2.8rem);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.92) 0%, rgba(247, 241, 232, 0.86) 100%);
}

.contact-hero-copy .display-title {
  max-width: 9.6ch;
  font-size: clamp(3.35rem, 5.55vw, 5.85rem);
}

.contact-hero-copy .lead-copy {
  max-width: 39rem;
}

.contact-mobile-primary {
  display: none;
}

.contact-action-panel {
  align-self: center;
  padding: clamp(1.1rem, 1.9vw, 1.45rem);
  background:
    linear-gradient(180deg, rgba(32, 60, 42, 0.98) 0%, rgba(17, 35, 24, 0.98) 100%);
  color: rgba(251, 247, 241, 0.95);
}

.contact-action-panel .card-tag {
  color: rgba(251, 247, 241, 0.82);
  border-color: rgba(251, 247, 241, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

.contact-action-panel .card-tag::before {
  background: #55d86d;
}

body.editorial-site .contact-action-panel h2 {
  margin-top: 0.8rem;
  color: #fff8ea;
  font-family: var(--display-font);
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

body.editorial-site .contact-action-panel p {
  margin-top: 0.75rem;
  color: rgba(251, 247, 241, 0.72);
  font-size: 0.95rem;
  line-height: 1.58;
}

.contact-action-list {
  display: grid;
  gap: 0.72rem;
  margin-top: 1.15rem;
}

.contact-action {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.78rem;
  align-items: center;
  min-height: 5.1rem;
  padding: 0.88rem 0.95rem;
  border: 1px solid rgba(251, 247, 241, 0.13);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(251, 247, 241, 0.86);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.contact-action:hover {
  border-color: rgba(251, 247, 241, 0.24);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.contact-action--primary {
  border-color: rgba(85, 216, 109, 0.32);
  background:
    linear-gradient(135deg, rgba(43, 126, 65, 0.96) 0%, rgba(31, 87, 45, 0.94) 100%);
  box-shadow: 0 20px 42px rgba(6, 22, 12, 0.2);
}

.contact-action__icon {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  background: rgba(251, 247, 241, 0.12);
  color: #fff8ea;
  font-family: var(--mono-font);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-action__icon--whatsapp {
  overflow: hidden;
  background: #25d366;
}

.contact-action__icon--whatsapp img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-action__copy {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
}

.contact-action__label {
  color: rgba(251, 247, 241, 0.58);
  font-family: var(--mono-font);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-action strong {
  color: #fff8ea;
  font-size: 0.96rem;
  line-height: 1.2;
}

.contact-action__copy > span:last-child {
  color: rgba(251, 247, 241, 0.68);
  font-size: 0.8rem;
  line-height: 1.35;
}

.contact-channel {
  display: grid;
  gap: 0.9rem;
}

.memo-contact-page .contact-grid {
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(1.6rem, 3.4vw, 2.6rem);
}

.memo-contact-page .contact-sidebar {
  background: transparent;
  box-shadow: none;
}

.memo-contact-page .contact-panel {
  padding: clamp(1.55rem, 2.2vw, 2.1rem);
  background:
    linear-gradient(180deg, rgba(252, 248, 241, 0.96) 0%, rgba(246, 238, 227, 0.94) 100%);
}

.memo-contact-page .contact-methods {
  gap: 0.9rem;
}

.channel-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.08rem 1.12rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(84, 72, 57, 0.1);
  background: rgba(255, 252, 247, 0.74);
  box-shadow: 0 12px 26px rgba(22, 26, 18, 0.045);
}

.channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(43, 91, 56, 0.1);
  box-shadow: inset 0 0 0 1px rgba(43, 91, 56, 0.08);
}

.channel-icon svg,
.channel-icon img {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
}

.channel-icon--whatsapp {
  overflow: hidden;
  background: #25d366;
  box-shadow: inset 0 0 0 1px rgba(24, 55, 35, 0.08);
}

.channel-icon--whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.channel-copy strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.channel-copy span {
  display: block;
  margin-top: 0.34rem;
  color: var(--ink-muted);
  font-size: 0.84rem;
  line-height: 1.58;
}

.contact-bring-card {
  position: sticky;
  top: 6.4rem;
  padding: clamp(1.35rem, 2vw, 1.85rem);
  border: 1px solid rgba(84, 72, 57, 0.12);
  border-radius: 1.45rem;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.78) 0%, rgba(246, 238, 227, 0.72) 100%);
  box-shadow: var(--soft-shadow);
}

.contact-bring-card .card-copy {
  margin-top: 0.68rem;
}

.contact-bring-card .check-list {
  margin-top: 1.05rem;
}

.schedule-shell {
  padding: clamp(1rem, 1.8vw, 1.35rem);
  border-color: rgba(46, 94, 60, 0.16);
  background:
    linear-gradient(180deg, rgba(252, 248, 241, 0.96) 0%, rgba(246, 238, 227, 0.94) 100%);
}

.schedule-header {
  padding: clamp(0.15rem, 0.8vw, 0.5rem) clamp(0.1rem, 0.8vw, 0.45rem) 0;
}

.schedule-embed {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  margin-top: 1.15rem;
  border: 1px solid rgba(46, 94, 60, 0.1);
  border-radius: 1.45rem;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.92) 0%, rgba(255, 255, 255, 0.78) 100%);
}

.schedule-frame {
  width: 100%;
  min-height: 640px;
  border: 0;
  background: transparent;
  opacity: 0;
  transition: opacity 220ms ease;
}

.schedule-embed.is-loaded .schedule-frame {
  opacity: 1;
}

.schedule-frame-state {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 0.38rem;
  align-content: center;
  padding: 1.4rem;
  text-align: center;
  pointer-events: none;
}

.schedule-frame-state span,
.schedule-frame-state strong {
  display: block;
}

.schedule-frame-state span {
  color: var(--ink-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.schedule-frame-state strong {
  opacity: 0;
  color: var(--accent-ink);
  font-size: 0.9rem;
  transition: opacity 160ms ease;
}

.schedule-embed.is-slow .schedule-frame-state strong {
  opacity: 1;
}

.schedule-embed.is-loaded .schedule-frame-state {
  display: none;
}

.schedule-fallback-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  align-items: center;
  margin-top: 0.88rem;
  padding: 0 0.2rem;
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.schedule-fallback-row a {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(46, 94, 60, 0.14);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.72);
  color: var(--accent-ink);
  font-size: 0.8rem;
  font-weight: 800;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

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

.field label {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(84, 72, 57, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  padding: 0.84rem 0.9rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(46, 94, 60, 0.28);
  box-shadow: 0 0 0 4px rgba(221, 232, 219, 0.8);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  padding: 0 1rem;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  padding: 1rem 0;
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
}

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

.faq-item summary::after {
  content: '+';
  color: var(--ink-muted);
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  padding-bottom: 1rem;
}

.cta-panel {
  padding: clamp(1.4rem, 2vw, 2rem);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96) 0%, rgba(243, 236, 226, 0.92) 100%);
  box-shadow: var(--soft-shadow);
}

.success-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.success-card {
  width: min(1080px, 100%);
}

.site-footer {
  background: rgba(244, 238, 228, 0.76);
}

.site-footer .footer-brand .brand-title {
  font-size: 1.32rem;
}

@media (max-width: 1180px) {
  .page-hero-grid,
  .proof-forward-grid,
  .pricing-included,
  .memo-pricing-grid,
  .moss-grid,
  .contact-grid,
  .two-grid,
  .three-grid,
  .four-grid,
  .metric-grid,
  .process-flow {
    grid-template-columns: 1fr;
  }

  .hero-figure__frame--phone {
    max-width: 22rem;
  }

  .proof-forward-copy {
    order: -1;
  }

  .memo-contact-page .contact-grid {
    grid-template-columns: 1fr;
  }

  .memo-contact-page .contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-copy {
    min-height: 0;
  }

  .contact-action-panel {
    align-self: stretch;
  }

  .contact-bring-card {
    position: static;
  }

  .memo-price-card__target {
    min-height: 0;
  }
}

@media (max-width: 980px) {
  body.editorial-site .site-nav,
  body.editorial-site .header-actions > a.btn-ghost,
  body.editorial-site .header-actions > a.btn-primary {
    display: none;
  }

  body.editorial-site .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 760px) {
  body.editorial-site .container {
    width: min(1240px, calc(100% - 1.2rem));
  }

  body.editorial-site .header-row {
    min-height: 74px;
  }

  body.editorial-site .brand-title {
    font-size: 1.34rem;
  }

  .display-title {
    font-size: 3.2rem;
  }

  .memo-how-page .display-title {
    max-width: 10.2ch;
    font-size: 2.82rem;
  }

  .section-display,
  .moss-display {
    font-size: 2.82rem;
  }

  .memo-how-page .section-display,
  .memo-how-page .moss-display {
    max-width: 12ch;
    font-size: 2.45rem;
  }

  .memo-how-page .section-intro.centered .section-display--wide {
    max-width: 12ch;
  }

  .memo-how-page .section-intro.centered {
    text-align: left;
  }

  .memo-how-page .section-intro.centered .section-kicker,
  .memo-how-page .section-intro.centered .section-display,
  .memo-how-page .section-intro.centered .section-lead {
    margin-inline: 0;
  }

  .proof-forward {
    padding-top: 2rem;
  }

  .proof-forward-media {
    padding: 0.38rem;
    border-radius: 1.35rem;
  }

  .proof-forward-media img {
    border-radius: 1rem;
  }

  .receipt-to-record {
    grid-template-columns: 1fr;
  }

  .proof-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .receipt-proof-card {
    transform: rotate(-0.35deg);
  }

  .owner-question-strip span {
    flex: 1 1 calc(50% - 0.55rem);
  }

  .dashboard-caption {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-included {
    margin-top: 1.55rem;
  }

  .pricing-included h2 {
    max-width: 14ch;
    font-size: 1.72rem;
  }

  .pricing-included-list {
    grid-template-columns: 1fr;
  }

  .memo-pricing-page .pricing-header {
    text-align: left;
  }

  .memo-pricing-page .pricing-header .page-kicker,
  .memo-pricing-page .pricing-header .display-title,
  .memo-pricing-page .pricing-header .lead-copy {
    margin-inline: 0;
  }

  .memo-contact-page .contact-hero {
    padding-bottom: 1.7rem;
  }

  .memo-contact-page .contact-hero-grid {
    gap: 0.9rem;
  }

  .contact-hero-copy {
    padding: 1.35rem;
    border-radius: 1.45rem;
  }

  .contact-hero-copy .display-title {
    max-width: 9.3ch;
    font-size: 2.85rem;
  }

  .contact-hero-copy .lead-copy {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .contact-action-panel {
    border-radius: 1.35rem;
  }

  .contact-mobile-primary {
    display: inline-flex;
    width: 100%;
    margin-top: 1rem;
  }

  .contact-action {
    min-height: 4.8rem;
  }

  .contact-bring-card {
    border-radius: 1.35rem;
  }

  .schedule-embed {
    min-height: 520px;
  }

  .hero-cta-group,
  .stack-actions,
  .hero-actions,
  .mobile-actions {
    flex-direction: column;
  }

  .hero-cta-group .btn,
  .stack-actions .btn,
  .hero-actions .btn,
  .mobile-actions .btn {
    width: 100%;
  }

  .page-hero {
    padding-top: 6.4rem;
  }

  .memo-how-page .page-hero {
    padding-bottom: 1.75rem;
  }

  .memo-how-page .page-hero .hero-figure {
    display: none;
  }

  .paper-panel,
  .editorial-card,
  .media-card,
  .dark-panel,
  .contact-channel,
  .schedule-shell,
  .faq-item,
  .proof-panel {
    border-radius: 1.45rem;
  }

  .hero-figure__frame,
  .hero-figure__frame--wide {
    aspect-ratio: 1.05 / 1;
  }

  .schedule-frame {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .language-switch__option {
    min-height: 38px;
    padding: 0.48rem 0.64rem;
  }

  .floating-note,
  .floating-stat {
    position: static;
    margin-top: 0.8rem;
  }

  .hero-output-card {
    border-radius: 1.1rem;
  }

  .pricing-included {
    padding: 1rem;
    border-radius: 1.2rem;
  }

  .pricing-included-list li {
    border-radius: 1rem;
  }

  .contact-hero-copy {
    padding: 1.1rem;
  }

  .contact-hero-copy .display-title {
    font-size: 2.36rem;
  }

  .contact-action-panel,
  .contact-bring-card,
  .schedule-shell {
    padding: 1rem;
  }

  .contact-action {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.58rem;
  }

  .contact-action__icon {
    width: 2.45rem;
    height: 2.45rem;
  }

  .schedule-fallback-row {
    align-items: stretch;
  }

  .schedule-fallback-row a {
    flex: 1 1 100%;
    justify-content: center;
  }

  .field-rows div,
  .field-rows--compact div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .field-rows dd {
    text-align: left;
  }

  .owner-question-strip span,
  .dashboard-caption span {
    flex-basis: 100%;
  }

  .dashboard-caption {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.editorial-site .site-header,
  .language-switch__option,
  body.editorial-site .btn {
    transition: none;
  }
}
