/* Player 1 marketing — facts-first shared system (index + SEO) */
:root {
  color-scheme: light;
  --ink: #0f172a;
  --ink-soft: #1e293b;
  --muted: #475569;
  --muted-2: #64748b;
  --line: #e2e8f0;
  --paper: #f8fafc;
  --surface: #ffffff;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-soft: #eff6ff;
  --green: #16a34a;
  --green-soft: #f0fdf4;
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
  --radius: 14px;
  --max: 1080px;
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.mkt {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.mkt a {
  color: var(--blue);
}

/* Buttons are often <a> tags — beat .mkt a so text stays visible on mobile */
.mkt a.mkt-btn,
.mkt a.mkt-btn:link,
.mkt a.mkt-btn:visited,
.mkt a.mkt-btn:hover,
.mkt a.mkt-btn:active,
.mkt a.mkt-btn:focus {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.mkt img {
  max-width: 100%;
  height: auto;
}

.mkt-skip {
  position: absolute;
  left: -9999px;
  top: auto;
}
.mkt-skip:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  background: var(--surface);
  color: var(--blue);
  padding: 8px 12px;
  border-radius: 8px;
}

/* —— Shell —— */
.mkt-wrap {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.mkt-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: saturate(1.1) blur(10px);
  border-bottom: 1px solid var(--line);
}

.mkt-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.mkt-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  min-width: 0;
}

.mkt-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mkt-brand span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mkt-nav {
  display: none;
  align-items: center;
  gap: 22px;
  font-size: 0.9rem;
  font-weight: 600;
}

.mkt-nav a {
  color: var(--muted);
  text-decoration: none;
}

.mkt-nav a:hover {
  color: var(--ink);
}

.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  border: none;
  cursor: pointer;
}

.mkt-btn-primary,
.mkt a.mkt-btn-primary,
.mkt a.mkt-btn-primary:link,
.mkt a.mkt-btn-primary:visited,
.mkt a.mkt-btn-primary:hover,
.mkt a.mkt-btn-primary:active,
.mkt a.mkt-btn-primary:focus {
  background: var(--blue);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.mkt-btn-primary:hover,
.mkt a.mkt-btn-primary:hover,
.mkt a.mkt-btn-primary:active,
.mkt a.mkt-btn-primary:focus {
  background: var(--blue-dark);
}

.mkt-btn-ghost,
.mkt a.mkt-btn-ghost,
.mkt a.mkt-btn-ghost:link,
.mkt a.mkt-btn-ghost:visited {
  background: transparent;
  color: var(--muted);
  padding: 8px 10px;
  font-size: 0.9rem;
}

.mkt-btn-ghost:hover,
.mkt a.mkt-btn-ghost:hover {
  color: var(--ink);
}

/* —— Hero —— */
.mkt-hero {
  padding: 32px 0 24px;
}

.mkt-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 40px;
  align-items: center;
}

.mkt-eyebrow {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mkt-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: var(--ink);
  max-width: 12ch; /* keeps "AI coaching for" on one line; blank is separate */
}

/* Always put the rotating blank on its own line so height doesn't jump */
.mkt-hero-line {
  display: block;
}

.mkt-hero-rotate {
  display: block;
  min-height: 1.15em;
  white-space: nowrap;
}

.mkt-hero .mkt-lead {
  margin: 16px 0 0;
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  font-weight: 600;
  color: var(--muted);
  max-width: 32rem;
}

.mkt-hero-visual {
  position: relative;
}

.mkt-media {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 8px;
  box-shadow: var(--shadow);
}

.mkt-media img,
.mkt-media video {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #0f172a;
}

.mkt-media-caption {
  margin: 10px 2px 2px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted-2);
}

/* —— Value strip (claims) — short labels, dense —— */
.mkt-claims {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

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

.mkt-claim {
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  padding: 14px 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
}

.mkt-claim span {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.72);
}

/* —— Fact bar (big numbers, GHOST-style zeros row) —— */
.mkt-factbar {
  background: var(--ink);
  color: #fff;
  padding: 28px 0;
}

.mkt-factbar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 12px;
  text-align: center;
}

@media (min-width: 720px) {
  .mkt-factbar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
}

.mkt-fact {
  padding: 4px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mkt-fact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.65);
}

.mkt-fact-icon svg {
  width: 18px !important;
  height: 18px !important;
  stroke-width: 1.75;
}

.mkt-fact-value {
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
}

