/* Aidat Landing — site palette (independent from panel tokens) */
body.landing-dark {
    --bg: #05080f;
    --bg2: #0a111b;
    --bg-band: #0d1520;
    --surface: #141c28;
    --card: #1a2433;
    --card-elevated: #223044;
    --bd: rgba(255, 255, 255, 0.11);
    --bd-soft: rgba(255, 255, 255, 0.06);
    --txt: #f4f7fb;
    --txt-soft: #dce4ef;
    --mut: #9aa8bd;
    --cor: #5b8def;
    --cor2: #7da3f5;
    --grn: #34d399;
    --amb: #ffc24b;
    --wa: #25d366;

    --px-bg: var(--bg);
    --px-bg2: var(--bg-band);
    --px-card: var(--card);
    --px-bd: var(--bd);
    --px-mut: var(--mut);
    --px-cor: var(--cor);
    --px-cor2: var(--cor2);
    --px-cor-soft: rgba(91, 141, 239, 0.14);
    --px-cor-border: rgba(91, 141, 239, 0.3);
    --px-cor-glow: rgba(91, 141, 239, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body.landing-dark {
    background-color: var(--bg);
    background-image:
        radial-gradient(ellipse 100% 55% at 50% -12%, rgba(91, 141, 239, 0.09), transparent 58%),
        radial-gradient(ellipse 70% 45% at 100% 0%, rgba(52, 211, 153, 0.05), transparent 52%),
        linear-gradient(180deg, #05080f 0%, #070b13 100%);
    color: var(--txt);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    overflow-x: hidden;
}

.landing-dark a { text-decoration: none; color: inherit; }
.landing-dark h1, .landing-dark h2, .landing-dark h3, .landing-dark h4 {
    letter-spacing: -.022em;
    line-height: 1.08;
    color: var(--txt);
}
.landing-dark .mut { color: var(--mut); }

.landing-dark .wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.landing-dark .sec { padding: 88px 0; }

.landing-dark .sec-alt {
    background: var(--bg2);
    border-top: 1px solid var(--bd-soft);
    border-bottom: 1px solid var(--bd-soft);
}

.landing-dark .sec-surface {
    background: var(--surface);
    border-top: 1px solid var(--bd-soft);
    border-bottom: 1px solid var(--bd-soft);
}

.landing-dark .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 22px;
    border-radius: 12px;
    border: 0;
    cursor: pointer;
    transition: transform .15s, box-shadow .2s;
}

.landing-dark .btn-cor {
    background: var(--cor);
    color: #fff;
    box-shadow: 0 14px 34px -10px rgba(91, 141, 239, .6);
}

.landing-dark .btn-cor:hover { transform: translateY(-2px); }

.landing-dark .lbl {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: var(--cor);
}

.landing-dark .stars { color: #ffc24b; letter-spacing: 2px; }

.js .landing-dark .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s cubic-bezier(.2, .8, .2, 1), transform .7s cubic-bezier(.2, .8, .2, 1);
}

.js .landing-dark .reveal.in { opacity: 1; transform: none; }

/* Logo text */
.px-logo-text { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -.03em; }
.px-logo-text span { color: var(--cor); }
.px-site-logo-img { max-height: 42px; max-width: 180px; object-fit: contain; display: block; }

/* HERO */
.landing-dark .hero {
    position: relative;
    overflow: hidden;
    padding: 60px 0 80px;
    background:
        radial-gradient(46% 60% at 14% 38%, rgba(91, 141, 239, 0.12), transparent 60%),
        radial-gradient(42% 55% at 86% 30%, rgba(37, 211, 102, 0.08), transparent 62%),
        var(--bg);
    border-bottom: 1px solid var(--bd-soft);
}

.landing-dark .hgrid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 42px;
    align-items: center;
    min-height: 560px;
}

.landing-dark .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 13px;
    border-radius: 30px;
    transition: .4s;
}

.landing-dark .hero h1 {
    font-size: 38px;
    font-weight: 800;
    margin: 16px 0 8px;
    line-height: 1.12;
}

.landing-dark .hrot {
    font-size: 27px;
    font-weight: 800;
    line-height: 1.16;
    margin: 0 0 14px;
    min-height: 64px;
}

.landing-dark .hero h1 .g,
.landing-dark .hrot .g {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.landing-dark .hero .sub {
    font-size: 17px;
    color: var(--mut);
    max-width: 480px;
    margin-bottom: 22px;
    min-height: 80px;
    line-height: 1.6;
}

.landing-dark .pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
    min-height: 34px;
}

