:root {
  --marketing-paper: #f4f6f2;
  --marketing-white: #ffffff;
  --marketing-ink: #121513;
  --marketing-muted: #626861;
  --marketing-line: #dce1da;
  --marketing-green: #72ed8f;
  --marketing-green-strong: #28c965;
  --marketing-green-soft: #e7fbe9;
  --marketing-coral: #ff765f;
  --marketing-coral-soft: #fff0ec;
  --marketing-pink: #f15a9d;
  --marketing-pink-strong: #bd216c;
  --marketing-blue: #2869e8;
  --marketing-blue-soft: #eaf1ff;
  --marketing-yellow: #f4d35e;
  --marketing-radius: 8px;
  --marketing-shadow: 0 22px 60px rgba(24, 31, 26, 0.12);
  --marketing-font-heading: "Manrope", Arial, sans-serif;
  --marketing-font-body: "DM Sans", Arial, sans-serif;
}

.marketing-document {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.marketing-site,
.marketing-site * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.marketing-site {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--marketing-paper);
  background-image: none;
  color: var(--marketing-ink);
  font-family: var(--marketing-font-body);
  font-size: 16px;
  line-height: 1.55;
}

.marketing-site a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.marketing-site button,
.marketing-site input {
  font: inherit;
}

.marketing-site button {
  color: inherit;
}

.marketing-site img {
  max-width: 100%;
}

.marketing-icon {
  width: 1em;
  height: 1em;
  display: block;
  flex: 0 0 auto;
  overflow: visible;
}

.marketing-site :focus-visible {
  outline: 3px solid var(--marketing-blue);
  outline-offset: 3px;
}

.marketing-container {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

.marketing-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.marketing-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: rgba(244, 246, 242, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.marketing-header.is-scrolled,
.marketing-menu-open .marketing-header {
  border-bottom-color: var(--marketing-line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(20, 28, 22, 0.07);
}

.marketing-header__inner {
  height: 72px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 28px;
}

.marketing-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-family: var(--marketing-font-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.marketing-brand img {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 8px;
}

.marketing-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.marketing-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 14px;
  color: #4f554f;
  font-size: 14px;
  font-weight: 700;
}

.marketing-nav a:hover,
.marketing-nav a.is-active {
  background: var(--marketing-white);
  color: var(--marketing-ink);
}

.marketing-header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.marketing-login-link {
  padding: 10px 4px;
  font-size: 14px;
  font-weight: 700;
}

.marketing-login-link:hover {
  color: var(--marketing-blue);
}

.marketing-button {
  min-width: 0;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--marketing-line);
  border-radius: 6px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}

.marketing-button span {
  display: inline-block;
  transition: transform 160ms ease;
}

.marketing-button:hover span {
  transform: translateX(3px);
}

.marketing-button--dark {
  border-color: var(--marketing-ink);
  background: var(--marketing-ink);
  color: #fff !important;
}

.marketing-button--dark:hover {
  background: #2b302c;
  box-shadow: 0 10px 24px rgba(18, 21, 19, 0.18);
  transform: translateY(-1px);
}

.marketing-button--light {
  border-color: var(--marketing-line);
  background: var(--marketing-white);
  color: var(--marketing-ink) !important;
}

.marketing-button--light:hover {
  border-color: #afb8ae;
  background: #fbfcfa;
  transform: translateY(-1px);
}

.marketing-button--green {
  border-color: var(--marketing-green);
  background: var(--marketing-green);
  color: var(--marketing-ink) !important;
}

.marketing-button--green:hover {
  border-color: #8cf3a2;
  background: #8cf3a2;
  box-shadow: 0 10px 26px rgba(40, 201, 101, 0.22);
  transform: translateY(-1px);
}

.marketing-button--pink {
  border-color: var(--marketing-pink);
  background: var(--marketing-pink);
  color: var(--marketing-ink) !important;
}

.marketing-button--pink:hover {
  border-color: #e4478e;
  background: #e4478e;
  box-shadow: 0 10px 26px rgba(189, 33, 108, 0.24);
  transform: translateY(-1px);
}

.marketing-menu-button {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--marketing-line);
  border-radius: 6px;
  padding: 11px 10px;
  background: var(--marketing-white);
  cursor: pointer;
}

.marketing-menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--marketing-ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.marketing-menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.marketing-menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.marketing-menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.marketing-mobile-nav {
  border-top: 1px solid var(--marketing-line);
  border-bottom: 1px solid var(--marketing-line);
  padding: 18px 24px 24px;
  background: var(--marketing-white);
  box-shadow: 0 24px 40px rgba(24, 31, 26, 0.12);
}

.marketing-mobile-nav[hidden] {
  display: none;
}

.marketing-mobile-nav nav,
.marketing-mobile-nav__actions {
  display: grid;
  gap: 8px;
}

.marketing-mobile-nav nav {
  margin-bottom: 16px;
}

.marketing-mobile-nav nav a {
  min-height: 46px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--marketing-line);
  font-family: var(--marketing-font-heading);
  font-size: 18px;
  font-weight: 750;
}

.marketing-mobile-nav nav a.is-active {
  color: var(--marketing-blue);
}

.marketing-hero {
  position: relative;
  height: calc(100svh - 48px);
  min-height: 620px;
  max-height: 860px;
  overflow: hidden;
  background: #e5e8e4;
}

.marketing-hero__media,
.marketing-hero__shade {
  position: absolute;
  inset: 0;
}

.marketing-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.marketing-motion .marketing-hero__media img {
  animation: marketingHeroDrift 16s ease-in-out infinite alternate;
}

@keyframes marketingHeroDrift {
  from { transform: scale(1); }
  to { transform: scale(1.025); }
}

.marketing-hero__shade {
  background: linear-gradient(90deg, rgba(244, 246, 242, 0.98) 0%, rgba(244, 246, 242, 0.93) 35%, rgba(244, 246, 242, 0.38) 65%, rgba(244, 246, 242, 0.06) 100%);
}

.marketing-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 72px;
}

.marketing-hero__copy {
  width: min(100%, 660px);
}

.marketing-hero__brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--marketing-ink);
  font-family: var(--marketing-font-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.marketing-hero__brand-lockup img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 9px;
  box-shadow: 0 8px 18px rgba(189, 33, 108, 0.18);
}

.marketing-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #394139;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.marketing-eyebrow::before {
  content: "";
  width: 34px;
  height: 4px;
  border-radius: 2px;
  background: var(--marketing-pink);
}

.marketing-hero h1 {
  max-width: 650px;
  margin: 0;
  font-family: var(--marketing-font-heading);
  font-size: 72px;
  font-weight: 800;
  line-height: 1.02;
}

