/* Warm & Human theme (Alt C) for MaskedReviews marketing */

.marketing-warm {
  --mw-cream: #fdf7ef;
  --mw-cream-deep: #f7ecdd;
  --mw-ink: #3c3530;
  --mw-muted: #7b7066;
  --mw-blue: #2f80ff;
  --mw-blue-dark: #1e6fe0;
  --mw-blue-soft: #e0edff;
  --mw-blue-border: #b3d4ff;
  --mw-teal: #2f8f83;
  --mw-teal-soft: #ddf0ed;
  --mw-sun: #f0b541;
  --mw-sun-soft: #fdf0d4;
  --mw-line: #ecdfcd;
}

body.marketing-page.marketing-warm {
  background: var(--mw-cream) !important;
  color: var(--mw-ink);
  font-family: "Nunito", system-ui, sans-serif;
}

body.marketing-page.marketing-warm h1,
body.marketing-page.marketing-warm h2,
body.marketing-page.marketing-warm h3 {
  font-family: "Nunito", system-ui, sans-serif;
}

.marketing-warm {
  font-family: "Nunito", system-ui, sans-serif;
  background: var(--mw-cream);
  color: var(--mw-ink);
  line-height: 1.6;
}

.marketing-warm .hand {
  font-family: "Caveat", cursive;
}

.marketing-warm .wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.marketing-warm a {
  color: inherit;
}

/* Header */
.marketing-warm .site-head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}

.marketing-warm .brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;
}

.marketing-warm .brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  transform: scale(1.34);
  transform-origin: center center;
}

.marketing-warm .brand .masked {
  color: var(--mw-ink);
}

.marketing-warm .brand .reviews {
  color: var(--mw-blue);
}

.marketing-warm .site-nav {
  display: flex;
  gap: 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--mw-muted);
}

.marketing-warm .site-nav a {
  text-decoration: none;
}

.marketing-warm .site-nav a:hover,
.marketing-warm .site-nav a.is-active {
  color: var(--mw-blue);
}

.marketing-warm .site-head-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.marketing-warm .site-signin {
  font-size: 14px;
  font-weight: 700;
  color: var(--mw-muted);
  text-decoration: none;
}

.marketing-warm .site-signin:hover {
  color: var(--mw-blue);
}

/* Buttons */
.marketing-warm .btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  border-radius: 999px;
  padding: 13px 28px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: transform 0.12s, box-shadow 0.12s;
}

.marketing-warm .btn:hover {
  transform: translateY(-2px);
}

.marketing-warm .btn-blue {
  background: var(--mw-blue);
  color: #fff;
  box-shadow: 0 6px 0 var(--mw-blue-dark);
}

.marketing-warm .btn-blue:hover {
  box-shadow: 0 8px 0 var(--mw-blue-dark);
}

.marketing-warm .btn-teal-outline {
  background: #fff;
  color: var(--mw-teal);
  border: 2.5px solid var(--mw-teal);
  box-shadow: 0 6px 0 var(--mw-teal-soft);
}

.marketing-warm .btn-sm {
  padding: 9px 20px;
  font-size: 14px;
  box-shadow: none;
}

.marketing-warm .btn-sm:hover {
  box-shadow: none;
}

.marketing-warm .btn-sm.btn-blue {
  box-shadow: 0 4px 0 var(--mw-blue-dark);
}

/* Hero */
.marketing-warm .hero {
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}

.marketing-warm .hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.marketing-warm .hero-tag {
  display: inline-block;
  background: var(--mw-sun-soft);
  border: 2px dashed var(--mw-sun);
  color: #9a7113;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  padding: 7px 18px;
  margin-bottom: 20px;
  transform: rotate(-1.5deg);
}

