/* ============================================================
   Lumen Marketing — Layout & Components
   Tokens come from colors_and_type.css (loaded before this).
   All rules scoped to .mkt-page to avoid collisions with app.css.
   ============================================================ */

.mkt-page { margin: 0; background: var(--bg); color: var(--ink-1); font-family: var(--font-sans); min-height: 100vh; }
.mkt-page a { text-decoration: none; }
.mkt-page img { max-width: 100%; display: block; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.mkt-page .nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  border-bottom: 1px solid var(--divider);
}
.mkt-page .nav-inner { display: flex; align-items: center; gap: 32px; padding: 14px 0; }
.mkt-page .nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-serif); font-size: 22px; font-weight: 500; color: var(--ink-1); text-decoration: none; }
.mkt-page .nav-logo img { width: 32px; height: 32px; }
.mkt-page .nav-links { display: flex; gap: 24px; flex: 1; }
.mkt-page .nav-links a { color: var(--ink-2); text-decoration: none; font-size: 14px; font-weight: 500; }
.mkt-page .nav-links a:hover { color: var(--ink-1); }
.mkt-page .nav-actions { display: flex; gap: 10px; align-items: center; }

/* ── Buttons ── */
.mkt-page .btn { display: inline-flex; align-items: center; gap: 8px; height: 42px; padding: 0 18px; border-radius: 999px; border: 0; cursor: pointer; font-family: var(--font-sans); font-weight: 600; font-size: 14px; text-decoration: none; transition: transform var(--motion-fast), background var(--motion-fast); }
.mkt-page .btn:hover { transform: translateY(-1px); }
.mkt-page .btn-primary { background: var(--accent); color: var(--ink-on-accent); box-shadow: var(--shadow-accent); }
.mkt-page .btn-outline  { background: var(--surface-1); color: var(--ink-1); box-shadow: inset 0 0 0 1px var(--border); }
.mkt-page .btn-ghost    { background: transparent; color: var(--ink-1); }
.mkt-page .btn-lg { height: 54px; padding: 0 28px; font-size: 16px; }

/* ── Theme toggle ── */
.mkt-page .theme-tog { display: inline-flex; padding: 3px; gap: 2px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; }
.mkt-page .theme-tog button { appearance: none; border: 0; background: transparent; cursor: pointer; width: 32px; height: 32px; border-radius: 999px; color: var(--ink-2); display: inline-flex; align-items: center; justify-content: center; }
.mkt-page .theme-tog button[aria-pressed="true"] { background: var(--accent); color: var(--ink-on-accent); }

/* ── Hero ── */
.mkt-page .hero { padding: 96px 0 80px; position: relative; overflow: hidden; }
.mkt-page .hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center; }
.mkt-page .eyebrow { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-bold); font-weight: 600; }
.mkt-page .hero h1 { font-family: var(--font-serif); font-weight: 500; font-size: 72px; line-height: 1.02; letter-spacing: -0.02em; margin: 14px 0 18px; color: var(--ink-1); text-wrap: pretty; }
.mkt-page .hero h1 em { font-style: italic; color: var(--accent-bold); font-weight: 500; }
.mkt-page .hero p { font-size: 19px; line-height: 1.55; color: var(--ink-2); max-width: 48ch; margin: 0 0 32px; text-wrap: pretty; }
.mkt-page .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.mkt-page .stores { display: flex; gap: 10px; }
.mkt-page .store-btn { display: inline-flex; align-items: center; gap: 10px; height: 54px; padding: 0 22px; border-radius: 14px; background: var(--ink-1); color: var(--ink-inverse); text-decoration: none; }
.mkt-page .store-btn .small { font-size: 10px; opacity: 0.85; line-height: 1; }
.mkt-page .store-btn .big  { font-family: var(--font-serif); font-size: 18px; line-height: 1.1; font-weight: 500; }