.marketing-hero__lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: #495049;
  font-size: 19px;
  line-height: 1.55;
}

.marketing-claim {
  width: min(100%, 610px);
  min-height: 64px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  margin-top: 34px;
  border: 1px solid #cbd2ca;
  border-radius: 8px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--marketing-shadow);
}

.marketing-claim__prefix {
  padding-left: 10px;
  color: #666e66;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.marketing-claim input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 0;
  outline: 0;
  padding: 0 6px;
  background: transparent;
  color: var(--marketing-ink);
  font-size: 16px;
  font-weight: 700;
}

.marketing-claim input::placeholder {
  color: #9aa19a;
}

.marketing-claim .marketing-button {
  border: 0;
}

.marketing-hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 18px;
  color: #525a53;
  font-size: 13px;
  font-weight: 700;
}

.marketing-hero__notes span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.marketing-hero__notes span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--marketing-green-strong);
}

.marketing-channel-strip {
  min-height: 100px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(18, 21, 19, 0.08);
  border-bottom: 1px solid var(--marketing-line);
  background: var(--marketing-white);
}

.marketing-channel-strip__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 42px;
}

.marketing-channel-strip strong {
  max-width: 180px;
  font-family: var(--marketing-font-heading);
  font-size: 15px;
  line-height: 1.3;
}

.marketing-channel-list {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  scroll-snap-type: x proximity;
}

.marketing-channel {
  min-width: max-content;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  color: #454c46;
  font-size: 13px;
  font-weight: 800;
  scroll-snap-align: start;
  white-space: nowrap;
}

.marketing-channel img {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
}

.marketing-section {
  padding: 112px 0;
}

.marketing-section--white {
  border-block: 1px solid var(--marketing-line);
  background: var(--marketing-white);
}

.marketing-section--green {
  border-block: 1px solid #c7eccf;
  background: var(--marketing-green-soft);
}

.marketing-section--coral {
  border-block: 1px solid #ffd0c7;
  background: var(--marketing-coral-soft);
}

.marketing-section--ink {
  background: var(--marketing-ink);
  color: #fff;
}

.marketing-section__head {
  max-width: 780px;
  margin-bottom: 54px;
}

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

.marketing-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--marketing-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.marketing-section--ink .marketing-kicker {
  color: var(--marketing-green);
}

.marketing-section h2,
.marketing-page-hero h1,
.marketing-cta h2 {
  margin: 0;
  font-family: var(--marketing-font-heading);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
}

.marketing-section__head p,
.marketing-page-hero__lead {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--marketing-muted);
  font-size: 18px;
  line-height: 1.6;
}

.marketing-section--ink .marketing-section__head p {
  color: #b9c0ba;
}

.marketing-product-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 72px;
}

.marketing-product-copy {
  min-width: 0;
}

.marketing-product-copy h2 {
  font-size: 48px;
}

.marketing-product-copy > p {
  margin: 20px 0 0;
  color: var(--marketing-muted);
  font-size: 17px;
}

.marketing-check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.marketing-check-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: #333a34;
  font-size: 15px;
  font-weight: 700;
}

.marketing-check-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--marketing-green);
  color: var(--marketing-ink);
  font-size: 12px;
  font-weight: 950;
}

.marketing-tool-stage {
  position: relative;
  min-width: 0;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.marketing-phone {
  position: relative;
  z-index: 2;
  width: 330px;
  aspect-ratio: 0.54;
  overflow: hidden;
  border: 10px solid #111412;
  border-radius: 42px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(25, 32, 27, 0.22);
}

.marketing-phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 4;
  width: 92px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 14px;
  background: #111412;
}

.marketing-phone__cover {
  position: relative;
  height: 245px;
  overflow: hidden;
}

.marketing-phone__cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 67% 36%;
  filter: saturate(0.85);
}

.marketing-phone__cover::after {
  content: "";
  position: absolute;
  inset: 34% 0 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff 94%);
}

.marketing-phone__identity {
  position: relative;
  z-index: 2;
  margin-top: -40px;
  padding: 0 20px;
  text-align: center;
}

.marketing-phone__avatar {
  width: 78px;
  height: 78px;
  margin: 0 auto 10px;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #e5e8e4;
}

.marketing-phone__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% 28%;
}

.marketing-phone__identity strong {
  display: block;
  font-family: var(--marketing-font-heading);
  font-size: 20px;
}

.marketing-phone__identity span {
  color: #656c65;
  font-size: 12px;
  font-weight: 700;
}

.marketing-phone__links {
  display: grid;
  gap: 9px;
  padding: 20px 15px;
}

.marketing-phone__link {
  min-height: 48px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 8px;
  border: 1px solid #dfe4de;
  border-radius: 7px;
  padding: 6px 10px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(18, 21, 19, 0.07);
  color: #242925;
  font-size: 12px;
  font-weight: 850;
}

