* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.marketing-page {
  --mk-ink: #122033;
  --mk-muted: #5b687a;
  --mk-line: #dce5eb;
  --mk-soft: #f5f9fb;
  --mk-blue: #246bfe;
  --mk-blue-dark: #174cc7;
  --mk-purple: #7437ff;
  --mk-purple-dark: #4a24c9;
  --mk-navy: #101a35;
  --mk-cyan: #06aebc;
  --mk-green: #2563eb;
  --mk-coral: #7437ff;
  --mk-yellow: #edb948;
  --mk-surface: #ffffff;

  margin: 0;
  background: #fbfcff;
  color: var(--mk-ink);
  font-family: var(--gp-font-sans);
  line-height: 1.5;
  overflow-x: hidden;
}

body.marketing-page a {
  color: inherit;
  text-decoration: none;
}

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

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

.marketing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 30px;
  border-bottom: 1px solid rgba(18, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.marketing-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.marketing-logo img {
  width: 174px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.marketing-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1 1 auto;
  color: #344258;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.marketing-nav a,
.login-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.marketing-nav a:hover,
.login-link:hover {
  color: var(--mk-blue);
}

.marketing-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 800;
  min-width: 0;
}

.header-cta,
.primary-cta,
.secondary-cta,
.pricing-card a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta,
.primary-cta {
  background: linear-gradient(135deg, var(--mk-blue), var(--mk-purple));
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(80, 75, 255, 0.24);
}

.header-cta {
  padding: 0 18px;
}

.primary-cta {
  padding: 0 22px;
}

.header-cta:hover,
.primary-cta:hover {
  background: linear-gradient(135deg, var(--mk-blue-dark), var(--mk-purple-dark));
}

.secondary-cta {
  padding: 0 20px;
  border: 1px solid rgba(18, 32, 51, 0.18);
  background: rgba(255, 255, 255, 0.76);
  color: var(--mk-ink);
}

.secondary-cta:hover {
  border-color: rgba(36, 107, 254, 0.36);
  color: var(--mk-blue);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.82fr);
  gap: 42px;
  align-items: center;
  padding: 78px 7vw 70px;
  border-bottom: 1px solid rgba(18, 32, 51, 0.08);
  background:
    linear-gradient(125deg, rgba(16, 26, 53, 0.99) 0%, rgba(27, 45, 103, 0.98) 46%, rgba(81, 50, 197, 0.94) 100%),
    var(--mk-navy);
  color: #ffffff;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  pointer-events: none;
}

.hero::before {
  width: 72%;
  height: 46%;
  background: linear-gradient(135deg, rgba(19, 197, 248, 0.12), rgba(116, 55, 255, 0.16));
  clip-path: polygon(0 20%, 100% 0, 78% 100%, 0 100%);
}

.hero::after {
  top: 0;
  right: 0;
  left: auto;
  width: 44%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 64%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 62% 100%);
}

.hero-scene {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 620px;
}

.product-preview {
  position: relative;
  width: 100%;
  height: 390px;
  overflow: hidden;
  border: 1px solid rgba(18, 32, 51, 0.13);
  border-radius: 8px;
  background: #0e1830;
  box-shadow: 0 36px 90px rgba(18, 32, 51, 0.22);
}

.preview-topbar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  color: #d8f4f6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #111f3b;
  font-size: 0.8rem;
}

.preview-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mk-coral);
}

.preview-topbar span:nth-child(2) {
  background: var(--mk-yellow);
}

.preview-topbar span:nth-child(3) {
  background: var(--mk-green);
}

.preview-topbar strong {
  margin-left: 8px;
}

.preview-body {
  display: grid;
  grid-template-columns: 84px 1fr;
  height: calc(100% - 44px);
}

.preview-rail {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.preview-rail i {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.preview-rail i:first-child {
  background: linear-gradient(135deg, var(--mk-cyan), var(--mk-blue));
}

.preview-main {
  display: grid;
  gap: 12px;
  padding: 18px;
  align-content: start;
}

.preview-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  gap: 16px;
}

.preview-panel,
.preview-grid div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.preview-panel {
  padding: 18px;
}

.preview-panel small,
.preview-grid small {
  display: block;
  color: #a8c4d2;
  font-weight: 800;
}

.preview-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 2rem;
  line-height: 1.1;
}