.marketing-warm .hero h1 {
  font-size: clamp(30px, 2.6vw, 38px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.marketing-warm .hero h1 .squiggle {
  color: var(--mw-blue);
  position: relative;
}

.marketing-warm .hero h1 .squiggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0 6 Q 12 1, 25 6 T 50 6 T 75 6 T 100 6' fill='none' stroke='%23f0b541' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

.marketing-warm .hero-lead {
  font-size: 18px;
  color: var(--mw-muted);
  font-weight: 600;
  max-width: 520px;
  margin-bottom: 30px;
}

.marketing-warm .hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.marketing-warm .hero-fine {
  font-size: 14px;
  font-weight: 700;
  color: var(--mw-muted);
}

.marketing-warm .hero-fine em {
  color: var(--mw-teal);
  font-style: normal;
}

/* Speech bubbles */
.marketing-warm .bubbles {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.marketing-warm .bubble {
  max-width: 380px;
  background: #fff;
  border: 2px solid var(--mw-line);
  border-radius: 22px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  box-shadow: 0 4px 0 var(--mw-line);
}

.marketing-warm .bubble::after {
  content: "";
  position: absolute;
  bottom: -12px;
  width: 0;
  height: 0;
  border: 11px solid transparent;
}

.marketing-warm .bubble--left {
  align-self: flex-start;
  transform: rotate(-1deg);
}

.marketing-warm .bubble--left::after {
  left: 26px;
  border-top-color: #fff;
  border-bottom: none;
}

.marketing-warm .bubble--right {
  align-self: flex-end;
  transform: rotate(1.2deg);
}

.marketing-warm .bubble--right::after {
  right: 26px;
  border-top-color: #fff;
  border-bottom: none;
}

.marketing-warm .bubble--teal {
  background: var(--mw-teal-soft);
  border-color: #bcdfda;
  box-shadow: 0 4px 0 #bcdfda;
}

.marketing-warm .bubble--teal::after {
  border-top-color: var(--mw-teal-soft);
}

.marketing-warm .bubble--blue {
  background: var(--mw-blue-soft);
  border-color: var(--mw-blue-border);
  box-shadow: 0 4px 0 var(--mw-blue-border);
}

.marketing-warm .bubble--blue::after {
  border-top-color: var(--mw-blue-soft);
}

.marketing-warm .bubble .who {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mw-muted);
  margin-top: 8px;
}

.marketing-warm .bubbles .hand-note {
  font-family: "Caveat", cursive;
  font-size: 24px;
  color: var(--mw-teal);
  transform: rotate(-2deg);
  align-self: center;
  margin-top: 6px;
}

/* Sections */
.marketing-warm section.block {
  padding: 72px 0;
}

.marketing-warm .block-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 48px;
}

.marketing-warm .block-head .mini {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mw-teal);
  background: var(--mw-teal-soft);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

.marketing-warm .block-head h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.marketing-warm .block-head p {
  font-size: 16.5px;
  color: var(--mw-muted);
  font-weight: 600;
}

/* Dashboard preview */
.marketing-warm .preview {
  background: #fff;
  border-top: 2px solid var(--mw-line);
  border-bottom: 2px solid var(--mw-line);
}

.marketing-warm .dash {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--mw-line);
  border-radius: 22px;
  box-shadow: 0 8px 0 var(--mw-line);
  overflow: hidden;
}

.marketing-warm .dash-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--mw-blue-soft);
  border-bottom: 2px solid var(--mw-blue-border);
  padding: 12px 18px;
}

.marketing-warm .dash-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.marketing-warm .dash-dot:nth-child(1) {
  background: #f2c4bb;
}

.marketing-warm .dash-dot:nth-child(2) {
  background: var(--mw-sun);
}

.marketing-warm .dash-dot:nth-child(3) {
  background: #bcdfda;
}

.marketing-warm .dash-url {
  font-size: 13px;
  font-weight: 700;
  color: var(--mw-muted);
  background: #fff;
  border: 2px solid var(--mw-blue-border);
  border-radius: 999px;
  padding: 5px 14px;
  margin-left: 6px;
}

.marketing-warm .dash-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.marketing-warm .dash-main {
  padding: 22px 24px;
  border-right: 2px solid var(--mw-line);
  background: var(--mw-cream);
}

