/* ── Landing shell ─────────────────────────────────────────── */

.landing-shell {
    min-height: 100dvh;
    background: #0a0a0a;
    color: #f4f4f5;
}

html:not(.mud-theme-dark) .landing-shell {
    background: #fafafa;
    color: #18181b;
}

.landing-main {
    padding-top: 72px;
}

/* ── Nav ───────────────────────────────────────────────────── */

.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    background: rgba(10, 10, 10, 0.88);
}

html:not(.mud-theme-dark) .landing-nav {
    background: rgba(250, 250, 250, 0.9);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

.landing-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.landing-nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.landing-nav__logo-ring {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(0, 230, 118, 0.12);
    border: 1px solid rgba(0, 230, 118, 0.35);
    color: #00e676;
}

.landing-nav__title {
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 1.05rem;
}

.landing-nav__links {
    gap: 28px;
    margin-left: 12px;
}

.landing-nav__links a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

html:not(.mud-theme-dark) .landing-nav__links a {
    color: rgba(0, 0, 0, 0.62);
}

.landing-nav__links a:hover {
    color: #00e676;
}

.landing-nav__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Reveal animations ─────────────────────────────────────── */

.landing-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.landing-reveal--delay-1 { transition-delay: 0.1s; }
.landing-reveal--delay-2 { transition-delay: 0.2s; }
.landing-reveal--delay-3 { transition-delay: 0.3s; }
.landing-reveal--delay-4 { transition-delay: 0.4s; }

/* ── Hero ──────────────────────────────────────────────────── */

.landing-hero-section {
    position: relative;
    overflow: hidden;
    padding: 72px 24px 56px;
    min-height: calc(100dvh - 72px);
    display: flex;
    align-items: center;
}

.landing-hero-section__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 230, 118, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 230, 118, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
    pointer-events: none;
    opacity: 0.7;
}

.landing-hero-section__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: landing-float 8s ease-in-out infinite;
}

.landing-hero-section__glow--a {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -80px;
    background: rgba(0, 230, 118, 0.14);
}

.landing-hero-section__glow--b {
    width: 320px;
    height: 320px;
    bottom: -60px;
    left: -60px;
    background: rgba(11, 79, 122, 0.28);
    animation-delay: -3s;
}

@keyframes landing-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(12px, -18px) scale(1.05); }
}

.landing-hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

@media (max-width: 960px) {
    .landing-hero-section {
        min-height: auto;
        padding: 48px 24px 40px;
    }

    .landing-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.landing-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.landing-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.05;
    margin: 0 0 20px;
}

.landing-hero-brand {
    display: block;
    font-size: clamp(2.8rem, 6.5vw, 4.2rem);
    background: linear-gradient(135deg, #00e676 0%, #34d399 45%, #a7f3d0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.12em;
}

.landing-hero-line {
    display: block;
    font-size: 0.58em;
    font-weight: 650;
    letter-spacing: -0.03em;
    color: inherit;
    -webkit-text-fill-color: currentColor;
    opacity: 0.92;
}

.landing-hero-sub {
    font-size: 1.125rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
    max-width: 480px;
    margin: 0 0 32px;
}

html:not(.mud-theme-dark) .landing-hero-sub {
    color: rgba(0, 0, 0, 0.58);
}

@media (max-width: 960px) {
    .landing-hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
}

.landing-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 960px) {
    .landing-hero-cta {
        justify-content: center;
    }
}

/* ── Proof band (below hero) ───────────────────────────────── */

.landing-proof-band {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 230, 118, 0.03);
    padding: 22px 24px;
}

html:not(.mud-theme-dark) .landing-proof-band {
    background: rgba(0, 168, 112, 0.04);
    border-color: rgba(0, 0, 0, 0.06);
}

.landing-proof-band__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 28px 40px;
    justify-content: center;
}

.landing-hero-stat strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: #00e676;
}

.landing-hero-stat span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

html:not(.mud-theme-dark) .landing-hero-stat span {
    color: rgba(0, 0, 0, 0.5);
}

/* ── Hero widget mockup ────────────────────────────────────── */