.mkt-fact-label {
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* —— Spec grid (product “panel”) —— */
.mkt-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.mkt-spec {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mkt-spec-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.mkt-spec-icon svg {
  width: 16px !important;
  height: 16px !important;
  stroke-width: 1.75;
}

.mkt-spec-kicker {
  margin: 0 0 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.mkt-spec-title {
  margin: 0;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

.mkt-spec-note {
  margin: 8px 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.35;
}

/* —— Store badges —— */
.mkt-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-top: 22px;
}

.mkt-actions a {
  display: inline-flex;
  line-height: 0;
}

.mkt-actions img {
  display: block;
  height: 44px;
  width: auto;
}

.mkt-actions .mkt-badge-google {
  height: 64px;
  margin: -10px 0;
}

.mkt-actions-secondary {
  margin-top: 10px;
  font-size: 0.92rem;
  font-weight: 700;
}

.mkt-actions-secondary a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mkt-actions-secondary a:hover {
  color: var(--ink);
}

/* —— Sections —— */
.mkt-section {
  padding: 40px 0;
}

.mkt-section-alt {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mkt-section-ink {
  background: var(--ink);
  color: #fff;
  border: 0;
}

.mkt-section-ink .mkt-section-head h2 {
  color: #fff;
}

.mkt-section-ink .mkt-section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.mkt-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 24px;
}

.mkt-section-head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 900;
  text-transform: uppercase;
}

.mkt-section-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}

/* —— Founder / personal story —— */
.mkt-founder {
  display: grid;
  gap: 22px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 28px 24px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.mkt-founder-byline {
  margin: 0 0 4px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.mkt-founder h2 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 900;
}

.mkt-founder p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.mkt-founder p:last-child {
  margin-bottom: 0;
}

.mkt-founder-sign {
  margin-top: 8px !important;
  font-weight: 700;
  color: var(--ink-soft) !important;
}

.mkt-founder-sign span {
  display: block;
  margin-top: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted-2);
}

/* —— Steps —— */
.mkt-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mkt-step {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
}

.mkt-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 10px;
}

.mkt-step h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.mkt-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* —— Proof / stats —— */
.mkt-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mkt-stat {
  background: var(--ink);
  border: 0;
  border-radius: 12px;
  padding: 22px 12px;
  text-align: center;
  color: #fff;
}

.mkt-stat-value {
  font-variant-numeric: tabular-nums;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
}

.mkt-stat-label {
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.mkt-popular {
  margin-top: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.mkt-popular h3 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mkt-popular-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
}

.mkt-popular-row:last-child {
  border-bottom: 0;
}

.mkt-popular-row span:last-child {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* —— Compare —— */
.mkt-compare {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mkt-compare-card {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 18px 16px;
}

.mkt-compare-card.is-highlight {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}

.mkt-compare-card.is-highlight h3,
.mkt-compare-card.is-highlight .mkt-compare-tagline {
  color: #fff;
}

.mkt-compare-card.is-highlight .mkt-compare-tagline {
  color: rgba(255, 255, 255, 0.75);
}

.mkt-compare-card.is-highlight li {
  color: rgba(255, 255, 255, 0.92);
}

.mkt-compare-card.is-highlight li::before {
  background: #fff;
}

.mkt-compare-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 900;
}

.mkt-compare-card .mkt-compare-tagline {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.mkt-compare-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.mkt-compare-card li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}

.mkt-compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--muted-2);
}

.mkt-compare-card.is-highlight li::before {
  background: var(--blue);
}

.mkt-note {
  margin: 16px auto 0;
  max-width: 40rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted-2);
}

/* —— FAQ —— */
.mkt-faq {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.mkt-faq details:last-child {
  border-bottom: 0;
}

.mkt-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

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

.mkt-faq summary::after {
  content: "+";
  color: var(--muted-2);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.mkt-faq details[open] summary::after {
  content: "–";
}

.mkt-faq details > div,
.mkt-faq details > p {
  padding: 0 18px 16px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* —— Skills chips —— */
.mkt-skills {
  margin-top: 8px;
}

.mkt-skills h2 {
  margin: 0 0 12px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.mkt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mkt-chips li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--ink-soft);
}

/* —— Body content (SEO long-form) —— */
.mkt-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 8px 0 8px;
  color: var(--ink-soft);
}

.mkt-body section {
  margin-bottom: 28px;
}

.mkt-body h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  font-weight: 900;
}

.mkt-body h3 {
  font-size: 1.08rem;
  margin: 20px 0 8px;
  font-weight: 800;
}

.mkt-body p {
  margin: 0 0 12px;
  color: var(--muted);
}

.mkt-body ul,
.mkt-body ol {
  margin: 0 0 14px;
  padding-left: 1.2rem;
  color: var(--muted);
}

.mkt-body li {
  margin-bottom: 6px;
}