.marketing-warm .dash-side {
  padding: 22px 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.marketing-warm .dash-h {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.marketing-warm .dash-h h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--mw-ink);
}

.marketing-warm .dash-h span {
  font-size: 12px;
  font-weight: 700;
  color: var(--mw-teal);
}

.marketing-warm .feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.marketing-warm .feed-item {
  border: 2px solid var(--mw-line);
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 13.5px;
  background: #fff;
  font-weight: 600;
  box-shadow: 0 3px 0 var(--mw-line);
}

.marketing-warm .feed-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.marketing-warm .feed-badge {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 3px 9px;
}

.marketing-warm .feed-badge--emp {
  background: var(--mw-teal-soft);
  color: var(--mw-teal);
  border: 1.5px solid #bcdfda;
}

.marketing-warm .feed-badge--cust {
  background: var(--mw-sun-soft);
  color: #9a7113;
  border: 1.5px solid var(--mw-sun);
}

.marketing-warm .feed-rating {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--mw-muted);
  margin-left: auto;
}

.marketing-warm .feed-item p {
  color: var(--mw-muted);
  line-height: 1.5;
  font-weight: 600;
}

.marketing-warm .feed-theme {
  display: inline-block;
  margin-top: 8px;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--mw-blue);
  background: var(--mw-blue-soft);
  border: 1.5px solid var(--mw-blue-border);
  border-radius: 999px;
  padding: 2px 10px;
}

.marketing-warm .side-card {
  background: var(--mw-cream);
  border: 2px solid var(--mw-line);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 3px 0 var(--mw-line);
}

.marketing-warm .side-card h4 {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mw-muted);
  margin-bottom: 12px;
}

.marketing-warm .chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 72px;
  margin-bottom: 8px;
}

.marketing-warm .chart .bar {
  flex: 1;
  background: var(--mw-blue-soft);
  border-radius: 6px 6px 0 0;
  border: 1.5px solid var(--mw-blue-border);
  border-bottom: none;
}

.marketing-warm .chart .bar.hot {
  background: var(--mw-blue);
  border-color: var(--mw-blue-dark);
}

.marketing-warm .chart-labels {
  display: flex;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  color: var(--mw-muted);
}

.marketing-warm .chart-labels span {
  flex: 1;
  text-align: center;
}

.marketing-warm .theme-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  padding: 5px 0;
  font-weight: 700;
}

.marketing-warm .theme-line .nm {
  width: 100px;
  flex-shrink: 0;
  color: var(--mw-ink);
}

.marketing-warm .theme-line .tb {
  flex: 1;
  height: 9px;
  background: #fff;
  border: 1.5px solid var(--mw-line);
  border-radius: 999px;
  overflow: hidden;
}

.marketing-warm .theme-line .tb i {
  display: block;
  height: 100%;
  background: var(--mw-blue);
  border-radius: 999px;
}

.marketing-warm .theme-line .ct {
  font-size: 12px;
  font-weight: 800;
  color: var(--mw-blue);
  width: 24px;
  text-align: right;
}

.marketing-warm .action-card {
  background: var(--mw-sun-soft);
  border: 2px dashed var(--mw-sun);
  border-radius: 16px;
  padding: 14px 16px;
}

.marketing-warm .action-card h4 {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9a7113;
  margin-bottom: 8px;
}

.marketing-warm .action-card p {
  font-size: 13.5px;
  color: var(--mw-ink);
  line-height: 1.5;
  font-weight: 600;
}

.marketing-warm .preview-note {
  text-align: center;
  margin-top: 20px;
  font-family: "Caveat", cursive;
  font-size: 22px;
  color: var(--mw-teal);
  transform: rotate(-1deg);
}

/* How it works */
.marketing-warm .how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.marketing-warm .how-card {
  background: #fff;
  border: 2px solid var(--mw-line);
  border-radius: 20px;
  padding: 28px 26px;
  position: relative;
  box-shadow: 0 5px 0 var(--mw-line);
}

.marketing-warm .how-step {
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--mw-blue);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  border-radius: 999px;
  padding: 5px 14px;
}