/* ── Hero badge ── */
.mkt-page .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-wash); border: 1px solid var(--border);
  border-radius: 999px; padding: 6px 16px;
  font-size: 13px; color: var(--accent-ink); font-weight: 500;
  margin-bottom: 24px;
}
.mkt-page .hero-badge .pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  animation: mkt-pulse 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes mkt-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.82); }
}

/* ── Hero art ── */
.mkt-page .hero-art { position: relative; height: 600px; animation: mkt-float 6s ease-in-out infinite; }
@keyframes mkt-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.mkt-page .hero-art .blob {
  position: absolute; inset: auto -8% -8% -8%; height: 100%;
  background:
    radial-gradient(60% 60% at 30% 30%, var(--accent-wash) 0%, transparent 70%),
    radial-gradient(45% 45% at 80% 60%, var(--feed-wash) 0%, transparent 70%),
    radial-gradient(55% 55% at 60% 90%, var(--kang-wash) 0%, transparent 70%);
  filter: blur(8px); opacity: 0.9;
}
.mkt-page .device { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(-3deg); width: 300px; height: 600px; background: var(--bg); border: 8px solid var(--ink-1); border-radius: 42px; box-shadow: var(--shadow-lg); overflow: hidden; }
.mkt-page .device-2 { transform: translate(-30%, -40%) rotate(6deg); width: 260px; height: 520px; opacity: 0.92; }
.mkt-page .device-screen { padding: 18px 16px; height: 100%; box-sizing: border-box; }
.mkt-page .device-greet { font-family: var(--font-serif); font-size: 22px; line-height: 1.2; color: var(--ink-1); }
.mkt-page .device-sub { font-size: 13px; color: var(--ink-2); margin-top: 4px; }
.mkt-page .device-card { background: var(--accent-wash); border-radius: 14px; padding: 14px; margin-top: 14px; }
.mkt-page .device-card .lab { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-ink); font-weight: 600; }
.mkt-page .device-card .msg { font-family: var(--font-serif); font-size: 15px; color: var(--accent-ink); margin-top: 4px; line-height: 1.3; }
.mkt-page .tile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.mkt-page .tile { padding: 10px; border-radius: 14px; font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 8px; min-height: 54px; }
.mkt-page .tile .dot { width: 28px; height: 28px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; color: #fff; }

/* ── Section base ── */
.mkt-page section.s { padding: 96px 0; }
.mkt-page .s-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.mkt-page .s-head h2 { font-family: var(--font-serif); font-weight: 500; font-size: 48px; line-height: 1.05; letter-spacing: -0.015em; margin: 14px 0; color: var(--ink-1); text-wrap: pretty; }
.mkt-page .s-head p  { font-size: 18px; line-height: 1.55; color: var(--ink-2); margin: 0; text-wrap: pretty; }

/* ── Features grid ── */
.mkt-page .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mkt-page .feature { background: var(--surface-1); border: 1px solid var(--border); border-radius: 24px; padding: 28px; box-shadow: var(--shadow-sm); transition: transform var(--motion-base), box-shadow var(--motion-base); }
.mkt-page .feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.mkt-page .feature-icon { width: 52px; height: 52px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.mkt-page .feature h3 { font-family: var(--font-serif); font-weight: 500; font-size: 22px; margin: 0 0 8px; color: var(--ink-1); }
.mkt-page .feature p  { color: var(--ink-2); margin: 0; line-height: 1.55; }

/* ── Stats strip ── */
.mkt-page .stats-strip { background: var(--surface-1); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); padding: 48px 0; }
.mkt-page .stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.mkt-page .stat-num { font-family: var(--font-serif); font-size: 42px; font-weight: 500; color: var(--accent-bold); letter-spacing: -0.02em; }
.mkt-page .stat-label { font-size: 14px; color: var(--ink-2); margin-top: 4px; }

/* ── Stagger children ── */
.mkt-page .stagger-children > * { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1); }
.mkt-page .stagger-children.visible > * { opacity: 1; transform: none; }
.mkt-page .stagger-children.visible > *:nth-child(1)  { transition-delay: 0s; }
.mkt-page .stagger-children.visible > *:nth-child(2)  { transition-delay: 0.08s; }
.mkt-page .stagger-children.visible > *:nth-child(3)  { transition-delay: 0.16s; }
.mkt-page .stagger-children.visible > *:nth-child(4)  { transition-delay: 0.24s; }
.mkt-page .stagger-children.visible > *:nth-child(5)  { transition-delay: 0.32s; }
.mkt-page .stagger-children.visible > *:nth-child(6)  { transition-delay: 0.40s; }
.mkt-page .stagger-children.visible > *:nth-child(7)  { transition-delay: 0.48s; }
.mkt-page .stagger-children.visible > *:nth-child(8)  { transition-delay: 0.56s; }
.mkt-page .stagger-children.visible > *:nth-child(9)  { transition-delay: 0.64s; }