.mkt-body .cta-note {
  margin-top: 24px;
  padding: 16px 18px;
  background: var(--blue-soft);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-weight: 600;
}

.mkt-body .cta-note a {
  font-weight: 800;
}

.mkt-body details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  margin-bottom: 8px;
  padding: 0;
}

.mkt-body details summary {
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 700;
  list-style: none;
}

.mkt-body details summary::-webkit-details-marker {
  display: none;
}

.mkt-body details p {
  padding: 0 14px 12px;
  margin: 0;
}

.mkt-body .compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 22px;
  font-size: 0.92rem;
  background: var(--surface);
}

.mkt-body .compare-table th,
.mkt-body .compare-table td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.mkt-body .compare-table th {
  background: #eef2ff;
  font-weight: 800;
}

.mkt-body .compare-table tr:nth-child(even) td {
  background: #fafbfc;
}

/* —— Mid / final CTA —— */
.mkt-cta-band {
  background: var(--blue);
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.mkt-cta-band h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.mkt-cta-band p {
  margin: 8px auto 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.mkt-cta-band .mkt-actions {
  justify-content: center;
  margin-top: 18px;
}

.mkt-cta-band .mkt-actions img {
  /* white-friendly store badges: keep as-is */
}

/* —— Referral —— */
.mkt-banner {
  display: none;
  margin-top: 18px;
  border-radius: 12px;
  background: var(--green-soft);
  color: #14532d;
  border: 1px solid #bbf7d0;
  padding: 12px 14px;
}

.mkt-banner.is-visible {
  display: block;
}

.mkt-banner p {
  margin: 0;
}

.mkt-banner p + p {
  margin-top: 4px;
  font-size: 0.9rem;
}

/* —— Footer —— */
.mkt-footer {
  background: #0f172a;
  color: #fff;
  padding: 36px 0 28px;
  position: relative;
  z-index: 50;
}

.mkt-footer-inner {
  text-align: center;
}

.mkt-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 18px;
}

.mkt-socials a {
  color: #94a3b8;
  transition: color 0.15s ease;
}

.mkt-socials a:hover {
  color: #fff;
}

.mkt-socials svg {
  display: block;
  width: 20px;
  height: 20px;
}

.mkt-footer-nav {
  display: grid;
  gap: 24px;
  max-width: 640px;
  margin: 0 auto 20px;
  text-align: left;
  font-size: 0.875rem;
}

.mkt-footer-group {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.mkt-footer-heading {
  margin: 0;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mkt-footer-nav a {
  color: #94a3b8;
  text-decoration: none;
}

.mkt-footer-nav a:hover {
  color: #fff;
}

.mkt-copyright {
  margin: 0;
  color: #64748b;
  font-size: 0.875rem;
}

/* —— Sticky mobile CTA —— */
.mkt-sticky {
  display: none;
}

/* —— Utilities —— */
.mkt-hidden {
  display: none !important;
}

.tabular-nums {
  font-variant-numeric: tabular-nums;
}

.mkt-spin {
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 2px solid var(--line);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: mkt-spin 0.7s linear infinite;
}

@keyframes mkt-spin {
  to {
    transform: rotate(360deg);
  }
}

.mkt-center {
  text-align: center;
}

.mkt-muted {
  color: var(--muted);
}

.capitalize {
  text-transform: capitalize;
}

/* —— Responsive —— */
@media (min-width: 768px) {
  .mkt-nav {
    display: flex;
  }

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

  .mkt-footer-group {
    justify-items: start;
  }

  .mkt-footer-nav.is-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 900px;
  }
}

@media (max-width: 820px) {
  .mkt-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mkt-hero h1 {
    max-width: none;
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .mkt-hero-visual {
    order: -1;
  }

  .mkt-steps {
    grid-template-columns: 1fr;
  }

  .mkt-proof,
  .mkt-compare {
    grid-template-columns: 1fr;
  }

  .mkt-specs {
    grid-template-columns: 1fr 1fr;
  }

  .mkt-claims {
    grid-template-columns: 1fr 1fr;
  }

  .mkt-actions img {
    height: 40px;
  }

  .mkt-actions .mkt-badge-google {
    height: 58px;
    margin: -8px 0;
  }

  body.mkt.has-sticky {
    padding-bottom: 76px;
  }

  .mkt-sticky {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 0 12px 12px;
  }

  .mkt-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 10px 12px;
  }

  .mkt-sticky-inner span {
    font-size: 0.88rem;
    font-weight: 650;
  }

  .mkt-body .compare-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 420px) {
  .mkt-claims {
    grid-template-columns: 1fr;
  }

  .mkt-brand span {
    font-size: 0.85rem;
  }
}