.marketing-warm .how-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 10px 0 8px;
}

.marketing-warm .how-card p {
  font-size: 14.5px;
  color: var(--mw-muted);
  font-weight: 600;
}

.marketing-warm .how-card .hand {
  font-size: 22px;
  color: var(--mw-teal);
  display: block;
  margin-top: 12px;
}

/* Customer band */
.marketing-warm .cust-band {
  position: relative;
  background: #fff;
  border: 2px solid var(--mw-line);
  border-radius: 24px;
  padding: 32px 36px 36px;
  box-shadow: 0 6px 0 var(--mw-line);
  overflow: hidden;
}

.marketing-warm .cust-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--mw-sun) 0%, var(--mw-sun-soft) 55%, var(--mw-teal-soft) 100%);
}

.marketing-warm .cust-band-tag {
  position: absolute;
  top: 22px;
  right: 28px;
  background: var(--mw-sun-soft);
  border: 2px dashed var(--mw-sun);
  color: #9a7113;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 800;
}

.marketing-warm .cust-band-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.marketing-warm .cust-band-mini {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mw-teal);
  background: var(--mw-teal-soft);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 14px;
}

.marketing-warm .cust-band-copy h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--mw-ink);
  margin-bottom: 10px;
  padding-right: 120px;
}

.marketing-warm .cust-band-copy p {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--mw-muted);
  max-width: 560px;
  line-height: 1.55;
}

.marketing-warm .cust-band-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.marketing-warm .cust-band-chips li {
  background: var(--mw-cream);
  border: 2px solid var(--mw-line);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 800;
  color: var(--mw-ink);
  box-shadow: 0 3px 0 var(--mw-line);
}

.marketing-warm .cust-band-chips li::before {
  content: "→ ";
  color: var(--mw-blue);
}

/* Resource cards (homepage) */
.marketing-warm .res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.marketing-warm .res-card {
  background: #fff;
  border: 2px solid var(--mw-line);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 0 var(--mw-line);
}

.marketing-warm .res-card:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  box-shadow: 0 9px 0 var(--mw-line);
}

.marketing-warm .res-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.marketing-warm .res-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.marketing-warm .res-body h3 {
  font-size: 16.5px;
  font-weight: 800;
  margin-bottom: 8px;
}

.marketing-warm .res-body p {
  font-size: 14px;
  color: var(--mw-muted);
  font-weight: 600;
  margin-bottom: 14px;
}

.marketing-warm .res-body .go {
  margin-top: auto;
  font-weight: 800;
  color: var(--mw-blue);
  font-size: 14.5px;
}

.marketing-warm .res-more {
  text-align: center;
  margin-top: 30px;
  font-weight: 800;
}

.marketing-warm .res-more a {
  color: var(--mw-teal);
  text-decoration: none;
}

.marketing-warm .res-more a:hover {
  color: var(--mw-blue);
}

/* Pricing */
.marketing-warm .price-card {
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--mw-line);
  border-radius: 24px;
  padding: 36px 32px 32px;
  text-align: center;
  box-shadow: 0 8px 0 var(--mw-line);
  position: relative;
  overflow: hidden;
}

.marketing-warm .price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--mw-blue) 0%, var(--mw-blue-soft) 100%);
}

.marketing-warm .price-burst {
  display: inline-block;
  margin-bottom: 12px;
  background: var(--mw-sun-soft);
  border: 2px dashed var(--mw-sun);
  color: #9a7113;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  padding: 6px 14px;
  transform: none;
  position: static;
}

.marketing-warm .price-plan {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--mw-ink);
  margin-bottom: 8px;
}

.marketing-warm .price-intro {
  margin-bottom: 18px;
}

.marketing-warm .price-big {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--mw-blue);
  line-height: 1;
  margin: 0;
}

.marketing-warm .price-term {
  font-size: 16px;
  font-weight: 700;
  color: var(--mw-muted);
  margin-top: 4px;
}