.preview-panel p {
  margin: 14px 0 0;
  color: #d9e8ef;
}

.preview-chart {
  height: 78px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 10px;
  margin-top: 20px;
}

.preview-chart span {
  display: block;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--mk-cyan), var(--mk-purple));
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.preview-grid div {
  padding: 16px;
}

.preview-grid strong {
  display: block;
  margin-top: 8px;
  line-height: 1.25;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 820px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mk-cyan);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: 4.6rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.hero-checks {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  line-height: 1.45;
}

.hero-checks span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(19, 197, 248, 0.18);
  color: #9df3ff;
  font-weight: 900;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 700;
  font-size: 0.94rem;
}

.launch-flow-card {
  position: absolute;
  top: 28px;
  right: 26px;
  z-index: 3;
  width: min(410px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(9, 24, 52, 0.72);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.launch-flow-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.launch-flow-brand img {
  width: 126px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 26px rgba(19, 197, 248, 0.16));
}

.launch-flow-brand strong {
  color: #ffffff;
  font-size: 0.95rem;
}

.launch-flow-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.launch-flow-list li {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 20px;
}

.launch-flow-list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.launch-flow-list span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mk-cyan), var(--mk-purple));
  color: #ffffff;
  font-weight: 900;
}

.launch-flow-list strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
}

.launch-flow-list small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.83rem;
  line-height: 1.45;
}

.hero-screen-stack {
  position: absolute;
  inset: 0;
  min-width: 0;
}

.screen-card {
  position: absolute;
  width: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.dashboard-screen {
  left: 0;
  top: 98px;
  height: 250px;
}

.campaign-screen {
  left: 58px;
  bottom: 72px;
  height: 210px;
}

.seo-screen {
  right: 0;
  bottom: 10px;
  width: 250px;
  height: 188px;
}

.screen-topbar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
}

.screen-topbar span,
.showcase-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #13c5f8;
}

.screen-topbar span:nth-child(2),
.showcase-topbar span:nth-child(2) {
  background: #7437ff;
}

.screen-topbar span:nth-child(3),
.showcase-topbar span:nth-child(3) {
  background: #bda9ff;
}

.screen-topbar strong {
  margin-left: 6px;
}

.screen-metrics {
  padding: 18px;
}

.screen-metrics b {
  display: block;
  font-size: 3rem;
  line-height: 1;
}

.screen-metrics small {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
}

.screen-chart {
  height: 86px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
  padding: 0 18px 18px;
}

.screen-chart i {
  display: block;
  border-radius: 9px 9px 0 0;
  background: linear-gradient(180deg, #13c5f8, #7437ff);
}

.campaign-lines {
  display: grid;
  gap: 12px;
  padding: 20px 18px 14px;
}

.campaign-lines span {
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.13);
}

.campaign-lines span:nth-child(2) {
  width: 76%;
}

.campaign-lines span:nth-child(3) {
  width: 58%;
}

.campaign-pill {
  width: fit-content;
  margin: 0 18px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(19, 197, 248, 0.18);
  color: #dff9ff;
  font-size: 0.82rem;
  font-weight: 900;
}

.seo-score {
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px auto 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(16, 26, 53, 0.95) 58%, transparent 59%),
    conic-gradient(#13c5f8 0 76%, rgba(255, 255, 255, 0.12) 76% 100%);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
}

.seo-screen p {
  margin: 12px 18px 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-weight: 800;
}

.audience-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 24px;
  background: #ffffff;
  border-bottom: 1px solid rgba(18, 32, 51, 0.08);
}

.audience-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  background: #eef8f7;
  color: #263d9b;
  font-weight: 800;
  font-size: 0.9rem;
}

.results-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(18, 32, 51, 0.1);
  border-bottom: 1px solid rgba(18, 32, 51, 0.08);
}

.results-strip article {
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 24px 28px;
  background: #ffffff;
}

.results-strip strong {
  color: var(--mk-blue);
  font-size: 2rem;
  line-height: 1;
}