/* ── Trackers section ── */
.mkt-page .trackers-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 56px; }
.mkt-page .tracker-list { list-style: none; margin: 0; padding: 0; }
.mkt-page .tracker-list li { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--divider); font-size: 15px; }
.mkt-page .tracker-list li:last-child { border-bottom: none; }
.mkt-page .tracker-icon { width: 38px; height: 38px; background: var(--accent-wash); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent-bold); }
.mkt-page .tracker-name { font-weight: 600; color: var(--ink-1); }
.mkt-page .tracker-desc { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.mkt-page .tracker-vis { display: flex; flex-direction: column; gap: 16px; }

/* ── Showcase rows ── */
.mkt-page .showcase { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; padding: 48px 0; }
.mkt-page .showcase.flip { grid-template-columns: 1.1fr 0.9fr; }
.mkt-page .showcase.flip .shot { order: -1; }
.mkt-page .shot { background: linear-gradient(135deg, var(--accent-wash), var(--feed-wash)); border-radius: 32px; padding: 36px; display: flex; align-items: center; justify-content: center; min-height: 480px; }
.mkt-page .shot-phone { width: 280px; height: 560px; background: var(--bg); border: 8px solid var(--ink-1); border-radius: 40px; padding: 18px 14px; overflow: hidden; box-shadow: var(--shadow-lg); }

/* Nicky bullet points in showcase */
.mkt-page .nicky-points { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.mkt-page .nicky-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.mkt-page .nicky-points li .star { color: var(--accent); flex-shrink: 0; margin-top: 1px; }

/* ── Partner section ── */
.mkt-page .partner-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mkt-page .partner-points { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.mkt-page .partner-points li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; }
.mkt-page .partner-check { width: 22px; height: 22px; border-radius: 50%; background: var(--accent-wash); border: 1px solid var(--accent); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; color: var(--accent-bold); font-size: 13px; font-weight: 700; }
.mkt-page .partner-card { background: var(--surface-1); border: 1px solid var(--border); border-radius: 24px; padding: 32px; box-shadow: var(--shadow-sm); }

/* ── Testimonials ── */
.mkt-page .quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mkt-page .quote { background: var(--surface-1); border: 1px solid var(--border); border-radius: 20px; padding: 28px; box-shadow: var(--shadow-sm); }
.mkt-page .quote .stars { color: var(--celebrate); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.mkt-page .quote blockquote { margin: 0 0 16px; font-family: var(--font-serif); font-size: 18px; line-height: 1.4; color: var(--ink-1); font-weight: 500; }
.mkt-page .quote .who { display: flex; gap: 12px; align-items: center; }
.mkt-page .quote .who .av { width: 40px; height: 40px; border-radius: 999px; background: linear-gradient(135deg, var(--feed-wash), var(--feed)); display: inline-flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-serif); font-weight: 500; flex-shrink: 0; }
.mkt-page .quote .who .meta .n { color: var(--ink-1); font-weight: 600; font-size: 14px; }
.mkt-page .quote .who .meta .t { color: var(--ink-3); font-size: 12px; }

/* ── Hardship strip ── */
.mkt-page .strip { background: var(--accent-wash); border-radius: 32px; padding: 64px; text-align: center; }
[data-theme="dark"] .mkt-page .strip { background: linear-gradient(135deg, var(--accent-wash), var(--kang-wash)); }
.mkt-page .strip h2 { font-family: var(--font-serif); font-weight: 500; font-size: 42px; line-height: 1.1; margin: 0 0 14px; color: var(--accent-ink); text-wrap: pretty; }
.mkt-page .strip p  { color: var(--accent-ink); opacity: 0.9; max-width: 560px; margin: 0 auto 28px; font-size: 17px; line-height: 1.55; }

/* ── CTA band ── */
.mkt-page .cta-band { background: var(--surface-1); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); text-align: center; padding: 96px 0; position: relative; overflow: hidden; }
.mkt-page .cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%, var(--accent-wash) 0%, transparent 70%); pointer-events: none; }
.mkt-page .cta-band h2 { font-family: var(--font-serif); font-weight: 500; font-size: 48px; line-height: 1.05; letter-spacing: -0.015em; max-width: 640px; margin: 0 auto 16px; position: relative; color: var(--ink-1); }
.mkt-page .cta-band p  { font-size: 17px; color: var(--ink-2); max-width: 480px; margin: 0 auto 40px; position: relative; }