.landing-dark .pill {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--txt-soft);
    background: var(--surface);
    border: 1px solid var(--bd);
    padding: 7px 12px;
    border-radius: 30px;
}

.landing-dark .hcta { display: flex; gap: 12px; margin-bottom: 22px; flex-wrap: wrap; }
.landing-dark .trust { font-size: 13px; color: var(--mut); }
.landing-dark .tabs { display: flex; gap: 7px; flex-wrap: wrap; }

.landing-dark .tab {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--mut);
    background: transparent;
    border: 1px solid var(--bd);
    padding: 7px 11px;
    border-radius: 9px;
    cursor: pointer;
    transition: .25s;
}

.landing-dark .tab.on { color: #fff; border-color: transparent; }

.landing-dark .progress {
    height: 2px;
    background: rgba(255, 255, 255, .08);
    border-radius: 2px;
    margin-top: 14px;
    overflow: hidden;
}

.landing-dark .progress i {
    display: block;
    height: 100%;
    width: 0;
    background: var(--cor);
}

/* Stage panels */
.landing-dark .stage {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-dark .panel {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(14px) scale(.985);
    pointer-events: none;
    transition: .5s cubic-bezier(.2, .8, .2, 1);
}

.landing-dark .panel.on {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.landing-dark .win {
    width: 340px;
    background: linear-gradient(180deg, #0e131d, #0b0f17);
    border: 1px solid var(--bd);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 45px 100px -30px rgba(0, 0, 0, .9);
}

.landing-dark .wbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 13px;
    border-bottom: 1px solid var(--bd);
}

.landing-dark .dot { width: 8px; height: 8px; border-radius: 50%; }
.landing-dark .wlive { margin-left: auto; display: flex; align-items: center; gap: 5px; font-size: 10px; color: var(--mut); }
.landing-dark .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--cor); animation: pp 1.6s infinite; }

@keyframes pp {
    0% { box-shadow: 0 0 0 0 rgba(91, 141, 239, .6); }
    70% { box-shadow: 0 0 0 7px rgba(91, 141, 239, 0); }
}

.landing-dark .wbody { padding: 14px; }
.landing-dark .htitle { font-size: 12px; font-weight: 700; color: #dfe4ec; }
.landing-dark .hsmall { font-size: 10px; color: var(--mut); }

.landing-dark .tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-bottom: 12px;
}

.landing-dark .tile {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--bd);
    border-radius: 11px;
    padding: 10px;
}

.landing-dark .tlbl {
    font-size: 8.5px;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: #7b8597;
    margin-bottom: 4px;
}

.landing-dark .tnum { font-size: 18px; font-weight: 800; }
.landing-dark .tup { font-size: 8.5px; font-weight: 700; color: var(--grn); margin-top: 3px; }

.landing-dark .bars {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 80px;
}

.landing-dark .b {
    flex: 1;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(180deg, var(--cor), rgba(91, 141, 239, .3));
    transform-origin: bottom;
    animation: grow 1s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes grow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.landing-dark .arow {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--bd);
    margin-bottom: 7px;
    opacity: 0;
    transform: translateX(-8px);
    transition: .4s;
}

.landing-dark .arow.show { opacity: 1; transform: none; }

.landing-dark .av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    flex-shrink: 0;
}

.landing-dark .stpill {
    font-size: 9.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    margin-left: auto;
}

/* Phone mockups */
.landing-dark .phone {
    width: 286px;
    background: #0a0e16;
    border: 9px solid #11161f;
    border-radius: 40px;
    box-shadow: 0 45px 100px -30px rgba(0, 0, 0, .92);
    overflow: hidden;
    position: relative;
}

.landing-dark .notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 20px;
    background: #11161f;
    border-radius: 0 0 14px 14px;
    z-index: 5;
}

.landing-dark .wahead {
    background: #1f2c34;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 27px 12px 10px;
}

.landing-dark .waav {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #04231a;
}

