:root {
    --landing-ink: #08111f;
    --landing-ink-soft: #516078;
    --landing-blue: #3566ff;
    --landing-blue-dark: #2450df;
    --landing-violet: #7c4dff;
    --landing-green: #17c981;
    --landing-cyan: #20c7e8;
    --landing-line: rgba(15, 35, 65, .11);
    --landing-panel: #ffffff;
    --landing-night: #07111f;
    --landing-night-soft: #0c1a2d;
    --landing-shadow: 0 24px 70px rgba(20, 43, 84, .13);
}

body {
    background: #f8fbff;
}

.landing-shell {
    min-height: 100vh;
    overflow: hidden;
    color: #000000;
    background: radial-gradient(circle at 90% 10%, rgba(92,113,255,.26), transparent 30%),        linear-gradient(145deg,#0a1729,#0c213a);
}

.landing-container {
    width: min(1220px, calc(100% - 40px));
    margin-inline: auto;
}

.landing-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 80;
    border-bottom: 1px solid transparent;
    background: white;
}

.landing-header.is-scrolled {
    background: rgba(248, 251, 255, .88);
    border-color: rgba(15, 35, 65, .08);
    box-shadow: 0 10px 30px rgba(12, 27, 50, .06);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.landing-brand-mark {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, var(--landing-blue), var(--landing-violet));
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(53, 102, 255, .28), inset 0 1px 0 rgba(255,255,255,.34);
}

.landing-brand-mark svg {
    width: 29px;
    height: 29px;
}

.landing-brand-copy {
    display: grid;
    line-height: 1;
}

.landing-brand-copy strong {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -.03em;
}

.landing-brand-copy small {
    margin-top: 6px;
    color: #718096;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-nav a {
    padding: 10px 12px;
    color: #43516a;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 750;
    transition: color .16s ease, background .16s ease;
}

.desktop-nav a:hover {
    color: var(--landing-blue);
    background: rgba(53, 102, 255, .07);
}

.header-actions,
.hero-actions,
.final-cta-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 17px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: -.01em;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}

.landing-button:hover {
    transform: translateY(-2px);
}

.landing-button svg {
    width: 19px;
    height: 19px;
}