.landing-hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.landing-hero-visual__frame {
    position: relative;
    width: min(100%, 320px);
    animation: landing-widget-bob 5s ease-in-out infinite;
    filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.5));
}

@keyframes landing-widget-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.landing-hero-visual__frame img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.landing-hero-visual__ring {
    position: absolute;
    inset: -20px;
    border-radius: 28px;
    border: 1px solid rgba(0, 230, 118, 0.2);
    animation: landing-pulse-ring 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes landing-pulse-ring {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

.landing-hero-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.01em;
}

html:not(.mud-theme-dark) .landing-hero-status {
    color: rgba(0, 0, 0, 0.62);
}

.landing-hero-status__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00e676;
    box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.2);
    animation: landing-status-pulse 2s ease-in-out infinite;
}

@keyframes landing-status-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.18); }
    50% { box-shadow: 0 0 0 6px rgba(0, 230, 118, 0.08); }
}

/* ── Sections ──────────────────────────────────────────────── */

.landing-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.landing-section--alt {
    max-width: none;
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-section--alt > .landing-section__header,
.landing-section--alt > .landing-spotlight,
.landing-section--alt > .landing-features-grid,
.landing-section--alt > .landing-faq,
.landing-section--alt > .landing-video-wrap {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.landing-section--alt > .landing-section__header {
    margin-bottom: 48px;
}

html:not(.mud-theme-dark) .landing-section--alt {
    background: #f4f4f5;
    border-color: rgba(0, 0, 0, 0.06);
}

.landing-section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.landing-section__title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 12px 0;
}

.landing-section__title--left {
    font-size: 1.5rem;
    text-align: left;
}

.landing-section__sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.landing-section__sub--left {
    text-align: left;
}

html:not(.mud-theme-dark) .landing-section__sub {
    color: rgba(0, 0, 0, 0.55);
}

/* ── Feature cards ─────────────────────────────────────────── */

.landing-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.landing-feature-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px;
    background: #141414;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

html:not(.mud-theme-dark) .landing-feature-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
}

.landing-feature-card:hover {
    border-color: rgba(0, 230, 118, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 230, 118, 0.08);
}

.landing-feature-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.25);
    color: #00e676;
    margin-bottom: 16px;
}

.landing-feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.landing-feature-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.58);
    margin: 0;
}

html:not(.mud-theme-dark) .landing-feature-card p {
    color: rgba(0, 0, 0, 0.55);
}

/* ── Team spotlight (new product features) ─────────────────── */

.landing-spotlight {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-bottom: 24px;
}

.landing-spotlight__row {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 28px;
    background: #141414;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.landing-spotlight__row:hover {
    border-color: rgba(0, 230, 118, 0.35);
    transform: translateY(-2px);
}

.landing-spotlight__row--flip .landing-spotlight__copy {
    order: 2;
}

.landing-spotlight__row--flip .landing-spotlight__panel {
    order: 1;
}

html:not(.mud-theme-dark) .landing-spotlight__row {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
    .landing-spotlight__row,
    .landing-spotlight__row--flip .landing-spotlight__copy,
    .landing-spotlight__row--flip .landing-spotlight__panel {
        grid-template-columns: 1fr;
        order: unset;
    }

    .landing-spotlight__row {
        grid-template-columns: 1fr;
    }
}

.landing-spotlight__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.25);
    color: #00e676;
    margin-bottom: 14px;
}

.landing-spotlight__copy h3 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
}

.landing-spotlight__copy > p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
    margin: 0 0 8px;
}

html:not(.mud-theme-dark) .landing-spotlight__copy > p {
    color: rgba(0, 0, 0, 0.58);
}

.landing-spotlight__panel {
    border-radius: 16px;
    border: 1px solid rgba(0, 230, 118, 0.2);
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(0, 230, 118, 0.12), transparent 55%),
        #0d1110;
    padding: 18px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

html:not(.mud-theme-dark) .landing-spotlight__panel {
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(0, 168, 112, 0.1), transparent 55%),
        #f0fdf4;
}

.landing-spotlight__panel-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #00e676;
}

.landing-spotlight__panel-body {
    flex: 1;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.78);
}