.marketing-phone__link img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.marketing-phone__link > span {
  min-width: 0;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.marketing-phone__link::after {
  content: "↗";
  color: #7b827b;
  font-size: 13px;
}

.marketing-phone__link--green {
  border-color: #a9eab7;
  background: var(--marketing-green-soft);
}

.marketing-mini-panel {
  position: absolute;
  z-index: 3;
  width: 250px;
  border: 1px solid var(--marketing-line);
  border-radius: var(--marketing-radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--marketing-shadow);
  backdrop-filter: blur(14px);
}

.marketing-mini-panel--top {
  top: 54px;
  right: 0;
}

.marketing-mini-panel--bottom {
  bottom: 54px;
  left: 0;
}

.marketing-mini-panel__label {
  display: block;
  margin-bottom: 12px;
  color: var(--marketing-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.marketing-mini-panel strong {
  display: block;
  font-family: var(--marketing-font-heading);
  font-size: 28px;
  line-height: 1;
}

.marketing-mini-panel p {
  margin: 7px 0 0;
  color: var(--marketing-muted);
  font-size: 12px;
}

.marketing-mini-chart {
  height: 56px;
  display: flex;
  align-items: end;
  gap: 6px;
  margin-top: 14px;
}

.marketing-mini-chart span {
  flex: 1 1 0;
  border-radius: 3px 3px 0 0;
  background: var(--marketing-blue);
  transform-origin: bottom;
}

.marketing-motion .marketing-reveal.is-visible .marketing-mini-chart span {
  animation: marketingBarGrow 700ms ease both;
}

@keyframes marketingBarGrow {
  from { transform: scaleY(0.08); }
  to { transform: scaleY(1); }
}

.marketing-mini-flow {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
}

.marketing-mini-flow span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  padding: 0 9px;
  background: var(--marketing-coral-soft);
  color: #733326;
  font-size: 10px;
  font-weight: 900;
}

.marketing-mini-flow i {
  height: 1px;
  background: #b9c0ba;
}

.marketing-section--templates {
  border-bottom: 1px solid var(--marketing-line);
  background: #ffffff;
}

.marketing-profile-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.marketing-profile-sample {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--marketing-line);
  border-radius: 8px;
  background: var(--marketing-white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.marketing-profile-sample:hover {
  transform: translateY(-4px);
  border-color: #bcc2bc;
  box-shadow: 0 22px 48px rgba(24, 31, 26, 0.14);
}

.marketing-profile-sample__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  padding: 22px 22px 0;
  background: color-mix(in srgb, var(--sample-accent) 14%, #eef1ee);
  text-decoration: none;
}

.marketing-profile-sample__browser {
  width: min(88%, 336px);
  height: calc(100% - 4px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(20, 24, 21, 0.22);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(24, 31, 26, 0.2);
  transition: transform 320ms cubic-bezier(.2, .7, .2, 1), box-shadow 320ms ease;
}

.marketing-profile-sample:hover .marketing-profile-sample__browser {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(24, 31, 26, 0.25);
}

.marketing-profile-sample__browser-bar {
  min-height: 30px;
  display: grid;
  grid-template-columns: repeat(3, 6px) minmax(0, 1fr);
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid #e3e6e3;
  padding: 0 10px;
  background: #f7f8f7;
}

.marketing-profile-sample__browser-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c6cbc7;
}

.marketing-profile-sample__browser-bar i:first-child {
  background: #ef4f94;
}

.marketing-profile-sample__browser-bar b {
  min-width: 0;
  overflow: hidden;
  padding-left: 4px;
  color: #6f756f;
  font-size: 8px;
  font-weight: 800;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.marketing-profile-sample__browser > img {
  width: 100%;
  min-height: 0;
  flex: 1;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.marketing-profile-sample__meta {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
}

.marketing-profile-sample__meta > div:first-child {
  min-width: 0;
}

.marketing-profile-sample__meta > div:first-child span,
.marketing-profile-sample__meta > div:first-child strong {
  display: block;
}

.marketing-profile-sample__meta > div:first-child span {
  color: var(--marketing-muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.marketing-profile-sample__meta > div:first-child strong {
  margin-top: 3px;
  overflow: hidden;
  font-family: var(--marketing-font-heading);
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.marketing-profile-sample__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.marketing-profile-sample__actions a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7dbd7;
  border-radius: 5px;
  padding: 0 10px;
  background: #ffffff;
  color: #171917;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.marketing-profile-sample__actions a:hover {
  border-color: #929993;
}

.marketing-profile-sample__actions a.is-primary {
  border-color: var(--marketing-pink);
  background: var(--marketing-pink);
}

.marketing-migration-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 44px;
  margin-top: 22px;
  border-radius: var(--marketing-radius);
  padding: 34px;
  background: var(--marketing-ink);
  color: #ffffff;
}

.marketing-migration-callout > div { min-width: 0; }

.marketing-migration-callout > div > span {
  display: block;
  color: var(--marketing-green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.marketing-migration-callout h3 {
  margin: 6px 0 0;
  font-family: var(--marketing-font-heading);
  font-size: 30px;
  line-height: 1.15;
}

.marketing-migration-callout p {
  max-width: 720px;
  margin: 10px 0 0;
  color: #b9c0ba;
  font-size: 14px;
}

.marketing-migration-callout .marketing-button {
  white-space: nowrap;
}

.marketing-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.marketing-capability {
  position: relative;
  min-width: 0;
  min-height: 270px;
  border: 1px solid var(--marketing-line);
  border-radius: var(--marketing-radius);
  padding: 28px;
  background: var(--marketing-white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.marketing-capability:hover {
  border-color: #aeb8ad;
  box-shadow: 0 18px 42px rgba(24, 31, 26, 0.11);
  transform: translateY(-4px);
}

.marketing-capability__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.marketing-capability__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 50px;
  border-radius: 8px;
  background: var(--marketing-green-soft);
  color: #18753b;
}

.marketing-capability__icon .marketing-icon {
  width: 24px;
  height: 24px;
}

.marketing-capability__label {
  padding-top: 8px;
  color: #707770;
  font-family: var(--marketing-font-heading);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.marketing-capability:nth-child(3n + 2) .marketing-capability__icon {
  background: var(--marketing-coral-soft);
  color: #a44332;
}

.marketing-capability:nth-child(3n + 3) .marketing-capability__icon {
  background: var(--marketing-blue-soft);
  color: var(--marketing-blue);
}

.marketing-capability h3 {
  max-width: 310px;
  margin: 0 0 12px;
  font-family: var(--marketing-font-heading);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.24;
}

.marketing-capability p {
  margin: 0;
  color: var(--marketing-muted);
  font-size: 15px;
  line-height: 1.62;
}

.marketing-value-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 80px;
}

.marketing-value-band h2 {
  font-size: 54px;
}

.marketing-value-band p {
  margin: 22px 0 0;
  color: #bac1bb;
  font-size: 17px;
}

.marketing-audience-demo {
  overflow: hidden;
  border: 1px solid #343a35;
  border-radius: var(--marketing-radius);
  background: #1b1f1c;
}

.marketing-audience-demo__head {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #343a35;
  padding: 0 18px;
}

.marketing-audience-demo__head strong {
  font-size: 13px;
}

.marketing-audience-demo__head span {
  color: #98a099;
  font-size: 11px;
}

.marketing-audience-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #343a35;
}

.marketing-audience-tab {
  min-width: 0;
  padding: 20px;
  background: #1b1f1c;
}

.marketing-audience-tab.is-active {
  background: #24372a;
}

.marketing-audience-tab span,
.marketing-audience-tab strong {
  display: block;
}

.marketing-audience-tab span {
  color: #9fa7a0;
  font-size: 11px;
  font-weight: 800;
}

.marketing-audience-tab strong {
  margin-top: 5px;
  font-family: var(--marketing-font-heading);
  font-size: 17px;
}

.marketing-audience-cards {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.marketing-audience-card {
  min-height: 58px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid #39403a;
  border-radius: 6px;
  padding: 9px 12px;
  background: #222723;
}

.marketing-audience-card > span:first-child {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--marketing-green);
  color: var(--marketing-ink);
  font-size: 12px;
  font-weight: 950;
}

.marketing-audience-card strong,
.marketing-audience-card small {
  display: block;
}

.marketing-audience-card strong {
  font-size: 13px;
}

.marketing-audience-card small {
  margin-top: 2px;
  color: #9fa7a0;
  font-size: 10px;
}

.marketing-audience-card > small {
  margin: 0;
  color: var(--marketing-green);
  font-weight: 900;
}

.marketing-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.marketing-step {
  min-width: 0;
  min-height: 250px;
  border: 1px solid var(--marketing-line);
  border-radius: var(--marketing-radius);
  padding: 28px;
  background: var(--marketing-white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.marketing-step:hover {
  border-color: #aeb8ad;
  box-shadow: 0 18px 42px rgba(24, 31, 26, 0.1);
  transform: translateY(-4px);
}

.marketing-step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
}

.marketing-step__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  border-radius: 8px;
  background: var(--marketing-blue-soft);
  color: var(--marketing-blue);
}

.marketing-step:nth-child(2) .marketing-step__icon {
  background: var(--marketing-coral-soft);
  color: #a44332;
}

.marketing-step:nth-child(3) .marketing-step__icon {
  background: var(--marketing-green-soft);
  color: #16733a;
}

.marketing-step__icon .marketing-icon {
  width: 23px;
  height: 23px;
}

.marketing-step__label {
  color: #6b726c;
  font-family: var(--marketing-font-heading);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  text-align: right;
  text-transform: uppercase;
}

.marketing-step h3 {
  margin: 0 0 12px;
  font-family: var(--marketing-font-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.24;
}

.marketing-step p {
  margin: 0;
  color: var(--marketing-muted);
  font-size: 15px;
  line-height: 1.62;
}

.marketing-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}

.marketing-plan-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--marketing-line);
  border-radius: var(--marketing-radius);
  padding: 24px;
  background: var(--marketing-white);
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.marketing-plan-card:hover {
  border-color: #aeb8ad;
  box-shadow: 0 18px 42px rgba(24, 31, 26, 0.1);
  transform: translateY(-3px);
}

.marketing-plan-card.is-featured {
  border-color: var(--marketing-ink);
  background: var(--marketing-ink);
  color: #fff;
}

.marketing-plan-card.is-featured:hover {
  border-color: var(--marketing-green);
}

.marketing-plan-card--business {
  border-top-width: 4px;
  border-top-color: var(--marketing-pink);
  padding-top: 21px;
}

.marketing-plan-card--business .marketing-plan-card__audience {
  color: var(--marketing-pink-strong);
}

.marketing-plan-card__head {
  min-height: 62px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.marketing-plan-card__audience {
  display: block;
  margin-bottom: 5px;
  color: var(--marketing-muted);
  font-size: 11px;
  font-weight: 850;
}

.marketing-plan-card.is-featured .marketing-plan-card__audience,
.marketing-plan-card.is-featured .marketing-plan-card__description,
.marketing-plan-card.is-featured .price-value-note {
  color: #aeb6af;
}

.marketing-plan-card h3 {
  margin: 0;
  font-family: var(--marketing-font-heading);
  font-size: 24px;
  font-weight: 800;
}

.marketing-plan-card__badge {
  flex: 0 0 auto;
  border-radius: 5px;
  padding: 5px 8px;
  background: var(--marketing-green);
  color: var(--marketing-ink);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.marketing-plan-card__description {
  min-height: 68px;
  margin: 14px 0 0;
  color: var(--marketing-muted);
  font-size: 13px;
  line-height: 1.45;
}

.marketing-plan-card__price {
  min-height: 126px;
  margin: 20px 0;
  padding: 18px 0;
  border-top: 1px solid var(--marketing-line);
  border-bottom: 1px solid var(--marketing-line);
}

.marketing-plan-card.is-featured .marketing-plan-card__price {
  border-color: #353a36;
}

.marketing-plan-card__price > div {
  min-height: 54px;
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.marketing-plan-card .price-value-amount {
  display: inline-block;
  color: inherit;
  font-family: var(--marketing-font-heading);
  font-size: 44px;
  font-weight: 850;
  line-height: 1;
  transition: opacity 140ms ease, transform 140ms ease;
}

.marketing-plan-card .price-value-period {
  color: var(--marketing-muted);
  font-size: 12px;
  font-weight: 750;
}

.marketing-plan-card.is-featured .price-value-period {
  color: #aeb6af;
}

.marketing-plan-card .price-value-note {
  display: block;
  min-height: 34px;
  margin-top: 8px;
  color: var(--marketing-muted);
  font-size: 11px;
  line-height: 1.4;
}

.marketing-plan-card__features {
  flex: 1 1 auto;
  display: grid;
  align-content: start;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.marketing-plan-card__features li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: #343a35;
  font-size: 13px;
  line-height: 1.4;
}

.marketing-plan-card.is-featured .marketing-plan-card__features li {
  color: #e9ece9;
}

.feature-status {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 18px;
  border-radius: 50%;
  background: var(--marketing-green-soft);
  color: #17733a;
}

.feature-status::before {
  content: "✓";
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
}

.marketing-plan-card.is-featured .feature-status {
  background: var(--marketing-green);
  color: var(--marketing-ink);
}

.marketing-plan-grid--compact .marketing-plan-card {
  padding: 21px;
}

.marketing-plan-grid--compact .marketing-plan-card__description {
  min-height: 62px;
}

.marketing-plan-grid--compact .marketing-plan-card__features {
  min-height: 160px;
}

.marketing-plan-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.marketing-page-hero {
  padding: 158px 0 82px;
  background: var(--marketing-paper);
}

.marketing-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: end;
  gap: 70px;
}

.marketing-page-hero h1 {
  max-width: 760px;
  font-size: 68px;
}

.marketing-page-hero__lead {
  margin-top: 24px;
}

.marketing-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.marketing-feature-map {
  overflow: hidden;
  border: 1px solid var(--marketing-line);
  border-radius: var(--marketing-radius);
  background: var(--marketing-white);
  box-shadow: var(--marketing-shadow);
}

.marketing-feature-map__head {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--marketing-line);
  padding: 0 18px;
}

.marketing-feature-map__head strong {
  font-size: 13px;
}

.marketing-feature-map__head span {
  color: var(--marketing-muted);
  font-size: 11px;
}

.marketing-feature-map__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.marketing-feature-map__item {
  min-height: 126px;
  padding: 20px;
  border-right: 1px solid var(--marketing-line);
  border-bottom: 1px solid var(--marketing-line);
}

.marketing-feature-map__item:nth-child(2n) {
  border-right: 0;
}

.marketing-feature-map__item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.marketing-feature-map__item span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 6px;
  background: var(--marketing-blue-soft);
  color: var(--marketing-blue);
  font-size: 12px;
  font-weight: 950;
}

.marketing-feature-map__item span .marketing-icon {
  width: 18px;
  height: 18px;
}

.marketing-feature-map__item:nth-child(2) span {
  background: var(--marketing-green-soft);
  color: #16733a;
}

.marketing-feature-map__item:nth-child(3) span {
  background: var(--marketing-coral-soft);
  color: #a44332;
}

.marketing-feature-map__item:nth-child(4) span {
  background: #fff8d8;
  color: #6d5700;
}

.marketing-feature-map__item strong,
.marketing-feature-map__item small {
  display: block;
}

.marketing-feature-map__item strong {
  font-family: var(--marketing-font-heading);
  font-size: 15px;
}

.marketing-feature-map__item small {
  margin-top: 4px;
  color: var(--marketing-muted);
  font-size: 11px;
}

.marketing-feature-index {
  position: sticky;
  top: 72px;
  z-index: 50;
  border-block: 1px solid var(--marketing-line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.marketing-feature-index__inner {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.marketing-feature-index__inner::-webkit-scrollbar {
  display: none;
}

.marketing-feature-index a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  border-bottom: 3px solid transparent;
  padding: 3px 16px 0;
  color: var(--marketing-muted);
  font-size: 13px;
  font-weight: 850;
}

.marketing-feature-index a:hover,
.marketing-feature-index a.is-active {
  border-bottom-color: var(--marketing-green-strong);
  color: var(--marketing-ink);
}

.marketing-feature-group {
  scroll-margin-top: 126px;
}

.marketing-feature-group__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 76px;
}

.marketing-feature-group__intro {
  position: sticky;
  top: 154px;
  align-self: start;
}

.marketing-feature-group__intro h2 {
  font-size: 48px;
}

.marketing-feature-group__intro p {
  margin: 18px 0 0;
  color: var(--marketing-muted);
  font-size: 16px;
}

.marketing-section--ink .marketing-feature-group__intro p {
  color: #b9c0ba;
}

.marketing-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.marketing-feature-item {
  min-width: 0;
  min-height: 222px;
  border: 1px solid var(--marketing-line);
  border-radius: var(--marketing-radius);
  padding: 26px;
  background: var(--marketing-white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.marketing-feature-item:hover {
  border-color: #aeb8ad;
  box-shadow: 0 16px 36px rgba(24, 31, 26, 0.09);
  transform: translateY(-3px);
}

.marketing-section--ink .marketing-feature-item {
  border-color: #353b36;
  background: #1c211d;
}

.marketing-section--ink .marketing-feature-item:hover {
  border-color: #5a665c;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.marketing-feature-item__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 8px;
  background: var(--marketing-green-soft);
  color: #17733a;
}

.marketing-feature-item__mark .marketing-icon {
  width: 21px;
  height: 21px;
}

.marketing-feature-item:nth-child(2n) .marketing-feature-item__mark {
  background: var(--marketing-blue-soft);
  color: var(--marketing-blue);
}

.marketing-section--ink .marketing-feature-item__mark {
  background: var(--marketing-green);
  color: var(--marketing-ink);
}

.marketing-feature-item h3 {
  margin: 0 0 10px;
  font-family: var(--marketing-font-heading);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.28;
}

.marketing-feature-item p {
  margin: 0;
  color: var(--marketing-muted);
  font-size: 14.5px;
  line-height: 1.62;
}

.marketing-section--ink .marketing-feature-item p {
  color: #aeb6af;
}

.marketing-pricing-hero {
  padding: 154px 0 64px;
  text-align: center;
}

.marketing-pricing-hero h1 {
  max-width: 860px;
  margin: 0 auto;
  background: none;
  color: var(--marketing-ink);
  font-family: var(--marketing-font-heading);
  font-size: 68px;
  font-weight: 800;
  line-height: 1.06;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: currentColor;
}

.marketing-pricing-hero h1 span {
  color: var(--marketing-pink-strong);
  -webkit-text-fill-color: currentColor;
}

.marketing-pricing-hero p {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--marketing-muted);
  font-size: 18px;
}

.marketing-billing-switch {
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin: 32px auto 0;
  border: 1px solid var(--marketing-line);
  border-radius: 8px;
  padding: 4px;
  background: var(--marketing-white);
}

.marketing-billing-switch button {
  min-width: 146px;
  min-height: 46px;
  border: 0;
  border-radius: 5px;
  padding: 6px 14px;
  background: transparent;
  color: var(--marketing-muted);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.marketing-billing-switch button.is-active {
  background: var(--marketing-ink);
  color: #fff;
}

.marketing-billing-switch button span {
  display: block;
  margin-top: 1px;
  color: var(--marketing-green-strong);
  font-size: 9px;
  font-weight: 900;
}

.marketing-billing-switch button.is-active span {
  color: var(--marketing-green);
}

.marketing-pricing-plans {
  padding: 16px 0 100px;
}

.marketing-pricing-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  border-block: 1px solid var(--marketing-line);
}

.marketing-pricing-note {
  min-height: 100px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-right: 1px solid var(--marketing-line);
}

.marketing-pricing-note:last-child {
  border-right: 0;
}

.marketing-pricing-note > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--marketing-green-soft);
  color: #17733a;
  font-size: 14px;
  font-weight: 950;
}

.marketing-pricing-note > span .marketing-icon {
  width: 18px;
  height: 18px;
}

.marketing-pricing-note:nth-child(3) > span {
  background: var(--marketing-blue-soft);
  color: var(--marketing-blue);
}

.marketing-pricing-note strong,
.marketing-pricing-note small {
  display: block;
}

.marketing-pricing-note strong {
  font-size: 14px;
}

.marketing-pricing-note small {
  margin-top: 3px;
  color: var(--marketing-muted);
  font-size: 11px;
}

.marketing-comparison-scroll {
  max-width: 100%;
  overflow: auto;
  contain: layout;
  border: 1px solid var(--marketing-line);
  border-radius: var(--marketing-radius);
  background: var(--marketing-white);
  box-shadow: 0 16px 40px rgba(24, 31, 26, 0.06);
}

.marketing-comparison {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
  table-layout: fixed;
}

.marketing-comparison th,
.marketing-comparison td {
  height: 58px;
  border-bottom: 1px solid var(--marketing-line);
  padding: 10px 14px;
  text-align: center;
  font-size: 13px;
}

.marketing-comparison thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #f9faf8;
  font-family: var(--marketing-font-heading);
  font-size: 14px;
}

.marketing-comparison thead th:first-child,
.marketing-comparison tbody th {
  width: 260px;
  text-align: left;
}

.marketing-comparison tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  background: var(--marketing-white);
  font-weight: 750;
}

.marketing-comparison thead th:first-child {
  left: 0;
  z-index: 3;
}

.marketing-comparison thead th.is-featured {
  background: var(--marketing-green-soft);
  color: #146b36;
}

.marketing-comparison__group th {
  position: static !important;
  height: 46px;
  background: var(--marketing-ink) !important;
  color: #fff;
  font-family: var(--marketing-font-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.marketing-comparison td.is-disabled {
  background: #fafbfa;
  color: #b3b9b3;
}

.marketing-comparison td .feature-status {
  margin-inline: auto;
}

.marketing-comparison__dash {
  color: #c0c5c0;
  font-size: 18px;
}

.marketing-plan-guide-hero {
  padding: 158px 0 90px;
  border-bottom: 1px solid var(--marketing-line);
  background: var(--marketing-paper);
}

.marketing-plan-guide-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: 78px;
}

.marketing-plan-guide-hero__copy h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--marketing-font-heading);
  font-size: 66px;
  font-weight: 800;
  line-height: 1.04;
}

.marketing-plan-guide-hero__copy > p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--marketing-muted);
  font-size: 18px;
}

.marketing-plan-guide-map {
  overflow: hidden;
  border: 1px solid var(--marketing-line);
  border-radius: var(--marketing-radius);
  background: var(--marketing-white);
  box-shadow: var(--marketing-shadow);
}

.marketing-plan-guide-map__head {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--marketing-line);
  padding: 0 20px;
}

.marketing-plan-guide-map__head strong {
  font-family: var(--marketing-font-heading);
  font-size: 13px;
}

.marketing-plan-guide-map__head span {
  color: var(--marketing-muted);
  font-size: 11px;
}

.marketing-plan-guide-map__row {
  min-height: 78px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--marketing-line);
  padding: 12px 20px;
}