/* ── QR Download section ── */
.mkt-page .download-section { background: var(--accent-wash); border-radius: 32px; padding: 64px; position: relative; overflow: hidden; }
[data-theme="dark"] .mkt-page .download-section { background: linear-gradient(135deg, var(--accent-wash), var(--kang-wash)); }
.mkt-page .download-inner { text-align: center; }
.mkt-page .download-inner h2 { font-family: var(--font-serif); font-weight: 500; font-size: 42px; line-height: 1.1; margin-bottom: 12px; color: var(--accent-ink); }
.mkt-page .download-inner p  { font-size: 17px; color: var(--accent-ink); opacity: 0.9; max-width: 500px; margin: 0 auto 56px; }
.mkt-page .download-platforms { display: flex; justify-content: center; gap: 56px; flex-wrap: wrap; }
.mkt-page .download-platform  { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.mkt-page .qr-frame { background: var(--surface-1); border: 1px solid var(--border); border-radius: 20px; padding: 16px; transition: border-color var(--motion-base), box-shadow var(--motion-base); }
.mkt-page .qr-frame:hover { border-color: var(--accent); box-shadow: var(--shadow-accent); }
.mkt-page .qr-frame img { width: 160px; height: 160px; border-radius: 8px; display: block; }
.mkt-page .platform-label { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.mkt-page .platform-label strong { font-size: 16px; font-weight: 700; color: var(--accent-ink); }
.mkt-page .platform-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--surface-1); border: 1px solid var(--border); border-radius: 999px; padding: 5px 14px; font-size: 12px; color: var(--ink-3); }
.mkt-page .platform-badge.available { border-color: var(--success-wash); color: var(--success); }

/* ── Resources grid ── */
.mkt-page .resources-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.mkt-page .resource-card { background: var(--surface-1); border: 1px solid var(--border); border-radius: 20px; padding: 24px; display: flex; flex-direction: column; gap: 10px; transition: border-color var(--motion-base), transform var(--motion-base); text-decoration: none; }
.mkt-page .resource-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.mkt-page .resource-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--accent-bold); }
.mkt-page .resource-title { font-size: 15px; font-weight: 600; color: var(--ink-1); }
.mkt-page .resource-desc  { font-size: 13px; color: var(--ink-2); line-height: 1.55; }
.mkt-page .resource-link  { font-size: 13px; color: var(--accent-bold); font-weight: 600; margin-top: auto; }

