/* TryMastered — Superhuman-grade marketing system
   Premium, mobile-first, bar-demo ready */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  /* Light premium marketing (product sell) */
  --m-bg: #f8fafc;
  --m-bg2: #ffffff;
  --m-surface: #ffffff;
  --m-card: #ffffff;
  --m-card-hover: #f8fafc;
  --m-line: rgba(15, 23, 42, 0.08);
  --m-line2: rgba(15, 23, 42, 0.14);
  --m-text: #0f172a;
  --m-muted: #64748b;
  --m-dim: #94a3b8;
  --m-accent: #6d28d9;
  --m-accent2: #7c3aed;
  --m-cyan: #0891b2;
  --m-ok: #059669;
  --m-grad: linear-gradient(135deg, #7c3aed 0%, #4f46e5 50%, #0891b2 100%);
  --m-glow: 0 0 80px rgba(124, 58, 237, 0.18);
  --m-font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --m-display: "Space Grotesk", Inter, system-ui, sans-serif;
  --m-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --m-max: 1120px;
  --m-pad: clamp(16px, 4vw, 28px);
}

/* ── Marketing body shell ── */
body.marketing {
  margin: 0;
  min-height: 100vh;
  font-family: var(--m-font);
  color: var(--m-text);
  background: var(--m-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* Full-bleed shell so sticky nav + hero feel like Superhuman */
body.marketing .wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
body.marketing a { color: inherit; text-decoration: none; }
body.marketing ::selection {
  background: rgba(139, 92, 246, 0.35);
  color: #fff;
}

/* Hide old promo strip noise on marketing — use slim announce instead */
body.marketing .topbar-promo { display: none !important; }
body.marketing .upgrade-banner { display: none !important; }

/* ── Slim announce ── */
.m-announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px var(--m-pad);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(90deg, #1e1035, #0c2a32);
  border-bottom: 1px solid var(--m-line);
  text-align: center;
}
.m-announce strong { font-weight: 700; color: #fff; }
.m-announce a {
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 1px;
}
.m-announce a:hover { border-color: #fff; }

/* ── Nav ── */
.m-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 68px;
  padding: 0 var(--m-pad);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.m-brand-text {
  display: flex; flex-direction: column; line-height: 1.1;
  font-family: var(--m-display); font-weight: 700; letter-spacing: -0.03em;
}
.m-brand-text small {
  font-family: var(--m-font); font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--m-muted); margin-top: 2px;
}
.m-inline-link { color: var(--m-accent2); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.m-track-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 8px;
}
.m-track-pills a {
  font-size: 12px; font-weight: 700; padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--m-line2); background: #fff; color: var(--m-text) !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.m-track-pills a:hover {
  border-color: var(--m-accent2); box-shadow: 0 4px 14px rgba(109,40,217,0.12);
}
.m-nav.scrolled {
  border-bottom-color: var(--m-line);
  background: rgba(5, 5, 8, 0.9);
}
.m-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.03em;
  color: var(--m-text) !important;
  flex-shrink: 0;
}
.m-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--m-grad);
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
}
.m-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.m-nav-links a {
  color: var(--m-muted) !important;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}
.m-nav-links a:hover {
  color: var(--m-text) !important;
  background: rgba(255, 255, 255, 0.04);
}
.m-nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.m-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--m-line2);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.m-nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: 0.2s var(--m-ease);
}
.m-nav-toggle.on span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.m-nav-toggle.on span:nth-child(2) { opacity: 0; }
.m-nav-toggle.on span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Buttons ── */
.m-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.15s var(--m-ease), box-shadow 0.2s ease, filter 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  min-height: 44px;
  padding: 0 20px;
  -webkit-tap-highlight-color: transparent;
}
.m-btn:active { transform: scale(0.98); }
.m-btn-primary {
  background: #fff;
  color: #0a0a10 !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 8px 28px rgba(0,0,0,0.35);
}
.m-btn-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 12px 36px rgba(124, 58, 237, 0.25);
  color: #000 !important;
}
.m-btn-glow {
  background: var(--m-grad);
  color: #fff !important;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.45);
}
.m-btn-glow:hover {
  filter: brightness(1.08);
  color: #fff !important;
}
.m-btn-ghost {
  background: transparent;
  color: var(--m-text) !important;
  border: 1px solid var(--m-line2);
}
.m-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff !important;
}
.m-btn-lg {
  min-height: 52px;
  padding: 0 28px;
  font-size: 15px;
}
.m-btn-sm {
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
}
.m-btn-block { width: 100%; }

/* ── Hero ── */
.m-hero {
  position: relative;
  padding: clamp(40px, 8vw, 88px) 0 clamp(48px, 8vw, 80px);
  text-align: center;
  overflow: hidden;
}
.m-hero-glow {
  pointer-events: none;
  position: absolute;
  inset: -20% 10% auto;
  height: 60%;
  background:
    radial-gradient(ellipse 50% 80% at 50% 0%, rgba(124, 58, 237, 0.45), transparent 70%),
    radial-gradient(ellipse 40% 50% at 70% 20%, rgba(6, 182, 212, 0.18), transparent 60%);
  filter: blur(2px);
  z-index: 0;
}
.m-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--m-pad);
}
.m-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  border: 1px solid var(--m-line2);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 600;
  color: var(--m-muted);
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}
.m-eyebrow i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--m-grad);
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 10px;
  color: #fff;
}
.m-hero h1 {
  margin: 0 0 18px;
  font-family: var(--m-display);
  font-size: clamp(2.65rem, 9vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: var(--m-text);
}
.m-hero h1 em {
  font-style: normal;
  background: var(--m-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.m-h2 {
  font-family: var(--m-display);
  letter-spacing: -0.035em;
}
.m-hero-sub {
  margin: 0 auto 28px;
  max-width: 34rem;
  font-size: clamp(16px, 2.8vw, 19px);
  line-height: 1.55;
  color: var(--m-muted);
  font-weight: 400;
}
.m-hero-sub strong { color: var(--m-text); font-weight: 600; }
.m-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 22px;
}
.m-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--m-dim);
}
.m-hero-trust span::before {
  content: "✓ ";
  color: var(--m-ok);
  font-weight: 700;
}

/* ── Phone product mock ── */
.m-device-wrap {
  position: relative;
  z-index: 1;
  max-width: 400px;
  margin: 40px auto 0;
  padding: 0 var(--m-pad);
}
.m-device {
  position: relative;
  border-radius: 28px;
  padding: 12px;
  background: linear-gradient(160deg, #1a1a24 0%, #0c0c12 100%);
  border: 1px solid var(--m-line2);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 100px rgba(124, 58, 237, 0.18);
}
.m-device-notch {
  width: 88px;
  height: 6px;
  border-radius: 99px;
  background: #1f1f2a;
  margin: 4px auto 12px;
}
.m-device-screen {
  border-radius: 20px;
  background: #0a0a10;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 16px 14px 18px;
  overflow: hidden;
}
.m-dev-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.m-dev-head strong {
  font-size: 13px;
  letter-spacing: -0.02em;
}
.m-dev-grade {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.25);
  margin-bottom: 12px;
}
.m-dev-grade-badge {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(52,211,153,0.2), rgba(124,58,237,0.25));
  border: 1.5px solid rgba(52, 211, 153, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.m-dev-grade-badge .g { font-size: 13px; font-weight: 900; color: #34d399; line-height: 1; }
.m-dev-grade-badge .s { font-size: 14px; font-weight: 800; color: #fff; margin-top: 2px; }
.m-dev-grade-meta strong { display: block; font-size: 13px; margin-bottom: 2px; }
.m-dev-grade-meta span { font-size: 11px; color: var(--m-muted); }
.m-wave {
  height: 72px;
  border-radius: 12px;
  background: #12121c;
  border: 1px solid var(--m-line);
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 2px;
}
.m-wave i {
  flex: 1;
  border-radius: 2px;
  background: linear-gradient(180deg, #c4b5fd, #7c3aed 50%, #06b6d4);
  height: calc(18% + var(--h, 50%));
  max-height: 90%;
  opacity: 0.9;
}
.m-wave-region {
  position: absolute;
  left: 30%;
  width: 32%;
  top: 12%;
  bottom: 12%;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 8px;
  background: rgba(139, 92, 246, 0.18);
  pointer-events: none;
}
.m-ab {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.m-ab-col {
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  border: 1px solid var(--m-line);
  background: rgba(255,255,255,0.02);
}
.m-ab-col.after {
  border-color: rgba(52, 211, 153, 0.35);
  background: rgba(52, 211, 153, 0.06);
}
.m-ab-col .lbl {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--m-dim);
  margin-bottom: 6px;
}
.m-ab-col.after .lbl { color: #34d399; }
.m-ab-col .score {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.m-ab-col .unit {
  font-size: 11px;
  color: var(--m-muted);
  margin-top: 2px;
}
.m-dev-cta {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  border: none;
  background: var(--m-grad);
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-dev-cta:hover { filter: brightness(1.06); color: #fff !important; }

/* ── Sections ── */
.m-section {
  padding: clamp(56px, 10vw, 100px) 0;
}
.m-section-inner {
  max-width: var(--m-max);
  margin: 0 auto;
  padding: 0 var(--m-pad);
}
.m-kicker {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--m-accent2);
  margin-bottom: 12px;
}
.m-h2 {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
}
.m-lead {
  margin: 0 0 32px;
  max-width: 32rem;
  font-size: 16px;
  line-height: 1.55;
  color: var(--m-muted);
}
.m-center { text-align: center; }
.m-center .m-lead { margin-left: auto; margin-right: auto; }

/* ── Stats strip ── */
.m-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--m-line);
  border: 1px solid var(--m-line);
  border-radius: 20px;
  overflow: hidden;
  margin-top: -24px;
  position: relative;
  z-index: 2;
  max-width: var(--m-max);
  margin-left: auto;
  margin-right: auto;
}
.m-stat {
  background: var(--m-bg2);
  padding: 22px 16px;
  text-align: center;
}
.m-stat strong {
  display: block;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 4px;
}
.m-stat span {
  font-size: 12px;
  color: var(--m-muted);
  font-weight: 500;
}
@media (max-width: 700px) {
  .m-stats { grid-template-columns: 1fr 1fr; margin-top: 8px; }
}

/* ── Bento / features ── */
.m-bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
}
.m-bento-tall { grid-row: span 2; }
.m-card {
  background: var(--m-card);
  border: 1px solid var(--m-line);
  border-radius: 20px;
  padding: 24px 22px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s var(--m-ease);
}
.m-card:hover {
  background: var(--m-card-hover);
  border-color: var(--m-line2);
}
.m-card-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  font-size: 18px;
  margin-bottom: 16px;
}
.m-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.m-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--m-muted);
}
.m-card-feature {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.m-card-feature .m-mini-ui {
  margin-top: auto;
  padding-top: 20px;
}
.m-mini-ui {
  border-radius: 14px;
  background: #0a0a10;
  border: 1px solid var(--m-line);
  padding: 14px;
}
.m-style-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.m-style-pills span {
  font-size: 11px;
  font-weight: 700;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid var(--m-line2);
  color: var(--m-muted);
  background: rgba(255,255,255,0.02);
}
.m-style-pills span.on {
  color: #fff;
  border-color: transparent;
  background: var(--m-grad);
}
@media (max-width: 800px) {
  .m-bento { grid-template-columns: 1fr; }
  .m-bento-tall { grid-row: auto; }
}

/* ── Steps ── */
.m-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  counter-reset: step;
}
.m-step {
  position: relative;
  padding: 24px 18px;
  border-radius: 18px;
  border: 1px solid var(--m-line);
  background: var(--m-card);
}
.m-step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--m-grad);
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.m-step h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.m-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--m-muted);
}
@media (max-width: 800px) {
  .m-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .m-steps { grid-template-columns: 1fr; }
}