.marketing-plan-guide-map__row:last-child {
  border-bottom: 0;
}

.marketing-plan-guide-map__row > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: var(--marketing-blue-soft);
  color: var(--marketing-blue);
  font-size: 11px;
  font-weight: 900;
}

.marketing-plan-guide-map__row > span .marketing-icon {
  width: 17px;
  height: 17px;
}

.marketing-plan-guide-map__row:nth-child(2) > span {
  background: var(--marketing-coral-soft);
  color: #a44332;
}

.marketing-plan-guide-map__row:nth-child(3) > span,
.marketing-plan-guide-map__row.is-featured > span {
  background: var(--marketing-green-soft);
  color: #16733a;
}

.marketing-plan-guide-map__row:nth-child(4) > span {
  background: #fff7cc;
  color: #695400;
}

.marketing-plan-guide-map__row div {
  min-width: 0;
}

.marketing-plan-guide-map__row strong,
.marketing-plan-guide-map__row small {
  display: block;
}

.marketing-plan-guide-map__row strong {
  font-family: var(--marketing-font-heading);
  font-size: 16px;
}

.marketing-plan-guide-map__row small {
  margin-top: 2px;
  color: var(--marketing-muted);
  font-size: 11px;
}

.marketing-plan-guide-map__row b {
  color: var(--marketing-ink);
  font-family: var(--marketing-font-heading);
  font-size: 13px;
  white-space: nowrap;
}

