/**
 * About, Contact, and shared content pages — SaaS portal layout.
 */
.mkt-page.mkt-content-page {
  background: transparent;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.mkt-page.mkt-content-page .portal-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
}

/* ── Sub-page hero — Stripe / Linear split layout ── */
.mkt-content-hero {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(48px, 7vw, 72px) clamp(20px, 4vw, var(--mkt-content-pad-x, 32px));
  background:
    radial-gradient(ellipse 70% 55% at 12% 0%, rgba(37, 99, 235, 0.09) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 88% 18%, rgba(37, 99, 235, 0.06) 0%, transparent 52%),
    var(--portal-bg, #f6f8fa);
  border-bottom: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  overflow: hidden;
}

.mkt-content-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 37, 64, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 64, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 85%);
  pointer-events: none;
}

.mkt-content-hero__shell {
  position: relative;
  z-index: 1;
  width: min(var(--mkt-content-max, 1280px), 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(24px, 3vw, 28px);
  align-items: center;
}

@media (min-width: 900px) {
  .mkt-content-hero__shell {
    /* Balanced 50/50 split — avoids dead space between copy and panel */
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}

.mkt-content-hero__copy {
  text-align: left;
  max-width: 100%;
}

.mkt-content-hero__eyebrow {
  display: inline-flex;
  padding: 6px 12px;
  margin: 0 0 18px;
  border-radius: 6px;
  background: var(--portal-accent-soft, rgba(37, 99, 235, 0.08));
  border: 1px solid var(--portal-accent-border, rgba(37, 99, 235, 0.24));
  color: var(--portal-accent, #2563eb);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mkt-content-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.8vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--portal-text, #0a2540);
  max-width: 18ch;
}

@media (min-width: 900px) {
  .mkt-content-hero h1 {
    max-width: 22ch;
  }
}

.mkt-content-hero__accent {
  color: var(--portal-accent, #2563eb);
}

.mkt-content-hero .mkt-content-lead {
  margin: 0;
  max-width: 46ch;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.65;
  color: var(--portal-text-secondary, #334155);
}

.mkt-content-hero__highlights {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.mkt-content-hero__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--portal-text-secondary, #334155);
}

.mkt-content-hero__highlight-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--portal-surface, #ffffff);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  color: var(--portal-accent, #2563eb);
  box-shadow: var(--portal-shadow-xs, 0 1px 2px rgba(0, 0, 0, 0.04));
}

.mkt-content-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mkt-content-hero__actions .mkt-btn {
  min-width: 148px;
}

/* About — profile card visual */
.mkt-content-hero__panel {
  position: relative;
  min-height: 280px;
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
}

.mkt-content-hero__panel--about {
  min-height: 300px;
  padding: 28px 24px 56px;
  border-radius: var(--portal-radius-lg, 16px);
  background: var(--portal-surface, #ffffff);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  box-shadow: var(--portal-shadow-card, 0 1px 2px rgba(0, 0, 0, 0.04));
}

.mkt-content-hero__card {
  position: absolute;
  left: 50%;
  border-radius: 14px;
  box-shadow: var(--portal-shadow-md, 0 4px 12px rgba(0, 0, 0, 0.06));
}

.mkt-content-hero__card--back {
  top: 42%;
  width: 220px;
  height: 132px;
  margin-left: -88px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  transform: translateY(-50%) rotate(-8deg);
  opacity: 0.92;
}

.mkt-content-hero__card--front {
  top: 46%;
  width: 240px;
  min-height: 148px;
  margin-left: -120px;
  padding: 18px;
  background: var(--portal-surface, #ffffff);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  transform: translateY(-50%) rotate(4deg);
}

.mkt-content-hero__card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e2e8f0 0%, #cbd5e1 100%);
}

.mkt-content-hero__card-lines {
  display: grid;
  gap: 8px;
}

.mkt-content-hero__card-lines span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: var(--portal-surface-subtle, #f1f5f9);
}

.mkt-content-hero__card-lines span:nth-child(1) { width: 100%; }
.mkt-content-hero__card-lines span:nth-child(2) { width: 78%; }
.mkt-content-hero__card-lines span:nth-child(3) { width: 56%; background: rgba(37, 99, 235, 0.18); }

.mkt-content-hero__card-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: #047857;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mkt-content-hero__metrics {
  position: absolute;
  right: 12px;
  bottom: 12px;
  list-style: none;
  margin: 0;
  padding: 10px 12px;
  display: flex;
  gap: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  box-shadow: var(--portal-shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.06));
}

.mkt-content-hero__metrics li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 44px;
}

.mkt-content-hero__metrics strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--portal-text, #0a2540);
  line-height: 1.1;
}

.mkt-content-hero__metrics span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--portal-text-muted, #475569);
}