html:not(.mud-theme-dark) .landing-spotlight__panel-body {
    color: rgba(0, 0, 0, 0.72);
}

/* Mock panels */

.mock-chat-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-chat-list__item {
    border-radius: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2px 10px;
}

.mock-chat-list__item.is-active {
    border-color: rgba(0, 230, 118, 0.35);
    background: rgba(0, 230, 118, 0.08);
}

.mock-chat-list__item strong {
    font-size: 0.88rem;
}

.mock-chat-list__item span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: right;
}

.mock-chat-list__item em {
    grid-column: 1 / -1;
    font-style: normal;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

html:not(.mud-theme-dark) .mock-chat-list__item {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.06);
}

html:not(.mud-theme-dark) .mock-chat-list__item span,
html:not(.mud-theme-dark) .mock-chat-list__item em {
    color: rgba(0, 0, 0, 0.45);
}

.mock-handoff__bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fbbf24;
}

.mock-handoff__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fbbf24;
}

.mock-bubble {
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 8px;
    font-size: 0.84rem;
    line-height: 1.45;
    max-width: 92%;
}

.mock-bubble--bot {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-bubble--staff {
    background: rgba(46, 125, 50, 0.18);
    border: 1px solid rgba(46, 125, 50, 0.35);
    margin-left: auto;
}

html:not(.mud-theme-dark) .mock-bubble--bot {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
}

.mock-training {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mock-training__field {
    border-radius: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-training__field label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #00e676;
    margin-bottom: 4px;
}

.mock-training__field p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.7);
}

html:not(.mud-theme-dark) .mock-training__field {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
}

html:not(.mud-theme-dark) .mock-training__field p {
    color: rgba(0, 0, 0, 0.65);
}

.mock-trigger {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-content: flex-start;
}

.mock-trigger__chip {
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(0, 230, 118, 0.12);
    border: 1px solid rgba(0, 230, 118, 0.3);
    color: #00e676;
}

.mock-trigger__teaser {
    width: 100%;
    margin: 8px 0 0;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(0, 230, 118, 0.3);
    font-size: 0.9rem;
}

html:not(.mud-theme-dark) .mock-trigger__teaser {
    background: #fff;
    border-color: rgba(0, 168, 112, 0.35);
}

.mock-analytics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mock-analytics__stat {
    border-radius: 12px;
    padding: 12px 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-analytics__stat strong {
    display: block;
    font-size: 1.2rem;
    color: #00e676;
}

.mock-analytics__stat span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

html:not(.mud-theme-dark) .mock-analytics__stat {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
}

html:not(.mud-theme-dark) .mock-analytics__stat span {
    color: rgba(0, 0, 0, 0.5);
}

.mock-analytics__bars {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 72px;
    padding-top: 8px;
}

.mock-analytics__bars i {
    flex: 1;
    height: var(--h, 50%);
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, #34d399, #00a870);
    opacity: 0.85;
    display: block;
}

.landing-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 56px;
}

@media (max-width: 900px) {
    .landing-split {
        grid-template-columns: 1fr;
    }
}

.landing-split img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.landing-split__list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.landing-split__list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
}

html:not(.mud-theme-dark) .landing-split__list li {
    color: rgba(0, 0, 0, 0.68);
}

.landing-split__list li::before {
    content: "✓";
    color: #00e676;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── How-it-works video player ─────────────────────────────── */

.landing-video-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.landing-video {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
}

.landing-video__screen {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #0d1117;
    overflow: hidden;
}

.landing-video__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.landing-video__slide.is-active {
    opacity: 1;
}

.landing-video__slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.landing-video__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.landing-video__step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #00e676;
    color: #0a0a0a;
    font-weight: 800;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.landing-video__caption-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.landing-video__controls {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #141414;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-video__play {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #00e676;
    color: #0a0a0a;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.15s ease, background 0.15s ease;
}

.landing-video__play:hover {
    transform: scale(1.06);
    background: #34d399;
}

.landing-video__progress-track {
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    cursor: pointer;
}

.landing-video__progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, #00e676, #34d399);
    transition: width 0.1s linear;
}

