/**
 * Landing pública — mesmo vocabulário visual dos temas (html.theme-dark / theme-light).
 */
.landing {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.landing-promo {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px var(--space);
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.2), rgba(239, 68, 68, 0.15), rgba(249, 115, 22, 0.2));
    border-bottom: 1px solid var(--line-glass, var(--line));
    color: var(--text-secondary);
}

html.theme-dark .landing-promo {
    color: #fdba74;
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.18), rgba(168, 85, 247, 0.12), rgba(6, 182, 212, 0.1));
}

.landing-header {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid var(--line-glass, var(--line));
    background: color-mix(in srgb, var(--surface) 75%, transparent);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

html.theme-dark .landing-header {
    background: color-mix(in srgb, rgba(15, 23, 42, 0.78) 88%, transparent);
}

.landing-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px var(--space);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.landing-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.04em;
    color: var(--text);
    text-decoration: none;
}

.landing-logo:hover {
    text-decoration: none;
    color: var(--accent-hover);
}

.landing-logo img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    object-fit: contain;
}

.landing-nav {
    display: none;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .landing-nav {
        display: flex;
        flex: 1;
        justify-content: center;
    }
}

.landing-nav a {
    padding: 10px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
}

.landing-nav a:hover {
    color: var(--text);
    background: var(--surface2);
    text-decoration: none;
}

.landing-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.landing-theme-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--surface2);
    color: var(--text);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.landing-theme-btn:hover {
    background: var(--surface-hover);
    border-color: var(--line-strong);
}

.landing-theme-btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.landing-theme-btn__icon .landing-icon-svg {
    width: 22px;
    height: 22px;
}

.landing-theme-btn__icon--hidden {
    display: none !important;
}

.landing-link-quiet {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    padding: 10px 12px;
}

.landing-link-quiet:hover {
    color: var(--text);
}

.landing-btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    color: #0f172a;
    background: #f8fafc;
    box-shadow: 0 4px 20px rgba(248, 250, 252, 0.15);
    transition: transform 0.12s var(--ease-out), filter 0.15s ease;
}

html.theme-light .landing-btn-pill {
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    box-shadow: var(--glow-primary);
}

.landing-btn-pill:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
    text-decoration: none;
    color: #0f172a;
}

html.theme-light .landing-btn-pill:hover {
    color: #fff;
}

.landing-main {
    flex: 1;
}

.landing-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(36px, 8vw, 88px) var(--space) clamp(48px, 10vw, 100px);
    text-align: center;
}

.landing-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid var(--line-glass, var(--line));
    background: var(--surface2);
    margin-bottom: 24px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.landing-proof-pill {
    display: flex;
    width: auto;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line-glass, var(--line));
    background: color-mix(in srgb, var(--surface2) 80%, transparent);
    margin: 0 auto 14px;
    max-width: 100%;
    width: fit-content;
}

.landing-proof-pill__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 0 0 auto;
}

.landing-proof-pill__avatar-letter {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 850;
    letter-spacing: -0.04em;
    font-size: 0.72rem;
    color: #0f172a;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.95), rgba(99, 102, 241, 0.95));
    box-shadow: var(--glow-primary);
}

.landing-proof-pill__text {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.landing-proof-pill__stars {
    display: inline-flex;
    gap: 3px;
    color: #fbbf24;
    flex: 0 0 auto;
}

.landing-proof-pill__stars svg {
    width: 14px;
    height: 14px;
}

html.theme-light .landing-proof-pill {
    background: color-mix(in srgb, #ffffff 85%, transparent);
}

html.theme-dark .landing-badge {
    box-shadow: 0 0 24px rgba(99, 102, 241, 0.12);
}

.landing-badge__icon {
    display: flex;
    color: var(--accent-hover);
}

.landing-badge__icon .landing-icon-svg {
    width: 18px;
    height: 18px;
}

.landing-hero__title {
    font-size: clamp(2rem, 5.5vw, 3.35rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.045em;
    margin: 0 0 20px;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}

.landing-gradient {
    background: linear-gradient(135deg, #a78bfa 0%, #6366f1 40%, #22d3ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

html.theme-light .landing-gradient {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 45%, #0891b2 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.landing-hero__sub {
    font-size: clamp(1rem, 2.4vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 36rem;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.landing-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
}

.landing-btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 45%, #06b6d4 100%);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.45), 0 0 40px rgba(6, 182, 212, 0.15);
    border: none;
    cursor: pointer;
    transition: transform 0.12s var(--ease-out), filter 0.15s ease, box-shadow 0.2s ease;
}

.landing-btn-hero:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
    text-decoration: none;
    color: #fff;
}

.landing-btn-hero--block {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

.landing-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 16px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    color: var(--text);
    border: 1px solid var(--line-glass, var(--line));
    background: var(--surface2);
    transition: background 0.15s ease, border-color 0.15s ease;
}

.landing-btn-ghost:hover {
    background: var(--surface-hover);
    border-color: var(--line-strong);
    text-decoration: none;
    color: var(--text);
}

.landing-btn-ghost--block {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

.landing-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--muted);
}

.landing-hero__chips span {
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: var(--surface2);
    border: 1px solid var(--line-glass, var(--line));
}

.landing-preview {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 var(--space) clamp(40px, 8vw, 80px);
}

.landing-preview__card {
    border-radius: 24px;
    padding: clamp(20px, 4vw, 28px);
    border: 1px solid var(--line-glass, var(--line));
    background: linear-gradient(165deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.55));
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    box-shadow: var(--shadow-lg);
}

html.theme-light .landing-preview__card {
    background: var(--surface);
    box-shadow: var(--shadow-lg);
}

.landing-preview__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.landing-preview__greet {
    font-weight: 700;
    font-size: 1.05rem;
}

.landing-preview__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 6px;
}

.landing-preview__balance {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--income);
    text-shadow: 0 0 40px rgba(52, 211, 153, 0.25);
}