/* Contact — info panel */
.mkt-content-hero__panel--contact {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 24px);
  border-radius: var(--portal-radius-lg, 16px);
  background: var(--portal-surface, #ffffff);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  box-shadow: var(--portal-shadow-card, 0 1px 2px rgba(0, 0, 0, 0.04));
}

.mkt-content-hero__info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--portal-surface-subtle, #f1f5f9);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
}

.mkt-content-hero__info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--portal-accent-soft, rgba(37, 99, 235, 0.08));
  color: var(--portal-accent, #2563eb);
}

.mkt-content-hero__info-label {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--portal-text-muted, #475569);
}

.mkt-content-hero__info-value {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--portal-text, #0a2540);
  overflow-wrap: anywhere;
}

/* Themes — palette swatches */
.mkt-content-hero__panel--themes {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3vw, 28px);
  border-radius: var(--portal-radius-lg, 16px);
  background: var(--portal-surface, #ffffff);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  box-shadow: var(--portal-shadow-card, 0 1px 2px rgba(0, 0, 0, 0.04));
}

.mkt-content-hero__swatches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mkt-content-hero__swatch {
  display: block;
  aspect-ratio: 1;
  border-radius: 14px;
  background: var(--swatch, #2563eb);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 8px 20px rgba(10, 37, 64, 0.12);
}

.mkt-content-hero__swatch:nth-child(2) { transform: translateY(6px); }
.mkt-content-hero__swatch:nth-child(4) { transform: translateY(-4px); }
.mkt-content-hero__swatch:nth-child(5) { transform: translateY(8px); }

/* Designs — layout blocks */
.mkt-content-hero__panel--designs {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3vw, 28px);
  border-radius: var(--portal-radius-lg, 16px);
  background: var(--portal-surface, #ffffff);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  box-shadow: var(--portal-shadow-card, 0 1px 2px rgba(0, 0, 0, 0.04));
}

.mkt-content-hero__layouts {
  display: grid;
  gap: 14px;
}

.mkt-content-hero__layout {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  background: var(--portal-surface-subtle, #f1f5f9);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
}

.mkt-content-hero__layout span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(10, 37, 64, 0.08);
}

.mkt-content-hero__layout span:first-child {
  width: 42%;
  height: 14px;
  background: rgba(37, 99, 235, 0.22);
}

.mkt-content-hero__layout--alt {
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 12px;
}

.mkt-content-hero__layout--alt span:first-child {
  width: 100%;
  height: 72px;
  border-radius: 10px;
  background: linear-gradient(180deg, #e2e8f0 0%, #cbd5e1 100%);
}

.mkt-content-hero__layout--alt span:last-child {
  width: 72%;
}

/* Connections — reuses info panel shell */
.mkt-content-hero__panel--connections {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 24px);
  border-radius: var(--portal-radius-lg, 16px);
  background: var(--portal-surface, #ffffff);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  box-shadow: var(--portal-shadow-card, 0 1px 2px rgba(0, 0, 0, 0.04));
}

/* Profile — settings card visual */
.mkt-content-hero__panel--profile {
  position: relative;
  min-height: 300px;
  padding: 28px 24px 56px;
  border-radius: var(--portal-radius-lg, 16px);
  background: var(--portal-surface, #ffffff);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  box-shadow: var(--portal-shadow-card, 0 1px 2px rgba(0, 0, 0, 0.04));
}

.mkt-content-hero__profile-card {
  position: absolute;
  top: 44%;
  left: 50%;
  width: 240px;
  min-height: 148px;
  margin-left: -120px;
  padding: 18px;
  border-radius: 14px;
  background: var(--portal-surface, #ffffff);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  box-shadow: var(--portal-shadow-md, 0 4px 12px rgba(0, 0, 0, 0.06));
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  transform: translateY(-50%) rotate(3deg);
}

.mkt-content-hero__profile-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, #dbeafe 0%, #93c5fd 100%);
}

.mkt-content-hero__profile-lines {
  display: grid;
  gap: 8px;
}

.mkt-content-hero__profile-lines span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: var(--portal-surface-subtle, #f1f5f9);
}

.mkt-content-hero__profile-lines span:nth-child(1) { width: 100%; }
.mkt-content-hero__profile-lines span:nth-child(2) { width: 78%; }
.mkt-content-hero__profile-lines span:nth-child(3) { width: 56%; background: rgba(37, 99, 235, 0.18); }

.mkt-content-hero__profile-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.24);
  color: var(--portal-accent, #2563eb);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mkt-content-hero__panel-caption {
  margin: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--portal-text-muted, #475569);
}

@media (max-width: 899px) {
  .mkt-content-hero__copy {
    text-align: center;
  }

  .mkt-content-hero h1 {
    max-width: none;
  }

  .mkt-content-hero .mkt-content-lead {
    margin-inline: auto;
  }

  .mkt-content-hero__highlights li {
    text-align: left;
  }

  .mkt-content-hero__actions {
    justify-content: center;
  }

  .mkt-content-hero__panel--about,
  .mkt-content-hero__panel--profile {
    min-height: 260px;
    max-width: 360px;
    margin-inline: auto;
    width: 100%;
  }

  .mkt-content-hero__panel--themes,
  .mkt-content-hero__panel--designs,
  .mkt-content-hero__panel--connections {
    max-width: 380px;
    margin-inline: auto;
    width: 100%;
  }
}

/* ── Main content shell ── */
.mkt-content-main {
  width: min(var(--mkt-content-max, 1280px), 100%);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 56px) clamp(20px, 4vw, var(--mkt-content-pad-x, 32px)) clamp(56px, 7vw, 80px);
}

.mkt-content-section {
  margin-bottom: clamp(40px, 5vw, 56px);
}

.mkt-content-section--alt {
  padding: clamp(28px, 4vw, 36px);
  border-radius: var(--portal-radius-lg, 16px);
  background: var(--portal-surface, #ffffff);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  box-shadow: var(--portal-shadow-card, 0 1px 2px rgba(0, 0, 0, 0.04));
}

.mkt-content-section__head {
  max-width: 52ch;
  margin-bottom: clamp(24px, 3vw, 32px);
}

.mkt-content-section__eyebrow {
  display: inline-flex;
  padding: 5px 12px;
  margin: 0 0 14px;
  border-radius: 6px;
  background: var(--portal-accent-soft, rgba(37, 99, 235, 0.08));
  border: 1px solid var(--portal-accent-border, rgba(37, 99, 235, 0.24));
  color: var(--portal-accent, #2563eb);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mkt-content-section__head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--portal-text, #0a2540);
}

.mkt-content-section__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--portal-text-secondary, #334155);
}

/* About — mission stats */
.mkt-content-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .mkt-content-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.mkt-content-stats li {
  padding: 20px 22px;
  border-radius: 12px;
  background: var(--portal-surface, #ffffff);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  box-shadow: var(--portal-shadow-card, 0 1px 2px rgba(0, 0, 0, 0.04));
}

.mkt-content-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--portal-text, #0a2540);
}

.mkt-content-stats span {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--portal-text-secondary, #334155);
}

/* About — capability grid */
.mkt-about-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

@media (min-width: 700px) {
  .mkt-about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mkt-about-card {
  padding: 22px;
  border-radius: 12px;
  background: var(--portal-surface-subtle, #f1f5f9);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mkt-about-card:hover {
  border-color: var(--portal-accent-border, rgba(37, 99, 235, 0.24));
  box-shadow: var(--portal-shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.06));
}

.mkt-about-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: var(--portal-surface, #ffffff);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  color: var(--portal-accent, #2563eb);
  box-shadow: var(--portal-shadow-xs, 0 1px 2px rgba(0, 0, 0, 0.04));
}

.mkt-about-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--portal-text, #0a2540);
}

.mkt-about-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--portal-text-secondary, #334155);
}

/* About — creator economy band */
.mkt-content-band {
  display: grid;
  gap: 28px;
  padding: clamp(28px, 4vw, 36px);
  margin-bottom: clamp(40px, 5vw, 56px);
  border-radius: var(--portal-radius-lg, 16px);
  background:
    radial-gradient(ellipse 80% 80% at 100% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 55%),
    var(--portal-surface, #ffffff);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  box-shadow: var(--portal-shadow-card, 0 1px 2px rgba(0, 0, 0, 0.04));
}

@media (min-width: 768px) {
  .mkt-content-band {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: end;
    gap: 32px;
  }
}

.mkt-content-band__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 2.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--portal-text, #0a2540);
}

.mkt-content-band__copy p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--portal-text-secondary, #334155);
}