.marketing-plan-guide-map__row.is-featured {
  background: var(--marketing-green-soft);
}

.marketing-plan-guide-core {
  padding: 64px 0;
  background: var(--marketing-ink);
  color: #fff;
}

.marketing-plan-guide-core__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 72px;
}

.marketing-plan-guide-core h2 {
  max-width: 470px;
  margin: 0;
  color: #fff;
  font-size: 40px;
}

.marketing-plan-guide-core p {
  max-width: 520px;
  margin: 16px 0 0;
  color: #b5bcb6;
  font-size: 14px;
}

.marketing-plan-guide-core ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.marketing-plan-guide-core li {
  min-height: 34px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: #eef1ee;
  font-size: 14px;
  font-weight: 700;
}

.marketing-plan-guide-index {
  top: 72px;
}

.marketing-plan-guide-group {
  scroll-margin-top: 126px;
  border-bottom: 1px solid var(--marketing-line);
}

.marketing-plan-guide-group--publishing,
.marketing-plan-guide-group--automation {
  background: var(--marketing-white);
}

.marketing-plan-guide-group--growth {
  background: var(--marketing-green-soft);
}

.marketing-plan-guide-group--business {
  background: var(--marketing-blue-soft);
}

.marketing-plan-guide-group__layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1.42fr);
  gap: 68px;
}