.landing-preview__balance--neg {
    color: var(--expense);
    text-shadow: 0 0 32px rgba(251, 113, 133, 0.2);
}

.landing-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}

@media (max-width: 520px) {
    .landing-preview__grid {
        grid-template-columns: 1fr;
    }
}

.landing-preview__donuts {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    gap: clamp(16px, 4vw, 28px);
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--line-glass, var(--line));
}

/* Mesmo componente SVG do painel (.donut), compacto na prévia */
.landing-preview__donuts--real {
    align-items: flex-start;
}

.landing-donut-block {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 0 1 auto;
    max-width: min(148px, 34vw);
}

.landing-preview__donuts--real .donut-wrap {
    margin: 0 auto;
}

.landing-preview__donuts--real .donut {
    width: min(118px, 30vw);
    height: min(118px, 30vw);
}

.landing-preview__donuts--real .donut__center {
    padding: 14%;
}

.landing-preview__donuts--real .donut__center-main {
    font-size: clamp(0.6rem, 2.35vw, 0.78rem);
}

.landing-preview__donuts--real .donut__center-sub {
    font-size: clamp(0.52rem, 1.8vw, 0.62rem);
    margin-top: 3px;
}

.landing-donut-block__cap {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--muted);
    text-align: center;
}

.landing-mini {
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--line-glass, var(--line));
    background: var(--surface2);
}

.landing-mini__k {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 6px;
}

.landing-mini__v {
    font-weight: 800;
    font-size: 1.15rem;
    font-variant-numeric: tabular-nums;
}

.landing-mini__v--in {
    color: var(--income);
}

.landing-mini__v--out {
    color: var(--expense);
}

.landing-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(40px, 7vw, 72px) var(--space);
}

.landing-section__head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 40px;
}

.landing-section__title {
    font-size: clamp(1.65rem, 4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin: 0 0 12px;
}

.landing-section__sub {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.55;
}

.landing-features {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .landing-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .landing-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.landing-fcard {
    border-radius: 22px;
    padding: 22px;
    border: 1px solid var(--line-glass, var(--line));
    background: var(--surface);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

html.theme-dark .landing-fcard {
    background: linear-gradient(155deg, rgba(30, 41, 59, 0.38), rgba(15, 23, 42, 0.52));
    backdrop-filter: blur(16px) saturate(1.15);
    -webkit-backdrop-filter: blur(16px) saturate(1.15);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.landing-fcard:hover {
    border-color: rgba(167, 139, 250, 0.35);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.landing-icon-svg {
    display: block;
    flex-shrink: 0;
}

.landing-fcard__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.landing-fcard__icon .landing-icon-svg {
    width: 24px;
    height: 24px;
}

.landing-fcard__icon--emerald {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.35), rgba(6, 182, 212, 0.2));
    color: #4ade80;
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.2);
}

.landing-fcard__icon--violet {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.38), rgba(99, 102, 241, 0.2));
    color: #c4b5fd;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.18);
}

.landing-fcard__icon--amber {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.35), rgba(249, 115, 22, 0.18));
    color: #fbbf24;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.15);
}

.landing-fcard__icon--rose {
    background: linear-gradient(135deg, rgba(251, 113, 133, 0.35), rgba(244, 63, 94, 0.2));
    color: #fda4af;
    box-shadow: 0 0 20px rgba(251, 113, 133, 0.18);
}

.landing-fcard__icon--sky {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.32), rgba(99, 102, 241, 0.18));
    color: #38bdf8;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}

.landing-fcard__icon--teal {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.32), rgba(34, 211, 238, 0.18));
    color: #2dd4bf;
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.15);
}

.landing-fcard__icon--green {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.38), rgba(16, 185, 129, 0.22));
    color: #4ade80;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.18);
}