.marketing-warm .price-lock {
  background: var(--mw-cream);
  border: 2px solid var(--mw-line);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 22px;
  box-shadow: 0 3px 0 var(--mw-line);
}

.marketing-warm .price-lock-lead {
  font-size: 15px;
  font-weight: 700;
  color: var(--mw-ink);
  margin-bottom: 12px;
}

.marketing-warm .price-lock-lead strong {
  color: var(--mw-blue);
}

.marketing-warm .price-compare {
  display: grid;
  gap: 8px;
}

.marketing-warm .price-compare-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  border: 2px solid var(--mw-line);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--mw-ink);
}

.marketing-warm .price-compare-row strong {
  color: var(--mw-blue);
  font-size: 15px;
}

.marketing-warm .price-compare-row.is-later {
  color: var(--mw-muted);
  background: transparent;
  border-style: dashed;
}

.marketing-warm .price-was {
  text-decoration: line-through;
  font-weight: 700;
}

.marketing-warm .price-feats {
  list-style: none;
  text-align: left;
  margin: 0 auto 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.marketing-warm .price-feats li {
  font-size: 14.5px;
  font-weight: 700;
  padding: 10px 12px 10px 40px;
  position: relative;
  background: #fff;
  border: 2px solid var(--mw-line);
  border-radius: 12px;
}

.marketing-warm .price-feats li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  line-height: 18px;
  text-align: center;
  background: var(--mw-teal-soft);
  border: 1.5px solid #bcdfda;
  border-radius: 50%;
  color: var(--mw-teal);
  font-size: 11px;
  font-weight: 900;
}

.marketing-warm .price-cta {
  width: 100%;
}

.marketing-warm .price-fine {
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--mw-muted);
}

/* Warm footer (homepage) */
.marketing-warm .mw-footer {
  border-top: 2px solid var(--mw-line);
  padding: 34px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--mw-muted);
  background: var(--mw-cream-deep);
}

.marketing-warm .foot-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.marketing-warm .mw-footer a {
  color: var(--mw-blue);
  text-decoration: none;
  font-weight: 800;
}

.marketing-warm .mw-footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--mw-blue);
  font-weight: 800;
  cursor: pointer;
}

/* Shared mr-header on resource pages */
.marketing-warm .mr-header {
  background: var(--mw-cream);
  border-bottom: 2px solid var(--mw-line);
  box-shadow: none;
}

.marketing-warm .mr-header-inner {
  max-width: 1080px;
}

.marketing-warm .mr-brand-masked {
  color: var(--mw-ink);
}

.marketing-warm .mr-brand-reviews {
  color: var(--mw-blue);
}

.marketing-warm .mr-nav a {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 700;
  color: var(--mw-muted);
}

.marketing-warm .mr-nav a:hover,
.marketing-warm .mr-nav a.is-active {
  color: var(--mw-blue);
}

.marketing-warm .mr-btn-ghost {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 700;
  color: var(--mw-muted);
  border: none;
  background: none;
}

.marketing-warm .mr-btn-ghost:hover {
  color: var(--mw-blue);
}

/* Resources hub */
.marketing-warm .mr-resources-hub {
  background: var(--mw-cream);
  padding: 48px 0 72px;
}

.marketing-warm .mr-resources-kicker {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--mw-teal);
  background: var(--mw-teal-soft);
  display: inline-block;
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

.marketing-warm .mr-resources-hub h1 {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 900;
  color: var(--mw-ink);
  letter-spacing: -0.02em;
}

.marketing-warm .mr-resources-hub-lead {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 600;
  color: var(--mw-muted);
}

.marketing-warm .mr-resources-section-title {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 800;
  color: var(--mw-ink);
}

.marketing-warm .mr-resources-section-lead {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 600;
  color: var(--mw-muted);
}

.marketing-warm .mr-resource-card {
  background: #fff;
  border: 2px solid var(--mw-line);
  border-radius: 20px;
  box-shadow: 0 5px 0 var(--mw-line);
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}

.marketing-warm .mr-resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 9px 0 var(--mw-line);
}