/* ── Proof ── */
.m-proof {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}
.m-proof-player {
  border-radius: 20px;
  border: 1px solid var(--m-line);
  background: var(--m-card);
  padding: 20px;
  overflow: hidden;
}
.m-proof-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.m-proof-art {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  background: #ede9fe;
}
.m-proof-meta strong { display: block; font-size: 15px; color: var(--m-text); }
.m-proof-meta span { font-size: 12px; color: var(--m-muted); }
.m-proof-player iframe {
  width: 100%;
  border: 0;
  border-radius: 10px;
  min-height: 166px;
  background: #f1f5f9;
}
.m-proof-side {
  border-radius: 20px;
  border: 1px solid var(--m-line);
  background: linear-gradient(160deg, rgba(124,58,237,0.14), rgba(6,182,212,0.06));
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
}
.m-meters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}
.m-meter {
  border-radius: 12px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid var(--m-line);
}
.m-meter .t {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--m-dim);
  margin-bottom: 6px;
}
.m-meter.after .t { color: #059669; }
.m-meter b {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--m-text);
}
.m-meter.after b { color: var(--m-accent2); }
.m-highlights {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  flex: 1;
}
.m-highlights li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: 13px;
  color: var(--m-muted);
  line-height: 1.4;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.m-highlights li:last-child { border-bottom: 0; }
.m-highlights li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--m-accent2);
  font-weight: 700;
}
@media (max-width: 800px) {
  .m-proof { grid-template-columns: 1fr; }
}

/* ── Share promo ── */
.m-share {
  border-radius: 24px;
  border: 1px solid var(--m-line2);
  background:
    radial-gradient(ellipse 80% 80% at 100% 0%, rgba(124,58,237,0.25), transparent 55%),
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(6,182,212,0.12), transparent 50%),
    var(--m-surface);
  padding: clamp(28px, 5vw, 44px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}
.m-share h2 { margin: 0 0 12px; }
.m-share-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.m-share-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--m-line);
  font-size: 14px;
  color: var(--m-muted);
}
.m-share-list li:last-child { border-bottom: 0; }
.m-share-list b {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--m-line2);
  display: grid;
  place-items: center;
  font-size: 11px;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}
.m-share-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.m-share-icons span {
  min-width: 48px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--m-line2);
  color: #e9e5ff;
}
@media (max-width: 800px) {
  .m-share { grid-template-columns: 1fr; }
}

/* ── Pricing ── */
.m-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}
.m-price {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--m-line);
  background: var(--m-card);
  padding: 28px 22px 22px;
  display: flex;
  flex-direction: column;
}
.m-price.feat {
  border-color: rgba(139, 92, 246, 0.45);
  background: linear-gradient(180deg, rgba(124,58,237,0.16), rgba(255,255,255,0.02));
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.15), 0 24px 60px rgba(0,0,0,0.35);
  transform: scale(1.02);
}
.m-price-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--m-grad);
  color: #fff;
  white-space: nowrap;
}
.m-price .tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--m-dim);
  margin-bottom: 8px;
}
.m-price h3 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.m-price .amt {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1;
}
.m-price .amt span {
  font-size: 14px;
  font-weight: 500;
  color: var(--m-muted);
  letter-spacing: 0;
}
.m-price ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  flex: 1;
}
.m-price li {
  padding: 8px 0;
  font-size: 13px;
  color: var(--m-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.4;
}
.m-price li:last-child { border-bottom: 0; }
.m-price li .ok { color: var(--m-ok); font-weight: 800; flex-shrink: 0; }
.m-price li .off { color: var(--m-dim); font-weight: 800; flex-shrink: 0; }
@media (max-width: 900px) {
  .m-price-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .m-price.feat { transform: none; }
}

/* ── Final CTA ── */
.m-final {
  text-align: center;
  padding: clamp(64px, 12vw, 120px) var(--m-pad);
  position: relative;
  overflow: hidden;
}
.m-final-glow {
  pointer-events: none;
  position: absolute;
  inset: 20% 20%;
  background: radial-gradient(circle, rgba(124,58,237,0.35), transparent 65%);
  filter: blur(20px);
}
.m-final-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.m-final h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
}
.m-final p {
  margin: 0 auto 28px;
  color: var(--m-muted);
  font-size: 17px;
  line-height: 1.5;
  max-width: 28rem;
}

/* ── Footer ── */
body.marketing .footer {
  margin-top: 0;
  padding: 40px var(--m-pad) 100px;
  border-top: 1px solid var(--m-line);
  display: grid;
  gap: 16px;
  max-width: var(--m-max);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
body.marketing .footer-brand strong {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}
body.marketing .footer-brand span,
body.marketing .footer .fine {
  color: var(--m-dim);
  font-size: 12px;
  line-height: 1.5;
}
body.marketing .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
body.marketing .footer-links a {
  color: var(--m-muted) !important;
  font-size: 13px;
  font-weight: 500;
}
body.marketing .footer-links a:hover { color: var(--m-accent2) !important; }

/* Hide default nav when marketing nav is used */
body.marketing > .wrap > .nav { display: none !important; }

/* Sticky mobile CTA */
.m-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--m-line);
  box-shadow: 0 -12px 40px rgba(0,0,0,0.4);
}
.m-mobile-cta .m-btn { width: 100%; min-height: 50px; font-size: 15px; }

/* ── Mobile nav drawer ── */
@media (max-width: 860px) {
  .m-nav-toggle { display: inline-flex; }
  .m-nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px var(--m-pad) 16px;
    background: rgba(8, 8, 14, 0.98);
    border-bottom: 1px solid var(--m-line);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  }
  .m-nav-links.open { display: flex; }
  .m-nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    font-size: 15px;
  }
  .m-nav-cta .m-btn-ghost { display: none; }
  .m-mobile-cta { display: block; }
  body.marketing { padding-bottom: 0; }
  body.marketing .footer { padding-bottom: 100px; }
  .m-hero-actions { flex-direction: column; align-items: stretch; }
  .m-hero-actions .m-btn { width: 100%; }
  .m-hero h1 { font-size: clamp(2.35rem, 11vw, 3.2rem); }
}

@media (min-width: 861px) {
  .m-nav-links { display: flex !important; }
  .m-mobile-cta { display: none !important; }
}

/* ── Bar-demo polish ── */
@media (max-width: 480px) {
  .m-device { border-radius: 24px; padding: 10px; }
  .m-device-screen { border-radius: 16px; padding: 14px 12px 16px; }
  .m-hero { padding-top: 32px; }
  .m-eyebrow { font-size: 11px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Fade-in on scroll helper (visible by default if no JS) */
.m-reveal {
  opacity: 1;
  transform: none;
}
html.js .m-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--m-ease), transform 0.6s var(--m-ease);
}
html.js .m-reveal.in {
  opacity: 1;
  transform: none;
}