.results-strip article:nth-child(even) strong {
  color: var(--mk-purple);
}

.results-strip span {
  color: var(--mk-muted);
  font-weight: 800;
  line-height: 1.35;
}

.section,
.workflow-band,
.pricing-section,
.final-cta {
  padding: 88px 28px;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
}

#product,
#workflow,
#resources,
#company,
#faq,
#pricing {
  scroll-margin-top: 110px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: 2.65rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--mk-muted);
  font-size: 1.04rem;
}

.screen-showcase {
  max-width: 1240px;
}

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

.showcase-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: #ffffff;
}

.showcase-card.featured {
  border-color: rgba(116, 55, 255, 0.28);
  box-shadow: 0 18px 54px rgba(80, 75, 255, 0.13);
}

.showcase-browser {
  overflow: hidden;
  min-height: 248px;
  border-radius: 8px;
  background: #101a35;
  color: #ffffff;
}

.showcase-topbar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.showcase-topbar strong {
  margin-left: 6px;
}

.showcase-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
}

.showcase-dashboard div:not(.showcase-wave) {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.showcase-dashboard strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.showcase-dashboard span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
}

.showcase-wave {
  grid-column: 1 / -1;
  height: 96px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(19, 197, 248, 0.32), rgba(116, 55, 255, 0.12)),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.08) 42px 43px),
    linear-gradient(135deg, transparent 0 28%, rgba(19, 197, 248, 0.74) 28% 31%, transparent 31% 52%, rgba(116, 55, 255, 0.8) 52% 55%, transparent 55%);
}

