/* Marketing site — scoped so the in-app dashboard is untouched. */

:root {
    --mkt-ink: #050507;
    --mkt-ink-2: #0c0c10;
    --mkt-ink-3: #14141a;
    --mkt-paper: #050507;
    --mkt-paper-2: #0c0c10;
    --mkt-blue: #8b9cff;
    --mkt-blue-deep: #6d7ee8;
    --mkt-gold: #8b9cff;
    --mkt-text: #f3f3f5;
    --mkt-muted: rgba(243, 243, 245, 0.58);
    --mkt-line: rgba(255, 255, 255, 0.08);
    --mkt-glow: rgba(99, 102, 241, 0.22);
    --mkt-serif: "Instrument Serif", Georgia, "Times New Roman", serif;
    --mkt-sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mkt-page,
.mkt-landing {
    font-family: var(--mkt-sans);
    color: var(--mkt-text);
    background: var(--mkt-paper);
    -webkit-font-smoothing: antialiased;
}

.mkt-page {
    padding-top: 72px;
}

/* ---------- Nav ---------- */
.mkt-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    display: flex;
    align-items: center;
    background: transparent;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    border-bottom: 1px solid transparent;
}

.mkt-nav.is-scrolled,
.mkt-page .mkt-nav {
    background: rgba(5, 5, 7, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.mkt-nav-inner {
    width: min(1180px, calc(100% - 2.5rem));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.mkt-nav .nav-logo .logo-img,
.mkt-nav .logo-img {
    height: 40px;
    width: auto;
}

.mkt-nav-panel {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex: 1;
    justify-content: flex-end;
}

.mkt-nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.mkt-nav-links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.15s ease;
}

.mkt-nav-links a:hover,
.mkt-nav-links a.active {
    color: #fff;
}

.mkt-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.mkt-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
}

.mkt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 999px;
    padding: 0.72rem 1.2rem;
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.mkt-btn:hover {
    transform: translateY(-1px);
}

.mkt-btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.mkt-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.mkt-btn-primary {
    background: #fff;
    color: #050507;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.08);
}

.mkt-btn-primary:hover {
    background: #ececf1;
    color: #050507;
}

.mkt-btn-dark {
    background: var(--mkt-ink);
    color: #fff;
}

.mkt-btn-lg {
    padding: 0.95rem 1.55rem;
    font-size: 1rem;
}

/* ---------- Hero ---------- */
.mkt-hero {
    position: relative;
    background: var(--mkt-ink);
    color: #fff;
    overflow: hidden;
    padding: 8.5rem 0 4.5rem;
}

.mkt-hero::before {
    content: "";
    position: absolute;
    inset: -20% auto auto 38%;
    width: 760px;
    height: 760px;
    background: radial-gradient(circle, var(--mkt-glow) 0%, transparent 68%);
    pointer-events: none;
}

.mkt-hero::after {
    content: "";
    position: absolute;
    left: -12%;
    bottom: -35%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(139, 156, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.mkt-wrap {
    width: min(1180px, calc(100% - 2.5rem));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mkt-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

.mkt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
    margin-bottom: 1.15rem;
}

.mkt-eyebrow::before {
    content: "";
    width: 18px;
    height: 1px;
    background: var(--mkt-gold);
}

.mkt-hero h1 {
    font-family: var(--mkt-serif);
    font-weight: 400;
    font-size: clamp(2.5rem, 4.6vw, 4.35rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 1.15rem;
}

.mkt-hero h1 em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.72);
}

.mkt-hero-lead {
    font-size: 1.08rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    max-width: 34rem;
    margin-bottom: 1.75rem;
}

.mkt-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.35rem;
}

.mkt-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.35rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
}

.mkt-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.mkt-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #3dd68c;
    box-shadow: 0 0 0 4px rgba(61, 214, 140, 0.12);
}

/* Product preview */
.mkt-preview {
    background: linear-gradient(180deg, #16161c 0%, #0c0c10 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
    overflow: hidden;
}

.mkt-preview-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.mkt-preview-dots {
    display: flex;
    gap: 6px;
}

.mkt-preview-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    display: block;
}