/* Light marketing shell */
body.marketing {
  --m-bg: #f8fafc;
  --m-bg2: #ffffff;
  --m-surface: #ffffff;
  --m-card: #ffffff;
  --m-card-hover: #f8fafc;
  --m-line: rgba(15, 23, 42, 0.08);
  --m-line2: rgba(15, 23, 42, 0.14);
  --m-text: #0f172a;
  --m-muted: #64748b;
  --m-dim: #94a3b8;
  background: #f8fafc !important;
  color: #0f172a !important;
}
body.marketing .m-nav {
  background: rgba(255,255,255,0.92) !important;
  border-bottom-color: rgba(15,23,42,0.08) !important;
}
body.marketing .m-btn-primary,
body.marketing .m-btn-glow {
  background: var(--m-grad) !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.28) !important;
}
body.marketing .m-btn-ghost {
  background: #fff !important;
  border: 1px solid rgba(109, 40, 217, 0.25) !important;
  color: #6d28d9 !important;
}
body.marketing .m-card, body.marketing .m-price, body.marketing .m-device {
  background: #fff !important;
  border-color: rgba(15,23,42,0.1) !important;
  color: #0f172a !important;
}
body.marketing .m-announce {
  background: linear-gradient(105deg, #4c1d95 0%, #6d28d9 40%, #0e7490 100%) !important;
}

/* ═══════════════════════════════════════════
   NEW Design Redesign — hero / proof / styles
   Spec: TryMastered_NEW_Design_Redesign.pdf
   ═══════════════════════════════════════════ */
.m-announce-pro {
  gap: 12px;
  padding: 11px var(--m-pad);
  font-size: 13px;
  font-weight: 600;
}
.m-announce-badge {
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
}
.m-announce-pro em {
  font-style: normal; color: #fde68a; font-weight: 800;
}
.m-announce-cta {
  background: #fff !important; color: #5b21b6 !important;
  padding: 7px 14px !important; border-radius: 999px !important;
  font-weight: 800 !important; font-size: 12px !important;
  border: none !important; text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.m-announce-cta:hover { filter: brightness(1.05); }

/* Split hero */
.m-hero.m-hero-split {
  text-align: left;
  padding: clamp(28px, 5vw, 48px) 0 clamp(32px, 5vw, 56px);
}
.m-hero-grid {
  position: relative; z-index: 1;
  max-width: var(--m-max);
  margin: 0 auto;
  padding: 0 var(--m-pad);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}
.m-hero-copy .m-eyebrow { margin-bottom: 14px; }
.m-hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.m-hero-copy .m-hero-sub {
  margin: 0 0 20px;
  max-width: 440px;
  font-size: 17px;
  text-align: left;
}
.m-hero-copy .m-hero-actions {
  justify-content: flex-start;
  margin-bottom: 18px;
}
.m-hero-checks {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
  font-size: 14px; color: var(--m-muted); font-weight: 500;
}
.m-hero-checks li::before {
  content: "✓ "; color: var(--m-ok); font-weight: 800;
}

/* Proof card (replaces phone mock as primary sell) */
.m-proof-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--m-line);
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
  padding: 20px;
  overflow: hidden;
}
.m-proof-card-bar {
  position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--m-grad);
}
.m-proof-card-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px; margin-bottom: 14px;
}
.m-proof-card-top strong { display: block; font-size: 15px; color: var(--m-text); }
.m-proof-card-top span { font-size: 12px; color: var(--m-muted); }
.m-proof-score {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(145deg, #ede9fe, #e0f2fe);
  display: grid; place-items: center;
  font-weight: 800; color: var(--m-accent2); font-size: 18px;
  border: 2px solid rgba(124, 58, 237, 0.2);
  font-variant-numeric: tabular-nums;
}
.m-proof-wave {
  height: 72px; border-radius: 12px; margin: 12px 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 6px, rgba(109,40,217,.08) 6px, rgba(109,40,217,.08) 7px),
    linear-gradient(180deg, rgba(124,58,237,.12), rgba(8,145,178,.1));
  display: flex; align-items: flex-end; gap: 3px; padding: 12px 10px;
}
.m-proof-wave i {
  flex: 1; background: var(--m-grad); border-radius: 3px; opacity: 0.8;
  min-width: 3px;
}
.m-proof-ab-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-top: 12px; flex-wrap: wrap;
}
.m-proof-ab-labs {
  display: flex; gap: 10px; font-size: 12px; font-weight: 700; color: var(--m-dim);
}
.m-proof-ab-labs .on { color: var(--m-accent2); }
.m-ab-toggle {
  width: 52px; height: 30px; border-radius: 999px; background: #e2e8f0;
  border: none; cursor: pointer; position: relative; flex-shrink: 0;
  transition: background 0.18s ease;
}
.m-ab-toggle::after {
  content: ""; position: absolute; top: 3px; left: 3px;
  width: 24px; height: 24px; border-radius: 50%; background: #fff;
  box-shadow: 0 2px 8px rgba(15,23,42,0.12); transition: left 0.18s ease;
}
.m-ab-toggle.on { background: var(--m-accent2); }
.m-ab-toggle.on::after { left: 25px; }
.m-proof-delta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px;
}
.m-proof-delta > div {
  background: #f8fafc; border: 1px solid var(--m-line);
  border-radius: 12px; padding: 10px 12px; font-size: 12px; color: var(--m-muted);
}
.m-proof-delta .lbl { display: block; font-weight: 600; }
.m-proof-delta b {
  display: block; font-size: 16px; margin-top: 2px; color: var(--m-text);
  font-variant-numeric: tabular-nums;
}
.m-proof-delta .after b { color: var(--m-accent2); }
.m-proof-card-cta {
  display: block; margin-top: 14px; text-align: center;
  font-size: 13px; font-weight: 700; color: var(--m-accent2) !important;
  padding: 10px; border-radius: 10px;
  background: rgba(124, 58, 237, 0.06);
  transition: background 0.15s ease;
}
.m-proof-card-cta:hover { background: rgba(124, 58, 237, 0.12); }

/* Numbered steps */
.m-step-n {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--m-grad); color: #fff;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 800; margin-bottom: 10px;
}