/* ── Footer ── */
.mkt-page footer { padding: 64px 0 40px; border-top: 1px solid var(--divider); }
.mkt-page .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.mkt-page .foot-grid h4 { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 14px; }
.mkt-page .foot-grid a { display: block; color: var(--ink-2); text-decoration: none; font-size: 14px; padding: 6px 0; }
.mkt-page .foot-grid a:hover { color: var(--ink-1); }
.mkt-page .foot-bot { display: flex; justify-content: space-between; align-items: center; color: var(--ink-3); font-size: 13px; padding-top: 24px; border-top: 1px solid var(--divider); flex-wrap: wrap; gap: 12px; }

/* ── Pricing toggle ── */
.mkt-page .pricing-toggle-wrap { display: flex; justify-content: center; margin: 36px 0 0; }
.mkt-page .pricing-toggle { position: relative; display: inline-flex; background: var(--surface-1); border: 1px solid var(--border); border-radius: 999px; padding: 4px; }
.mkt-page .pricing-toggle-pill { position: absolute; top: 4px; left: 4px; height: calc(100% - 8px); border-radius: 999px; background: var(--accent); box-shadow: var(--shadow-accent); transition: transform 0.42s cubic-bezier(0.34,1.56,0.64,1), width 0.42s cubic-bezier(0.34,1.56,0.64,1); pointer-events: none; z-index: 0; }
.mkt-page .pricing-toggle-btn { position: relative; z-index: 1; background: transparent; border: none; color: var(--ink-3); font-size: 14px; font-weight: 600; padding: 9px 26px; border-radius: 999px; cursor: pointer; transition: color 0.22s; display: flex; align-items: center; gap: 8px; white-space: nowrap; font-family: var(--font-sans); }
.mkt-page .pricing-toggle-btn.active { color: var(--ink-on-accent); }
.mkt-page .pricing-save-badge { background: rgba(74,222,128,0.14); color: #4ADE80; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 999px; border: 1px solid rgba(74,222,128,0.28); }

/* ── Pricing cards ── */
.mkt-page .pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; align-items: stretch; }
.mkt-page .pricing-card { display: flex; flex-direction: column; border-radius: 20px; padding: 32px; opacity: 0; transform: translateY(36px); transition: opacity 0.9s ease, transform 0.9s ease; }
.mkt-page .pricing-card.card-visible { opacity: 1; transform: translateY(0); }
.mkt-page .pricing-card.card-done { transition: opacity 0.75s ease, transform 0.3s ease, box-shadow 0.3s ease; }
.mkt-page .pricing-card-free { background: var(--surface-1); border: 1px solid var(--border); }
.mkt-page .pricing-card-free.card-done:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mkt-page .pricing-card-pro { background: linear-gradient(160deg, var(--accent-wash), var(--surface-1)); border: 2px solid var(--accent); position: relative; box-shadow: var(--shadow-accent); }
.mkt-page .pricing-card-pro.card-done:hover { transform: translateY(-4px); box-shadow: 0 10px 40px color-mix(in oklab, var(--accent) 45%, transparent); }
.mkt-page .pricing-card-family { background: var(--surface-1); border: 1px solid var(--celebrate-wash); }
.mkt-page .pricing-card-family.card-done:hover { transform: translateY(-4px); box-shadow: 0 8px 28px color-mix(in oklab, var(--celebrate) 28%, transparent); }
.mkt-page .card-popular-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--ink-on-accent); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 4px 14px; border-radius: 999px; white-space: nowrap; }
.mkt-page .price-tier-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.mkt-page .price-num { display: flex; align-items: baseline; gap: 4px; }
.mkt-page .price-num .amount { font-family: var(--font-serif); font-size: 40px; font-weight: 500; letter-spacing: -0.03em; color: var(--ink-1); }
.mkt-page .price-num .period { font-size: 14px; color: var(--ink-3); }
.mkt-page .price-sub { font-size: 13px; color: var(--ink-3); margin: 4px 0 24px; }
.mkt-page .price-features { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 13px; flex: 1; }
.mkt-page .price-features li { display: flex; gap: 8px; align-items: flex-start; line-height: 1.45; }
.mkt-page .price-features .chk { color: var(--success); flex-shrink: 0; margin-top: 1px; }
.mkt-page .price-features .star-bullet { color: var(--accent-bold); flex-shrink: 0; margin-top: 1px; }
.mkt-page .price-features .gold-bullet { color: var(--celebrate); flex-shrink: 0; margin-top: 1px; }
.mkt-page .price-features .dim { color: var(--ink-3); }
.mkt-page .price-features .dim .chk { opacity: 0.3; }