.mkt-preview-dots i:nth-child(1) { background: #f97171; }
.mkt-preview-dots i:nth-child(2) { background: #f5c451; }
.mkt-preview-dots i:nth-child(3) { background: #5bd08a; }

.mkt-preview-title {
    margin-left: 0.4rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.mkt-preview-body {
    padding: 1.15rem 1.15rem 1.3rem;
}

.mkt-preview-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mkt-preview-head h3 {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.mkt-preview-head p {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.mkt-pill {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: rgba(61, 214, 140, 0.14);
    color: #7ee2ae;
    white-space: nowrap;
}

.mkt-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.9rem;
}

.mkt-kpi {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0.65rem 0.7rem;
}

.mkt-kpi small {
    display: block;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.mkt-kpi strong {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 650;
}

.mkt-adset {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.62rem 0.7rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
    margin-bottom: 0.4rem;
}

.mkt-adset-mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(139, 156, 255, 0.16);
    color: #7ec4ff;
    display: grid;
    place-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.mkt-adset strong {
    display: block;
    font-size: 0.8rem;
    color: #fff;
}

.mkt-adset span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
}

.mkt-copy-card {
    margin-top: 0.7rem;
    padding: 0.8rem 0.85rem;
    border-radius: 12px;
    background: #f6f3ee;
    color: var(--mkt-text);
}

.mkt-copy-card small {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mkt-muted);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.mkt-copy-card p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: #1f2937;
}

/* ---------- Strip ---------- */
.mkt-strip {
    background: var(--mkt-ink-2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.1rem 0;
}

.mkt-strip-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 2rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    font-weight: 500;
}

.mkt-strip-row b {
    color: #fff;
    font-weight: 600;
}

/* ---------- Sections ---------- */
.mkt-section {
    padding: 5.5rem 0;
}

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

.mkt-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mkt-blue-deep);
    margin-bottom: 0.7rem;
}

.mkt-section-ink .mkt-kicker {
    color: rgba(255, 255, 255, 0.45);
}

.mkt-h2 {
    font-family: var(--mkt-serif);
    font-weight: 400;
    font-size: clamp(2rem, 3.4vw, 3.15rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin: 0 0 0.85rem;
    color: var(--mkt-text);
}

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

.mkt-lede {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--mkt-muted);
    max-width: 38rem;
}

.mkt-section-ink .mkt-lede {
    color: rgba(255, 255, 255, 0.64);
}

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

.mkt-center .mkt-lede {
    margin-left: auto;
    margin-right: auto;
}

.mkt-header {
    margin-bottom: 2.5rem;
}

/* Problem cards */
.mkt-cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

.mkt-card {
    background: var(--mkt-ink-3);
    border: 1px solid var(--mkt-line);
    border-radius: 16px;
    padding: 1.5rem 1.4rem 1.45rem;
    box-shadow: none;
}

.mkt-card h3 {
    font-size: 1.05rem;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.mkt-card p {
    margin: 0;
    color: var(--mkt-muted);
    font-size: 0.94rem;
    line-height: 1.6;
}

.mkt-num {
    font-family: var(--mkt-serif);
    font-size: 1.65rem;
    color: var(--mkt-blue);
    display: block;
    margin-bottom: 0.55rem;
}

/* Comparison */
.mkt-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mkt-compare-col {
    border-radius: 18px;
    padding: 1.6rem 1.5rem 1.4rem;
    background: var(--mkt-ink-3);
    border: 1px solid var(--mkt-line);
    color: var(--mkt-text);
}

.mkt-compare-col.us {
    background: #121218;
    color: #fff;
    border-color: rgba(139, 156, 255, 0.28);
}

.mkt-compare-col header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--mkt-line);
}

.mkt-compare-col.us header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.mkt-compare-col header strong {
    display: block;
    font-size: 1.05rem;
}

.mkt-compare-col header span {
    font-size: 0.8rem;
    color: var(--mkt-muted);
}

.mkt-compare-col.us header span {
    color: rgba(255, 255, 255, 0.5);
}

.mkt-row {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--mkt-line);
}

.mkt-compare-col.us .mkt-row {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

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

.mkt-row small {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 650;
    color: var(--mkt-muted);
    margin-bottom: 0.25rem;
}

.mkt-compare-col.us .mkt-row small {
    color: var(--mkt-blue);
}

.mkt-row p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.45;
}