/* Style grid */
.m-style-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.m-style-card {
  background: #fff; border: 1px solid var(--m-line);
  border-radius: 18px; padding: 12px; text-align: center;
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.m-style-card.on {
  border-color: rgba(109, 40, 217, 0.45);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12), 0 8px 24px rgba(15,23,42,0.06);
}
.m-style-art {
  height: 72px; border-radius: 12px; margin-bottom: 10px;
  display: grid; place-items: center; font-size: 22px; color: #fff; font-weight: 800;
}
.m-style-art.t { background: linear-gradient(135deg, #6d28d9, #4f46e5); }
.m-style-art.a { background: linear-gradient(135deg, #7c3aed, #0891b2); }
.m-style-art.s { background: linear-gradient(135deg, #f59e0b, #db2777); }
.m-style-art.c { background: linear-gradient(135deg, #0ea5e9, #6366f1); }
.m-style-art.r { background: linear-gradient(135deg, #db2777, #7c3aed); }
.m-style-card strong { display: block; font-size: 13px; color: var(--m-text); }
.m-style-card span { font-size: 11px; color: var(--m-muted); font-weight: 500; }

/* Pricing hot card */
.m-price.feat {
  border-color: rgba(109, 40, 217, 0.4) !important;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1), 0 20px 48px rgba(15,23,42,0.1) !important;
}
.m-price-badge {
  background: var(--m-grad) !important;
  letter-spacing: 0.06em;
  font-size: 10px !important;
}

@media (max-width: 860px) {
  .m-hero-grid { grid-template-columns: 1fr; }
  .m-hero-copy { text-align: center; }
  .m-hero-copy .m-hero-sub { margin-left: auto; margin-right: auto; text-align: center; }
  .m-hero-copy .m-hero-actions { justify-content: center; }
  .m-hero-checks { justify-items: center; text-align: left; }
  .m-style-grid { grid-template-columns: repeat(2, 1fr); }
  .m-style-card.on { grid-column: span 1; }
}
@media (max-width: 560px) {
  .m-style-grid { grid-template-columns: 1fr 1fr; }
  .m-hero-copy h1 { font-size: 2rem; }
  .m-announce-pro { font-size: 12px; }
}

/* Focus rings (a11y §15) */
body.marketing :focus-visible {
  outline: 2px solid var(--m-accent2);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .m-ab-toggle::after, .m-reveal { transition: none !important; }
}


/* Light proof section readability (redesign force) */
body.marketing .m-proof,
body.marketing .m-proof-player,
body.marketing .m-proof-side {
  background: #fff !important;
  color: var(--m-text) !important;
  border-color: var(--m-line) !important;
}
body.marketing .m-proof-meta strong,
body.marketing .m-proof-side strong,
body.marketing .m-proof-side b,
body.marketing .m-meter b {
  color: var(--m-text) !important;
}
body.marketing .m-meter.after b { color: var(--m-accent2) !important; }
body.marketing .m-highlights li { color: var(--m-muted) !important; }
body.marketing .m-card h3,
body.marketing .m-step h3,
body.marketing .m-h2 { color: var(--m-text) !important; }
body.marketing .m-card p,
body.marketing .m-step p,
body.marketing .m-lead { color: var(--m-muted) !important; }
body.marketing .m-price h3,
body.marketing .m-price .amt { color: var(--m-text) !important; }
body.marketing .m-price ul li { color: var(--m-muted) !important; }
body.marketing .m-final {
  background: #fff !important;
  color: var(--m-text) !important;
  border: 1px solid var(--m-line) !important;
}
body.marketing .m-final h2 { color: var(--m-text) !important; }
body.marketing .m-final p { color: var(--m-muted) !important; }
body.marketing .m-stat strong { color: var(--m-accent2) !important; }
body.marketing .m-stat span { color: var(--m-muted) !important; }
body.marketing .m-brand { color: var(--m-text) !important; }
body.marketing .m-nav-links a { color: var(--m-muted) !important; }
body.marketing .m-nav-links a:hover { color: var(--m-accent2) !important; }
body.marketing .footer,
body.marketing .m-footer { color: var(--m-muted) !important; }

/* ═══════════════════════════════════════════
   AI Homepage v6 — fancy / super-advanced
   ═══════════════════════════════════════════ */
body.ai-home {
  background:
    radial-gradient(ellipse 900px 520px at 90% -8%, rgba(124,58,237,0.14), transparent 55%),
    radial-gradient(ellipse 700px 420px at 0% 20%, rgba(8,145,178,0.1), transparent 50%),
    radial-gradient(ellipse 600px 400px at 50% 100%, rgba(219,39,119,0.05), transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 40%, #eef2ff 100%);
}
.m-hero-ai { position: relative; overflow: hidden; }
.m-ai-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.m-ai-orbs .orb {
  position: absolute; border-radius: 50%; filter: blur(40px); opacity: 0.45;
  animation: orbFloat 10s ease-in-out infinite;
}
.m-ai-orbs .o1 { width: 280px; height: 280px; background: #7c3aed; top: -40px; right: 10%; }
.m-ai-orbs .o2 { width: 200px; height: 200px; background: #0891b2; bottom: 10%; left: 5%; animation-delay: -3s; }
.m-ai-orbs .o3 { width: 140px; height: 140px; background: #db2777; top: 40%; left: 40%; animation-delay: -6s; opacity: 0.25; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(12px,-18px) scale(1.06); }
}
.m-eyebrow-ai {
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(8,145,178,0.1)) !important;
  border-color: rgba(124,58,237,0.25) !important;
  color: #5b21b6 !important;
}
.m-ai-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px;
}
.m-ai-pills span {
  font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(109,40,217,0.18);
  color: #5b21b6;
  box-shadow: 0 4px 12px rgba(15,23,42,0.04);
}
.m-proof-card-ai {
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 60%, #f5f3ff 100%) !important;
  border: 1px solid rgba(109,40,217,0.18) !important;
  box-shadow:
    0 24px 60px rgba(109,40,217,0.14),
    0 0 0 1px rgba(255,255,255,0.8) inset !important;
}
.m-ai-live {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; color: #059669;
  margin-bottom: 12px; letter-spacing: 0.04em; text-transform: uppercase;
}
.m-ai-live .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #10b981;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.5);
  animation: pulseDot 1.6s ease infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
.m-proof-art-wrap {
  display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1;
}
.m-proof-art, .m-proof-art-lg {
  width: 56px; height: 56px; border-radius: 12px; object-fit: cover;
  background: linear-gradient(135deg, #7c3aed, #0891b2);
  border: 1px solid rgba(109,40,217,0.2);
  box-shadow: 0 8px 20px rgba(109,40,217,0.2);
  flex-shrink: 0;
}
.m-proof-art-lg { width: 64px; height: 64px; border-radius: 14px; }
.m-proof-score-ai {
  width: 72px; height: 72px; border-radius: 18px !important;
  flex-direction: column; gap: 0; display: grid !important; place-items: center;
  background: linear-gradient(145deg, #5b21b6, #7c3aed 50%, #0891b2) !important;
  color: #fff !important; border: none !important;
  box-shadow: 0 12px 28px rgba(109,40,217,0.35);
}
.m-proof-score-ai small {
  font-size: 9px; font-weight: 800; letter-spacing: 0.12em; opacity: 0.9;
}
.m-proof-score-ai b { font-size: 22px; font-weight: 800; line-height: 1; color: #fff !important; }
.m-proof-wave-ai {
  height: 84px !important;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(124,58,237,0.15), transparent 70%),
    #0f172a !important;
  border: 1px solid rgba(109,40,217,0.25);
  box-shadow: inset 0 0 40px rgba(124,58,237,0.2);
}
.m-proof-wave-ai i {
  height: var(--h, 50%) !important;
  transition: height 0.35s ease;
  background: linear-gradient(180deg, #a78bfa, #22d3ee) !important;
  box-shadow: 0 0 8px rgba(34,211,238,0.4);
}
.m-ai-chain {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  margin: 12px 0 4px; font-size: 11px; font-weight: 700;
}
.m-ai-chain span {
  padding: 4px 10px; border-radius: 999px;
  background: #f1f5f9; color: #64748b; border: 1px solid rgba(15,23,42,0.06);
}
.m-ai-chain span.on {
  background: linear-gradient(135deg, #7c3aed, #0891b2); color: #fff; border: none;
}
.m-ai-chain i { color: #94a3b8; font-style: normal; font-weight: 700; }

/* AI feature grid */
.m-ai-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
}
@media (max-width: 960px) { .m-ai-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .m-ai-grid { grid-template-columns: 1fr; } }
.m-ai-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  position: relative;
  overflow: hidden;
}
.m-ai-card::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #7c3aed, #0891b2);
  opacity: 0; transition: opacity 0.18s ease;
}
.m-ai-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(109,40,217,0.12);
  border-color: rgba(109,40,217,0.28);
}
.m-ai-card:hover::before { opacity: 1; }
.m-ai-ico {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(8,145,178,0.12));
  color: #6d28d9; font-size: 18px; font-weight: 800; margin-bottom: 12px;
}
.m-ai-card h3 {
  margin: 0 0 8px; font-size: 15px; font-weight: 800; color: #0f172a; letter-spacing: -0.02em;
}
.m-ai-card p {
  margin: 0; font-size: 13px; line-height: 1.5; color: #64748b;
}

/* Fancy style cards */
.m-style-grid-fancy .m-style-card {
  position: relative; overflow: hidden;
  padding: 14px 12px 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.m-style-grid-fancy .m-style-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(109,40,217,0.14);
}
.m-style-grid-fancy .m-style-art {
  position: relative; height: 88px; overflow: hidden;
}
.m-style-grid-fancy .m-style-art .ico {
  position: relative; z-index: 1; font-size: 28px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}
.m-style-grid-fancy .m-style-art .glow {
  position: absolute; inset: -20%;
  background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 60%);
  animation: styleGlow 3s ease-in-out infinite;
}
@keyframes styleGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}
.m-style-grid-fancy .m-style-card em {
  display: block; margin-top: 6px;
  font-size: 10px; font-style: normal; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; color: #94a3b8;
}
.m-style-grid-fancy .m-style-card.on em { color: #6d28d9; }
.m-style-grid-fancy .m-style-card.on {
  transform: translateY(-2px);
  border-color: rgba(109,40,217,0.5);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15), 0 16px 36px rgba(109,40,217,0.16);
}

.m-stats-ai .m-stat {
  background: #fff;
  border: 1px solid rgba(109,40,217,0.12);
  box-shadow: 0 8px 24px rgba(109,40,217,0.06);
}
.m-stats-ai .m-stat strong {
  background: linear-gradient(135deg, #7c3aed, #0891b2);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.m-final-ai {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #fff 0%, #f5f3ff 50%, #ecfeff 100%) !important;
  border: 1px solid rgba(109,40,217,0.15) !important;
  box-shadow: 0 20px 60px rgba(109,40,217,0.1) !important;
}

@media (prefers-reduced-motion: reduce) {
  .m-ai-orbs .orb, .m-ai-live .pulse, .m-style-art .glow { animation: none !important; }
}

/* ═══════════════════════════════════════════════════
   DARK AI HOMEPAGE v7 — matches product mock
   ═══════════════════════════════════════════════════ */
body.marketing.dark-ai,
body.dark-ai {
  --m-bg: #07060f;
  --m-bg2: #0c0b16;
  --m-surface: #12111c;
  --m-card: #14121f;
  --m-line: rgba(167, 139, 250, 0.12);
  --m-line2: rgba(167, 139, 250, 0.22);
  --m-text: #f4f2ff;
  --m-muted: #a39bb8;
  --m-dim: #6b6580;
  --m-accent: #8b5cf6;
  --m-accent2: #a78bfa;
  --m-cyan: #22d3ee;
  --m-ok: #34d399;
  --m-grad: linear-gradient(135deg, #7c3aed 0%, #6366f1 45%, #22d3ee 100%);
  background: #07060f !important;
  color: #f4f2ff !important;
}
body.dark-ai .wrap { background: transparent; }

/* Top bar */
.m-topbar-ai {
  background: linear-gradient(90deg, #3b0764 0%, #6d28d9 40%, #4f46e5 70%, #0e7490 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.m-topbar-ai-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.m-topbar-ai-msg em { font-style: normal; color: #fde68a; font-weight: 800; }
.m-topbar-ai-cta {
  background: rgba(255,255,255,0.15) !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
  color: #fff !important;
  padding: 7px 14px !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  text-decoration: none !important;
}
.m-topbar-ai-cta:hover { background: #fff !important; color: #5b21b6 !important; }

/* Nav dark */
.m-nav-ai {
  background: rgba(7, 6, 15, 0.85) !important;
  border-bottom: 1px solid rgba(167,139,250,0.12) !important;
  backdrop-filter: blur(16px);
}
.m-nav-ai.scrolled { background: rgba(7, 6, 15, 0.96) !important; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.m-nav-ai .m-brand-text { color: #f4f2ff !important; }
.m-nav-ai .m-brand-text small { color: #a78bfa !important; letter-spacing: 0.1em; }
.m-nav-ai .m-nav-links a { color: #a39bb8 !important; }
.m-nav-ai .m-nav-links a:hover { color: #fff !important; }
.m-nav-ai .m-btn-primary {
  background: var(--m-grad) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  box-shadow: 0 8px 24px rgba(124,58,237,0.35) !important;
}
.m-nav-ai .m-nav-toggle span { background: #f4f2ff !important; }

/* Hero dark */
.m-hero-dark {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 64px;
  overflow: hidden;
  text-align: center;
}
.m-hero-dark-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(124, 58, 237, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 80%, rgba(34, 211, 238, 0.08), transparent 50%),
    #07060f;
}
.m-wave-bg {
  position: absolute; left: 0; right: 0; top: 28%;
  height: 120px; opacity: 0.45;
  background:
    repeating-linear-gradient(90deg,
      transparent 0 4px,
      rgba(167,139,250,0.15) 4px 5px),
    linear-gradient(180deg, transparent, rgba(124,58,237,0.2), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}
.m-grid-glow {
  position: absolute; inset: 40% 10% 0;
  background:
    linear-gradient(rgba(124,58,237,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 70%);
  opacity: 0.6;
}
.m-hero-dark-inner {
  position: relative; z-index: 1;
  max-width: 820px; width: 100%;
}
.m-pill-ai {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  color: #c4b5fd;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(167, 139, 250, 0.35);
  margin-bottom: 22px;
}
.m-hero-dark-title {
  margin: 0 0 18px;
  font-family: var(--m-display);
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
}
.m-hero-dark-title .grad {
  background: linear-gradient(105deg, #c4b5fd 0%, #a78bfa 35%, #818cf8 65%, #22d3ee 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.m-hero-dark-sub {
  margin: 0 auto 28px;
  max-width: 540px;
  font-size: clamp(15px, 2.4vw, 18px);
  line-height: 1.55;
  color: #a39bb8;
}
.m-hero-dark-sub strong { color: #e9e5ff; font-weight: 600; }

/* Flow steps */
.m-flow {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px 6px;
  padding: 14px 16px;
  margin: 0 auto 28px;
  max-width: 720px;
  border-radius: 20px;
  background: rgba(20, 16, 40, 0.7);
  border: 1px solid rgba(167, 139, 250, 0.2);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.12);
}
.m-flow-step {
  display: flex; align-items: center; gap: 10px;
  text-align: left; min-width: 0;
}
.m-flow-ico {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 800; color: #c4b5fd;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(167, 139, 250, 0.35);
}
.m-flow-ico.aaa {
  background: var(--m-grad); color: #fff; border: none;
  font-size: 11px; letter-spacing: 0.04em;
}
.m-flow-step strong {
  display: block; font-size: 11px; font-weight: 800;
  letter-spacing: 0.06em; color: #e9e5ff;
}
.m-flow-step span {
  display: block; font-size: 11px; color: #6b6580; line-height: 1.3;
}
.m-flow-arrow { color: #6b6580; font-weight: 700; font-size: 14px; }

/* CTAs */
.m-hero-dark-actions {
  display: grid; gap: 12px;
  max-width: 440px; margin: 0 auto 32px;
}
.m-btn-ai-primary {
  display: flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 14px 28px;
  border-radius: 999px; font-weight: 800; font-size: 16px;
  color: #fff !important; text-decoration: none !important;
  background: linear-gradient(90deg, #7c3aed 0%, #6366f1 50%, #22d3ee 100%);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
  border: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.m-btn-ai-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.m-btn-ai-ghost {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; padding: 12px 24px;
  border-radius: 999px; font-weight: 700; font-size: 15px;
  color: #c4b5fd !important; text-decoration: none !important;
  background: transparent;
  border: 1.5px solid rgba(167, 139, 250, 0.4);
  transition: border-color 0.15s, background 0.15s;
}
.m-btn-ai-ghost:hover {
  border-color: #a78bfa;
  background: rgba(124, 58, 237, 0.12);
}

/* Trust row */
.m-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 auto 24px;
  max-width: 720px;
}
.m-trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 12px; color: #a39bb8; line-height: 1.35; font-weight: 500;
}
.m-trust-item .ico {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center; font-size: 16px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(167, 139, 250, 0.2);
  color: #a78bfa;
}

/* Tech pills */
.m-tech-pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: 16px;
}
.m-tech-pills span {
  font-size: 12px; font-weight: 600; color: #c4b5fd;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(20, 16, 40, 0.8);
  border: 1px solid rgba(167, 139, 250, 0.22);
}
.m-secure-line {
  margin: 0; font-size: 12px; color: #6b6580; font-weight: 500;
}

/* Dark sections */
.m-section-dark {
  background: #07060f !important;
  color: #f4f2ff !important;
  border-top: 1px solid rgba(167, 139, 250, 0.08);
}
.m-section-dark .m-h2 { color: #f4f2ff !important; }
.m-section-dark .m-lead { color: #a39bb8 !important; }
.m-section-dark .m-kicker { color: #a78bfa !important; }
.m-section-dark .m-ai-card,
.m-section-dark .m-step,
.m-section-dark .m-style-card,
.m-section-dark .m-price,
.m-section-dark .m-proof-player,
.m-section-dark .m-proof-side {
  background: #14121f !important;
  border-color: rgba(167, 139, 250, 0.16) !important;
  color: #f4f2ff !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25) !important;
}
.m-section-dark .m-ai-card h3,
.m-section-dark .m-step h3,
.m-section-dark .m-style-card strong,
.m-section-dark .m-price h3,
.m-section-dark .m-price .amt,
.m-section-dark .m-proof-meta strong { color: #f4f2ff !important; }
.m-section-dark .m-ai-card p,
.m-section-dark .m-step p,
.m-section-dark .m-style-card span,
.m-section-dark .m-price ul li,
.m-section-dark .m-lead { color: #a39bb8 !important; }
.m-section-dark .m-meter {
  background: rgba(0,0,0,0.35) !important;
  border-color: rgba(167,139,250,0.15) !important;
}
.m-section-dark .m-meter b { color: #f4f2ff !important; }
.m-section-dark .m-meter.after b { color: #a78bfa !important; }
.m-section-dark .m-price.feat {
  border-color: rgba(167, 139, 250, 0.45) !important;
  box-shadow: 0 0 0 1px rgba(124,58,237,0.3), 0 20px 50px rgba(124,58,237,0.2) !important;
}
.m-section-dark .m-btn-primary {
  background: var(--m-grad) !important; color: #fff !important; border: none !important;
}
.m-section-dark .m-btn-ghost {
  background: transparent !important;
  color: #c4b5fd !important;
  border: 1px solid rgba(167,139,250,0.35) !important;
}

.m-final-ai {
  background: linear-gradient(180deg, #0c0b16, #14121f) !important;
  border: 1px solid rgba(167,139,250,0.2) !important;
  border-radius: 24px;
  margin: 24px auto 48px;
  max-width: 900px;
  padding: 48px 24px !important;
  text-align: center;
}
.m-final-ai h2 { color: #fff !important; }
.m-final-ai p { color: #a39bb8 !important; }

.m-footer-dark {
  border-top: 1px solid rgba(167,139,250,0.12) !important;
  color: #6b6580 !important;
  background: #07060f !important;
}
.m-footer-dark strong { color: #f4f2ff !important; }
.m-footer-dark a { color: #a39bb8 !important; }
.m-footer-dark a:hover { color: #a78bfa !important; }

.m-mobile-cta {
  background: rgba(7,6,15,0.92) !important;
  border-top: 1px solid rgba(167,139,250,0.2) !important;
}
.m-mobile-cta .m-btn-ai-primary { width: 100%; }

@media (max-width: 800px) {
  .m-trust-row { grid-template-columns: 1fr 1fr; gap: 18px; }
  .m-flow-arrow { display: none; }
  .m-flow { flex-direction: column; align-items: stretch; }
  .m-flow-step { width: 100%; }
}
@media (max-width: 520px) {
  .m-trust-row { grid-template-columns: 1fr 1fr; }
  .m-hero-dark-title { font-size: 2.2rem; }
  .m-topbar-ai-msg { font-size: 11px; text-align: center; }
}

/* ═══════════════════════════════════════════════════
   MOBILE OPTIMIZE v8 — phone-first polish
   ═══════════════════════════════════════════════════ */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body.marketing.dark-ai,
body.dark-ai {
  overflow-x: hidden;
  max-width: 100vw;
}
body.dark-ai img,
body.dark-ai iframe,
body.dark-ai video,
body.dark-ai svg {
  max-width: 100%;
  height: auto;
}
body.dark-ai iframe {
  min-height: 166px;
  width: 100%;
}

.m-nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.m-nav-ai {
  position: sticky;
  top: 0;
  z-index: 100;
  flex-wrap: wrap;
  height: auto;
  min-height: 60px;
  padding: 10px 14px;
  gap: 8px;
}
.m-nav-ai .m-nav-links {
  /* drawer handled in mobile query */
}
.m-nav-cta-mobile { display: none !important; }
.m-topbar-ai-msg-short { display: none; }
.m-nav-drawer-cta {
  margin-top: 6px !important;
  background: linear-gradient(90deg, #7c3aed, #6366f1) !important;
  color: #fff !important;
  border-radius: 12px !important;
  justify-content: center !important;
  font-weight: 800 !important;
}

/* Sticky mobile CTA always usable */
body.dark-ai .m-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 120;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(7, 6, 15, 0.94) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(167, 139, 250, 0.25) !important;
  box-shadow: 0 -12px 40px rgba(0,0,0,0.5);
}
body.dark-ai .m-mobile-cta .m-btn-ai-primary {
  width: 100%;
  min-height: 50px;
  font-size: 15px;
  border-radius: 999px;
}

@media (max-width: 900px) {
  body.dark-ai .m-mobile-cta { display: block !important; }
  body.dark-ai .m-section,
  body.dark-ai .m-final-ai,
  body.dark-ai .m-footer-dark {
    padding-left: 16px;
    padding-right: 16px;
  }
  body.dark-ai .m-footer-dark,
  body.dark-ai .footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px)) !important;
  }
  body.dark-ai .m-final-ai {
    margin-left: 12px;
    margin-right: 12px;
    margin-bottom: 24px;
    padding: 32px 16px !important;
  }

  /* Top bar compact */
  .m-topbar-ai-msg-full { display: none !important; }
  .m-topbar-ai-msg-short { display: inline !important; font-size: 12px; font-weight: 700; }
  .m-topbar-ai-inner { padding: 8px 12px; gap: 8px; }
  .m-topbar-ai-cta { padding: 6px 12px !important; font-size: 11px !important; }

  /* Nav mobile drawer */
  .m-nav-ai {
    position: sticky;
  }
  .m-nav-ai .m-nav-toggle { display: inline-flex !important; }
  .m-nav-ai .m-nav-links {
    display: none;
    order: 10;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 8px 0 12px;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    position: static;
  }
  .m-nav-ai .m-nav-links.open {
    display: flex !important;
    background: rgba(12, 10, 24, 0.98);
    border: 1px solid rgba(167,139,250,0.2);
    border-radius: 16px;
    padding: 10px;
    margin-top: 4px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  }
  .m-nav-ai .m-nav-links a {
    min-height: 48px;
    padding: 12px 14px !important;
    font-size: 15px !important;
    color: #e9e5ff !important;
    border-radius: 12px;
  }
  .m-nav-ai .m-nav-links a:hover,
  .m-nav-ai .m-nav-links a:active {
    background: rgba(124, 58, 237, 0.18) !important;
  }
  .m-nav-cta-desktop { display: none !important; }
  .m-nav-cta-mobile { display: inline-flex !important; min-height: 40px; padding: 8px 14px !important; font-size: 13px !important; }
  .m-brand-text { font-size: 14px; }
  .m-brand-text small { font-size: 9px; }

  /* Hero mobile */
  .m-hero-dark {
    min-height: auto;
    padding: 28px 16px 36px;
    padding-bottom: 24px;
  }
  .m-hero-dark-title {
    font-size: clamp(1.85rem, 8.5vw, 2.5rem) !important;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
  }
  .m-hero-dark-sub {
    font-size: 14px !important;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0 4px;
  }
  .m-pill-ai {
    font-size: 10px;
    padding: 7px 12px;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
  }

  /* Flow as 2x2 grid on tablet/phone */
  .m-flow {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
    margin-bottom: 20px;
    text-align: left;
  }
  .m-flow-arrow { display: none !important; }
  .m-flow-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(167, 139, 250, 0.15);
  }
  .m-flow-ico { width: 38px; height: 38px; font-size: 13px; }
  .m-flow-step strong { font-size: 10px; }
  .m-flow-step span { font-size: 11px; }

  .m-hero-dark-actions {
    max-width: none;
    margin-bottom: 24px;
    gap: 10px;
  }
  .m-btn-ai-primary,
  .m-btn-ai-ghost {
    min-height: 52px !important;
    font-size: 15px !important;
    width: 100%;
  }

  .m-trust-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin-bottom: 18px;
  }
  .m-trust-item {
    font-size: 11px;
    padding: 10px 8px;
    border-radius: 12px;
    background: rgba(20, 16, 40, 0.5);
    border: 1px solid rgba(167, 139, 250, 0.12);
  }
  .m-trust-item .ico { width: 32px; height: 32px; font-size: 14px; }

  .m-tech-pills {
    gap: 6px;
    margin-bottom: 12px;
  }
  .m-tech-pills span {
    font-size: 11px;
    padding: 7px 10px;
  }
  .m-secure-line {
    font-size: 11px;
    padding: 0 8px;
    line-height: 1.4;
  }

  /* Sections */
  .m-section-dark {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .m-section-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .m-h2 { font-size: clamp(1.4rem, 6vw, 1.85rem) !important; }
  .m-ai-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
  .m-ai-card { padding: 16px !important; }
  .m-steps { grid-template-columns: 1fr !important; gap: 10px !important; }
  .m-style-grid,
  .m-style-grid-fancy {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .m-style-card.on { grid-column: span 2; }
  .m-price-grid { grid-template-columns: 1fr !important; gap: 12px !important; max-width: 100% !important; }
  .m-price { padding: 20px 16px !important; }
  .m-proof {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .m-proof-player iframe { min-height: 150px; border-radius: 12px; }
  .m-meters { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* Buttons touch */
  .m-section-dark .m-btn,
  .m-section-dark a.m-btn {
    min-height: 48px;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .m-flow {
    grid-template-columns: 1fr !important;
  }
  .m-trust-row {
    grid-template-columns: 1fr 1fr !important;
  }
  .m-style-grid-fancy .m-style-card.on { grid-column: span 1; }
  .m-hero-dark-title { font-size: 1.75rem !important; }
  .m-brand-text small { display: none; }
}

/* Landscape phones */
@media (max-height: 480px) and (orientation: landscape) {
  .m-hero-dark { min-height: auto; padding: 20px 16px; }
  .m-flow { display: none !important; }
  body.dark-ai .m-mobile-cta { padding-top: 8px; padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px)); }
}

/* iOS tap highlight */
body.dark-ai a,
body.dark-ai button {
  -webkit-tap-highlight-color: rgba(124, 58, 237, 0.25);
  touch-action: manipulation;
}

/* ═══════════════════════════════════════════════════
   MOBILE v9 — harder phone pass
   ═══════════════════════════════════════════════════ */
.m-pill-short { display: none; }
.m-hero-sub-short { display: none; }
.m-mobile-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
  transition: opacity 0.2s ease, transform 0.25s ease;
}
.m-mobile-cta {
  transition: opacity 0.2s ease, transform 0.25s ease;
}
.m-mobile-cta-secondary {
  display: none;
  margin-top: 8px;
  min-height: 46px !important;
  font-size: 14px !important;
}

@media (max-width: 900px) {
  .m-mobile-cta-secondary { display: flex !important; width: 100%; }
  body.dark-ai .m-mobile-cta {
    display: grid !important;
    gap: 0;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .m-pill-full { display: none; }
  .m-pill-short { display: inline; }
  .m-hero-sub-full { display: none !important; }
  .m-hero-sub-short { display: block !important; }

  /* Prevent layout jump / overflow */
  .m-hero-dark-inner,
  .m-section-inner,
  .m-topbar-ai-inner {
    max-width: 100%;
    box-sizing: border-box;
  }
  .m-hero-dark {
    padding: 20px 14px 28px !important;
  }
  .m-hero-dark-title {
    font-size: clamp(1.7rem, 8vw, 2.35rem) !important;
    line-height: 1.08 !important;
  }
  .m-hero-dark-sub {
    font-size: 14px !important;
    margin-bottom: 18px !important;
  }

  /* Horizontal scrollable tech pills */
  .m-tech-pills {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding: 4px 2px 10px;
    margin: 0 -4px 12px;
    scrollbar-width: none;
  }
  .m-tech-pills::-webkit-scrollbar { display: none; }
  .m-tech-pills span {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  /* Style cards equal height */
  .m-style-grid-fancy {
    grid-template-columns: 1fr 1fr !important;
  }
  .m-style-art { height: 64px !important; }

  /* Pricing card primary button sticky feel */
  .m-price .m-btn { width: 100%; }

  /* Footer links wrap clean */
  .m-footer-dark .footer-links,
  body.dark-ai .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px !important;
    justify-content: flex-start;
  }
  .m-footer-dark .footer-links a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }

  /* Nav open body lock optional */
  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 380px) {
  .m-trust-row {
    grid-template-columns: 1fr !important;
  }
  .m-trust-item {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 12px;
  }
  .m-topbar-ai-cta { display: none !important; }
}

/* Desktop: hide short copy */
@media (min-width: 901px) {
  .m-pill-short,
  .m-hero-sub-short { display: none !important; }
  .m-pill-full,
  .m-hero-sub-full { display: inline !important; }
  .m-hero-sub-full { display: block !important; }
  .m-nav-cta-mobile { display: none !important; }
  .m-nav-cta-desktop { display: inline-flex !important; }
  body.dark-ai .m-mobile-cta { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   LANDR-PRO homepage redesign (v12)
   Clean product marketing · one primary CTA · no clutter
   ═══════════════════════════════════════════════════════════════ */
body.landr-pro {
  --lp-bg: #0b0a12;
  --lp-bg2: #12101c;
  --lp-card: #161422;
  --lp-line: rgba(255, 255, 255, 0.08);
  --lp-text: #f4f2ff;
  --lp-muted: #9b95b0;
  --lp-dim: #6e6880;
  --lp-accent: #7c3aed;
  --lp-accent2: #a78bfa;
  --lp-cyan: #22d3ee;
  --lp-grad: linear-gradient(105deg, #8b5cf6 0%, #6366f1 45%, #22d3ee 100%);
  --lp-btn: linear-gradient(90deg, #7c3aed 0%, #6366f1 55%, #38bdf8 100%);
  background: var(--lp-bg) !important;
  color: var(--lp-text);
  padding-bottom: 0 !important;
}
body.landr-pro .wrap { max-width: none; width: 100%; margin: 0; padding: 0; }
body.landr-pro .topbar-promo,
body.landr-pro .upgrade-banner { display: none !important; }

/* Nav */
.lp-nav {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; height: 64px; padding: 0 clamp(16px, 4vw, 40px);
  background: rgba(11, 10, 18, 0.82);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.lp-nav.scrolled {
  border-bottom-color: var(--lp-line);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.lp-brand {
  display: flex; align-items: center; gap: 10px;
  color: #fff !important; font-weight: 700; letter-spacing: -0.03em;
  text-decoration: none !important;
}
.lp-mark {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 800; color: #fff;
  background: var(--lp-grad);
  box-shadow: 0 6px 18px rgba(124,58,237,.4);
}
.lp-brand-name { font-family: var(--m-display); font-size: 17px; }
.lp-nav-links {
  display: flex; align-items: center; gap: 4px 18px;
  font-size: 14px; font-weight: 500; color: var(--lp-muted);
}
.lp-nav-links a {
  color: var(--lp-muted) !important; text-decoration: none !important;
  padding: 6px 2px; transition: color .15s ease;
}
.lp-nav-links a:hover { color: #fff !important; }
.lp-nav-em { color: #fff !important; font-weight: 600 !important; }
.lp-nav-actions { display: flex; align-items: center; gap: 10px; }
.lp-burger {
  display: none; width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid var(--lp-line); background: rgba(255,255,255,.04);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  cursor: pointer; padding: 0;
}
.lp-burger span {
  display: block; width: 16px; height: 2px; border-radius: 2px; background: #e9e5ff;
  transition: transform .2s ease, opacity .2s ease;
}
.lp-burger.on span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-burger.on span:nth-child(2) { opacity: 0; }
.lp-burger.on span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border-radius: 999px; font-weight: 700; letter-spacing: -0.01em;
  text-decoration: none !important; border: none; cursor: pointer;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.lp-btn-sm { min-height: 40px; padding: 0 16px; font-size: 13px; }
.lp-btn-lg { min-height: 50px; padding: 0 24px; font-size: 15px; }
.lp-btn-xl { min-height: 54px; padding: 0 28px; font-size: 16px; }
.lp-btn-block { width: 100%; }
.lp-btn-primary {
  background: var(--lp-btn); color: #fff !important;
  box-shadow: 0 10px 28px rgba(99, 102, 241, 0.35);
}
.lp-btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.lp-btn-ghost {
  background: rgba(255,255,255,.04); color: #fff !important;
  border: 1px solid rgba(255,255,255,.14) !important;
}
.lp-btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28) !important; }

/* Hero */
.lp-hero {
  position: relative; overflow: hidden;
  padding: clamp(32px, 6vw, 72px) clamp(16px, 4vw, 40px) clamp(48px, 8vw, 88px);
}
.lp-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 20% 0%, rgba(124,58,237,.32), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(34,211,238,.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(99,102,241,.1), transparent 50%),
    var(--lp-bg);
}
.lp-hero-grid {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 56px); align-items: center;
}
.lp-eyebrow {
  display: inline-flex; margin: 0 0 14px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--lp-accent2);
}
.lp-hero-copy h1 {
  margin: 0 0 16px;
  font-family: var(--m-display);
  font-size: clamp(2.35rem, 5.5vw, 3.55rem);
  font-weight: 700; letter-spacing: -0.04em; line-height: 1.05; color: #fff;
}
.lp-grad {
  background: var(--lp-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp-lede {
  margin: 0 0 24px; max-width: 480px;
  font-size: clamp(15px, 2vw, 17px); line-height: 1.6; color: var(--lp-muted);
}
.lp-lede strong { color: #e9e5ff; font-weight: 600; }
.lp-cta-row {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px;
}
.lp-bullets {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px 14px;
}
.lp-bullets li {
  font-size: 13px; font-weight: 500; color: var(--lp-dim);
  padding-left: 16px; position: relative;
}
.lp-bullets li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-accent2), var(--lp-cyan));
}

/* Product mock card */
.lp-product { width: 100%; }
.lp-product-card {
  border-radius: 22px; padding: 20px;
  background: linear-gradient(180deg, rgba(30,26,48,.95), rgba(18,16,30,.98));
  border: 1px solid rgba(167,139,250,.22);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.03) inset,
    0 24px 64px rgba(0,0,0,.45),
    0 0 80px rgba(124,58,237,.12);
}
.lp-product-top {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px;
}
.lp-product-track { display: flex; align-items: center; gap: 12px; min-width: 0; }
.lp-product-art {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 18px;
  background: var(--lp-grad); color: #fff;
}
.lp-product-track strong { display: block; font-size: 14px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-product-track span { font-size: 12px; color: var(--lp-dim); }
.lp-product-badge {
  flex-shrink: 0; padding: 6px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .04em;
  color: #c4b5fd; background: rgba(124,58,237,.2); border: 1px solid rgba(167,139,250,.3);
}
.lp-product-wave {
  border-radius: 14px; padding: 16px 12px;
  background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.05);
  margin-bottom: 14px;
}
.lp-bars {
  display: flex; align-items: flex-end; gap: 3px; height: 56px;
}
.lp-bars i {
  flex: 1; height: var(--h, 40%); border-radius: 2px;
  background: linear-gradient(180deg, #a78bfa, #6366f1 60%, #22d3ee);
  opacity: .85;
}
.lp-ab {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px;
}
.lp-ab-btn {
  min-height: 40px; border-radius: 12px; border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04); color: var(--lp-muted);
  font-size: 13px; font-weight: 700; cursor: default;
}
.lp-ab-btn.on {
  color: #fff; border-color: transparent;
  background: var(--lp-btn); box-shadow: 0 8px 20px rgba(99,102,241,.3);
}
.lp-product-stats {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-bottom: 14px; padding: 12px 14px; border-radius: 14px;
  background: rgba(255,255,255,.03); border: 1px solid var(--lp-line);
}
.lp-product-stats span { display: block; font-size: 11px; color: var(--lp-dim); text-transform: uppercase; letter-spacing: .06em; }
.lp-product-stats b { display: block; font-size: 18px; color: #fff; margin: 2px 0; }
.lp-product-stats em { font-style: normal; font-size: 12px; color: var(--lp-muted); }
.lp-product-stats .after b { color: #a78bfa; }
.lp-arrow { color: var(--lp-dim); font-weight: 700; }
.lp-product-cta {
  display: flex; align-items: center; justify-content: center;
  min-height: 48px; border-radius: 14px;
  font-size: 14px; font-weight: 700; color: #fff !important; text-decoration: none !important;
  background: rgba(124,58,237,.25); border: 1px solid rgba(167,139,250,.35);
  transition: background .15s ease;
}
.lp-product-cta:hover { background: rgba(124,58,237,.4); }
.lp-product-note {
  text-align: center; margin: 12px 0 0; font-size: 12px; color: var(--lp-dim);
}

/* Trust strip */
.lp-trust {
  border-top: 1px solid var(--lp-line); border-bottom: 1px solid var(--lp-line);
  background: rgba(255,255,255,.02);
}
.lp-trust-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 16px clamp(16px, 4vw, 40px);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--lp-dim);
}

/* Sections */
.lp-section { padding: clamp(56px, 10vw, 96px) clamp(16px, 4vw, 40px); }
.lp-section-alt { background: linear-gradient(180deg, rgba(255,255,255,.02), transparent); }
.lp-inner { max-width: 1100px; margin: 0 auto; }
.lp-center { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.lp-kicker {
  margin: 0 0 10px; font-size: 12px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--lp-accent2);
}
.lp-section h2, .lp-center h2 {
  margin: 0 0 12px; font-family: var(--m-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700;
  letter-spacing: -0.03em; color: #fff; line-height: 1.15;
}
.lp-sub { margin: 0; font-size: 16px; line-height: 1.55; color: var(--lp-muted); }
.lp-mt { margin-top: 32px; }

/* Steps */
.lp-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.lp-step {
  padding: 24px; border-radius: 18px;
  background: var(--lp-card); border: 1px solid var(--lp-line);
}
.lp-step-n {
  font-size: 13px; font-weight: 800; letter-spacing: .1em;
  color: var(--lp-accent2); margin-bottom: 12px;
}
.lp-step h3 { margin: 0 0 8px; font-size: 17px; color: #fff; }
.lp-step p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--lp-muted); }

/* Features */
.lp-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.lp-features article {
  padding: 22px; border-radius: 18px;
  background: rgba(255,255,255,.03); border: 1px solid var(--lp-line);
  transition: border-color .15s ease, transform .15s ease;
}
.lp-features article:hover {
  border-color: rgba(167,139,250,.35); transform: translateY(-2px);
}
.lp-fi {
  width: 40px; height: 40px; border-radius: 12px; margin-bottom: 12px;
  display: grid; place-items: center; font-size: 16px;
  background: rgba(124,58,237,.18); color: var(--lp-accent2);
}
.lp-features h3 { margin: 0 0 6px; font-size: 15px; color: #fff; }
.lp-features p { margin: 0; font-size: 13px; line-height: 1.5; color: var(--lp-muted); }

/* Styles row */
.lp-styles {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.lp-style {
  padding: 18px 14px; border-radius: 16px; text-align: center;
  background: var(--lp-card); border: 1px solid var(--lp-line);
}
.lp-style.on {
  border-color: rgba(167,139,250,.45);
  box-shadow: 0 0 0 1px rgba(124,58,237,.2), 0 12px 32px rgba(124,58,237,.15);
}
.lp-style-dot {
  display: block; width: 36px; height: 36px; border-radius: 50%; margin: 0 auto 10px;
}
.lp-style-dot.aurora { background: linear-gradient(135deg, #a78bfa, #6366f1); }
.lp-style-dot.thunder { background: linear-gradient(135deg, #818cf8, #3b82f6); }
.lp-style-dot.sunroof { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.lp-style-dot.clear { background: linear-gradient(135deg, #67e8f9, #22d3ee); }
.lp-style-dot.rage { background: linear-gradient(135deg, #f97316, #ef4444); }
.lp-style strong { display: block; font-size: 14px; color: #fff; margin-bottom: 4px; }
.lp-style em { font-style: normal; font-size: 12px; color: var(--lp-dim); }

/* Proof */
.lp-proof {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
}
.lp-proof-copy .lp-center, .lp-proof-copy h2 { text-align: left; }
.lp-proof-copy .lp-sub { margin-bottom: 20px; }
.lp-meters { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.lp-meter {
  padding: 14px; border-radius: 14px;
  background: var(--lp-card); border: 1px solid var(--lp-line);
}
.lp-meter.hot { border-color: rgba(167,139,250,.4); background: rgba(124,58,237,.12); }
.lp-meter span { display: block; font-size: 11px; color: var(--lp-dim); text-transform: uppercase; letter-spacing: .06em; }
.lp-meter b { display: block; font-size: 22px; color: #fff; margin: 4px 0; }
.lp-meter em { font-style: normal; font-size: 13px; color: var(--lp-muted); }
.lp-highlights {
  margin: 0 0 20px; padding: 0 0 0 18px; color: var(--lp-muted); font-size: 14px; line-height: 1.6;
}
.lp-highlights li { margin-bottom: 4px; }
.lp-proof-player {
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--lp-line); background: #000;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

/* Pricing */
.lp-prices {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch;
}
.lp-price {
  position: relative; padding: 28px 22px; border-radius: 20px;
  background: var(--lp-card); border: 1px solid var(--lp-line);
  display: flex; flex-direction: column;
}
.lp-price.feat {
  border-color: rgba(167,139,250,.45);
  background: linear-gradient(180deg, rgba(124,58,237,.18), rgba(22,20,34,.98));
  box-shadow: 0 20px 50px rgba(124,58,237,.18);
  transform: scale(1.02);
}
.lp-price-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  color: #fff; background: var(--lp-btn);
}
.lp-tier { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--lp-dim); }
.lp-price h3 { margin: 6px 0 8px; font-size: 22px; color: #fff; }
.lp-amt {
  font-family: var(--m-display); font-size: 36px; font-weight: 700; color: #fff;
  letter-spacing: -0.03em; margin-bottom: 16px;
}
.lp-amt span { font-size: 14px; font-weight: 500; color: var(--lp-dim); margin-left: 4px; }
.lp-price ul {
  list-style: none; margin: 0 0 20px; padding: 0; flex: 1;
  font-size: 14px; color: var(--lp-muted); line-height: 1.55;
}
.lp-price li {
  padding: 7px 0 7px 22px; position: relative; border-bottom: 1px solid rgba(255,255,255,.04);
}
.lp-price li::before {
  content: "✓"; position: absolute; left: 0; color: #34d399; font-weight: 800;
}

/* FAQ */
.lp-faq-wrap { max-width: 720px; }
.lp-faq details {
  border-radius: 14px; margin-bottom: 10px;
  background: var(--lp-card); border: 1px solid var(--lp-line);
  padding: 4px 18px;
}
.lp-faq summary {
  cursor: pointer; list-style: none; padding: 16px 0;
  font-size: 15px; font-weight: 650; color: #fff;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: "+"; float: right; color: var(--lp-accent2); font-weight: 700;
}
.lp-faq details[open] summary::after { content: "−"; }
.lp-faq p {
  margin: 0 0 16px; font-size: 14px; line-height: 1.6; color: var(--lp-muted);
}

/* Final */
.lp-final {
  padding: clamp(64px, 12vw, 110px) clamp(16px, 4vw, 40px);
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(124,58,237,.28), transparent 60%),
    var(--lp-bg);
  border-top: 1px solid var(--lp-line);
}
.lp-final-inner { max-width: 560px; margin: 0 auto; }
.lp-final h2 {
  margin: 0 0 12px; font-family: var(--m-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.03em; color: #fff;
}
.lp-final p { margin: 0 0 24px; font-size: 16px; color: var(--lp-muted); line-height: 1.55; }

/* Sticky mobile CTA — single button */
.lp-sticky {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, transparent, rgba(11,10,18,.92) 28%, rgba(11,10,18,.98));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity .2s ease, transform .2s ease;
}
.lp-sticky.is-hidden { opacity: 0; pointer-events: none; transform: translateY(12px); }

/* Footer */
.lp-footer {
  border-top: 1px solid var(--lp-line);
  padding: 40px clamp(16px, 4vw, 40px) 48px;
  background: #08070e;
}
.lp-footer-inner { max-width: 1100px; margin: 0 auto; }
.lp-footer-brand { margin-bottom: 16px; }
.lp-footer-brand strong { display: block; color: #fff; font-size: 16px; margin-bottom: 4px; }
.lp-footer-brand span { font-size: 13px; color: var(--lp-dim); }
.lp-footer-links {
  display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 18px;
}
.lp-footer-links a {
  font-size: 13px; color: var(--lp-muted) !important; text-decoration: none !important;
}
.lp-footer-links a:hover { color: #fff !important; }
.lp-footer-fine { margin: 0; font-size: 12px; color: var(--lp-dim); line-height: 1.5; }

/* Responsive */
@media (max-width: 960px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .lp-hero-copy { text-align: center; }
  .lp-lede { margin-left: auto; margin-right: auto; }
  .lp-cta-row { justify-content: center; }
  .lp-bullets { justify-content: center; }
  .lp-product { max-width: 440px; margin: 0 auto; }
  .lp-steps, .lp-features { grid-template-columns: 1fr; }
  .lp-styles { grid-template-columns: repeat(2, 1fr); }
  .lp-styles .lp-style:last-child { grid-column: span 2; }
  .lp-proof { grid-template-columns: 1fr; }
  .lp-proof-copy h2, .lp-proof-copy .lp-sub { text-align: center; }
  .lp-proof-copy .lp-kicker { text-align: center; }
  .lp-proof-copy .lp-btn { width: 100%; }
  .lp-prices { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .lp-price.feat { transform: none; }
}
@media (max-width: 820px) {
  .lp-nav-links {
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px 16px 100px;
    background: rgba(11,10,18,.97);
    backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform .25s var(--m-ease);
    overflow-y: auto;
  }
  .lp-nav-links.open { transform: translateX(0); }
  .lp-nav-links a {
    padding: 16px 12px !important;
    border-bottom: 1px solid var(--lp-line);
    font-size: 16px; color: #e9e5ff !important;
  }
  .lp-burger { display: flex; }
  .lp-hide-sm { display: none !important; }
  .lp-sticky { display: block; }
  body.landr-pro { padding-bottom: 76px; }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 420px) {
  .lp-hero-copy h1 { font-size: 2rem; }
  .lp-cta-row { flex-direction: column; }
  .lp-cta-row .lp-btn { width: 100%; }
  .lp-styles { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 821px) {
  .lp-sticky { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-btn, .lp-features article, .lp-sticky { transition: none !important; }
}