.landing-video__time {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    font-variant-numeric: tabular-nums;
    min-width: 72px;
    text-align: right;
}

.landing-video__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.landing-video__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.landing-video__dot.is-active {
    background: #00e676;
    transform: scale(1.2);
}

.landing-steps-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .landing-steps-row {
        grid-template-columns: 1fr;
    }
}

.landing-step-chip {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px;
    background: #141414;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    font-family: inherit;
    color: inherit;
}

html:not(.mud-theme-dark) .landing-step-chip {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
}

.landing-step-chip:hover,
.landing-step-chip.is-active {
    border-color: rgba(0, 230, 118, 0.45);
    background: rgba(0, 230, 118, 0.06);
}

.landing-step-chip strong {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #00e676;
    margin-bottom: 4px;
}

.landing-step-chip span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
}

html:not(.mud-theme-dark) .landing-step-chip span {
    color: rgba(0, 0, 0, 0.62);
}

/* ── Pricing ───────────────────────────────────────────────── */

.landing-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .landing-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

.landing-price-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    background: #141414;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

html:not(.mud-theme-dark) .landing-price-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
}

.landing-price-card--featured {
    border-color: rgba(0, 230, 118, 0.45);
    background: linear-gradient(180deg, rgba(0, 230, 118, 0.08) 0%, #141414 40%);
    transform: scale(1.03);
}

html:not(.mud-theme-dark) .landing-price-card--featured {
    background: linear-gradient(180deg, rgba(0, 230, 118, 0.1) 0%, #fff 40%);
}

.landing-price-card__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #00e676;
    margin-bottom: 8px;
}

.landing-price-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 4px;
}

.landing-price-card__seats {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.landing-price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}

.landing-price-card li {
    font-size: 0.88rem;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.68);
    padding-left: 20px;
    position: relative;
}

.landing-price-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00e676;
}

.landing-trial-banner {
    text-align: center;
    margin-top: 32px;
    padding: 20px 28px;
    border-radius: 16px;
    border: 1px dashed rgba(0, 230, 118, 0.35);
    background: rgba(0, 230, 118, 0.05);
}

/* ── FAQ ───────────────────────────────────────────────────── */

.landing-faq {
    max-width: 720px;
    margin: 0 auto;
}

.landing-faq details {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    margin-bottom: 10px;
    background: #141414;
    overflow: hidden;
}

html:not(.mud-theme-dark) .landing-faq details {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
}

.landing-faq summary {
    padding: 18px 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.landing-faq summary::after {
    content: "+";
    font-size: 1.2rem;
    color: #00e676;
    transition: transform 0.2s ease;
}

.landing-faq details[open] summary::after {
    transform: rotate(45deg);
}

.landing-faq details p {
    padding: 0 20px 18px;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.58);
}

html:not(.mud-theme-dark) .landing-faq details p {
    color: rgba(0, 0, 0, 0.55);
}

/* ── CTA band ──────────────────────────────────────────────── */

.landing-cta-band {
    text-align: center;
    padding: 72px 24px;
    margin: 0 24px 48px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0d2818 0%, #123d24 45%, #0a1a10 100%);
    border: 1px solid rgba(0, 230, 118, 0.25);
    position: relative;
    overflow: hidden;
}

.landing-cta-band::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.landing-cta-band h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin: 0 0 12px;
    position: relative;
}

.landing-cta-band p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 28px;
    position: relative;
}

.landing-cta-band .landing-hero-cta {
    justify-content: center;
    position: relative;
}

.support-form-card {
    background: #141414;
    border-radius: 20px;
}

html:not(.mud-theme-dark) .support-form-card {
    background: #fff;
}

.landing-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 48px 24px 24px;
}

.landing-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

@media (max-width: 640px) {
    .landing-footer__inner {
        grid-template-columns: 1fr;
    }
}

.landing-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.landing-footer__name {
    font-weight: 700 !important;
}

.landing-footer__cols {
    display: flex;
    gap: 48px;
}

.landing-footer__cols div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.landing-footer__cols a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
}

.landing-footer__cols a:hover {
    color: #00e676;
}

.landing-footer__bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}