.button-primary {
    color: #f5f5f5;
    background: linear-gradient(135deg, #86f6ff, #08008d);
    box-shadow: 0 12px 26px rgba(53, 102, 255, .25);
}

.button-primary:hover {
    background: linear-gradient(135deg, var(--landing-blue-dark), #6443e8);
    box-shadow: 0 16px 34px rgba(53, 102, 255, .3);
}

.button-ghost {
    color: #27364f;
    background: rgba(255,255,255,.6);
    border-color: rgba(15, 35, 65, .1);
}

.button-ghost:hover,
.button-outline:hover {
    border-color: rgba(53, 102, 255, .35);
    background: rgba(53, 102, 255, .06);
}

.button-outline {
    color: #253654;
    background: rgba(255,255,255,.7);
    border-color: rgba(15, 35, 65, .13);
}

.button-large {
    min-height: 52px;
    padding-inline: 21px;
    border-radius: 14px;
    font-size: 14px;
}

.menu-button {
    width: 46px;
    height: 46px;
    position: relative;
    display: none;
    padding: 0;
    color: var(--landing-ink);
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(15, 35, 65, .1);
    border-radius: 12px;
    cursor: pointer;
}

.menu-button span {
    position: absolute;
    left: 13px;
    width: 19px;
    height: 2px;
    background: currentColor;
    border-radius: 99px;
    transition: top .2s ease, transform .2s ease, opacity .2s ease;
}

.menu-button span:nth-child(1) { top: 15px; }
.menu-button span:nth-child(2) { top: 22px; }
.menu-button span:nth-child(3) { top: 29px; }
.menu-button[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.mobile-navigation {
    display: none;
    background: #f8fbff;
    border-top: 1px solid rgba(15,35,65,.08);
    box-shadow: 0 22px 36px rgba(12,27,50,.08);
}

.mobile-navigation-inner {
    display: grid;
    padding-block: 10px 18px;
}

.mobile-navigation a {
    padding: 13px 4px;
    color: #34435b;
    border-bottom: 1px solid rgba(15,35,65,.07);
    font-size: 14px;
    font-weight: 750;
}

.hero-section {
    position: relative;
    min-height: 840px;
    display: grid;
    align-items: center;
    padding: 54px 0 90px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(244,248,255,.94)),
        #f8fbff;
}

.hero-grid,
.dark-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(53,102,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(53,102,255,.055) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    pointer-events: none;
}

.hero-orb-one {
    width: 520px;
    height: 520px;
    top: -180px;
    right: 4%;
    background: radial-gradient(circle, rgba(124,77,255,.18), transparent 68%);
}

.hero-orb-two {
    width: 480px;
    height: 480px;
    left: -180px;
    bottom: -180px;
    background: radial-gradient(circle, rgba(32,199,232,.14), transparent 68%);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(590px, 1.12fr);
    align-items: center;
    gap: 58px;
}

.hero-content {
    max-width: 650px;
}

.hero-eyebrow,
.section-label {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #2b56db;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero-eyebrow {
    padding: 8px 11px;
    background: rgba(53,102,255,.08);
    border: 1px solid rgba(53,102,255,.15);
    border-radius: 11px;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--landing-green);
    border-radius: 999px;
    box-shadow: 0 0 0 5px rgba(23,201,129,.13);
}

.hero-content h1 {
    margin: 25px 0 0;
    font-size: clamp(48px, 5.6vw, 78px);
    line-height: .98;
    letter-spacing: -.065em;
}

.hero-content h1 span {
    display: block;
    color: transparent;
    background: linear-gradient(100deg, var(--landing-blue) 10%, var(--landing-violet) 64%, #2ec9cb);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-description {
    max-width: 620px;
    margin: 26px 0 0;
    color: var(--landing-ink-soft);
    font-size: 17px;
    line-height: 1.75;
}

.hero-actions {
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 22px;
    margin-top: 28px;
    color: #5a6880;
    font-size: 12px;
    font-weight: 700;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-proof svg {
    width: 17px;
    height: 17px;
    color: var(--landing-green);
}

.hero-visual {
    position: relative;
    min-width: 0;
    perspective: 1300px;
}

.visual-glow {
    position: absolute;
    inset: 12% 4% 2%;
    background: radial-gradient(circle, rgba(53,102,255,.24), rgba(124,77,255,.11) 38%, transparent 72%);
    filter: blur(30px);
    pointer-events: none;
}

.dashboard-window {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 23px;
    box-shadow: 0 42px 110px rgba(29, 55, 102, .22), 0 0 0 1px rgba(53,102,255,.08);
    transform: rotateY(-4deg) rotateX(2deg);
    transform-origin: center;
    backdrop-filter: blur(20px);
}

.window-bar {
    height: 48px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 16px;
    background: rgba(248,251,255,.94);
    border-bottom: 1px solid rgba(15,35,65,.08);
}

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

.window-dots span {
    width: 8px;
    height: 8px;
    background: #d5ddea;
    border-radius: 999px;
}

.window-dots span:first-child { background: #ff7d72; }
.window-dots span:nth-child(2) { background: #ffc65c; }
.window-dots span:nth-child(3) { background: #46cf8a; }

.window-address {
    min-width: 200px;
    padding: 7px 18px;
    color: #7b8799;
    background: #fff;
    border: 1px solid rgba(15,35,65,.07);
    border-radius: 8px;
    font-size: 9px;
    text-align: center;
}

.window-secure {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #5b6a80;
    font-size: 9px;
    font-weight: 800;
}

.window-secure svg { width: 13px; height: 13px; color: var(--landing-green); }

.dashboard-preview {
    min-height: 445px;
    display: grid;
    grid-template-columns: 58px 1fr;
    background: #f3f6fb;
}

.preview-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 14px 10px;
    background: #0a1526;
}

.preview-logo,
.preview-user {
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 9px;
    font-weight: 900;
}

.preview-logo {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
    background: linear-gradient(145deg, var(--landing-blue), var(--landing-violet));
    border-radius: 11px;
}

.preview-nav {
    width: 30px;
    height: 30px;
    position: relative;
    border-radius: 9px;
}

.preview-nav::before,
.preview-nav::after {
    content: "";
    position: absolute;
    background: #405069;
    border-radius: 3px;
}

.preview-nav::before { width: 12px; height: 4px; left: 9px; top: 8px; }
.preview-nav::after { width: 12px; height: 4px; left: 9px; top: 17px; }
.preview-nav.active { background: rgba(73,104,255,.2); }
.preview-nav.active::before,
.preview-nav.active::after { background: #7fa2ff; }
.preview-sidebar-spacer { flex: 1; }
.preview-avatar { width: 28px; height: 28px; background: #24334a; border-radius: 9px; }

.preview-main {
    min-width: 0;
    padding: 18px 19px 20px;
}

.preview-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
}

.preview-topbar > div:first-child { display: grid; gap: 3px; }
.preview-kicker { color: #8590a2; font-size: 7px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.preview-topbar strong { font-size: 13px; letter-spacing: -.02em; }
.preview-top-actions { display: flex; align-items: center; gap: 8px; }
.preview-plan { padding: 5px 8px; color: #3156ce; background: #eaf0ff; border-radius: 999px; font-size: 7px; font-weight: 900; }
.preview-user { width: 27px; height: 27px; background: linear-gradient(145deg,#3566ff,#7c4dff); border-radius: 9px; }

.preview-hero-card {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 18px;
    padding: 18px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 5%, rgba(255,255,255,.18), transparent 25%),
        linear-gradient(135deg, #1c4adb, #6144de 62%, #7851e8);
    border-radius: 16px;
    box-shadow: 0 16px 30px rgba(53,102,255,.2);
}

.preview-live { display: inline-flex; align-items: center; gap: 5px; font-size: 6px; font-weight: 900; letter-spacing: .1em; }
.preview-live i { width: 5px; height: 5px; background: #52e69f; border-radius: 999px; box-shadow: 0 0 0 3px rgba(82,230,159,.18); }
.preview-hero-card h2 { margin: 9px 0 4px; font-size: 20px; letter-spacing: -.045em; }
.preview-hero-card p { margin: 0; color: rgba(255,255,255,.72); font-size: 8px; }
.preview-health { display: grid; align-content: center; padding: 11px; background: rgba(6,15,33,.2); border: 1px solid rgba(255,255,255,.13); border-radius: 11px; }
.preview-health span { color: rgba(255,255,255,.66); font-size: 7px; }
.preview-health strong { margin-top: 4px; font-size: 20px; }
.preview-health small { margin-top: 3px; color: #a6f4ca; font-size: 6px; }

.preview-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 9px;
    margin-top: 10px;
}

.preview-stat-grid article,
.preview-chart-card,
.preview-channel-card {
    background: #fff;
    border: 1px solid rgba(15,35,65,.07);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(24,42,74,.04);
}

.preview-stat-grid article { display: grid; gap: 4px; padding: 12px; }
.preview-stat-grid span { color: #7d899b; font-size: 6px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.preview-stat-grid strong { font-size: 16px; letter-spacing: -.04em; }
.preview-stat-grid small { color: #98a2b3; font-size: 6px; }

.preview-content-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 9px;
    margin-top: 10px;
}

.preview-chart-card,
.preview-channel-card { padding: 12px; }
.preview-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 8px; font-weight: 850; }
.preview-card-head small { color: #8995a7; font-size: 6px; }
.preview-chart { height: 80px; display: flex; align-items: end; gap: 7px; padding-top: 12px; }
.preview-chart span { flex: 1; min-width: 6px; background: linear-gradient(180deg,#6f75ff,#3c66e8); border-radius: 4px 4px 2px 2px; opacity: .86; }
.channel-row { display: grid; grid-template-columns: auto 1fr auto; gap: 8px; align-items: center; margin-top: 10px; }
.channel-icon { width: 25px; height: 25px; display: grid; place-items: center; color: #fff; border-radius: 8px; font-size: 7px; font-style: normal; font-weight: 900; }
.channel-icon.device { background: linear-gradient(145deg,#18c981,#159767); }
.channel-icon.meta { background: linear-gradient(145deg,#3566ff,#7c4dff); }
.channel-row div { display: grid; gap: 2px; }
.channel-row strong { font-size: 7px; }
.channel-row small { color: #8b96a6; font-size: 6px; }
.channel-row b { width: 6px; height: 6px; background: #19c981; border-radius: 999px; box-shadow: 0 0 0 3px rgba(25,201,129,.12); }

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 13px;
    box-shadow: 0 18px 45px rgba(26,52,98,.18);
    backdrop-filter: blur(16px);
}

.floating-card-one { left: -35px; bottom: 52px; }
.floating-card-two { right: -22px; top: 78px; }
.floating-icon { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 10px; }
.floating-icon svg { width: 18px; height: 18px; }
.floating-icon.success { color: #0e9d63; background: #e8fff5; }
.floating-icon.signal { background: #eef2ff; }
.floating-icon.signal i { width: 8px; height: 8px; background: var(--landing-blue); border-radius: 999px; box-shadow: 0 0 0 5px rgba(53,102,255,.12); }
.floating-card div { display: grid; gap: 2px; }
.floating-card strong { font-size: 10px; }
.floating-card small { color: #7e899a; font-size: 8px; }

.signal-strip {
    position: relative;
    z-index: 3;
    background: white;
    border-top: 1px solid rgba(15,35,65,.08);
    border-bottom: 1px solid rgba(15,35,65,.08);
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
}

.signal-grid > div {
    min-height: 106px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 22px;
    border-right: 1px solid rgba(15,35,65,.08);
}

.signal-grid > div:first-child { border-left: 1px solid rgba(15,35,65,.08); }
.signal-number { color: #aab5c4; font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.signal-grid p { margin: 0; color: #68768a; font-size: 12px; line-height: 1.45; }
.signal-grid strong { display: block; color: #18263b; font-size: 13px; }

.section {
    position: relative;
    padding: 112px 0;
}

.section-light { background: #f8fbff; }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .section-label { margin-inline: auto; }
.section-heading h2,
.workflow-copy h2,
.security-copy h2,
.final-cta h2 {
    margin: 15px 0 0;
    font-size: clamp(36px, 4.6vw, 58px);
    line-height: 1.04;
    letter-spacing: -.055em;
}
.section-heading p,
.workflow-copy > p,
.security-copy > p,
.final-cta > div:first-child > p {
    margin: 18px 0 0;
    color: var(--landing-ink-soft);
    font-size: 16px;
    line-height: 1.72;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 16px;
}

.feature-card {
    position: relative;
    min-height: 290px;
    padding: 25px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15,35,65,.09);
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(25,48,88,.06);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(53,102,255,.22);
    box-shadow: 0 24px 54px rgba(25,48,88,.11);
}

.feature-card-wide { grid-column: span 2; }
.feature-icon-box {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
}
.feature-icon-box svg { width: 24px; height: 24px; }
.feature-icon-box.blue { color: #3261f3; background: #edf2ff; }
.feature-icon-box.violet { color: #7750e9; background: #f2edff; }
.feature-icon-box.green { color: #0eae6d; background: #e8fff5; }
.feature-icon-box.cyan { color: #159bb8; background: #e7fbff; }
.feature-icon-box.amber { color: #d27a0d; background: #fff7e6; }
.feature-icon-box.glass {color: #000000;background: rgb(214 214 214);border: 1px solid rgba(255,255,255,.12);}
.feature-index { position: absolute; top: 28px; right: 26px; color: #b6bfcc; font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.feature-card h3 { margin: 25px 0 0; font-size: 21px; letter-spacing: -.035em; }
.feature-card p { max-width: 520px; margin: 10px 0 0; color: #68768a; font-size: 13px; line-height: 1.68; }

.mini-campaign-ui {
    margin-top: 28px;
    padding: 14px;
    background: #f7f9fd;
    border: 1px solid rgba(15,35,65,.07);
    border-radius: 13px;
}
.mini-campaign-ui > div:first-child { display: flex; justify-content: space-between; gap: 12px; font-size: 10px; font-weight: 800; }
.mini-campaign-ui strong { color: #129f67; }
.mini-progress { height: 7px; margin-top: 11px; overflow: hidden; background: #e4eaf3; border-radius: 999px; }
.mini-progress i { display: block; height: 100%; background: linear-gradient(90deg,var(--landing-blue),var(--landing-violet)); border-radius: inherit; }
.mini-campaign-ui small { display: block; margin-top: 7px; color: #8d98a8; font-size: 8px; }

.dark-card {
    color: #fff;
    background:
        radial-gradient(circle at 90% 10%, rgba(92,113,255,.26), transparent 30%),
        linear-gradient(145deg,#0a1729,#0c213a);
    border-color: rgba(255,255,255,.06);
}
.dark-card .feature-index { color: #62738c; }
.dark-card p { color: #9eb0c7; }
.mini-monitor-ui { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 27px; }
.mini-monitor-ui span {display: inline-flex;align-items: center;gap: 6px;padding: 7px 9px;color: #000000;background: rgb(255 255 255);border: 1px solid rgba(255,255,255,.08);border-radius: 8px;font-size: 8px;font-weight: 800;}
.mini-monitor-ui i { width: 5px; height: 5px; background: #26d78b; border-radius: 99px; box-shadow: 0 0 0 3px rgba(38,215,139,.12); }

.section-dark {
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 16% 20%, rgba(53,102,255,.2), transparent 28%),
        radial-gradient(circle at 90% 74%, rgba(124,77,255,.15), transparent 25%),
        var(--landing-night);
}
.dark-grid { opacity: .35; mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent); }
.light-heading { position: relative; z-index: 2; }
.section-label.light { color: #8faeff; }
.light-heading p { color: #93a5bd; }
.solution-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.solution-card {min-height: 520px;padding: 31px;background: radial-gradient(circle at 90% 10%, rgba(92,113,255,.26), transparent 30%),        linear-gradient(145deg,#0a1729,#0c213a);border: 1px solid rgba(255,255,255,.09);border-radius: 24px;backdrop-filter: blur(12px);transition: transform .22s ease, border-color .22s ease;}
.solution-card:hover { transform: translateY(-5px); border-color: rgba(121,151,255,.3); }
.solution-topline { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.solution-badge { color: #c6d3e4; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.solution-state {display: inline-flex;align-items: center;gap: 7px;padding: 6px 9px;color: #000000;background: white;border: 1px solid rgba(32,201,129,.18);border-radius: 999px;font-size: 8px;font-weight: 900;text-transform: uppercase;}
.solution-state i { width: 5px; height: 5px; background: #2cdf91; border-radius: 99px; }
.solution-state.roadmap {color: #000000;background: white;border-color: rgba(111,139,255,.2);}
.solution-state.roadmap i { background: #7996ff; }
.solution-icon { width: 64px; height: 64px; display: grid; place-items: center; margin-top: 52px; border-radius: 20px; }
.solution-icon svg { width: 31px; height: 31px; }
.device-icon {color: #000000;background: white;border: 1px solid rgb(0 0 0 / 16%);}
.meta-icon {color: #000000;background: white;border: 1px solid rgb(0 0 0 / 18%);}
.solution-card h3 { max-width: 520px; margin: 25px 0 0; font-size: clamp(27px,3vw,38px); line-height: 1.1; letter-spacing: -.045em; }
.solution-card > p { max-width: 560px; margin: 17px 0 0; color: #93a5bd; font-size: 14px; line-height: 1.7; }
.solution-card ul { display: grid; gap: 13px; margin: 30px 0 0; padding: 0; list-style: none; }
.solution-card li { display: flex; align-items: center; gap: 12px; color: #bdc9d8; font-size: 12px; font-weight: 700; }
.solution-card li span { color: #657892; font-size: 8px; font-weight: 900; letter-spacing: .08em; }
.platform-disclaimer { position: relative; z-index: 2; max-width: 790px; margin: 28px auto 0; color: #6f829c; font-size: 10px; line-height: 1.6; text-align: center; }

.section-workflow { background: #fff; }
.workflow-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 92px; align-items: start; }
.workflow-copy { position: sticky; top: 130px; }
.workflow-copy h2 { font-size: clamp(36px,4.5vw,56px); }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; color: var(--landing-blue); font-size: 13px; font-weight: 900; }
.text-link span { transition: transform .16s ease; }
.text-link:hover span { transform: translateX(4px); }
.workflow-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--landing-line); }
.workflow-list li { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid var(--landing-line); }
.workflow-number {width: 46px;height: 46px;display: grid;place-items: center;color: #ffffff;background: #818181;border-radius: 14px;font-size: 10px;font-weight: 900;letter-spacing: .08em;}
.workflow-list h3 { margin: 1px 0 0; font-size: 20px; letter-spacing: -.03em; }
.workflow-list p { max-width: 600px; margin: 8px 0 0; color: #68768a; font-size: 13px; line-height: 1.66; }

.section-plans { background: #f3f7fd; }
.plans-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 17px; align-items: stretch; }
.plan-card {position: relative;display: flex;flex-direction: column;min-height: 460px;padding: 28px;background: linear-gradient(150deg, #ffffff, #10284b);border: 1px solid rgba(15,35,65,.09);border-radius: 22px;box-shadow: 0 14px 36px rgba(25,48,88,.06);}
.featured-plan { color: #fff; background: linear-gradient(150deg,#0b1830,#10284b); border-color: rgba(66,108,255,.26); box-shadow: 0 28px 64px rgba(20,43,84,.18); transform: translateY(-10px); }
.popular-label { position: absolute; top: -13px; right: 23px; padding: 7px 11px; color: #fff; background: linear-gradient(135deg,var(--landing-blue),var(--landing-violet)); border-radius: 999px; box-shadow: 0 8px 20px rgba(53,102,255,.25); font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.plan-head { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.plan-tier { color: var(--landing-blue); font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.featured-plan .plan-tier { color: #9eb5ff; }
.plan-code { color: #b9c2ce; font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.featured-plan .plan-code { color: #5e7190; }
.plan-card h3 { margin: 28px 0 0; font-size: 28px; letter-spacing: -.045em; }
.plan-card > p { margin: 13px 0 0; color: #708096; font-size: 13px; line-height: 1.65; }
.featured-plan > p { color: #98abc3; }
.plan-card ul { display: grid; gap: 13px; margin: 27px 0 30px; padding: 23px 0 0; border-top: 1px solid rgba(15,35,65,.09); list-style: none; }
.featured-plan ul { border-color: rgba(255,255,255,.09); }
.plan-card li { display: flex; align-items: center; gap: 9px; color: #536176; font-size: 12px; font-weight: 700; }
.featured-plan li { color: #c1ccda; }
.plan-card li svg { width: 17px; height: 17px; flex: 0 0 auto; color: var(--landing-green); }
.plan-button { width: 100%; margin-top: auto; }
.featured-plan .button-primary { background: #fff; color: #17366d; box-shadow: none; }
.plan-note { max-width: 760px; margin: 25px auto 0; color: #7a8799; font-size: 11px; line-height: 1.6; text-align: center; }

.section-security { padding-top: 0; background: #f3f7fd; }
.security-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    padding: 58px;
    color: #ffffff;
    background:
    radial-gradient(circle at 12% 5%, rgba(57,100,255,.34), transparent 28%),
    radial-gradient(circle at 88% 90%, rgba(111,70,255,.22), transparent 30%),
    #081629;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px;
    box-shadow: 0 36px 80px rgba(15,35,65,.18);
}
.security-copy h2 { font-size: clamp(35px,4vw,51px); }
.security-copy > p { color: #91a4bd; }
.security-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.security-grid article {display: grid;grid-template-columns: auto 1fr;gap: 13px;padding: 18px;background: linear-gradient(150deg,#0b1830,#10284b);border: 1px solid rgba(255,255,255,.08);border-radius: 15px;}
.security-icon {width: 37px;height: 37px;display: grid;place-items: center;color: #000000;background: rgb(255 255 255);border-radius: 11px;}
.security-icon svg { width: 20px; height: 20px; }
.security-grid article div { display: grid; gap: 5px; }
.security-grid strong { font-size: 12px; }
.security-grid small { color: #8fa1b8; font-size: 10px; line-height: 1.5; }

.final-cta-section {position: relative;overflow: hidden;padding: 94px 0;color: #fff;background: radial-gradient(circle at 90% 10%, rgba(92,113,255,.26), transparent 30%),        linear-gradient(145deg,#0a1729,#0c213a);}
.cta-orb { position: absolute; width: 520px; height: 520px; right: -140px; top: -240px; background: radial-gradient(circle,rgba(255,255,255,.23),transparent 67%); border-radius: 999px; }
.final-cta { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta > div:first-child { max-width: 780px; }
.final-cta h2 { max-width: 760px; font-size: clamp(38px,4.7vw,59px); }
.final-cta > div:first-child > p { max-width: 650px; color: rgba(255,255,255,.72); }
.button-light { color: #2149c6; background: #fff; box-shadow: 0 16px 35px rgba(13,30,70,.18); }
.button-glass {color: #1440ff;background: rgb(255 255 255);border-color: rgba(255,255,255,.2);}
.button-glass:hover { background: rgba(255,255,255,.15); }
.final-cta-actions { flex: 0 0 auto; }

.landing-footer { color: #a2b0c3; background: #07111f; }
.footer-main { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; padding: 72px 0 54px; }
.footer-brand .landing-brand-copy strong { color: #fff; }
.footer-brand .landing-brand-copy small { color: #687a93; }
.footer-brand-area > p { max-width: 470px; margin: 22px 0 0; font-size: 13px; line-height: 1.7; }
.footer-links-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px; }
.footer-links-grid > div { display: grid; align-content: start; gap: 12px; }
.footer-links-grid strong { margin-bottom: 5px; color: #fff; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.footer-links-grid a { color: #8e9db1; font-size: 12px; transition: color .16s ease; }
.footer-links-grid a:hover { color: #fff; }
.footer-bottom { min-height: 75px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.08); font-size: 10px; }
.footer-bottom p { max-width: 650px; margin: 0; text-align: right; }

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
    transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
    .desktop-nav { display: none; }
    .hero-layout { grid-template-columns: minmax(0,.92fr) minmax(520px,1.08fr); gap: 35px; }
    .floating-card-one { left: -12px; }
    .floating-card-two { right: -10px; }
    .feature-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .feature-card-wide { grid-column: span 1; }
    .security-panel { gap: 42px; padding: 45px; }
}

@media (max-width: 920px) {
    .landing-container { width: min(100% - 30px, 1220px); }
    .hero-section { min-height: auto; padding-top: 132px; }
    .hero-layout {grid-template-columns: 1fr;gap: 12px;}
    .hero-content { max-width: 760px; text-align: center; margin-inline: auto; }
    .hero-eyebrow { margin-inline: auto; }
    .hero-description { margin-inline: auto; }
    .hero-actions, .hero-proof { justify-content: center; }
    .hero-visual { width: min(100%,720px); margin-inline: auto; }
    .dashboard-window { transform: none; }
    .signal-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .signal-grid > div:nth-child(2) { border-right: 0; }
    .signal-grid > div:nth-child(n+3) { border-top: 1px solid rgba(15,35,65,.08); }
    .solution-grid { grid-template-columns: 1fr; }
    .solution-card { min-height: auto; }
    .workflow-layout { grid-template-columns: 1fr; gap: 45px; }
    .workflow-copy { position: static; }
    .plans-grid { grid-template-columns: 1fr; max-width: 700px; margin-inline: auto; }
    .featured-plan { transform: none; }
    .security-panel { grid-template-columns: 1fr; }
    .final-cta { display: grid; }
    .footer-main { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 720px) {
    .header-inner { min-height: 72px; }
    .desktop-action { display: none; }
    .menu-button { display: grid; }
    .mobile-navigation.is-open { display: block; }
    .landing-brand-copy small { display: none; }
    .hero-section {padding: 73px 0 68px;}
    .hero-content h1 { font-size: clamp(42px,13vw,60px); }
    .hero-description { font-size: 15px; }
    .hero-visual { width: 108%; margin-left: -4%; }
    .floating-card { display: none; }
    .dashboard-preview { min-height: 370px; grid-template-columns: 44px 1fr; }
    .preview-sidebar { padding-inline: 7px; }
    .preview-logo { width: 29px; height: 29px; }
    .preview-nav { width: 27px; height: 27px; }
    .preview-main { padding: 12px; }
    .preview-hero-card { grid-template-columns: 1fr; }
    .preview-health { display: none; }
    .preview-content-grid { grid-template-columns: 1fr; }
    .preview-channel-card { display: none; }
    .signal-grid { grid-template-columns: 1fr; }
    .signal-grid > div { min-height: 82px; border-right: 0; border-top: 1px solid rgba(15,35,65,.08); }
    .signal-grid > div:first-child { border-top: 0; border-left: 0; }
    .section { padding: 82px 0; }
    .section-heading { margin-bottom: 35px; }
    .section-heading h2,
    .workflow-copy h2,
    .security-copy h2,
    .final-cta h2 { font-size: clamp(34px,10.5vw,48px); }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: auto; }
    .solution-card { padding: 24px; }
    .solution-icon { margin-top: 38px; }
    .solution-card h3 { font-size: 30px; }
    .workflow-list li { grid-template-columns: 48px 1fr; gap: 15px; }
    .security-panel { width: calc(100% - 20px); padding: 28px 22px; border-radius: 22px; }
    .security-grid { grid-template-columns: 1fr; }
    .final-cta-section { padding: 76px 0; }
    .final-cta-actions { width: 100%; flex-wrap: wrap; }
    .final-cta-actions .landing-button { flex: 1 1 180px; }
    .footer-links-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .footer-bottom { min-height: auto; flex-direction: column; align-items: flex-start; padding: 25px 0; }
    .footer-bottom p { text-align: left; }
}

@media (max-width: 480px) {
    .landing-container { width: min(100% - 22px, 1220px); }
    .header-actions .button-primary { min-height: 42px; padding-inline: 13px; font-size: 12px; }
    .landing-brand-mark { width: 39px; height: 39px; }
    .landing-brand-copy strong { font-size: 15px; }
    .hero-actions { display: grid; }
    .hero-actions .landing-button { width: 100%; }
    .hero-proof { display: grid; justify-content: start; width: fit-content; margin-inline: auto; text-align: left; }
    .dashboard-window { border-radius: 17px; }
    .window-address { min-width: 145px; padding-inline: 10px; }
    .window-secure { display: none; }
    .window-bar { grid-template-columns: auto 1fr; gap: 10px; }
    .preview-stat-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .preview-stat-grid article:last-child { display: none; }
    .plan-card { padding: 23px; }
    .footer-links-grid { grid-template-columns: 1fr 1fr; }
}