.marketing-plan-guide-group__intro {
  position: sticky;
  top: 150px;
  align-self: start;
}

.marketing-plan-guide-group__intro h2 {
  margin: 0;
  font-size: 44px;
}

.marketing-plan-guide-group__intro p {
  margin: 18px 0 0;
  color: var(--marketing-muted);
  font-size: 15px;
}

.marketing-plan-guide-list {
  border-top: 1px solid rgba(18, 21, 19, 0.16);
}

.marketing-plan-guide-feature {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(450px, 1.28fr);
  gap: 34px;
  border-bottom: 1px solid rgba(18, 21, 19, 0.16);
  padding: 34px 0;
  scroll-margin-top: 146px;
}

.marketing-plan-guide-feature__copy {
  min-width: 0;
}

.marketing-plan-guide-feature__number {
  width: 32px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 5px;
  background: rgba(40, 105, 232, 0.1);
  color: var(--marketing-blue);
  font-size: 10px;
  font-weight: 950;
}

.marketing-plan-guide-group--growth .marketing-plan-guide-feature__number {
  background: rgba(40, 201, 101, 0.14);
  color: #146b36;
}

.marketing-plan-guide-group--business .marketing-plan-guide-feature__number {
  background: rgba(255, 118, 95, 0.14);
  color: #9c3f2f;
}

.marketing-plan-guide-feature h3 {
  margin: 0;
  font-family: var(--marketing-font-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.marketing-plan-guide-feature__copy > p {
  margin: 12px 0 0;
  color: #4e554f;
  font-size: 14px;
}

.marketing-plan-guide-feature__copy > small {
  display: block;
  margin-top: 14px;
  color: var(--marketing-muted);
  font-size: 12px;
  line-height: 1.5;
}

.marketing-plan-guide-feature__copy > small strong {
  color: var(--marketing-ink);
}

.marketing-plan-value-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(var(--marketing-plan-count), minmax(0, 1fr));
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(18, 21, 19, 0.16);
  border-radius: 6px;
  background: var(--marketing-white);
}

.marketing-plan-value {
  min-width: 0;
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 7px;
  border-right: 1px solid var(--marketing-line);
  padding: 12px;
  text-align: center;
}

.marketing-plan-value:last-child {
  border-right: 0;
}

.marketing-plan-value > span {
  overflow: hidden;
  color: var(--marketing-muted);
  font-size: 10px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.marketing-plan-value > strong {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--marketing-ink);
  font-family: var(--marketing-font-heading);
  font-size: 12px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.marketing-plan-value .feature-status {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}

.marketing-plan-value.is-featured {
  background: var(--marketing-green-soft);
}

.marketing-plan-value.is-disabled {
  background: #f5f6f4;
}

.marketing-plan-value.is-disabled > span,
.marketing-plan-value.is-disabled > strong {
  color: #9da39d;
}

.marketing-plan-value.is-disabled i {
  font-style: normal;
  font-size: 17px;
  font-weight: 500;
}

.marketing-plan-guide-note {
  padding: 32px 0;
  border-bottom: 1px solid #303530;
  background: #101310;
  color: #fff;
}

.marketing-plan-guide-note .marketing-container {
  display: flex;
  align-items: baseline;
  gap: 14px 28px;
}

.marketing-plan-guide-note strong {
  font-family: var(--marketing-font-heading);
  font-size: 15px;
}

.marketing-plan-guide-note p {
  margin: 0;
  color: #aeb6af;
  font-size: 13px;
}

.marketing-comparison-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 24px;
}

.marketing-faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 80px;
}