.showcase-chat {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.showcase-chat p {
  margin: 0;
  padding: 13px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.showcase-chat p:nth-child(2) {
  margin-left: 36px;
  background: linear-gradient(135deg, rgba(36, 107, 254, 0.5), rgba(116, 55, 255, 0.44));
}

.showcase-chat p:nth-child(3) {
  width: 74%;
}

.showcase-seo {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 18px;
}

.score-ring {
  width: 98px;
  height: 98px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #101a35 58%, transparent 59%),
    conic-gradient(#13c5f8 0 72%, #7437ff 72% 91%, rgba(255, 255, 255, 0.12) 91% 100%);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
}

.showcase-seo ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.showcase-seo li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.showcase-seo li::before {
  content: "✓";
  color: #13c5f8;
  font-weight: 900;
  margin-right: 8px;
}

.showcase-card h3 {
  margin: 18px 0 0;
  font-size: 1.18rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.showcase-card p {
  margin: 10px 0 4px;
  color: var(--mk-muted);
}

.three-column,
.feature-grid,
.use-case-grid,
.detail-grid,
.faq-grid,
.pricing-grid,
.resources-grid,
.company-grid {
  display: grid;
  gap: 18px;
}

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

.three-column article,
.feature-card,
.use-case-grid article,
.detail-grid article,
.faq-grid article,
.pricing-card,
.resource-card,
.company-grid article {
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: var(--mk-surface);
}

.three-column article {
  min-height: 210px;
  padding: 26px;
}

.three-column h3,
.feature-card h3,
.use-case-grid h3,
.detail-grid h3,
.faq-grid h3,
.pricing-card h3,
.resource-card h3,
.company-grid h3,
.steps h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.three-column p,
.feature-card p,
.use-case-grid p,
.detail-grid p,
.faq-grid p,
.pricing-card p,
.resource-card p,
.company-grid p,
.steps p {
  margin: 12px 0 0;
  color: var(--mk-muted);
}

.product-section {
  max-width: 1220px;
}

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

.feature-card {
  min-height: 260px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 4px;
  background: var(--mk-cyan);
}

.feature-card:nth-child(2)::after,
.feature-card:nth-child(5)::after {
  background: var(--mk-blue);
}

.feature-card:nth-child(3)::after,
.feature-card:nth-child(6)::after {
  background: var(--mk-purple);
}

.feature-card:nth-child(7)::after {
  background: linear-gradient(90deg, var(--mk-blue), var(--mk-purple));
}

.feature-index {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: #eef5ff;
  color: var(--mk-blue);
  font-weight: 900;
}

.workflow-band {
  background: #122033;
  color: #ffffff;
}

.workflow-band .section-heading,
.pricing-section .section-heading,
.final-cta {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.workflow-band .section-heading p:not(.eyebrow),
.workflow-band .steps p {
  color: #b9c8d5;
}

.steps {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.steps article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.steps span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(6, 174, 188, 0.18);
  color: #9df3f4;
  font-weight: 900;
  font-size: 0.82rem;
}

.use-case-section {
  max-width: 1220px;
}

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

.use-case-grid article {
  min-height: 230px;
  padding: 24px;
}

.section-inline-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.detail-section {
  max-width: 1220px;
}

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

.detail-grid article,
.faq-grid article {
  padding: 24px;
}

.detail-grid article {
  min-height: 260px;
}

.resources-section,
.company-section {
  max-width: 1220px;
}

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

.resource-card,
.company-grid article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.resource-card {
  position: relative;
  overflow: hidden;
}

.resource-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mk-blue), var(--mk-purple));
}

.resource-card span {
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(36, 107, 254, 0.1);
  color: var(--mk-blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-card-featured {
  border-color: rgba(116, 55, 255, 0.3);
  background:
    linear-gradient(135deg, rgba(36, 107, 254, 0.08), rgba(116, 55, 255, 0.08)),
    #ffffff;
}

.resource-card a,
.company-grid a {
  margin-top: auto;
  color: var(--mk-blue);
  font-weight: 900;
}

.resource-card a:hover,
.company-grid a:hover {
  color: var(--mk-purple);
}

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

.company-grid article {
  min-height: 220px;
}

.faq-section {
  max-width: 1220px;
}

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

.faq-grid article {
  min-height: 190px;
}

.pricing-section {
  background: #f6f8ff;
}

.pricing-section .section-heading {
  margin-bottom: 34px;
}

.pricing-grid {
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.pricing-card.highlighted {
  border-color: rgba(36, 107, 254, 0.28);
  box-shadow: 0 18px 50px rgba(18, 32, 51, 0.11);
}

.pricing-card a {
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid rgba(18, 32, 51, 0.14);
  color: var(--mk-blue);
}

.pricing-card.highlighted a {
  border-color: var(--mk-blue);
  background: var(--mk-blue);
  color: #ffffff;
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(90deg, rgba(36, 107, 254, 0.08), rgba(116, 55, 255, 0.1)),
    #ffffff;
}

.final-cta h2 {
  max-width: 840px;
  margin: 0 auto 26px;
}

.lead-capture-form {
  max-width: 840px;
  margin: 34px auto 0;
  padding: 24px;
  border: 1px solid rgba(18, 32, 51, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px rgba(18, 32, 51, 0.1);
  text-align: left;
}

.lead-form-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.lead-form-heading h3 {
  margin: 0;
  color: var(--mk-ink);
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.lead-form-heading p {
  max-width: 440px;
  margin: 0;
  color: var(--mk-muted);
  font-weight: 700;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-capture-form label {
  display: grid;
  gap: 7px;
  color: #2d3b4f;
  font-size: 0.9rem;
  font-weight: 900;
}

.lead-capture-form input,
.lead-capture-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(18, 32, 51, 0.16);
  border-radius: 8px;
  background: #ffffff;
  color: var(--mk-ink);
  font: inherit;
  font-weight: 700;
}

.lead-capture-form input {
  min-height: 46px;
  padding: 0 13px;
}

.lead-capture-form textarea {
  resize: vertical;
  padding: 12px 13px;
}

.lead-capture-form input:focus,
.lead-capture-form textarea:focus {
  outline: 3px solid rgba(36, 107, 254, 0.18);
  border-color: rgba(36, 107, 254, 0.54);
}

.lead-message {
  margin-top: 14px;
}

.lead-consent-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 16px;
}

.lead-consent-row label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
}

.lead-consent-row input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  accent-color: var(--mk-blue);
}

.lead-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.lead-form-actions button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 22px;
  background: var(--mk-ink);
  color: #ffffff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.lead-form-actions button:hover {
  background: var(--mk-blue);
}

.lead-form-actions p {
  margin: 0;
  color: var(--mk-muted);
  font-weight: 800;
}

.lead-form-actions p[data-tone="success"] {
  color: var(--mk-green);
}

.lead-form-actions p[data-tone="error"] {
  color: #b83d2a;
}

.content-meta-band {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 18px 28px;
  background: #ffffff;
  border-top: 1px solid rgba(18, 32, 51, 0.08);
  color: var(--mk-muted);
  font-size: 0.92rem;
}

.content-meta-band p {
  margin: 0;
}

.content-meta-band strong {
  color: var(--mk-ink);
}

.pseo-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: center;
  padding: 76px 28px 64px;
  border-bottom: 1px solid rgba(18, 32, 51, 0.08);
  background:
    linear-gradient(180deg, rgba(250, 253, 255, 0.98) 0%, rgba(238, 250, 247, 0.95) 100%),
    #f6fbfb;
}

.pseo-directory-hero {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
  min-height: 460px;
  text-align: center;
}

.pseo-hero-copy {
  max-width: 790px;
  min-width: 0;
}

.pseo-directory-hero .pseo-hero-copy {
  margin: 0 auto;
}

.pseo-hero h1 {
  margin: 0;
  font-size: 3.75rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.pseo-hero p {
  margin: 20px 0 0;
  color: #415064;
  font-size: 1.13rem;
}

.pseo-snapshot {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(18, 32, 51, 0.12);
  border-radius: 8px;
  background: #0e1830;
  color: #ffffff;
  box-shadow: 0 28px 80px rgba(18, 32, 51, 0.2);
}

.pseo-snapshot span {
  color: #9df3f4;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.pseo-snapshot strong {
  display: block;
  margin-top: 10px;
  font-size: 1.85rem;
  line-height: 1.15;
}

.pseo-snapshot p {
  color: #c7d8e1;
  font-size: 1rem;
}

.pseo-snapshot ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pseo-snapshot li,
.pseo-proof-list span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  font-weight: 900;
}

.pseo-snapshot li {
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.09);
  color: #dff8f8;
}

.pseo-three-grid,
.pseo-link-grid {
  display: grid;
  gap: 18px;
}

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

.pseo-three-grid article,
.pseo-link-card {
  min-width: 0;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: var(--mk-surface);
}

.pseo-three-grid article {
  min-height: 210px;
  padding: 26px;
}

.pseo-three-grid h3,
.pseo-link-card h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.pseo-three-grid p,
.pseo-link-card p {
  margin: 12px 0 0;
  color: var(--mk-muted);
}

.pseo-workflow-band .steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pseo-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pseo-proof-list span {
  padding: 0 13px;
  background: #eef8f7;
  color: #1b5860;
}

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

.pseo-link-card {
  min-height: 190px;
  padding: 24px;
}

.pseo-link-card a:hover {
  color: var(--mk-blue);
}

.resource-page .marketing-header {
  position: sticky;
}

.resource-hero,
.blog-article-hero {
  padding: 78px 28px 70px;
  background:
    linear-gradient(135deg, rgba(16, 26, 53, 0.98), rgba(36, 56, 122, 0.96) 52%, rgba(92, 58, 214, 0.94)),
    var(--mk-navy);
  color: #ffffff;
}

.resource-hero-inner,
.blog-article-hero-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.resource-hero h1,
.blog-article-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.resource-hero p,
.blog-article-hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.blog-list-section {
  max-width: 1180px;
}

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

.blog-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: #ffffff;
}