.mkt-time {
    font-family: var(--mkt-serif);
    font-size: 1.35rem;
}

/* Steps */
.mkt-steps {
    display: grid;
    gap: 1.25rem;
}

.mkt-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    background: var(--mkt-ink-3);
    border: 1px solid var(--mkt-line);
    border-radius: 20px;
    padding: 1.6rem 1.6rem 1.6rem 1.8rem;
}

.mkt-step.reverse {
    direction: rtl;
}

.mkt-step.reverse > * {
    direction: ltr;
}

.mkt-step-copy h3 {
    font-size: 1.45rem;
    letter-spacing: -0.03em;
    margin: 0 0 0.65rem;
}

.mkt-step-copy p {
    margin: 0 0 1rem;
    color: var(--mkt-muted);
    line-height: 1.65;
}

.mkt-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mkt-list li {
    position: relative;
    padding: 0.22rem 0 0.22rem 1.15rem;
    font-size: 0.92rem;
    color: var(--mkt-text);
}

.mkt-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mkt-blue);
}

.mkt-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mkt-blue-deep);
    margin-bottom: 0.45rem;
}

.mkt-frame {
    background: var(--mkt-ink-2);
    border-radius: 14px;
    padding: 1rem;
    min-height: 210px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mkt-frame h4 {
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
}

.mkt-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.mkt-chip {
    font-size: 0.72rem;
    padding: 0.35rem 0.55rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mkt-chip.hot {
    background: rgba(139, 156, 255, 0.16);
    border-color: rgba(139, 156, 255, 0.28);
}

.mkt-bars {
    display: grid;
    gap: 0.55rem;
}

.mkt-bar {
    height: 10px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.mkt-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #6d7ee8, #b7c0ff);
    border-radius: inherit;
}

.mkt-week {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
}

.mkt-week div {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.55rem 0.4rem;
    text-align: center;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.7);
}

.mkt-week div b {
    display: block;
    font-size: 0.72rem;
    color: #fff;
    margin-bottom: 0.15rem;
}

/* Capabilities */
.mkt-caps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.mkt-cap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.35rem 1.3rem;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

a.mkt-cap:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.mkt-cap h3 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    color: #fff;
}

.mkt-cap p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* Publish band */
.mkt-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.mkt-note {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: var(--mkt-muted);
}

/* CTA */
.mkt-cta {
    text-align: center;
    padding: 5rem 0 5.5rem;
    background:
        radial-gradient(640px 280px at 50% 0%, rgba(99, 102, 241, 0.16), transparent 70%),
        var(--mkt-ink);
    color: #fff;
}

.mkt-cta h2 {
    font-family: var(--mkt-serif);
    font-weight: 400;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    margin: 0 0 0.8rem;
}

.mkt-cta p {
    color: rgba(255, 255, 255, 0.65);
    margin: 0 auto 1.6rem;
    max-width: 32rem;
    font-size: 1.05rem;
}

.mkt-cta-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Inner pages */
.mkt-page-hero {
    background: var(--mkt-ink);
    color: #fff;
    padding: 4.5rem 0 3.2rem;
    position: relative;
    overflow: hidden;
}

.mkt-page-hero::before {
    content: "";
    position: absolute;
    right: -8%;
    top: -40%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.18), transparent 70%);
}

.mkt-page-hero h1 {
    font-family: var(--mkt-serif);
    font-weight: 400;
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    margin: 0 0 0.7rem;
    color: #fff;
    letter-spacing: -0.03em;
}

.mkt-page-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.08rem;
    max-width: 36rem;
}

.mkt-page .page-container,
.mkt-page .page-content,
.mkt-page .pricing-content,
.mkt-page .contact-content {
    background: var(--mkt-paper);
}

.mkt-page .page-content {
    padding: 2.5rem 1.25rem 4.5rem;
}

.mkt-page .pricing-content {
    padding: 3rem 0 4.5rem;
}

.mkt-page .pricing-credit-note,
.mkt-page .pricing-topup-note {
    text-align: center;
    color: var(--mkt-muted);
    max-width: 40rem;
    margin: 0 auto 1.5rem;
}

.mkt-page .billing-toggle {
    background: var(--mkt-ink-3);
    border: 1px solid var(--mkt-line);
    border-radius: 999px;
    padding: 0.25rem;
}