.marketing-faq__intro h2 {
  font-size: 46px;
}

.marketing-faq__intro p {
  margin: 18px 0 0;
  color: var(--marketing-muted);
}

.marketing-faq__list {
  border-top: 1px solid var(--marketing-line);
}

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

.marketing-faq summary {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
  list-style: none;
  font-family: var(--marketing-font-heading);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}

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

.marketing-faq summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--marketing-blue);
  font-size: 22px;
  font-weight: 500;
  transition: transform 160ms ease;
}

.marketing-faq details[open] summary::after {
  transform: rotate(45deg);
}

.marketing-faq details p {
  max-width: 700px;
  margin: -4px 0 24px;
  color: var(--marketing-muted);
  font-size: 14px;
}

.marketing-cta {
  padding: 96px 0;
  background: var(--marketing-ink);
  color: #fff;
}

.marketing-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
}

.marketing-cta h2 {
  max-width: 780px;
  font-size: 54px;
}

.marketing-cta p {
  max-width: 640px;
  margin: 17px 0 0;
  color: #b7beb8;
  font-size: 17px;
}

.marketing-cta .marketing-button {
  min-width: 190px;
}

.marketing-footer {
  border-top: 1px solid #303530;
  padding: 72px 0 24px;
  background: #101310;
  color: #fff;
}

.marketing-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(130px, 0.7fr));
  gap: 42px;
}

.marketing-footer__brand p {
  max-width: 330px;
  margin: 18px 0 0;
  color: #9fa69f;
  font-size: 14px;
}

.marketing-footer__column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.marketing-footer__column strong {
  margin-bottom: 7px;
  font-family: var(--marketing-font-heading);
  font-size: 13px;
}

.marketing-footer__column a {
  width: fit-content;
  color: #9fa69f;
  font-size: 13px;
}

.marketing-footer__column a:hover {
  color: var(--marketing-green);
}

.marketing-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  border-top: 1px solid #303530;
  padding-top: 22px;
  color: #7f877f;
  font-size: 11px;
}