.blog-card span,
.article-meta {
  color: var(--mk-blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 16px 0 0;
  font-size: 1.45rem;
  line-height: 1.22;
}

.blog-card p {
  margin: 12px 0 0;
  color: var(--mk-muted);
}

.blog-card a {
  margin-top: auto;
  color: var(--mk-blue);
  font-weight: 900;
}

.blog-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 28px;
}

.blog-article h2 {
  margin: 36px 0 0;
  font-size: 2rem;
  line-height: 1.18;
}

.blog-article p,
.blog-article li {
  color: var(--mk-muted);
  font-size: 1.04rem;
}

.blog-article p {
  margin: 14px 0 0;
}

.blog-article ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 1.2rem;
}

.article-callout {
  margin: 32px 0;
  padding: 22px;
  border: 1px solid rgba(36, 107, 254, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 107, 254, 0.08), rgba(116, 55, 255, 0.08)),
    #ffffff;
}

.article-callout strong {
  display: block;
  color: var(--mk-ink);
  font-size: 1.05rem;
}

.blog-article-hero .article-meta {
  color: #b9c6ff;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.marketing-footer {
  background:
    radial-gradient(circle at 10% 0%, rgba(36, 107, 254, 0.28), transparent 30%),
    radial-gradient(circle at 84% 4%, rgba(116, 55, 255, 0.28), transparent 34%),
    #081227;
  color: rgba(255, 255, 255, 0.88);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 28px 32px;
}