.landing-dark .waname { color: #e9edef; font-size: 12.5px; font-weight: 700; }
.landing-dark .wasub { color: #8aa0ad; font-size: 9px; }

.landing-dark .wabody {
    background: #0b141a;
    background-image: radial-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 18px 18px;
    height: 332px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    overflow: hidden;
}

.landing-dark .bub {
    max-width: 84%;
    padding: 6px 9px 5px;
    border-radius: 9px;
    font-size: 11px;
    line-height: 1.4;
    color: #e9edef;
    opacity: 0;
    transform: translateY(9px) scale(.96);
}

.landing-dark .bub.show { opacity: 1; transform: none; transition: .3s cubic-bezier(.2, .9, .3, 1); }
.landing-dark .out { align-self: flex-end; background: #005c4b; }
.landing-dark .inb { align-self: flex-start; background: #1f2c34; }

.landing-dark .tag {
    display: inline-flex;
    gap: 4px;
    font-size: 8px;
    font-weight: 700;
    color: #7ee0b0;
    background: rgba(37, 211, 102, .14);
    padding: 2px 6px;
    border-radius: 20px;
    margin-bottom: 3px;
}

.landing-dark .meta { display: flex; gap: 3px; justify-content: flex-end; margin-top: 2px; }
.landing-dark .time { font-size: 7.5px; color: rgba(233, 237, 239, .55); }
.landing-dark .tick { font-size: 9px; color: #8aa0ad; transition: .4s; }
.landing-dark .tick.read { color: #53bdeb; }

.landing-dark .typing {
    align-self: flex-end;
    background: #005c4b;
    border-radius: 9px;
    padding: 8px 11px;
    display: flex;
    gap: 4px;
    opacity: 0;
    transition: .25s;
}

.landing-dark .typing.show { opacity: 1; }
.landing-dark .typing i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .6);
    animation: td 1.2s infinite;
}

.landing-dark .typing i:nth-child(2) { animation-delay: .2s; }
.landing-dark .typing i:nth-child(3) { animation-delay: .4s; }

@keyframes td {
    0%, 60%, 100% { transform: translateY(0); opacity: .5; }
    30% { transform: translateY(-4px); opacity: 1; }
}

.landing-dark .vphone-head {
    background: linear-gradient(135deg, var(--cor), var(--cor2));
    padding: 30px 14px 16px;
    color: #fff;
}

.landing-dark .vcard {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--bd);
    border-radius: 12px;
    padding: 11px;
    margin: 8px 10px;
    opacity: 0;
    transform: translateY(8px);
    transition: .4s;
}

.landing-dark .vcard.show { opacity: 1; transform: none; }

.landing-dark .chip {
    position: absolute;
    z-index: 6;
    background: rgba(14, 19, 29, .93);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 9px 12px;
    box-shadow: 0 18px 46px -12px rgba(0, 0, 0, .9);
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
}

.landing-dark .chip .ic {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.landing-dark .ch-l { font-size: 9px; color: var(--mut); }
.landing-dark .ch-v { font-size: 12.5px; font-weight: 800; }
.landing-dark .float { animation: fl 5.5s ease-in-out infinite; }

@keyframes fl {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.landing-dark .cal {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-top: 8px;
}

.landing-dark .cd {
    aspect-ratio: 1;
    border-radius: 7px;
    background: rgba(255, 255, 255, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #9aa4b2;
    position: relative;
}

.landing-dark .cd.has {
    background: rgba(91, 141, 239, .16);
    color: #fff;
    font-weight: 700;
}

.landing-dark .cd.has::after {
    content: "";
    position: absolute;
    bottom: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cor);
}

/* Logos band */
.landing-dark .logos {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    opacity: .7;
    filter: grayscale(1);
    color: var(--mut);
}

.landing-dark .logos div { font-size: 18px; font-weight: 800; }

/* Bento features */
.landing-dark .bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.landing-dark .feat {
    background: var(--card);
    border: 1px solid var(--bd);
    border-radius: 18px;
    padding: 24px;
    transition: transform .2s, border-color .2s, box-shadow .2s;
    box-shadow: 0 10px 36px -12px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.landing-dark .feat:hover {
    transform: translateY(-5px);
    border-color: rgba(91, 141, 239, 0.4);
    box-shadow: 0 16px 44px -10px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(91, 141, 239, 0.12);
}

.landing-dark .feat .ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(91, 141, 239, .13);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 14px;
}

.landing-dark .feat h3 { font-size: 16.5px; margin-bottom: 7px; color: var(--txt); }
.landing-dark .feat p { font-size: 13.5px; color: var(--mut); }
.landing-dark .feat.wide { grid-column: span 2; }

/* Pricing */
.landing-dark .price-card {
    max-width: 460px;
    margin: 0 auto;
    background: var(--card-elevated);
    border: 1px solid rgba(91, 141, 239, 0.35);
    border-radius: 22px;
    padding: 34px;
    position: relative;
    box-shadow: 0 24px 64px -20px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.landing-dark .price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(120deg, var(--cor), var(--cor2));
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
}

.landing-dark .seg {
    display: inline-flex;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--bd);
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
    margin: 14px 0;
}

.landing-dark .seg button {
    padding: 9px 18px;
    border-radius: 9px;
    border: 0;
    background: transparent;
    color: var(--mut);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: .25s;
}

.landing-dark .seg button.on { background: var(--cor); color: #fff; }
.landing-dark .amt { font-size: 52px; font-weight: 800; color: var(--cor); }

.landing-dark .prow {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 14px;
    color: var(--txt-soft);
    border-top: 1px solid var(--bd);
}

.landing-dark .prow .c {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(52, 211, 153, .15);
    color: var(--grn);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    flex-shrink: 0;
}

.landing-dark .save { font-size: 12px; color: var(--grn); font-weight: 700; margin-top: 6px; }

/* Testimonials marquee */
.landing-dark .tmarq {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.landing-dark .ttrack {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: tscroll 50s linear infinite;
}

.landing-dark .tmarq:hover .ttrack { animation-play-state: paused; }

@keyframes tscroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.landing-dark .tcard2 {
    flex: 0 0 330px;
    box-sizing: border-box;
    background: var(--card);
    border: 1px solid var(--bd);
    border-radius: 16px;
    padding: 20px 22px;
    box-shadow: 0 8px 28px -10px rgba(0, 0, 0, 0.4);
}

.landing-dark .tcard2 .stars2 { color: #ffc24b; letter-spacing: 2px; font-size: 14px; }
.landing-dark .tcard2 p { font-size: 14px; color: var(--txt-soft); line-height: 1.55; margin: 11px 0 16px; min-height: 64px; }
.landing-dark .tcard2 .tu2 { display: flex; align-items: center; gap: 11px; }
.landing-dark .tcard2 .av2 {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}

.landing-dark .tcard2 .tn { font-size: 13px; font-weight: 700; color: var(--txt); }
.landing-dark .tcard2 .tb { font-size: 11px; color: var(--mut); }

/* FAQ chat style */
.landing-dark .cfaq {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.landing-dark .cqa { display: flex; flex-direction: column; gap: 9px; }

.landing-dark .cq {
    align-self: flex-end;
    max-width: 84%;
    background: linear-gradient(135deg, var(--cor), var(--cor2));
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 17px;
    border-radius: 16px 16px 5px 16px;
    box-shadow: 0 12px 28px -14px rgba(91, 141, 239, .65);
}

.landing-dark .ca {
    align-self: flex-start;
    max-width: 88%;
    display: flex;
    gap: 11px;
    align-items: flex-start;
}

.landing-dark .ca .pic {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    flex-shrink: 0;
    background: radial-gradient(120% 120% at 28% 18%, rgba(91, 141, 239, .55), rgba(91, 141, 239, .12));
    border: 1px solid rgba(91, 141, 239, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.landing-dark .ca .txt {
    background: var(--card-elevated);
    border: 1px solid var(--bd);
    color: var(--txt-soft);
    font-size: 14px;
    line-height: 1.55;
    padding: 13px 16px;
    border-radius: 16px 16px 16px 5px;
    box-shadow: 0 6px 20px -8px rgba(0, 0, 0, 0.35);
}

/* Panel screenshots */
.landing-dark .shot {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--bd);
    background: var(--card-elevated);
    box-shadow: 0 24px 56px -20px rgba(0, 0, 0, 0.55);
}

.landing-dark .shot .bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 13px;
    background: var(--surface);
    border-bottom: 1px solid var(--bd);
}

.landing-dark .shot .bar .d { width: 10px; height: 10px; border-radius: 50%; }
.landing-dark .shot .bar .u {
    margin-left: 14px;
    font-size: 11px;
    color: var(--mut);
    background: rgba(255, 255, 255, .05);
    padding: 3px 12px;
    border-radius: 20px;
}

.landing-dark .shot img { display: block; width: 100%; height: auto; }
.landing-dark .shot.glow { box-shadow: 0 44px 100px -42px rgba(91, 141, 239, .42), 0 24px 60px -30px rgba(0, 0, 0, .92); }

.landing-dark .rps-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 30px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

.landing-dark .rps-phone {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    border-radius: 30px;
    padding: 8px;
    background: linear-gradient(160deg, #222b3d, #0c1018);
    box-shadow: 0 40px 80px -28px rgba(0, 0, 0, .9), inset 0 0 0 1px rgba(255, 255, 255, .07);
    overflow: hidden;
}

.landing-dark .rps-phone img { display: block; width: 100%; height: auto; border-radius: 23px; }

.landing-dark .show-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
}

/* Photo band */
.landing-dark .phband { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.landing-dark .phcard {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 300px;
    border: 1px solid var(--bd);
}

.landing-dark .phcard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform .6s;
}

.landing-dark .phcard:hover img { transform: scale(1.06); }

.landing-dark .phcard::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 32%, rgba(7, 10, 16, .93));
}

.landing-dark .phcard .cap { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2; }
.landing-dark .phcard .cap h4 { font-size: 18px; font-weight: 800; color: #fff; margin: 0 0 3px; }
.landing-dark .phcard .cap p { font-size: 12.5px; color: #cdd4df; margin: 0; }

/* CTA */
.landing-dark .cta {
    background: linear-gradient(120deg, var(--cor), var(--cor2));
    border-radius: 26px;
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.landing-dark .cta h2 { font-size: 34px; margin-bottom: 12px; }

/* Dashboard mock for screenshots when no image */
.landing-dark .dash-mock {
    padding: 20px;
    min-height: 280px;
    background: var(--surface);
}

.landing-dark .dash-mock .dm-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.landing-dark .dash-mock .dm-stat {
    background: var(--card);
    border: 1px solid var(--bd);
    border-radius: 10px;
    padding: 14px;
}

.landing-dark .dash-mock .dm-stat .lbl2 { font-size: 10px; color: var(--mut); text-transform: uppercase; }
.landing-dark .dash-mock .dm-stat .val { font-size: 22px; font-weight: 800; margin-top: 4px; }

.landing-dark .dash-mock .dm-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
    padding-top: 10px;
}

.landing-dark .dash-mock .dm-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--cor), rgba(91, 141, 239, .25));
}

/* Clickable panel previews */
.landing-dark .panel-demo-link {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: transform .2s, box-shadow .2s;
}

.landing-dark .panel-demo-link:hover {
    transform: translateY(-4px);
}

.landing-dark .panel-demo-link.rps-phone {
    text-decoration: none;
}

.landing-dark .panel-demo-cta {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 10, 16, .72);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    opacity: 0;
    transition: opacity .25s;
    border-radius: inherit;
}

.landing-dark .panel-demo-link:hover .panel-demo-cta {
    opacity: 1;
}

.landing-dark .rps-grid .panel-demo-link.rps-phone .panel-demo-cta {
    border-radius: 30px;
}

/* Site shell on landing — nav / footer contrast */
.landing-dark .px-nav {
    background: rgba(5, 8, 15, 0.82);
    border-bottom-color: var(--bd-soft);
}

.landing-dark .px-cta {
    box-shadow: 0 14px 34px -10px var(--px-cor-glow);
}

.landing-dark .px-login {
    border-color: var(--bd-soft);
    background: rgba(255, 255, 255, 0.05);
}

.landing-dark .px-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.landing-dark .px-ftrust {
    background: var(--bg-band);
    border-top-color: var(--bd-soft);
}

.landing-dark .px-footer {
    background: var(--bg2);
    border-top-color: var(--bd-soft);
}

.landing-dark .px-ft-ic {
    background: var(--px-cor-soft);
    color: var(--cor);
}

.landing-dark .px-flogo {
    background: radial-gradient(120% 120% at 28% 18%, var(--px-cor-soft), transparent 72%);
    border-color: var(--px-cor-border);
}

.landing-dark .px-logo-text { color: var(--txt); }

/* Responsive */
@media (max-width: 880px) {
    .landing-dark .hgrid { grid-template-columns: 1fr; gap: 40px; }
    .landing-dark .hero h1 { font-size: 30px; min-height: 0; }
    .landing-dark .hrot { font-size: 21px; min-height: 0; }
    .landing-dark .hero .sub, .landing-dark .pills { min-height: 0; }
    .landing-dark .stage { height: 480px; }
    .landing-dark .bento { grid-template-columns: 1fr; }
    .landing-dark .feat.wide { grid-column: span 1; }
    .landing-dark .show-grid { grid-template-columns: 1fr !important; }
    .landing-dark .rps-grid { grid-template-columns: 1fr; justify-items: center; gap: 30px; }
    .landing-dark .phband { grid-template-columns: 1fr; }
    .landing-dark .phcard { min-height: 210px; }
}

@media (max-width: 767px) {
    .landing-dark .tcard2 { flex: 0 0 280px; }
}

@media (prefers-reduced-motion: reduce) {
    .landing-dark * { animation: none !important; transition: none !important; }
    .js .landing-dark .reveal { opacity: 1; transform: none; }
    .landing-dark .ttrack { animation: none; }
}