.marketing-motion .marketing-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.marketing-motion .marketing-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .marketing-header__inner {
    grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
    gap: 16px;
  }

  .marketing-hero h1 {
    font-size: 62px;
  }

  .marketing-channel-list {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .marketing-product-showcase {
    gap: 44px;
  }

  .marketing-tool-stage {
    min-height: 570px;
  }

  .marketing-mini-panel {
    width: 220px;
  }

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

  .marketing-plan-card__description {
    min-height: 48px;
  }

  .marketing-plan-grid--compact .marketing-plan-card__features {
    min-height: 0;
  }

  .marketing-plan-guide-hero__grid {
    gap: 48px;
  }

  .marketing-plan-guide-group__layout {
    grid-template-columns: minmax(210px, 0.5fr) minmax(0, 1.5fr);
    gap: 44px;
  }

  .marketing-plan-guide-feature {
    grid-template-columns: minmax(190px, 0.62fr) minmax(400px, 1.38fr);
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .marketing-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .marketing-nav,
  .marketing-header__actions {
    display: none;
  }

  .marketing-menu-button {
    display: block;
  }

  .marketing-hero__shade {
    background: linear-gradient(90deg, rgba(244, 246, 242, 0.98) 0%, rgba(244, 246, 242, 0.9) 48%, rgba(244, 246, 242, 0.26) 100%);
  }

  .marketing-hero h1 {
    font-size: 56px;
  }

  .marketing-channel-strip__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding-block: 22px;
  }

  .marketing-channel-strip strong {
    max-width: none;
  }

  .marketing-product-showcase,
  .marketing-value-band,
  .marketing-page-hero__grid,
  .marketing-feature-group__layout,
  .marketing-faq {
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-product-showcase,
  .marketing-value-band,
  .marketing-page-hero__grid,
  .marketing-feature-group__layout {
    gap: 48px;
  }

  .marketing-feature-group__intro {
    position: static;
  }

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

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

  .marketing-migration-callout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .marketing-migration-callout .marketing-button {
    width: fit-content;
  }

  .marketing-pricing-notes {
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-plan-guide-hero__grid,
  .marketing-plan-guide-core__inner,
  .marketing-plan-guide-group__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-plan-guide-hero__grid,
  .marketing-plan-guide-core__inner {
    gap: 44px;
  }

  .marketing-plan-guide-group__layout {
    gap: 38px;
  }

  .marketing-plan-guide-group__intro {
    position: static;
  }

  .marketing-pricing-note {
    border-right: 0;
    border-bottom: 1px solid var(--marketing-line);
  }

  .marketing-pricing-note:last-child {
    border-bottom: 0;
  }

  .marketing-faq {
    gap: 40px;
  }

  .marketing-cta__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-cta .marketing-button {
    width: fit-content;
  }

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

  .marketing-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .marketing-container {
    width: min(100% - 32px, 1280px);
  }

  .marketing-header__inner {
    height: 64px;
  }

  .marketing-brand {
    font-size: 20px;
  }

  .marketing-brand img {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .marketing-hero {
    height: calc(100svh - 38px);
    min-height: 0;
    max-height: none;
  }

  .marketing-hero__media img {
    object-position: 63% center;
  }

  .marketing-hero__shade {
    background: linear-gradient(90deg, rgba(244, 246, 242, 0.98) 0%, rgba(244, 246, 242, 0.9) 60%, rgba(244, 246, 242, 0.58) 100%);
  }

  .marketing-hero__content {
    align-items: flex-end;
    padding-top: 74px;
    padding-bottom: 28px;
  }

  .marketing-hero__brand-lockup {
    gap: 8px;
    margin-bottom: 14px;
    font-size: 17px;
  }

  .marketing-hero__brand-lockup img {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    border-radius: 8px;
  }

  .marketing-eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .marketing-hero h1 {
    max-width: 520px;
    font-size: 44px;
  }

  .marketing-hero__lead {
    max-width: 500px;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.45;
  }

  .marketing-claim {
    min-height: 0;
    grid-template-columns: auto minmax(0, 1fr);
    margin-top: 20px;
    padding: 6px;
  }

  .marketing-claim .marketing-button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 46px;
  }

  .marketing-claim__prefix {
    font-size: 13px;
  }

  .marketing-claim input {
    min-height: 42px;
    font-size: 14px;
  }

  .marketing-hero__notes {
    margin-top: 12px;
    gap: 4px 12px;
    font-size: 11px;
  }

  .marketing-section {
    padding: 78px 0;
  }

  .marketing-section h2,
  .marketing-page-hero h1,
  .marketing-cta h2 {
    font-size: 40px;
  }

  .marketing-section__head {
    margin-bottom: 38px;
  }

  .marketing-section__head p,
  .marketing-page-hero__lead {
    font-size: 16px;
  }

  .marketing-product-copy h2,
  .marketing-value-band h2,
  .marketing-feature-group__intro h2,
  .marketing-faq__intro h2 {
    font-size: 38px;
  }

  .marketing-tool-stage {
    min-height: 550px;
  }

  .marketing-phone {
    width: 290px;
  }

  .marketing-mini-panel {
    width: 190px;
    padding: 14px;
  }

  .marketing-mini-panel--top {
    top: 40px;
    right: -8px;
  }

  .marketing-mini-panel--bottom {
    bottom: 40px;
    left: -8px;
  }

  .marketing-capability-grid,
  .marketing-feature-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-profile-gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-profile-sample__visual {
    aspect-ratio: 4 / 4.9;
  }

  .marketing-migration-callout {
    padding: 25px 22px;
  }

  .marketing-migration-callout h3 {
    font-size: 25px;
  }

  .marketing-migration-callout .marketing-button {
    width: 100%;
  }

  .marketing-capability,
  .marketing-feature-item {
    min-height: 0;
  }

  .marketing-capability {
    padding: 24px;
  }

  .marketing-capability__top {
    margin-bottom: 24px;
  }

  .marketing-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-step {
    min-height: 0;
    border-right: 1px solid var(--marketing-line);
    border-bottom: 1px solid var(--marketing-line);
  }

  .marketing-step__top {
    margin-bottom: 24px;
  }

  .marketing-plan-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-plan-card__description {
    min-height: 0;
  }

  .marketing-plan-card__price {
    min-height: 112px;
  }

  .marketing-page-hero {
    padding: 126px 0 66px;
  }

  .marketing-plan-guide-hero {
    padding: 126px 0 68px;
  }

  .marketing-page-hero h1,
  .marketing-pricing-hero h1 {
    font-size: 46px;
  }

  .marketing-plan-guide-hero__copy h1 {
    font-size: 48px;
  }

  .marketing-plan-guide-hero__copy > p {
    font-size: 16px;
  }

  .marketing-plan-guide-core {
    padding: 56px 0;
  }

  .marketing-plan-guide-core h2,
  .marketing-plan-guide-group__intro h2 {
    font-size: 38px;
  }

  .marketing-plan-guide-feature {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .marketing-plan-guide-feature__copy {
    max-width: 620px;
  }

  .marketing-feature-map__item {
    min-height: 112px;
    padding: 16px;
  }

  .marketing-feature-index {
    top: 64px;
  }

  .marketing-feature-index a {
    min-height: 50px;
    padding-inline: 12px;
  }

  .marketing-feature-group {
    scroll-margin-top: 114px;
  }

  .marketing-pricing-hero {
    padding: 126px 0 48px;
  }

  .marketing-pricing-hero p {
    font-size: 16px;
  }

  .marketing-pricing-plans {
    padding-bottom: 76px;
  }

  .marketing-comparison thead th:first-child,
  .marketing-comparison tbody th {
    width: 190px;
  }

  .marketing-cta {
    padding: 72px 0;
  }

  .marketing-footer {
    padding-top: 54px;
  }

  .marketing-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }

  .marketing-footer__brand {
    grid-column: 1 / -1;
  }

  .marketing-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .marketing-profile-sample__meta {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .marketing-profile-sample__actions {
    width: 100%;
  }

  .marketing-profile-sample__actions a {
    flex: 1;
  }

  .marketing-hero h1 {
    font-size: 38px;
  }

  .marketing-hero__lead {
    max-width: 380px;
    font-size: 14px;
  }

  .marketing-hero__notes span:last-child {
    display: none;
  }

  .marketing-channel-list {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: space-between;
    gap: 14px 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  .marketing-channel {
    font-size: 12px;
  }

  .marketing-tool-stage {
    min-height: 510px;
  }

  .marketing-phone {
    width: 270px;
  }

  .marketing-mini-panel {
    width: 164px;
  }

  .marketing-mini-panel strong {
    font-size: 23px;
  }

  .marketing-mini-panel--top {
    top: 30px;
  }

  .marketing-mini-panel--bottom {
    bottom: 26px;
  }

  .marketing-audience-tabs {
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-audience-tab {
    padding: 14px;
  }

  .marketing-billing-switch {
    width: 100%;
  }

  .marketing-billing-switch button {
    min-width: 0;
  }

  .marketing-plan-card {
    padding: 20px;
  }

  .marketing-page-hero h1,
  .marketing-pricing-hero h1 {
    font-size: 40px;
  }

  .marketing-plan-guide-hero__copy h1 {
    font-size: 40px;
  }

  .marketing-plan-guide-map__head {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding-block: 10px;
  }

  .marketing-plan-guide-map__row {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .marketing-plan-guide-map__row b {
    grid-column: 2;
    margin-top: -7px;
  }

  .marketing-plan-guide-core ul {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .marketing-plan-value {
    border-bottom: 1px solid var(--marketing-line);
  }

  .marketing-plan-value:nth-child(2n) {
    border-right: 0;
  }

  .marketing-plan-value:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .marketing-plan-guide-note .marketing-container {
    align-items: flex-start;
    flex-direction: column;
  }

  .marketing-feature-map__body {
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-feature-map__item,
  .marketing-feature-map__item:nth-child(2n),
  .marketing-feature-map__item:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--marketing-line);
  }

  .marketing-feature-map__item:last-child {
    border-bottom: 0;
  }

  .marketing-footer__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-footer__brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marketing-site *,
  .marketing-site *::before,
  .marketing-site *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marketing-motion .marketing-reveal {
    opacity: 1;
    transform: none;
  }
}