.footer-directory {
  display: grid;
  grid-template-columns: minmax(250px, 1.15fr) repeat(3, minmax(180px, 0.82fr));
  gap: 34px;
  padding-bottom: 38px;
}

.footer-brand-block img {
  width: 168px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.footer-brand-block p {
  max-width: 300px;
  margin: 14px 0 18px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand-block a {
  color: #ffffff;
  font-weight: 800;
}

.footer-brand-block a:hover,
.footer-link-group a:hover,
.footer-link-group .footer-cookie-button:hover,
.footer-link-grid a:hover,
.footer-guide-grid a:hover,
.footer-bottom a:hover {
  color: #aebeff;
}

.footer-link-group,
.footer-link-grid,
.footer-guide-grid {
  display: grid;
  gap: 12px;
}

.footer-link-group a,
.footer-link-group .footer-cookie-button,
.footer-link-grid a,
.footer-guide-grid a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  line-height: 1.35;
}

.footer-link-group h2,
.footer-link-section h2,
.footer-link-grid h3 {
  width: fit-content;
  margin: 0 0 10px;
  color: #9df3ff;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0;
  border-bottom: 2px solid rgba(122, 76, 255, 0.68);
}

.footer-link-grid h3 {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(122, 76, 255, 0.44);
}

.footer-link-section {
  padding: 32px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-lead-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
}

.footer-lead-heading p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 700;
}

.footer-lead-columns {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.55fr);
  gap: 42px;
}

.footer-link-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px 34px;
}

.footer-lead-columns .footer-link-grid {
  align-content: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-guide-section {
  border-top: 0;
}

.footer-guide-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px 34px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 800;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.86);
}