.mkt-page .billing-toggle-opt {
    color: var(--mkt-muted);
}

.mkt-page .billing-toggle-opt.active {
    background: #fff;
    color: #050507;
}

.mkt-page .pricing-grid {
    max-width: 1180px;
    padding: 0 1.25rem;
    gap: 1rem;
}

.mkt-page .pricing-card {
    min-width: 0;
    background: var(--mkt-ink-3);
    border: 1px solid var(--mkt-line);
    border-radius: 18px;
    box-shadow: none;
    padding: 2rem 1.6rem 1.6rem;
    color: var(--mkt-text);
}

.mkt-page .pricing-card.featured {
    border-color: rgba(139, 156, 255, 0.4);
    box-shadow: 0 18px 50px rgba(99, 102, 241, 0.12);
    transform: none;
}

.mkt-page .contact-form-section h2,
.mkt-page .contact-info-section h2 {
    font-family: var(--mkt-serif);
    font-weight: 400;
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.mkt-landing {
    overflow-x: hidden;
}

.mkt-page .pricing-card:hover,
.mkt-page .pricing-card.featured:hover {
    transform: translateY(-3px);
}

.mkt-page .plan-btn {
    border-radius: 999px;
}

.mkt-page .content-section {
    background: var(--mkt-ink-3);
    border: 1px solid var(--mkt-line);
    border-radius: 18px;
    padding: 2.4rem 2.2rem;
    color: var(--mkt-text);
}

.mkt-page .content-section h2,
.mkt-page .content-section h3,
.mkt-page .content-section p,
.mkt-page .content-section li {
    color: var(--mkt-text);
}

.mkt-page .content-section p,
.mkt-page .content-section li {
    color: var(--mkt-muted);
}

.mkt-page .content-section h2 {
    font-family: var(--mkt-serif);
    font-weight: 400;
    font-size: 1.85rem;
    letter-spacing: -0.02em;
}

.mkt-page .contact-grid {
    width: min(1080px, calc(100% - 2.5rem));
    margin: 0 auto;
    padding: 2.5rem 0 4.5rem;
}

.mkt-page .contact-form-section,
.mkt-page .contact-info-section {
    background: var(--mkt-ink-3);
    border: 1px solid var(--mkt-line);
    border-radius: 18px;
    padding: 1.8rem;
    color: var(--mkt-text);
}

.mkt-page .contact-form input,
.mkt-page .contact-form textarea {
    border-radius: 12px;
    border-color: var(--mkt-line);
    background: #0c0c10;
    color: var(--mkt-text);
}

.mkt-page .btn-primary.btn-large,
.mkt-page .plan-btn,
.mkt-page .btn-primary-dark {
    border-radius: 999px;
    background: #fff;
    color: #050507;
}

.mkt-page .btn-primary.btn-large:hover,
.mkt-page .plan-btn:hover,
.mkt-page .btn-primary-dark:hover {
    background: #ececf1;
    color: #050507;
}

/* Footer */
.mkt-footer.main-footer,
.mkt-page .main-footer,
body:has(#view-landing.active) .main-footer {
    background: var(--mkt-ink);
    color: rgba(255, 255, 255, 0.62);
    border-top: 0;
    padding: 3.5rem 0 1.6rem;
}

.mkt-footer.main-footer::before,
.mkt-page .main-footer::before,
body:has(#view-landing.active) .main-footer::before {
    display: none;
}

.mkt-footer .footer-section h4,
.mkt-page .main-footer .footer-section h4,
body:has(#view-landing.active) .main-footer .footer-section h4 {
    color: #fff;
}

.mkt-footer .footer-section p,
.mkt-footer .footer-section ul li a,
.mkt-page .main-footer .footer-section p,
.mkt-page .main-footer .footer-section ul li a,
body:has(#view-landing.active) .main-footer .footer-section p,
body:has(#view-landing.active) .main-footer .footer-section ul li a {
    color: rgba(255, 255, 255, 0.55);
}

.mkt-footer .footer-section ul li a:hover,
.mkt-page .main-footer .footer-section ul li a:hover,
body:has(#view-landing.active) .main-footer .footer-section ul li a:hover {
    color: #fff;
}

.mkt-footer .footer-bottom,
.mkt-page .main-footer .footer-bottom,
body:has(#view-landing.active) .main-footer .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.mkt-footer .footer-bottom p,
.mkt-page .main-footer .footer-bottom p,
body:has(#view-landing.active) .main-footer .footer-bottom p {
    color: rgba(255, 255, 255, 0.38);
}

.mkt-footer .footer-logo,
.mkt-page .footer-logo,
body:has(#view-landing.active) .footer-logo {
    height: 42px;
    width: auto;
    margin-bottom: 0.75rem;
}

/* About extras */
.mkt-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.2rem;
    width: min(1080px, calc(100% - 2.5rem));
    margin: 0 auto 2rem;
}

.mkt-stat {
    background: var(--mkt-ink-3);
    border: 1px solid var(--mkt-line);
    border-radius: 16px;
    padding: 1.2rem 1.3rem;
    color: var(--mkt-text);
}

.mkt-stat b {
    display: block;
    font-family: var(--mkt-serif);
    font-size: 1.7rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.mkt-stat span {
    color: var(--mkt-muted);
    font-size: 0.9rem;
}

/* Hide the old oversized landing nav when new one is present */
#how,
#product,
#features {
    scroll-margin-top: 88px;
}

.mkt-page .feat-hero {
    padding-top: 4.2rem;
}

.mkt-landing > .main-nav {
    display: none;
}

@media (max-width: 960px) {
    .mkt-hero-grid,
    .mkt-compare,
    .mkt-step,
    .mkt-step.reverse,
    .mkt-split,
    .mkt-about-grid,
    .mkt-cards-3,
    .mkt-caps {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .mkt-nav-toggle {
        display: grid;
        place-items: center;
    }

    .mkt-nav-panel {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(5, 5, 7, 0.97);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 1rem 1.25rem 1.25rem;
        flex-direction: column;
        gap: 1rem;
    }

    .mkt-nav-panel.is-open {
        display: flex;
    }

    .mkt-nav-links,
    .mkt-nav-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.65rem;
    }

    .mkt-hero {
        padding-top: 7.2rem;
    }

    .mkt-kpis,
    .mkt-week {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .mkt-section {
        padding: 3.6rem 0;
    }

    .mkt-hero-actions,
    .mkt-cta-actions {
        flex-direction: column;
    }

    .mkt-btn-lg {
        width: 100%;
    }
}

.mkt-page .plan-header h3,
.mkt-page .price-amount,
.mkt-page .plan-features li,
.mkt-page .contact-form-section h2,
.mkt-page .contact-info-section h2,
.mkt-page .info-item h3,
.mkt-page .form-group label {
    color: var(--mkt-text);
}

.mkt-page .plan-description,
.mkt-page .price-period,
.mkt-page .plan-credits,
.mkt-page .plan-billed-as,
.mkt-page .info-item p,
.mkt-page .seat-extra {
    color: var(--mkt-muted);
}

.mkt-page .plan-badge-top {
    background: #fff;
    color: #050507;
}

.mkt-page .plan-features li .check-icon {
    color: var(--mkt-blue);
}

.mkt-kicker {
    color: rgba(255, 255, 255, 0.45);
}

/* ---------- Features dropdown ---------- */
.mkt-dd {
    position: relative;
}

.mkt-dd-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.78);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    cursor: pointer;
}

.mkt-dd-toggle:hover,
.mkt-dd.is-open .mkt-dd-toggle,
.mkt-dd-toggle.active {
    color: #fff;
}

.mkt-dd-toggle svg {
    opacity: 0.55;
    transition: transform 0.15s ease;
}

.mkt-dd.is-open .mkt-dd-toggle svg {
    transform: rotate(180deg);
}

.mkt-dd-menu {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    width: 540px;
    padding: 1.05rem 1.1rem 1.15rem;
    background: #121218;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    grid-template-columns: 1fr 1fr;
    gap: 0.15rem 1.5rem;
    z-index: 20;
}

.mkt-dd.is-open .mkt-dd-menu {
    display: grid;
}

.mkt-dd-label {
    margin: 0 0 0.45rem;
    padding: 0 0.55rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

.mkt-dd-menu a {
    display: block;
    padding: 0.42rem 0.55rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
}

.mkt-dd-menu a:hover,
.mkt-dd-menu a.active {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.mkt-dd-menu a small {
    display: block;
    margin-top: 0.12rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
    font-weight: 400;
}

/* ---------- Feature pages ---------- */
.feat-hero {
    position: relative;
    overflow: hidden;
    padding: 7.2rem 0 4rem;
    background: var(--mkt-ink);
    color: #fff;
}

.feat-hero::before {
    content: "";
    position: absolute;
    inset: -20% auto auto 42%;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, var(--mkt-glow) 0%, transparent 68%);
    pointer-events: none;
}

.feat-hero-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
    align-items: center;
}

.feat-hero .mkt-eyebrow {
    margin-bottom: 0.95rem;
}

.feat-hero h1 {
    font-family: var(--mkt-serif);
    font-weight: 400;
    font-size: clamp(2.4rem, 4.4vw, 4.1rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 1.05rem;
}

.feat-hero h1 em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.72);
}