.marketing-warm .mr-resource-card-body h3 {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 800;
}

.marketing-warm .mr-resource-card-body p {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 600;
  color: var(--mw-muted);
}

.marketing-warm .mr-resource-card-link {
  color: var(--mw-blue);
  font-weight: 800;
}

.marketing-warm .mr-resources-more-link {
  color: var(--mw-teal);
  font-weight: 800;
}

/* Article pages */
.marketing-warm .mr-article-page {
  background: var(--mw-cream);
  padding: 32px 0 72px;
}

.marketing-warm .mr-breadcrumb {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 600;
  color: var(--mw-muted);
}

.marketing-warm .mr-breadcrumb a {
  color: var(--mw-blue);
  font-weight: 700;
}

.marketing-warm .mr-article-header h1 {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 900;
  color: var(--mw-ink);
  letter-spacing: -0.02em;
}

.marketing-warm .mr-article-dek {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 600;
  color: var(--mw-muted);
}

.marketing-warm .mr-article-meta {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 700;
  color: var(--mw-teal);
}

.marketing-warm .mr-article-prose {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 600;
  color: var(--mw-ink);
}

.marketing-warm .mr-article-prose h2,
.marketing-warm .mr-article-prose h3 {
  font-weight: 800;
  color: var(--mw-ink);
}

.marketing-warm .mr-article-prose a {
  color: var(--mw-blue);
  font-weight: 700;
}

.marketing-warm .mr-article-prose blockquote {
  border-left: 4px solid var(--mw-blue);
  background: var(--mw-blue-soft);
  border-radius: 0 12px 12px 0;
}

.marketing-warm .mr-article-figure {
  border: 2px solid var(--mw-line);
  border-radius: 16px;
  box-shadow: 0 4px 0 var(--mw-line);
  overflow: hidden;
}

.marketing-warm .mr-article-cta {
  background: #fff;
  border: 2px solid var(--mw-blue);
  border-radius: 20px;
  box-shadow: 0 6px 0 var(--mw-blue-soft);
}

.marketing-warm .mr-article-cta h2 {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 900;
}

.marketing-warm .mr-btn-pill-accent,
.marketing-warm .btn-primary {
  background: var(--mw-blue);
  color: #fff;
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 800;
  border-radius: 999px;
  border: none;
  box-shadow: 0 4px 0 var(--mw-blue-dark);
}

.marketing-warm .mr-btn-pill-ghost,
.marketing-warm .btn-secondary {
  background: #fff;
  color: var(--mw-teal);
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 800;
  border-radius: 999px;
  border: 2.5px solid var(--mw-teal);
}

.marketing-warm .mr-footer {
  background: var(--mw-cream-deep);
  border-top: 2px solid var(--mw-line);
  color: var(--mw-muted);
}

.marketing-warm .mr-footer h3 {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 800;
  color: var(--mw-ink);
}

.marketing-warm .mr-footer a,
.marketing-warm .mr-footer-link-btn {
  color: var(--mw-blue);
  font-weight: 700;
}

.marketing-warm .mr-footer-copy {
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 600;
}

/* Modals */
.marketing-warm .mr-modal {
  background: #fff;
  border: 2px solid var(--mw-line);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(60, 53, 48, 0.15);
  font-family: "Nunito", system-ui, sans-serif;
  box-sizing: border-box;
  overflow-x: hidden;
}

.marketing-warm .mr-modal form,
.marketing-warm .mr-modal #signup-step-done {
  width: 100%;
  min-width: 0;
}

.marketing-warm .mr-modal-head h2 {
  font-weight: 900;
  color: var(--mw-ink);
}

.marketing-warm .mr-modal-lead {
  font-weight: 600;
  color: var(--mw-muted);
}

.marketing-warm .mr-modal-badge {
  background: var(--mw-sun-soft);
  color: #9a7113;
  font-weight: 800;
  border-radius: 999px;
}

.marketing-warm .mr-label {
  font-weight: 700;
  color: var(--mw-ink);
}