.tracking-consent {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: 920px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid rgba(18, 32, 51, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 70px rgba(18, 32, 51, 0.18);
}

.tracking-consent-copy {
  min-width: 0;
}

.tracking-consent-copy strong {
  display: block;
  color: var(--mk-ink);
  font-size: 0.98rem;
  line-height: 1.2;
}

.tracking-consent-copy p {
  margin: 5px 0 0;
  color: var(--mk-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.tracking-consent-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.tracking-consent-actions button,
.tracking-consent-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 12px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
}

.tracking-consent-actions button {
  cursor: pointer;
}

.tracking-consent-primary {
  border: 1px solid var(--mk-blue);
  background: var(--mk-blue);
  color: #ffffff;
}

.tracking-consent-secondary {
  border: 1px solid rgba(18, 32, 51, 0.16);
  background: #ffffff;
  color: var(--mk-ink);
}

.tracking-consent-actions a {
  color: var(--mk-blue);
}

@media (max-width: 980px) {
  .marketing-header {
    flex-wrap: wrap;
    padding: 10px 20px 12px;
    gap: 10px 16px;
  }

  .marketing-logo img {
    width: 158px;
  }

  .marketing-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 72px;
  }

  .hero h1 {
    font-size: 3.3rem;
  }

  .product-preview {
    height: 390px;
  }

  .hero-scene {
    width: min(720px, 100%);
    min-height: 560px;
    height: auto;
    margin: 0 auto;
  }

  .preview-body {
    grid-template-columns: 1fr;
  }

  .preview-rail {
    display: none;
  }

  .preview-row,
  .feature-grid,
  .use-case-grid,
  .detail-grid,
  .showcase-grid,
  .pricing-grid,
  .resources-grid,
  .company-grid,
  .pseo-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .three-column,
  .faq-grid,
  .steps,
  .results-strip,
  .pseo-three-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pseo-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 58px;
  }

  .pseo-hero h1 {
    font-size: 3rem;
  }

  .pseo-workflow-band .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-lead-heading {
    align-items: start;
    flex-direction: column;
  }

  .footer-lead-columns {
    grid-template-columns: 1fr;
  }

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

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

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

  .tracking-consent {
    align-items: flex-start;
    flex-direction: column;
  }

  .tracking-consent-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 660px) {
  .marketing-header {
    position: relative;
  }

  .marketing-actions {
    width: 100%;
    justify-content: space-between;
  }

  .login-link,
  .header-cta {
    flex: 1 1 0;
    justify-content: center;
    min-width: 0;
  }

  .hero {
    padding: 46px 18px 56px;
  }

  .hero h1 {
    font-size: 2.28rem;
    line-height: 1.06;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-cta {
    align-items: stretch;
  }

  .hero-checks li {
    grid-template-columns: 30px minmax(0, 1fr);
    font-size: 0.94rem;
  }

  .hero-checks span {
    width: 30px;
    height: 30px;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  .product-preview {
    width: auto;
    height: 330px;
  }

  .hero-scene {
    width: 100%;
    min-height: auto;
    height: auto;
    margin-top: 0;
  }

  .launch-flow-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
  }

  .launch-flow-list li {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 16px;
  }

  .launch-flow-list span {
    width: 34px;
    height: 34px;
  }

  .hero-screen-stack {
    display: none;
  }

  .preview-main {
    padding: 14px;
    gap: 10px;
  }

  .preview-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .preview-panel {
    padding: 14px;
  }

  .preview-panel strong {
    font-size: 1.35rem;
  }

  .preview-panel p,
  .preview-grid div:nth-child(3) {
    display: none;
  }

  .hero-note {
    display: none;
  }

  .preview-chart {
    height: 62px;
    margin-top: 14px;
  }

  .preview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .preview-grid div {
    padding: 12px;
  }

  .section-inline-action {
    align-items: stretch;
  }

  .section-inline-action .secondary-cta {
    width: 100%;
  }

  .pseo-hero {
    padding: 44px 18px;
  }

  .pseo-hero h1 {
    font-size: 2.24rem;
    line-height: 1.06;
  }

  .pseo-hero p {
    font-size: 1rem;
  }

  .pseo-snapshot {
    padding: 22px;
  }

  .pseo-snapshot strong {
    font-size: 1.45rem;
  }

  .section,
  .workflow-band,
  .pricing-section,
  .final-cta {
    padding: 64px 18px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  .lead-capture-form {
    padding: 18px;
  }

  .lead-form-heading,
  .lead-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lead-form-grid {
    grid-template-columns: 1fr;
  }

  .lead-form-actions button {
    width: 100%;
  }

  .three-column,
  .feature-grid,
  .use-case-grid,
  .detail-grid,
  .faq-grid,
  .showcase-grid,
  .pricing-grid,
  .resources-grid,
  .company-grid,
  .steps,
  .results-strip,
  .pseo-three-grid,
  .pseo-link-grid,
  .pseo-workflow-band .steps {
    grid-template-columns: 1fr;
  }

  .three-column article,
  .feature-card,
  .use-case-grid article,
  .detail-grid article,
  .faq-grid article,
  .results-strip article,
  .pricing-card,
  .steps article,
  .pseo-three-grid article,
  .pseo-link-card {
    min-height: auto;
  }

  .audience-strip {
    justify-content: flex-start;
  }

  .footer-inner {
    padding: 44px 18px 28px;
  }

  .footer-directory,
  .footer-link-grid,
  .footer-guide-grid,
  .footer-lead-columns .footer-link-grid,
  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .footer-directory {
    gap: 28px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-height: 640px) and (max-width: 660px) {
  .product-preview {
    opacity: 0.82;
  }
}