.mkt-content-band__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mkt-content-band__tags li {
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--portal-surface-subtle, #f1f5f9);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--portal-text-secondary, #334155);
}

/* Contact — channel cards */
.mkt-contact-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .mkt-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mkt-contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(22px, 3vw, 26px);
  border-radius: 12px;
  background: var(--portal-surface-subtle, #f1f5f9);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mkt-contact-card:hover {
  border-color: var(--portal-accent-border, rgba(37, 99, 235, 0.24));
  box-shadow: var(--portal-shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.06));
}

.mkt-contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
  border-radius: 10px;
  background: var(--portal-surface, #ffffff);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  color: var(--portal-accent, #2563eb);
}

.mkt-contact-card__label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--portal-text-muted, #475569);
}

.mkt-contact-card__value {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--portal-accent, #2563eb);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.mkt-contact-card__value:hover {
  color: var(--portal-accent-hover, #1d4ed8);
  text-decoration: underline;
}

.mkt-contact-card__hint {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--portal-text-secondary, #334155);
}

/* Contact — location */
.mkt-location-card {
  display: grid;
  gap: 0;
  border-radius: var(--portal-radius-lg, 16px);
  overflow: hidden;
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  background: var(--portal-surface, #ffffff);
  box-shadow: var(--portal-shadow-card, 0 1px 2px rgba(0, 0, 0, 0.04));
}

@media (min-width: 700px) {
  .mkt-location-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

.mkt-location-card__map {
  position: relative;
  min-height: 200px;
  background:
    radial-gradient(circle at 30% 40%, rgba(37, 99, 235, 0.12) 0%, transparent 45%),
    linear-gradient(180deg, var(--portal-surface-subtle, #f1f5f9) 0%, #e8eef5 100%);
  border-bottom: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
}

@media (min-width: 700px) {
  .mkt-location-card__map {
    min-height: 240px;
    border-bottom: none;
    border-right: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  }
}

.mkt-location-card__pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--portal-surface, #ffffff);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  color: var(--portal-accent, #2563eb);
  box-shadow: var(--portal-shadow-md, 0 4px 12px rgba(0, 0, 0, 0.06));
}

.mkt-location-card__address {
  padding: clamp(22px, 3vw, 28px);
  font-style: normal;
}

.mkt-location-card__label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--portal-text-muted, #475569);
}

.mkt-location-card__address p:last-child {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--portal-text-secondary, #334155);
}

/* Contact — tips list */
.mkt-contact-tips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

@media (min-width: 700px) {
  .mkt-contact-tips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.mkt-contact-tips li {
  padding: 18px 20px;
  border-radius: 12px;
  background: var(--portal-surface, #ffffff);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  box-shadow: var(--portal-shadow-card, 0 1px 2px rgba(0, 0, 0, 0.04));
}

.mkt-contact-tips strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--portal-text, #0a2540);
}

.mkt-contact-tips span {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--portal-text-secondary, #334155);
}

/* Shared bottom CTA */
.mkt-content-cta {
  text-align: center;
  padding: clamp(32px, 5vw, 44px) clamp(24px, 4vw, 40px);
  border-radius: var(--portal-radius-lg, 16px);
  background: var(--portal-surface, #ffffff);
  border: 1px solid var(--portal-border, rgba(0, 0, 0, 0.08));
  box-shadow: var(--portal-shadow-card, 0 1px 2px rgba(0, 0, 0, 0.04));
}

.mkt-content-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--portal-text, #0a2540);
}

.mkt-content-cta p {
  margin: 0 auto 24px;
  max-width: 40ch;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--portal-text-secondary, #334155);
}

.mkt-content-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Executive theme — readable text over legacy dark-hero rules */
[data-portal-theme="executive"] .mkt-content-page .mkt-content-hero {
  width: 100%;
  max-width: none;
  background:
    radial-gradient(ellipse 70% 55% at 12% 0%, rgba(37, 99, 235, 0.09) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 88% 18%, rgba(37, 99, 235, 0.06) 0%, transparent 52%),
    var(--portal-bg);
  color: var(--portal-text);
  border-bottom: 1px solid var(--portal-border);
}

[data-portal-theme="executive"] .mkt-content-page .mkt-content-hero h1,
[data-portal-theme="executive"] .mkt-content-page .mkt-content-hero .mkt-content-lead,
[data-portal-theme="executive"] .mkt-content-page .mkt-content-hero__highlights li {
  background: none;
  -webkit-text-fill-color: unset;
}

[data-portal-theme="executive"] .mkt-content-page .mkt-content-hero h1 {
  color: var(--portal-text);
}

[data-portal-theme="executive"] .mkt-content-page .mkt-content-hero .mkt-content-lead,
[data-portal-theme="executive"] .mkt-content-page .mkt-content-hero__highlights li {
  color: var(--portal-text-secondary);
}

[data-portal-theme="executive"] .mkt-content-page .mkt-content-hero__accent {
  color: var(--portal-accent);
}

[data-portal-theme="executive"] .mkt-content-page .mkt-content-hero__eyebrow {
  background: var(--portal-accent-soft);
  border: 1px solid var(--portal-accent-border);
  color: var(--portal-accent);
}

[data-portal-theme="executive"] .mkt-content-page .mkt-content-section__lead,
[data-portal-theme="executive"] .mkt-content-page .mkt-content-stats span,
[data-portal-theme="executive"] .mkt-content-page .mkt-about-card p,
[data-portal-theme="executive"] .mkt-content-page .mkt-content-band__copy p,
[data-portal-theme="executive"] .mkt-content-page .mkt-content-band__tags li,
[data-portal-theme="executive"] .mkt-content-page .mkt-contact-card__hint,
[data-portal-theme="executive"] .mkt-content-page .mkt-location-card__address p,
[data-portal-theme="executive"] .mkt-content-page .mkt-contact-tips span,
[data-portal-theme="executive"] .mkt-content-page .mkt-content-cta p {
  color: var(--portal-text-secondary);
}

[data-portal-theme="executive"] .mkt-content-page .mkt-content-section__head h2,
[data-portal-theme="executive"] .mkt-content-page .mkt-content-stats strong,
[data-portal-theme="executive"] .mkt-content-page .mkt-about-card h3,
[data-portal-theme="executive"] .mkt-content-page .mkt-content-band__copy h2,
[data-portal-theme="executive"] .mkt-content-page .mkt-contact-tips strong,
[data-portal-theme="executive"] .mkt-content-page .mkt-content-cta h2 {
  color: var(--portal-text);
}

[data-portal-theme="executive"] .mkt-content-page .mkt-content-section__eyebrow,
[data-portal-theme="executive"] .mkt-content-page .mkt-content-band .mkt-content-section__eyebrow {
  color: var(--portal-accent);
  background: var(--portal-accent-soft);
  border-color: var(--portal-accent-border);
}

[data-portal-theme="executive"] .mkt-content-page .mkt-contact-card__value {
  color: var(--portal-accent);
}
