:root {
  --m-ink: #182033;
  --m-ink-2: #2f3950;
  --m-muted: #69758f;
  --m-accent: #655cf4;
  --m-accent-dark: #5148dc;
  --m-soft: #f2f4fa;
  --m-paper: #f7f8fc;
  --m-line: #e2e6ef;
  --m-mint: #17b981;
  --m-white: #fff;
  --m-shadow: 0 24px 70px rgba(35, 45, 76, .12);
  --m-shadow-soft: 0 12px 34px rgba(35, 45, 76, .07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; }

.mkt {
  min-height: 100%;
  overflow-x: clip;
  background: var(--m-white);
  color: var(--m-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}

.mkt a { color: inherit; }
.mkt h1, .mkt h2, .mkt h3, .mkt p { margin-top: 0; }
.mkt h1, .mkt h2, .mkt h3 { text-wrap: balance; }
.mkt p { text-wrap: pretty; }
.mkt-container { width: min(100% - 48px, 1240px); margin-inline: auto; }
.mkt-skip { position: fixed; left: 16px; top: -80px; z-index: 60; padding: 11px 15px; border-radius: 10px; background: #fff; box-shadow: var(--m-shadow-soft); }
.mkt-skip:focus { top: 16px; }

.mkt-header { position: sticky; top: 0; z-index: 40; background: rgba(255, 255, 255, .82); backdrop-filter: blur(20px) saturate(160%); box-shadow: 0 1px 0 rgba(38, 48, 76, .07); }
.mkt-header-row { min-height: 72px; display: flex; align-items: center; gap: 28px; }
.mkt-logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 760; letter-spacing: -.02em; }
.mkt-logo-mark { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 11px; background: var(--m-accent); color: #fff; box-shadow: 0 8px 20px rgba(101, 92, 244, .22); }
.mkt-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.mkt-nav a { color: #46516a; text-decoration: none; font-size: 13px; font-weight: 650; }
.mkt-nav a:hover, .mkt-nav a[aria-current="page"] { color: var(--m-accent); }
.mkt-actions { display: flex; align-items: center; gap: 8px; }
.mkt-mobile-nav { display: none; margin-left: auto; position: relative; }
.mkt-mobile-nav summary { list-style: none; cursor: pointer; font-size: 13px; font-weight: 700; }
.mkt-mobile-nav summary::-webkit-details-marker { display: none; }
.mkt-mobile-panel { position: absolute; top: 42px; right: 0; min-width: 220px; padding: 10px; border: 1px solid var(--m-line); border-radius: 16px; background: rgba(255,255,255,.96); box-shadow: var(--m-shadow); backdrop-filter: blur(18px); }
.mkt-mobile-panel a { display: block; padding: 11px 12px; border-radius: 9px; text-decoration: none; font-size: 14px; }
.mkt-mobile-panel a:hover { background: var(--m-soft); }

.mkt-btn { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 0 18px; border: 0; border-radius: 12px; cursor: pointer; text-decoration: none; font-size: 13px; font-weight: 700; transition: transform 120ms ease-out, background-color 180ms ease, box-shadow 180ms ease, color 180ms ease; }
.mkt-btn:hover { transform: translateY(-1px); }
.mkt-btn:active { transform: scale(.975); transition-duration: 80ms; }
.mkt-btn-primary { background: var(--m-accent); color: #fff; box-shadow: 0 10px 24px rgba(101, 92, 244, .22); }
.mkt-btn-primary:hover { background: var(--m-accent-dark); }
.mkt-btn-light { border: 1px solid var(--m-line); background: #fff; color: var(--m-ink); }
.mkt-btn-light:hover { background: var(--m-paper); }
.mkt-btn-dark { background: var(--m-ink); color: #fff; }
.mkt-btn-dark:hover { background: #252f46; }
.mkt-btn-link { background: transparent; color: var(--m-ink-2); }
.mkt-btn-lg { min-height: 52px; padding-inline: 24px; font-size: 14px; }
.mkt a:focus-visible, .mkt button:focus-visible, .mkt summary:focus-visible { outline: 3px solid rgba(101,92,244,.28); outline-offset: 3px; }

.mkt-hero { position: relative; padding: 92px 0 0; background: #fff; }
.mkt-hero::before { content: ""; position: absolute; left: 50%; top: 0; width: min(100%, 1320px); height: 620px; transform: translateX(-50%); pointer-events: none; background: radial-gradient(circle at 76% 24%, rgba(101,92,244,.12), transparent 38%), radial-gradient(circle at 16% 68%, rgba(112,125,255,.055), transparent 32%); }
.mkt-hero-grid { position: relative; display: grid; }
.mkt-hero-grid-stacked { grid-template-columns: 1fr; }
.mkt-hero-copy { max-width: 900px; }
.mkt-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 23px; color: var(--m-accent); font-size: 11px; font-weight: 780; letter-spacing: .13em; text-transform: uppercase; }
.mkt-kicker::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--m-accent); }
.mkt h1 { max-width: 1000px; margin-bottom: 24px; font-size: clamp(48px, 7vw, 92px); line-height: .98; letter-spacing: -.065em; font-weight: 760; }
.mkt-hero h1 em { color: var(--m-accent); font-style: normal; }
.mkt-lead { max-width: 720px; margin-bottom: 30px; color: var(--m-muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.mkt-hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-bottom: 24px; }
.mkt-proofline { display: flex; flex-wrap: wrap; gap: 12px 22px; color: var(--m-muted); font-size: 13px; }
.mkt-proofline span { display: inline-flex; align-items: center; gap: 8px; }
.mkt-proofline span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--m-mint); }
.mkt-product { position: relative; margin-top: 62px; padding: 10px; border: 1px solid #dfe4ee; border-radius: 26px 26px 0 0; background: #e9edf5; box-shadow: 0 34px 90px rgba(35,45,76,.16); }
.mkt-product-bar { height: 34px; display: flex; align-items: center; gap: 7px; padding: 0 7px; }
.mkt-product-bar i { width: 8px; height: 8px; border-radius: 50%; background: #9ba5b8; }
.mkt-product-bar span { margin-left: auto; color: #6f7b92; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.mkt-product picture { display: block; }
.mkt-product img { display: block; width: 100%; height: auto; border: 1px solid rgba(42,52,79,.08); border-radius: 17px 17px 10px 10px; background: #fff; }

.mkt-trust { border-block: 1px solid var(--m-line); background: #fff; }
.mkt-trust-row { display: grid; grid-template-columns: 210px minmax(0,1fr); align-items: center; gap: 28px; min-height: 112px; }
.mkt-trust-label { color: var(--m-muted); font-size: 12px; font-weight: 650; }
.mkt-logos { min-width: 0; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.mkt-logo-track { display: flex; width: max-content; animation: mkt-marquee 38s linear infinite; }
.mkt-logo-set { display: flex; align-items: center; gap: 18px; padding-right: 18px; }
.mkt-logo-item { display: grid; width: 122px; height: 52px; place-items: center; padding: 8px 12px; }
.mkt-logo-item img { display: block; max-width: 100%; max-height: 32px; object-fit: contain; }
@keyframes mkt-marquee { to { transform: translateX(-50%); } }

.mkt-section { padding: 112px 0 126px; background: #fff; }
.mkt-section-white { background: #fff; }
.mkt-section-soft, .mkt-section-dark { background: var(--m-paper); color: var(--m-ink); }
.mkt-section-head { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(320px,.72fr); align-items: end; gap: 64px; margin-bottom: 58px; }
.mkt-section-head-top { align-items: start; }
.mkt-section-head h2, .mkt-copy h2 { max-width: 820px; margin-bottom: 0; font-size: clamp(42px, 5vw, 66px); line-height: 1.02; letter-spacing: -.052em; }
.mkt-section-head p, .mkt-copy p { max-width: 62ch; margin-bottom: 0; color: var(--m-muted); font-size: 17px; line-height: 1.68; }
.mkt-section-head .mkt-kicker { margin-bottom: 18px; }

.mkt-screen-sequence { border-top: 1px solid var(--m-line); }
.mkt-screen-scene { display: grid; grid-template-columns: minmax(260px,.62fr) minmax(0,1.38fr); align-items: center; gap: clamp(38px,5vw,74px); padding: 68px 0; border-bottom: 1px solid var(--m-line); }
.mkt-screen-scene-reverse { grid-template-columns: minmax(0,1.38fr) minmax(260px,.62fr); }
.mkt-screen-scene-reverse .mkt-screen-copy { order: 2; }
.mkt-screen-scene-reverse .mkt-screen-media { order: 1; }
.mkt-screen-copy > span, .mkt-feature-scene > span, .mkt-feature-scene > div > span, .mkt-service-row > span, .mkt-service-label > span { display: block; margin-bottom: 14px; color: var(--m-accent); font-size: 11px; font-weight: 780; letter-spacing: .13em; text-transform: uppercase; }
.mkt-screen-copy h3 { margin-bottom: 16px; font-size: clamp(30px,3.3vw,46px); line-height: 1.04; letter-spacing: -.045em; }
.mkt-screen-copy p { margin-bottom: 0; color: var(--m-muted); font-size: 16px; line-height: 1.65; }
.mkt-screen-copy ul { display: grid; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; color: var(--m-ink-2); font-size: 13px; }
.mkt-screen-copy li::before { content: "✓"; margin-right: 9px; color: var(--m-accent); font-weight: 800; }
.mkt-screen-media, .mkt-module-shot { overflow: hidden; border: 1px solid #dfe4ee; border-radius: 20px; background: #fff; box-shadow: var(--m-shadow-soft); }
.mkt-screen-media img, .mkt-module-shot img { display: block; width: 100%; height: auto; object-fit: contain; object-position: top; background: #fff; }

.mkt-process-rail, .mkt-service-stack { border-top: 1px solid var(--m-line); }
.mkt-process-rail article, .mkt-service-row { display: grid; gap: 30px; align-items: start; padding: 34px 0 38px; border-bottom: 1px solid var(--m-line); }
.mkt-process-rail article { grid-template-columns: 92px minmax(240px,.72fr) minmax(320px,1fr); }
.mkt-service-row { grid-template-columns: 160px minmax(240px,.72fr) minmax(320px,1fr); }
.mkt-process-rail article > span { color: var(--m-accent); font-size: 13px; font-weight: 760; font-variant-numeric: tabular-nums; }
.mkt-process-rail h3, .mkt-service-row h3 { margin: 0; font-size: clamp(23px,2.5vw,34px); line-height: 1.12; letter-spacing: -.035em; }
.mkt-process-rail p, .mkt-service-row p { margin: 0; color: var(--m-muted); font-size: 15px; line-height: 1.65; }

.mkt-feature-scenes { display: grid; border-top: 1px solid var(--m-line); }
.mkt-feature-scene { padding: clamp(34px,4vw,56px) 0; border: 0; border-bottom: 1px solid var(--m-line); border-radius: 0; background: transparent; }
.mkt-feature-scene h3 { max-width: 660px; margin-bottom: 15px; font-size: clamp(30px,3.5vw,48px); line-height: 1.04; letter-spacing: -.045em; }
.mkt-feature-scene p { max-width: 62ch; margin-bottom: 0; color: var(--m-muted); font-size: 16px; line-height: 1.65; }
.mkt-feature-scene-channels { display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,.8fr); gap: 60px; align-items: center; }
.mkt-integration-panel { display: grid; border-block: 1px solid var(--m-line); }
.mkt-integration-panel > div { display: grid; grid-template-columns: 98px 1fr; align-items: center; gap: 18px; min-height: 82px; border-bottom: 1px solid var(--m-line); }
.mkt-integration-panel > div:last-child { border-bottom: 0; }
.mkt-integration-panel img { display: block; width: auto; max-width: 88px; height: 34px; object-fit: contain; object-position: left center; }
.mkt-integration-panel span { display: grid; gap: 3px; }
.mkt-integration-panel strong { font-size: 14px; }
.mkt-integration-panel small { color: var(--m-muted); font-size: 12px; }
.mkt-feature-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.mkt-feature-duo .mkt-feature-scene:first-child { padding-right: clamp(30px,4vw,56px); border-right: 1px solid var(--m-line); }
.mkt-feature-duo .mkt-feature-scene:last-child { padding-left: clamp(30px,4vw,56px); }

.mkt-split { display: grid; grid-template-columns: minmax(300px,.72fr) minmax(0,1.28fr); align-items: center; gap: clamp(44px,6vw,86px); }
.mkt-copy h2 { margin-bottom: 22px; }
.mkt-copy p { margin-bottom: 25px; }
.mkt-checks { display: grid; gap: 12px; margin: 0 0 28px; padding: 0; list-style: none; color: var(--m-ink-2); font-size: 14px; }
.mkt-checks li { position: relative; padding-left: 24px; }
.mkt-checks li::before { content: "✓"; position: absolute; left: 0; color: var(--m-accent); font-weight: 800; }
.mkt-module-shot { transform: rotate(.35deg); }

.mkt-use-cases { border-top: 1px solid var(--m-line); }
.mkt-use-cases article { display: grid; grid-template-columns: 160px minmax(280px,.8fr) minmax(320px,1fr); gap: 34px; align-items: baseline; padding: 30px 0 34px; border-bottom: 1px solid var(--m-line); }
.mkt-use-cases article > span { color: var(--m-accent); font-size: 11px; font-weight: 780; letter-spacing: .12em; text-transform: uppercase; }
.mkt-use-cases h3 { margin: 0; font-size: clamp(24px,2.6vw,36px); letter-spacing: -.04em; }
.mkt-use-cases p { margin: 0; color: var(--m-muted); line-height: 1.6; }

.mkt-page-hero { position: relative; padding: 92px 0 90px; background: #fff; }
.mkt-page-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 82% 16%, rgba(101,92,244,.095), transparent 31%); }
.mkt-page-hero-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 58px; }
.mkt-page-hero-grid > div:first-child { max-width: 900px; }
.mkt-page-hero h1 { max-width: 1060px; margin-bottom: 23px; font-size: clamp(48px,6.7vw,86px); line-height: .99; letter-spacing: -.062em; }
.mkt-page-hero p { max-width: 720px; margin-bottom: 28px; color: var(--m-muted); font-size: 19px; line-height: 1.6; }
.mkt-page-preview { overflow: hidden; padding: 10px; border: 1px solid #dfe4ee; border-radius: 24px; background: #e9edf5; box-shadow: var(--m-shadow); }
.mkt-page-preview picture { display: block; }
.mkt-page-preview img { display: block; width: 100%; height: auto; border: 1px solid rgba(42,52,79,.08); border-radius: 16px; background: #fff; object-fit: contain; object-position: top; }
.mkt-page-preview-caption { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 13px 12px 5px; }
.mkt-page-preview-caption strong { font-size: 14px; }
.mkt-page-preview-caption span { color: var(--m-muted); font-size: 12px; }

.mkt-feature-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--m-line); }
.mkt-feature-list article { padding: 34px 34px 38px 0; border-bottom: 1px solid var(--m-line); }
.mkt-feature-list article:nth-child(odd) { padding-right: 48px; border-right: 1px solid var(--m-line); }
.mkt-feature-list article:nth-child(even) { padding-left: 48px; }
.mkt-feature-list b, .mkt-workflow b { color: var(--m-accent); font-size: 11px; letter-spacing: .12em; }
.mkt-feature-list h3 { margin: 30px 0 12px; font-size: 27px; letter-spacing: -.035em; }
.mkt-feature-list p { margin: 0; color: var(--m-muted); line-height: 1.65; }
.mkt-workflow { display: grid; grid-template-columns: repeat(4,1fr); border-block: 1px solid var(--m-line); }
.mkt-workflow article { min-height: 240px; padding: 30px 24px 34px; border-right: 1px solid var(--m-line); }
.mkt-workflow article:last-child { border-right: 0; }
.mkt-workflow h3 { margin: 62px 0 11px; font-size: 22px; letter-spacing: -.03em; }
.mkt-workflow p { margin: 0; color: var(--m-muted); font-size: 14px; line-height: 1.6; }
.mkt-channel-logos { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.mkt-channel-logos img { display: block; width: 32px; height: 32px; object-fit: contain; }
.mkt-channel-logos img.wide { width: 70px; height: 27px; }
.mkt-service-label { color: var(--m-accent); }
.mkt-service-row .mkt-channel-logos { margin-top: 14px; }

.mkt-supplier-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--m-line); border-left: 1px solid var(--m-line); }
.mkt-supplier-grid article { min-height: 112px; display: grid; grid-template-rows: 48px auto; gap: 14px; padding: 18px; border-right: 1px solid var(--m-line); border-bottom: 1px solid var(--m-line); background: #fff; }
.mkt-supplier-grid article > img { display: block; width: auto; max-width: 108px; height: 36px; object-fit: contain; object-position: left center; }
.mkt-supplier-grid article > div { display: flex; align-items: end; justify-content: space-between; gap: 10px; }
.mkt-supplier-grid strong { font-size: 14px; }
.mkt-supplier-grid span { color: var(--m-muted); font-size: 11px; white-space: nowrap; }

.mkt-price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; align-items: stretch; }
.mkt-price { display: flex; flex-direction: column; min-height: 520px; padding: 32px; border: 1px solid var(--m-line); border-radius: 22px; background: #fff; }
.mkt-price.featured { border-color: rgba(101,92,244,.46); box-shadow: 0 18px 50px rgba(101,92,244,.11); }
.mkt-price-label { min-height: 34px; color: var(--m-accent); font-size: 11px; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; }
.mkt-price-value { font-size: clamp(42px,4.6vw,60px); line-height: 1; letter-spacing: -.055em; font-variant-numeric: tabular-nums; }
.mkt-price-sub { min-height: 42px; margin-top: 9px; color: var(--m-muted); font-size: 13px; }
.mkt-price-description { min-height: 54px; margin: 18px 0 0; color: var(--m-muted); line-height: 1.5; }
.mkt-price ul { display: grid; gap: 11px; margin: 25px 0 30px; padding: 24px 0 0; border-top: 1px solid var(--m-line); list-style: none; color: var(--m-ink-2); font-size: 13px; }
.mkt-price li::before { content: "✓"; margin-right: 8px; color: var(--m-accent); font-weight: 800; }
.mkt-price .mkt-btn { width: 100%; margin-top: auto; }
.mkt-note { margin-top: 26px; padding: 18px 20px; border-left: 3px solid var(--m-accent); background: var(--m-soft); color: var(--m-muted); font-size: 14px; line-height: 1.6; }

.mkt-ledger { overflow: hidden; border: 1px solid var(--m-line); border-radius: 22px; background: #fff; box-shadow: var(--m-shadow-soft); }
.mkt-ledger-head { display: flex; align-items: start; justify-content: space-between; gap: 20px; padding: 26px; border-bottom: 1px solid var(--m-line); }
.mkt-ledger-head span { color: var(--m-muted); font-size: 12px; }
.mkt-ledger-total { margin-top: 6px; font-size: 36px; font-weight: 760; letter-spacing: -.045em; font-variant-numeric: tabular-nums; }
.mkt-ledger-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 26px; border-bottom: 1px solid var(--m-line); }
.mkt-ledger-row:last-child { border-bottom: 0; }
.mkt-ledger-row small { display: block; margin-top: 4px; color: var(--m-muted); }
.mkt-ledger-row strong { font-variant-numeric: tabular-nums; }
.mkt-ledger-row.good strong { color: #0f9f6e; }

.mkt-faq { max-width: 940px; }
.mkt-faq .mkt-section-head { margin-bottom: 30px; }
.mkt-faq details { border-bottom: 1px solid var(--m-line); }
.mkt-faq summary { position: relative; padding: 24px 42px 24px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 680; }
.mkt-faq summary::-webkit-details-marker { display: none; }
.mkt-faq summary::after { content: "+"; position: absolute; right: 0; color: var(--m-accent); font-size: 24px; font-weight: 400; }
.mkt-faq details[open] summary::after { content: "−"; }
.mkt-faq details p { max-width: 70ch; margin: -4px 0 24px; color: var(--m-muted); line-height: 1.65; }
.mkt-link { color: var(--m-accent); text-decoration: none; font-weight: 700; }
.mkt-link:hover { text-decoration: underline; }
.mkt-final { padding: clamp(42px,7vw,86px); border-radius: 28px; background: var(--m-ink); color: #fff; }
.mkt-final h2 { max-width: 850px; margin-bottom: 17px; font-size: clamp(38px,5vw,62px); line-height: 1.03; letter-spacing: -.05em; }
.mkt-final p { max-width: 660px; margin-bottom: 28px; color: #c5cddd; font-size: 17px; line-height: 1.6; }
.mkt-final .mkt-btn-dark { background: #fff; color: var(--m-ink); }

.mkt-footer { padding: 68px 0 28px; background: #111827; color: #fff; }
.mkt-footer-grid { display: grid; grid-template-columns: 1.25fr .7fr 1fr; gap: 70px; }
.mkt-footer .mkt-logo-mark { box-shadow: none; }
.mkt-footer p { max-width: 420px; margin: 18px 0 0; color: #aeb8ca; font-size: 14px; line-height: 1.6; }
.mkt-footer h3 { margin-bottom: 15px; color: #d7ddeb; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.mkt-footer-links { display: grid; gap: 10px; }
.mkt-footer-links a { display: flex; align-items: center; gap: 8px; color: #aeb8ca; text-decoration: none; font-size: 14px; }
.mkt-footer-links a:hover { color: #fff; }
.mkt-footer-links img { width: 18px; height: 18px; object-fit: contain; }
.mkt-footer-bottom { display: flex; justify-content: space-between; gap: 28px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #8792a8; font-size: 12px; }
.mkt-footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.mkt-footer-legal a { text-decoration: none; }

.mkt-auth-overlay { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; padding: 24px; background: rgba(24,32,51,.46); backdrop-filter: blur(18px) saturate(115%); }
.mkt-auth-card { position: relative; width: min(100%, 456px); max-height: calc(100dvh - 48px); overflow: auto; border: 1px solid rgba(255,255,255,.72); border-radius: 24px; background: #fff; box-shadow: 0 32px 100px rgba(35,45,76,.24), 0 2px 10px rgba(35,45,76,.08); scrollbar-width: thin; scrollbar-color: #cfd5e2 transparent; }
.mkt .mkt-auth-card .login-page { min-height: 0; padding: 0; background: transparent; }
.mkt .mkt-auth-card .login-card { max-width: none; padding: 32px 32px 28px; border: 0; border-radius: 0; box-shadow: none; }
.mkt-auth-close { position: sticky; z-index: 2; top: 12px; float: right; display: grid; width: 36px; height: 36px; margin: 12px 12px -48px 0; place-items: center; border: 1px solid var(--m-line); border-radius: 12px; background: rgba(247,248,252,.92); color: var(--m-ink-2); cursor: pointer; font-size: 21px; line-height: 1; backdrop-filter: blur(12px); transition: transform 100ms ease-out, background-color 180ms ease, color 180ms ease; }
.mkt-auth-close:hover { background: #eef0f7; color: var(--m-ink); }
.mkt-auth-close:active { transform: scale(.94); }

@media (max-width: 1020px) {
  .mkt-nav { display: none; }
  .mkt-mobile-nav { display: block; }
  .mkt-header .mkt-actions .mkt-btn-link { display: none; }
  .mkt-section-head { grid-template-columns: 1fr; gap: 18px; }
  .mkt-screen-scene, .mkt-screen-scene-reverse { grid-template-columns: 1fr; gap: 30px; }
  .mkt-screen-scene-reverse .mkt-screen-copy { order: 1; }
  .mkt-screen-scene-reverse .mkt-screen-media { order: 2; }
  .mkt-feature-scene-channels { grid-template-columns: 1fr; gap: 38px; }
  .mkt-process-rail article, .mkt-service-row { grid-template-columns: 72px 1fr; }
  .mkt-process-rail p, .mkt-service-row p { grid-column: 2; }
  .mkt-use-cases article { grid-template-columns: 120px 1fr; }
  .mkt-use-cases p { grid-column: 2; }
  .mkt-split { grid-template-columns: 1fr; }
  .mkt-module-shot { transform: none; }
  .mkt-workflow { grid-template-columns: 1fr 1fr; }
  .mkt-workflow article:nth-child(2) { border-right: 0; }
  .mkt-workflow article:nth-child(-n+2) { border-bottom: 1px solid var(--m-line); }
  .mkt-supplier-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 760px) {
  .mkt-container { width: min(100% - 28px, 1240px); }
  .mkt-header-row { min-height: 66px; gap: 10px; }
  .mkt-logo-text { display: none; }
  .mkt-header .mkt-actions .mkt-btn-primary { min-height: 42px; padding-inline: 13px; font-size: 12px; }
  .mkt h1, .mkt-page-hero h1 { font-size: clamp(39px,12vw,52px); }
  .mkt-hero { padding-top: 62px; }
  .mkt-lead, .mkt-page-hero p { font-size: 17px; }
  .mkt-hero-actions .mkt-btn { width: 100%; }
  .mkt-product { margin-top: 40px; padding: 6px; border-radius: 18px 18px 0 0; }
  .mkt-product-bar { height: 28px; }
  .mkt-product img { max-height: 640px; object-fit: contain; border-radius: 12px 12px 8px 8px; }
  .mkt-trust-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .mkt-section { padding: 78px 0 88px; }
  .mkt-section-head { margin-bottom: 36px; }
  .mkt-section-head h2, .mkt-copy h2 { font-size: clamp(36px,10.5vw,46px); }
  .mkt-section-head p, .mkt-copy p { font-size: 16px; }
  .mkt-screen-scene { gap: 24px; padding: 42px 0; }
  .mkt-screen-copy h3 { font-size: 31px; }
  .mkt-screen-media, .mkt-module-shot { border-radius: 14px; }
  .mkt-process-rail article, .mkt-service-row { grid-template-columns: 48px 1fr; gap: 14px; padding: 26px 0 30px; }
  .mkt-process-rail p, .mkt-service-row p { grid-column: 1 / -1; padding-left: 62px; }
  .mkt-feature-scene { padding: 30px 0; }
  .mkt-feature-scene h3 { font-size: 31px; }
  .mkt-feature-duo { grid-template-columns: 1fr; }
  .mkt-feature-duo .mkt-feature-scene:first-child { padding-right: 0; border-right: 0; }
  .mkt-feature-duo .mkt-feature-scene:last-child { padding-left: 0; }
  .mkt-integration-panel > div { grid-template-columns: 88px 1fr; }
  .mkt-use-cases article { grid-template-columns: 1fr; gap: 8px; padding: 25px 0 28px; }
  .mkt-use-cases p { grid-column: auto; }
  .mkt-page-hero { padding: 60px 0 70px; }
  .mkt-page-hero-grid { gap: 38px; }
  .mkt-page-preview { padding: 6px; border-radius: 18px; }
  .mkt-page-preview img { border-radius: 12px; }
  .mkt-page-preview-caption { display: block; }
  .mkt-page-preview-caption span { display: block; margin-top: 4px; }
  .mkt-feature-list { grid-template-columns: 1fr; }
  .mkt-feature-list article, .mkt-feature-list article:nth-child(odd), .mkt-feature-list article:nth-child(even) { padding: 28px 0 32px; border-right: 0; }
  .mkt-workflow { grid-template-columns: 1fr; }
  .mkt-workflow article, .mkt-workflow article:nth-child(2) { min-height: auto; padding: 26px 0 30px; border-right: 0; border-bottom: 1px solid var(--m-line); }
  .mkt-workflow h3 { margin-top: 28px; }
  .mkt-supplier-grid { grid-template-columns: 1fr 1fr; }
  .mkt-price-grid { grid-template-columns: 1fr; }
  .mkt-price { min-height: auto; }
  .mkt-price-label, .mkt-price-sub, .mkt-price-description { min-height: auto; }
  .mkt-final { border-radius: 22px; }
  .mkt-footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .mkt-footer-bottom { flex-direction: column; }
}

@media (max-width: 460px) {
  .mkt-supplier-grid { grid-template-columns: 1fr; }
  .mkt-proofline { display: grid; }
  .mkt-page-preview-caption { padding-inline: 8px; }
  .mkt-auth-overlay { place-items: end center; padding: 0; }
  .mkt-auth-card { width: 100%; max-height: 94dvh; border: 0; border-radius: 24px 24px 0 0; }
  .mkt .mkt-auth-card .login-card { padding: 30px 20px max(24px, env(safe-area-inset-bottom)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .mkt-logo-track { animation: none; }
  .mkt-btn:hover { transform: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .mkt-header, .mkt-mobile-panel, .mkt-auth-overlay { backdrop-filter: none; }
  .mkt-header, .mkt-mobile-panel { background: #fff; }
}

@media (prefers-contrast: more) {
  .mkt-header, .mkt-screen-media, .mkt-module-shot, .mkt-feature-scene, .mkt-price, .mkt-page-preview { border: 2px solid currentColor; }
  .mkt p { color: var(--m-ink-2); }
}