.marketing-warm .mr-input {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  display: block;
  border: 2px solid var(--mw-line);
  border-radius: 12px;
  font-family: inherit;
}

.marketing-warm .mr-input:focus {
  border-color: var(--mw-blue);
  outline: none;
  box-shadow: 0 0 0 3px var(--mw-blue-soft);
}

.marketing-warm .mr-hint-email,
.marketing-warm .mr-modal-note {
  box-sizing: border-box;
  max-width: 100%;
}

@media (max-width: 900px) {
  .marketing-warm .hero-inner {
    grid-template-columns: 1fr;
  }

  .marketing-warm .dash-body {
    grid-template-columns: 1fr;
  }

  .marketing-warm .dash-main {
    border-right: none;
    border-bottom: 2px solid var(--mw-line);
  }

  .marketing-warm .how-grid,
  .marketing-warm .res-grid {
    grid-template-columns: 1fr;
  }

  .marketing-warm .site-nav {
    display: none;
  }

  .marketing-warm .cust-band-inner {
    grid-template-columns: 1fr;
  }

  .marketing-warm .cust-band-copy h2 {
    padding-right: 0;
  }

  .marketing-warm .cust-band-tag {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
  }

  .marketing-warm .site-signin {
    display: none;
  }
}

/* Employee → employer invite */
.marketing-warm .employee-invite-band {
  background: linear-gradient(180deg, var(--mw-teal-soft) 0%, var(--mw-cream) 100%);
  border: 2px solid var(--mw-line);
  border-radius: 22px;
  padding: 28px 28px 24px;
  box-shadow: 0 8px 0 var(--mw-line);
}

.marketing-warm .employee-invite-band .block-head {
  margin-bottom: 20px;
}

.marketing-warm .employee-invite-form {
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.marketing-warm .employee-invite-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.marketing-warm .employee-invite-row .mr-input {
  flex: 1 1 220px;
  min-width: 0;
  margin-bottom: 0;
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.2;
}

.marketing-warm .employee-invite-row .btn {
  flex-shrink: 0;
  margin: 0;
  padding: 12px 22px;
  font-size: 15px;
  line-height: 1.2;
  box-shadow: none;
  border: 2px solid var(--mw-blue-dark);
}

.marketing-warm .employee-invite-row .mr-input,
.marketing-warm .employee-invite-row .btn {
  min-height: 46px;
  box-sizing: border-box;
}

.marketing-warm .employee-invite-row .btn:hover {
  box-shadow: none;
  transform: translateY(-1px);
}

.marketing-warm .employee-invite-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.marketing-warm .employee-invite-msg {
  margin: 0;
  font-size: 14px;
  min-height: 0;
}

.marketing-warm .employee-invite-feedback {
  margin-top: 4px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 2px solid var(--mw-line);
  background: #fff;
}

.marketing-warm .employee-invite-feedback.is-success {
  background: var(--mw-teal-soft);
  border-color: var(--mw-teal);
}

.marketing-warm .employee-invite-feedback.is-error {
  background: #fef2f2;
  border-color: #f3a8a8;
}

.marketing-warm .employee-invite-feedback-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  color: var(--mw-ink);
}

.marketing-warm .employee-invite-feedback.is-success .employee-invite-feedback-title {
  color: var(--mw-teal);
}

.marketing-warm .employee-invite-feedback.is-error .employee-invite-feedback-title {
  color: #b42318;
}

.marketing-warm .employee-invite-feedback-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--mw-ink);
}

.marketing-warm .employee-invite-msg.is-error {
  color: #b42318;
}

.marketing-warm .employee-invite-msg.is-success {
  color: var(--mw-teal);
  font-weight: 700;
}

.marketing-warm .employee-invite-fine {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--mw-muted);
  max-width: 560px;
}

@media (max-width: 640px) {
  .marketing-warm .employee-invite-band {
    padding: 22px 18px 18px;
  }

  .marketing-warm .employee-invite-row {
    flex-direction: column;
  }

  .marketing-warm .employee-invite-row .btn {
    width: 100%;
  }
}