.feat-lead {
    font-size: 1.06rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    max-width: 34rem;
    margin: 0 0 1.7rem;
}

.feat-ai-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.feat-ai-tag i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mkt-blue);
    box-shadow: 0 0 0 4px rgba(139, 156, 255, 0.16);
}

.feat-media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0c0c10;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.feat-media img,
.feat-media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feat-media-wide {
    position: relative;
    aspect-ratio: 16 / 10;
}

.feat-media-wide img,
.feat-media-wide video {
    position: absolute;
    inset: 0;
}

.feat-canvas-tile[hidden] {
    display: none;
}

.feat-phones {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: flex-end;
}

.feat-phone {
    width: min(220px, 42%);
    aspect-ratio: 9 / 16;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #0c0c10;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.feat-phone:nth-child(2) {
    width: min(248px, 48%);
    transform: translateY(-12px);
}

.feat-phone video,
.feat-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feat-canvas-ui {
    background: linear-gradient(180deg, #16161c 0%, #0c0c10 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.feat-canvas-body {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    min-height: 390px;
}

.feat-canvas-side {
    padding: 1.1rem 1.15rem 1.2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.feat-modes {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.feat-mode {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: rgba(255, 255, 255, 0.62);
    border-radius: 999px;
    padding: 0.45rem 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.feat-mode.is-on {
    background: #fff;
    color: #050507;
    border-color: #fff;
}

.feat-prompt {
    width: 100%;
    min-height: 108px;
    resize: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
    border-radius: 12px;
    padding: 0.75rem 0.8rem;
    font-family: inherit;
    font-size: 0.82rem;
    line-height: 1.45;
}

.feat-prompt:focus {
    outline: 1px solid rgba(139, 156, 255, 0.45);
}

.feat-canvas-meta {
    display: flex;
    gap: 0.4rem;
    margin: 0.75rem 0 1rem;
    flex-wrap: wrap;
}

.feat-chip {
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 0.28rem 0.55rem;
}

.feat-canvas-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    padding: 0.9rem;
}

.feat-canvas-tile {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #09090c;
    min-height: 280px;
}

.feat-canvas-tile img,
.feat-canvas-tile video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.feat-canvas-tile span {
    position: absolute;
    left: 8px;
    bottom: 8px;
    z-index: 1;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.22rem 0.45rem;
    border-radius: 6px;
    background: rgba(5, 5, 7, 0.7);
    color: #fff;
}

.feat-problem {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
    align-items: center;
}

.feat-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.feat-gallery figure {
    margin: 0;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #0c0c10;
}

.feat-gallery img,
.feat-gallery video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feat-gallery figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.6rem 0.7rem 0.7rem;
    background: linear-gradient(transparent, rgba(5, 5, 7, 0.85));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
}

.feat-gallery figure:nth-child(1),
.feat-gallery figure:nth-child(6) {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
}

.feat-steps-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

.feat-step {
    background: var(--mkt-ink-3);
    border: 1px solid var(--mkt-line);
    border-radius: 16px;
    padding: 1.4rem 1.3rem 1.35rem;
}

.feat-step .mkt-num {
    margin-bottom: 0.85rem;
}

.feat-step h3 {
    font-size: 1.08rem;
    margin: 0 0 0.45rem;
    color: #fff;
}

.feat-step p {
    margin: 0;
    color: var(--mkt-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.feat-why {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.feat-why article {
    padding: 1.25rem 1.15rem;
    border-radius: 16px;
    background: var(--mkt-ink-3);
    border: 1px solid var(--mkt-line);
}

.feat-why h3 {
    font-size: 1rem;
    margin: 0 0 0.4rem;
    color: #fff;
}

.feat-why p {
    margin: 0;
    color: var(--mkt-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.feat-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
}

.feat-bullets {
    list-style: none;
    margin: 1.2rem 0 0;
    padding: 0;
}

.feat-bullets li {
    position: relative;
    padding: 0.7rem 0 0.7rem 1.4rem;
    border-top: 1px solid var(--mkt-line);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

.feat-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mkt-blue);
}

.feat-best {
    margin-top: 1.25rem;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    background: rgba(139, 156, 255, 0.08);
    border: 1px solid rgba(139, 156, 255, 0.16);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.5;
}

.feat-best strong {
    display: block;
    color: #fff;
    margin-bottom: 0.2rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.feat-faq {
    max-width: 760px;
    margin: 0 auto;
}

.feat-faq details {
    border-top: 1px solid var(--mkt-line);
}

.feat-faq details:last-child {
    border-bottom: 1px solid var(--mkt-line);
}

.feat-faq summary {
    cursor: pointer;
    list-style: none;
    padding: 1.15rem 1.6rem 1.15rem 0;
    font-weight: 600;
    color: #fff;
    position: relative;
}

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

.feat-faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    font-size: 1.2rem;
}

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

.feat-faq details p {
    margin: 0 0 1.2rem;
    color: var(--mkt-muted);
    line-height: 1.65;
    max-width: 40rem;
}

.feat-explore {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.feat-explore a {
    display: block;
    padding: 1.25rem 1.15rem 1.2rem;
    border-radius: 16px;
    background: var(--mkt-ink-3);
    border: 1px solid var(--mkt-line);
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.feat-explore a:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feat-explore h3 {
    margin: 0 0 0.4rem;
    color: #fff;
    font-size: 1rem;
}

.feat-explore p {
    margin: 0;
    color: var(--mkt-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.feat-index-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

.feat-index-card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    background: var(--mkt-ink-3);
    border: 1px solid var(--mkt-line);
    text-decoration: none;
    color: inherit;
    min-height: 100%;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.feat-index-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.18);
}

.feat-index-card .feat-media {
    position: relative;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    aspect-ratio: 16 / 10;
}

.feat-index-card .feat-media img,
.feat-index-card .feat-media video {
    position: absolute;
    inset: 0;
}

.feat-index-card .body {
    padding: 1.15rem 1.15rem 1.25rem;
}

.feat-index-card h3 {
    margin: 0 0 0.4rem;
    color: #fff;
    font-size: 1.12rem;
}

.feat-index-card p {
    margin: 0;
    color: var(--mkt-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

@media (max-width: 960px) {
    .mkt-dd-menu {
        position: static;
        width: 100%;
        transform: none;
        margin-top: 0.5rem;
        display: none;
        box-shadow: none;
    }

    .mkt-dd.is-open .mkt-dd-menu {
        display: grid;
    }

    .feat-hero-grid,
    .feat-canvas-body,
    .feat-problem,
    .feat-split,
    .feat-steps-3,
    .feat-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .feat-hero {
        padding-top: 6.5rem;
    }

    .feat-why,
    .feat-explore {
        grid-template-columns: 1fr;
    }

    .feat-index-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feat-phones {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .feat-hero-grid,
    .feat-canvas-body,
    .feat-problem,
    .feat-split,
    .feat-steps-3,
    .feat-gallery {
        grid-template-columns: 1fr;
    }

    .feat-gallery figure:nth-child(1),
    .feat-gallery figure:nth-child(6) {
        grid-column: span 1;
        aspect-ratio: 3 / 4;
    }

    .feat-phone,
    .feat-phone:nth-child(2) {
        width: 46%;
        transform: none;
    }

    .feat-index-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .feat-media video,
    .feat-phone video,
    .feat-canvas-tile video {
        display: none;
    }
}