.landing-fcard__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.landing-fcard__text {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.landing-whatsapp-panel {
    max-width: 44rem;
    margin: 0 auto;
    border-radius: 22px;
    border: 1px solid var(--line-glass, var(--line));
    background: var(--surface);
    overflow: hidden;
}

html.theme-dark .landing-whatsapp-panel {
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.55));
    backdrop-filter: blur(18px) saturate(1.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.landing-whatsapp-panel__body {
    padding: clamp(22px, 4vw, 32px);
    font-size: 0.9875rem;
    color: var(--text-secondary);
    line-height: 1.62;
}

.landing-whatsapp-panel__body p {
    margin: 0 0 1rem;
}

.landing-whatsapp-panel__body p:last-of-type {
    margin-bottom: 0;
}

.landing-whatsapp-panel__list {
    list-style: none;
    padding: 0;
    margin: 1.15rem 0 1.35rem;
}

.landing-whatsapp-panel__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.65rem;
    color: var(--text);
}

.landing-whatsapp-panel__list li .landing-icon-svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--income);
}

.landing-whatsapp-panel__body .landing-btn-hero {
    margin-top: 1.25rem;
    display: inline-flex;
}

.landing-whatsapp-panel__hint {
    margin: 0.85rem 0 0 !important;
}

.landing-pricing {
    display: grid;
    gap: 28px;
    max-width: 920px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    align-items: stretch;
}

@media (min-width: 800px) {
    .landing-pricing {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

.landing-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    padding: 28px 24px;
    border: 1px solid var(--line-glass, var(--line));
    background: var(--surface2);
}

html.theme-dark .landing-plan {
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.42), rgba(15, 23, 42, 0.55));
    backdrop-filter: blur(18px) saturate(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

.landing-plan--featured {
    border-color: rgba(167, 139, 250, 0.45);
    box-shadow: 0 0 48px rgba(99, 102, 241, 0.18);
    padding-top: 36px;
}

.landing-plan__badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: linear-gradient(135deg, #22c55e, #4ade80);
    color: #052e16;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 16px rgba(74, 222, 128, 0.35);
}

html.theme-light .landing-plan__badge {
    color: #14532d;
}

.landing-plan__title {
    margin: 0 0 8px;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.landing-plan__price {
    margin: 0 0 6px;
    font-size: clamp(1.85rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.landing-plan__price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted);
    margin-left: 4px;
}

.landing-plan__compare {
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: var(--muted);
}

.landing-plan__compare s {
    opacity: 0.75;
}

.landing-plan__hint {
    margin: 0 0 20px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.landing-plan__list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    flex: 1;
}

.landing-plan__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.landing-plan__list li:last-child {
    margin-bottom: 0;
}

.landing-plan .landing-btn-hero--block,
.landing-plan .landing-btn-ghost--block {
    margin-top: auto;
}

.landing-plan__list .landing-icon-svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--income);
}

html.theme-light .landing-plan__list .landing-icon-svg {
    color: #059669;
}

.landing-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 600px) {
    .landing-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.landing-stat__value {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent-hover) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

html.theme-light .landing-stat__value {
    background: linear-gradient(135deg, #0f172a 0%, #6366f1 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.landing-stat__label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.landing-cta-block {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(36px, 6vw, 48px) var(--space);
    text-align: center;
    border-radius: 24px;
    border: 1px solid var(--line-glass, var(--line));
    background: linear-gradient(160deg, rgba(99, 102, 241, 0.12), rgba(6, 182, 212, 0.06));
}

html.theme-light .landing-cta-block {
    background: linear-gradient(160deg, rgba(99, 102, 241, 0.08), rgba(14, 165, 233, 0.06));
}

.landing-cta-block h2 {
    margin: 0 0 12px;
    font-size: clamp(1.4rem, 3.5vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.landing-cta-block p {
    margin: 0 0 24px;
    color: var(--text-secondary);
}

.landing-faq {
    max-width: 720px;
    margin: 0 auto;
}

.landing-faq details {
    border-radius: var(--radius);
    border: 1px solid var(--line-glass, var(--line));
    background: var(--surface2);
    margin-bottom: 10px;
    padding: 4px 16px;
}

.landing-faq summary {
    cursor: pointer;
    font-weight: 600;
    padding: 14px 0;
    list-style: none;
}

.landing-faq summary::-webkit-details-marker {
    display: none;
}

.landing-faq details[open] summary {
    border-bottom: 1px solid var(--line);
    margin-bottom: 10px;
}

.landing-faq p {
    margin: 0 0 14px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.55;
}

.landing-footer {
    margin-top: auto;
    padding: 32px var(--space);
    border-top: 1px solid var(--line-glass, var(--line));
    text-align: center;
    color: var(--muted);
    font-size: 0.8125rem;
}

.landing-footer a {
    color: var(--text-secondary);
    font-weight: 500;
}

.landing-footer a:hover {
    color: var(--accent-hover);
}

.landing-mono {
    font-family: var(--font-mono);
    font-size: 0.8em;
}