/* Partner sharing explainer box */
.mkt-page .partner-explainer { margin-top: 32px; background: var(--surface-1); border: 1px solid var(--border); border-radius: 20px; padding: 28px 32px; }
.mkt-page .partner-explainer h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 500; margin: 0 0 6px; color: var(--ink-1); }
.mkt-page .partner-explainer p  { font-size: 13px; color: var(--ink-3); margin: 0 0 20px; }
.mkt-page .partner-explainer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mkt-page .explainer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; margin: 0 0 10px; }
.mkt-page .explainer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--ink-2); }
.mkt-page .explainer-col li { display: flex; gap: 8px; align-items: flex-start; }

/* Pricing title word-mask reveal */
.mkt-page .pricing-title-word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.mkt-page .pricing-title-inner { display: inline-block; transform: translateY(100%); transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.mkt-page .pricing-title-inner.revealed { transform: translateY(0); }

/* Blazor's FocusOnNavigate focuses h1 on every route — suppress that outline */
.mkt-page h1:focus, .mkt-page h2:focus, .mkt-page h3:focus { outline: none; }

/* ── Scroll reveal ── */
.mkt-page .reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms cubic-bezier(.2,.8,.2,1), transform 700ms cubic-bezier(.2,.8,.2,1); will-change: opacity, transform; }
.mkt-page .reveal.in { opacity: 1; transform: none; }
.mkt-page .reveal.reveal-left  { transform: translateX(-48px); }
.mkt-page .reveal.reveal-right { transform: translateX(48px); }
.mkt-page .reveal.reveal-scale { transform: scale(0.94) translateY(20px); }
.mkt-page .reveal.delay-1 { transition-delay: 80ms; }
.mkt-page .reveal.delay-2 { transition-delay: 160ms; }
.mkt-page .reveal.delay-3 { transition-delay: 240ms; }
@media (prefers-reduced-motion: reduce) {
  .mkt-page .reveal, .mkt-page .stagger-children > * { opacity: 1; transform: none; transition: none; }
  .mkt-page .hero-art { animation: none; }
  .mkt-page .hero-badge .pulse-dot { animation: none; }
}

/* ── Responsive ── */
@media (max-width: 880px) {
  .mkt-page .hero-grid, .mkt-page .showcase, .mkt-page .showcase.flip,
  .mkt-page .trackers-layout, .mkt-page .partner-split { grid-template-columns: 1fr; gap: 32px; }
  .mkt-page .showcase.flip .shot { order: 0; }
  .mkt-page .features, .mkt-page .pricing-cards, .mkt-page .quotes,
  .mkt-page .resources-grid, .mkt-page .foot-grid { grid-template-columns: 1fr; }
  .mkt-page .stats-inner { grid-template-columns: 1fr 1fr; }
  .mkt-page .hero h1 { font-size: 48px; }
  .mkt-page .s-head h2, .mkt-page .strip h2, .mkt-page .cta-band h2 { font-size: 34px; }
  .mkt-page .hero { padding: 48px 0; }
  .mkt-page section.s { padding: 64px 0; }
  .mkt-page .strip, .mkt-page .download-section { padding: 40px 24px; }
  .mkt-page .nav-links { display: none; }
  .mkt-page .download-platforms { gap: 32px; }
  .mkt-page .partner-explainer-grid { grid-template-columns: 1fr; }
}
