:root {
    --blue: #1668f3;
    --ink: #0f1b2b;
    --dark: #0b1524;
    --muted: #64748b;
    --muted-dark: #93a4b8;
    --line: #e3e9f1;
    --bg: #f7f9fc;
    --bg2: #edf1f8;
    --green: #16a34a;
    --purple: #7c3aed;
    --orange: #e08a3c;
    --header-h: 80px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scroll-snap-type: y proximity;
    overflow-y: scroll;
    line-height: 1.5;
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.snap-section {
    scroll-snap-align: start;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ==================== HEADER ==================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 249, 252, .92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid rgba(15, 27, 43, .06);
    transition: box-shadow .25s;
}

.site-header.scrolled {
    box-shadow: 0 6px 20px rgba(15, 27, 43, .08);
}

.header-inner {
    display: flex;
    align-items: center;
    height: var(--header-h);
    gap: 32px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex: none;
}

.logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: var(--blue);
    color: #fff;
    font-style: italic;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(22, 104, 243, .35);
    flex: none;
}

.logo-word {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--ink);
}

.logo-word em {
    font-style: normal;
    color: var(--blue);
}

.logo-word.light {
    color: #fff;
}

.main-nav {
    display: flex;
    gap: 32px;
    margin-left: auto;
    align-self: stretch;
}

.main-nav a {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: color .2s;
    min-height: 44px;
}

.main-nav a:hover {
    color: var(--ink);
}

.main-nav a.active {
    color: var(--ink);
    font-weight: 700;
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2.5px;
    background: var(--blue);
    border-radius: 2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: none;
}

/* Hamburger */
.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    flex: none;
}

.mobile-toggle span {
    position: absolute;
    left: 11px;
    right: 11px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s, top .25s, opacity .2s;
}

.mobile-toggle span:nth-child(1) {
    top: 15px;
}

.mobile-toggle span:nth-child(2) {
    top: 21px;
}

.mobile-toggle span:nth-child(3) {
    top: 27px;
}

.mobile-toggle.open span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 10px;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-size: 13.5px;
    line-height: 1;
    padding: 15px 22px;
    min-height: 44px;
    transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
    white-space: nowrap;
}

.btn-dark {
    background: #0b1220;
    color: #fff;
    height: 46px;
}

.btn-dark:hover {
    background: #1a2740;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 10px 26px rgba(22, 104, 243, .35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(22, 104, 243, .45);
}

.btn-outline {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.btn-white {
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    padding: 14px 22px;
    border-radius: 8px;
    min-height: 46px;
}

.btn-white:hover {
    transform: translateY(-2px);
}

/* ==================== TYPE ==================== */
.eyebrow {
    font-size: 11px;
    letter-spacing: .18em;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.dash-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: #8fa0b4;
    margin-bottom: 22px;
}

.dash-eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--blue);
    flex: none;
}

.dash-eyebrow.center {
    justify-content: center;
}

h1,
h2 {
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.12;
}

h1 {
    font-size: clamp(36px, 5vw, 60px);
    margin-bottom: 26px;
}

h2 {
    font-size: clamp(28px, 3.4vw, 40px);
}

h3 {
    font-size: clamp(20px, 2vw, 34px);
    font-weight: 600;
    letter-spacing: -.02em;
}

.blue {
    color: var(--blue);
}

.head-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    margin-bottom: 56px;
}

.head-grid h2 {
    font-size: 38px;
}

.head-grid p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    padding-top: 26px;
    max-width: 420px;
    justify-self: end;
}

.section {
    padding: 100px 0;
}

/* ==================== HOME HERO ==================== */
.home-hero {
    padding: 96px 0 90px;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.hero-sub {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-checks {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
}

.hero-checks span {
    font-size: 11.5px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-checks i {
    font-style: normal;
    color: var(--green);
    font-size: 11px;
}

/* Hero visual */
.hero-visual {
    position: relative;
    min-height: 460px;
}

.rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.rings i {
    position: absolute;
    border: 1px solid rgba(22, 104, 243, .16);
    border-radius: 50%;
}

.rings i:nth-child(1) {
    width: 340px;
    height: 340px;
}

.rings i:nth-child(2) {
    width: 480px;
    height: 480px;
}

.rings i:nth-child(3) {
    width: 620px;
    height: 620px;
}

.device {
    position: relative;
    margin: 60px auto;
    width: 470px;
    max-width: 100%;
    background: #101828;
    border-radius: 14px;
    padding: 10px;
    display: grid;
    grid-template-columns: 44px 1fr;
    box-shadow: 0 40px 90px rgba(11, 21, 36, .35);
    transform: perspective(1400px) rotateY(-7deg) rotateZ(1.2deg);
}

.device-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
}

.ds-logo {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--blue);
    color: #fff;
    font-style: italic;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    color: #5f7186;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-icon.active {
    background: var(--blue);
    color: #fff;
}

.device-main {
    background: #f4f7fb;
    border-radius: 9px;
    padding: 12px;
    position: relative;
}

.dm-top {
    position: absolute;
    top: 10px;
    right: 12px;
    display: flex;
    gap: 5px;
}

.dm-top span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c6d2e2;
}

.dm-date {
    font-size: 7.5px;
    color: #8fa0b4;
    font-weight: 600;
    margin-bottom: 4px;
}

.dm-title {
    font-size: 12px;
    font-weight: 700;
}

.dm-btn {
    background: var(--blue);
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    border-radius: 6px;
    padding: 6px 9px;
    position: absolute;
    top: 12px;
    right: 12px;
}

.dm-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 12px 0 8px;
}

.dms {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 9px;
}

.dms .l {
    font-size: 7px;
    color: #8fa0b4;
    font-weight: 600;
    margin-bottom: 6px;
}

.dms .v {
    font-size: 9.5px;
    font-weight: 800;
    margin-bottom: 6px;
}

.dms .d {
    font-size: 7px;
    color: var(--green);
    font-weight: 700;
}

.dm-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 8px;
}

.dm-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 9px;
    min-height: 120px;
}

.dm-card .l {
    font-size: 7px;
    color: #8fa0b4;
    font-weight: 600;
    margin-bottom: 8px;
}

.mgrid line {
    stroke: #edf1f8;
    stroke-width: 1;
}

.mini-chart {
    width: 100%;
    height: 86px;
}

.chart-line {
    fill: none;
    stroke: var(--blue);
    stroke-width: 2;
    stroke-linecap: round;
}

.donut-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.donut-wrap {
    position: relative;
    width: 74px;
    height: 74px;
    margin: 4px 0;
}

.donut {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.donut-bg {
    fill: none;
    stroke: #e6edf6;
    stroke-width: 8;
}

.donut-val {
    fill: none;
    stroke: var(--blue);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 164 999;
}

.donut-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.donut-center b {
    font-size: 17px;
}

.donut-center span {
    font-size: 7px;
    color: #8fa0b4;
}

.good {
    font-size: 7px;
    color: var(--green);
    font-weight: 700;
}

.float-card {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(11, 21, 36, .16);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.fc-top {
    top: 6px;
    right: -8px;
}

.fc-bottom {
    bottom: 26px;
    left: -14px;
}

.fc-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #e3edfd;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.fc-text b {
    display: block;
    font-size: 11px;
    font-weight: 700;
}

.fc-text span {
    font-size: 9px;
    color: var(--muted);
}

.fc-delta {
    font-style: normal;
    font-size: 9px;
    color: var(--green);
    font-weight: 700;
}

/* ==================== STATBAR ==================== */
.statbar {
    background: var(--dark);
}

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

.sb {
    padding: 36px 28px;
}

.sb+.sb {
    border-left: 1px solid rgba(255, 255, 255, .08);
}

.sb b {
    display: block;
    color: #fff;
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 10px;
}

.sb span {
    font-size: 11px;
    color: #8fa2b6;
    line-height: 1.4;
}

/* ==================== MODULES ==================== */
.op-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.op-card {
    background: #fbfcfe;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    transition: transform .2s, box-shadow .2s;
}

.op-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 27, 43, .08);
}

.op-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex: none;
}

.t-blue {
    background: #dbe8fb;
    color: var(--blue);
}

.t-green {
    background: #ddf3e7;
    color: var(--green);
}

.t-purple {
    background: #e9e2fb;
    color: var(--purple);
}

.t-orange {
    background: #fdeedd;
    color: var(--orange);
}

.op-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.op-card p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.6;
}

.learn {
    margin-top: auto;
    padding-top: 18px;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: gap .2s;
    min-height: 32px;
}

.learn:hover {
    gap: 10px;
}

/* ==================== FLOW ==================== */
.flow-dark {
    background: var(--dark);
    padding: 100px 0;
    text-align: center;
}

.flow-dark h2 {
    color: #fff;
    margin-bottom: 56px;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.fstep {
    width: 112px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 10px;
    padding: 16px 10px;
}

.fstep span {
    display: block;
    font-size: 8.5px;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 14px;
}

.fstep b {
    font-size: 10.5px;
    color: #fff;
}

.farrow {
    font-style: normal;
    color: #44586f;
    font-size: 13px;
}

/* ==================== SPLIT CTA ==================== */
.cta-split {
    padding: 96px 0;
}

.cta-split-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-split h2 {
    font-size: 38px;
}

/* ==================== SOLUTIONS HERO ==================== */
.sol-hero {
    background: linear-gradient(120deg, #0d1930 0%, #0b1524 60%, #101c33 100%);
    padding: 96px 0 90px;
    color: #fff;
}

.sol-hero h1 {
    color: #fff;
    font-size: clamp(36px, 5vw, 52px);
    margin-bottom: 24px;
}

.sol-hero p {
    color: var(--muted-dark);
    font-size: 15px;
    margin-bottom: 44px;
    max-width: 560px;
}

.pills {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.pill {
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    padding: 11px 20px;
    font-size: 11.5px;
    color: #dbe4ee;
    text-decoration: none;
    transition: border-color .2s, background .2s;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
}

.pill:hover {
    border-color: var(--blue);
    background: rgba(22, 104, 243, .12);
}

/* ==================== SOLUTION BLOCKS ==================== */
.sol-block {
    padding: 90px 0;
}

.sol-block+.sol-block {
    border-top: 1px solid var(--line);
}

.sol-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sol-num {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.sol-num>span:first-child {
    font-size: 12px;
    color: #9aa8b8;
    font-weight: 600;
}

.sol-num .op-icon {
    margin-bottom: 0;
    width: 44px;
    height: 44px;
}

.sol-copy h3 {
    margin-bottom: 20px;
}

.sol-copy>p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 520px;
}

.checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 30px;
    margin-bottom: 32px;
}

.check {
    font-size: 12px;
    font-weight: 700;
    display: flex;
    gap: 9px;
    align-items: flex-start;
    line-height: 1.45;
}

.check i {
    font-style: normal;
    color: var(--green);
    flex: none;
}

.discuss {
    font-size: 12px;
    font-weight: 800;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: gap .2s;
    min-height: 32px;
}

.discuss:hover {
    gap: 10px;
}

.live-card {
    position: relative;
    border-radius: 16px;
    background: #0d1828;
    min-height: 400px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(11, 21, 36, .25);
}

.live-card::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 44%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(10px);
}

.glow-blue::before {
    background: radial-gradient(circle, rgba(22, 104, 243, .45), transparent 65%);
}

.glow-green::before {
    background: radial-gradient(circle, rgba(16, 163, 106, .4), transparent 65%);
}

.glow-purple::before {
    background: radial-gradient(circle, rgba(109, 74, 222, .42), transparent 65%);
}

.live-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 9px;
    color: #cfd9e4;
    z-index: 1;
}

.live-badge i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #34d399;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

.lc-mid {
    position: relative;
    margin: auto 0;
    text-align: center;
    padding: 44px 0 30px;
}

.lc-label {
    font-size: 9px;
    letter-spacing: .22em;
    color: #9fb0c3;
    font-weight: 700;
    margin-bottom: 22px;
}

.lc-big {
    font-size: clamp(42px, 5vw, 56px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: 18px;
}

.lc-sub {
    font-size: 9px;
    letter-spacing: .18em;
    color: #5f96f6;
    font-weight: 800;
}

.skel-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    gap: 14px;
}

.skel-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.skel-lines i {
    height: 4px;
    border-radius: 2px;
    background: #cfdcf0;
}

.skel-tags {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: right;
}

.skel-tags span {
    font-size: 7px;
    color: #8fa0b4;
}

/* ==================== EVERYWHERE ==================== */
.everywhere {
    background: var(--bg2);
    padding: 100px 0;
}

.everywhere-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.everywhere p {
    color: var(--muted);
    font-size: 13.5px;
    margin-top: 14px;
}

.devices {
    position: relative;
    height: 280px;
}

.laptop {
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-58%);
}

.laptop-screen {
    width: 340px;
    height: 200px;
    border: 6px solid #101828;
    border-radius: 12px;
    background: #dfe9f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.laptop-screen span {
    color: var(--blue);
    font-weight: 800;
    font-size: 16px;
}

.laptop-base {
    width: 120px;
    height: 12px;
    background: #101828;
    border-radius: 0 0 8px 8px;
    margin: -2px auto 0;
}

.phone {
    position: absolute;
    left: 50%;
    top: 58px;
    transform: translateX(72%);
    width: 78px;
    height: 160px;
    border: 5px solid #101828;
    border-radius: 16px;
    background: #f7f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 40px rgba(11, 21, 36, .2);
}

.phone-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--blue);
    color: #fff;
    font-style: italic;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-tags {
    position: absolute;
    left: 50%;
    top: 246px;
    transform: translateX(-50%);
    display: flex;
    gap: 26px;
}

.device-tags span {
    font-size: 9px;
    letter-spacing: .18em;
    color: #8fa0b4;
    font-weight: 700;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--dark);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 56px;
}

.footer-brand p {
    color: #8fa2b6;
    font-size: 12.5px;
    line-height: 1.7;
    margin-top: 18px;
    max-width: 260px;
}

.fc-head {
    font-size: 10px;
    letter-spacing: .18em;
    color: #7d8fa5;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: #b9c6d6;
    font-size: 12.5px;
    text-decoration: none;
    margin-bottom: 14px;
    transition: color .2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 11px;
    color: #7d8fa5;
}

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

.ops i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
}

/* ==================== MODAL ==================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 10, 18, .62);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #fff;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    padding: 34px 32px 26px;
    position: relative;
    box-shadow: 0 40px 90px rgba(0, 0, 0, .35);
    transform: translateY(16px) scale(.98);
    transition: transform .3s;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-overlay.open .modal {
    transform: none;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    background: #eef2f7;
    border-radius: 8px;
    color: #5c6b7d;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.modal-close:hover {
    background: #e0e7f0;
    color: var(--ink);
}

.modal-head {
    margin-bottom: 22px;
}

.modal-head .logo {
    margin-bottom: 16px;
}

.modal-head h3 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -.02em;
    margin-bottom: 8px;
}

.modal-head p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #415062;
    margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #d8dfe9;
    border-radius: 10px;
    padding: 13px 14px;
    font: inherit;
    font-size: 15px;
    color: var(--ink);
    background: #fbfcfe;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    min-height: 46px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(22, 104, 243, .14);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 84px;
}

.modal .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}

.modal .btn-primary.sending {
    opacity: .7;
    pointer-events: none;
}

.modal-success {
    text-align: center;
    padding: 26px 6px 10px;
}

.success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e7f7ef;
    color: #18a35e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.modal-success h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.modal-success p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.modal-success .btn-outline {
    margin-top: 20px;
}

body.modal-open {
    overflow: hidden;
}

/* ==================== RESPONSIVE ==================== */

/* Ultra-wide / large desktops (≥1400px) */
@media (min-width: 1400px) {
    .container {
        max-width: 1360px;
    }

    h1 {
        font-size: 64px;
    }

    .home-hero {
        padding: 120px 0 110px;
    }

    .device {
        width: 520px;
    }

    .rings i:nth-child(3) {
        width: 720px;
        height: 720px;
    }
}

/* Large desktops (1200-1399px) */
@media (max-width: 1399px) and (min-width: 1025px) {
    .container {
        max-width: 1200px;
    }
}

/* Tablets & smaller desktops (≤1024px) */
@media (max-width: 1024px) {
    :root {
        --header-h: 72px;
    }

    .header-inner {
        gap: 20px;
    }

    .main-nav {
        gap: 24px;
    }

    .home-hero-grid,
    .sol-grid,
    .everywhere-grid,
    .head-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .head-grid p {
        justify-self: start;
        padding-top: 0;
    }

    .op-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .statbar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sb:nth-child(odd) {
        border-left: none;
    }

    .sb:nth-child(n+3) {
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .sol-grid .live-card {
        order: 2;
    }

    .sol-grid .sol-copy {
        order: 1;
    }

    .home-hero {
        padding: 72px 0 72px;
    }

    .hero-visual {
        min-height: 0;
        margin-top: 20px;
    }

    .device {
        width: 100%;
        max-width: 470px;
        transform: perspective(1400px) rotateY(-4deg) rotateZ(.5deg);
    }

    .rings i:nth-child(3) {
        width: 520px;
        height: 520px;
    }

    .section,
    .sol-block,
    .everywhere,
    .flow-dark,
    .cta-split {
        padding: 80px 0;
    }

    .sol-hero {
        padding: 72px 0;
    }
}

/* Tablets portrait (≤768px) */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .main-nav.open {
        display: flex;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px 24px 24px;
        box-shadow: 0 20px 40px rgba(15, 27, 43, .15);
        border-top: 1px solid var(--line);
        gap: 4px;
        z-index: 99;
    }

    .main-nav.open a {
        padding: 14px 16px;
        border-radius: 10px;
        min-height: 48px;
    }

    .main-nav.open a:hover {
        background: var(--bg2);
    }

    .main-nav.open a.active::after {
        display: none;
    }

    .main-nav.open a.active {
        background: #eaf1fe;
        color: var(--blue);
    }

    .container {
        padding: 0 20px;
    }

    .home-hero {
        padding: 48px 0;
    }

    .hero-sub {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-checks {
        gap: 16px;
    }

    .hero-checks span {
        font-size: 11px;
    }

    .device {
        transform: none;
        box-shadow: 0 20px 50px rgba(11, 21, 36, .25);
    }

    .fc-top {
        right: 0;
        top: -10px;
    }

    .fc-bottom {
        left: 0;
        bottom: -10px;
    }

    .float-card {
        padding: 10px 14px;
    }

    .rings i {
        display: none;
    }

    .sol-grid {
        gap: 40px;
    }

    .sol-block {
        padding: 64px 0;
    }

    .everywhere {
        padding: 64px 0;
    }

    .everywhere-grid {
        gap: 48px;
    }

    .devices {
        height: 240px;
    }

    .laptop-screen {
        width: 280px;
        height: 170px;
    }

    .device-tags {
        top: 200px;
        gap: 20px;
    }

    .cta-split {
        padding: 64px 0;
    }

    .cta-split-inner {
        text-align: center;
        justify-content: center;
        gap: 24px;
    }

    .cta-split-inner>div {
        width: 100%;
    }

    .cta-split-inner .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 36px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .section,
    .flow-dark {
        padding: 64px 0;
    }

    .flow-steps {
        gap: 10px;
    }

    .fstep {
        width: 100px;
    }

    .farrow {
        display: none;
    }

    .sol-hero {
        padding: 48px 0;
    }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
    :root {
        --header-h: 64px;
    }

    .header-inner {
        gap: 12px;
    }

    .logo-word {
        font-size: 18px;
    }

    .logo-mark {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }

    .btn-dark {
        padding: 12px 16px;
        font-size: 12px;
        height: 42px;
    }

    .container {
        padding: 0 16px;
    }

    .home-hero {
        padding: 32px 0 40px;
    }

    .op-grid,
    .statbar-grid {
        grid-template-columns: 1fr;
    }

    .sb+.sb {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .checks,
    .form-row {
        grid-template-columns: 1fr;
    }

    .pills {
        gap: 8px;
    }

    .pill {
        font-size: 10.5px;
        padding: 10px 14px;
    }

    .flow-steps {
        flex-direction: column;
        width: 100%;
    }

    .fstep {
        width: 100%;
        max-width: 280px;
    }

    .farrow {
        transform: rotate(90deg);
        display: block;
    }

    .device {
        padding: 8px;
    }

    .device-side {
        display: none;
    }

    .device {
        grid-template-columns: 1fr;
    }

    .dm-stats {
        grid-template-columns: 1fr;
    }

    .dm-grid {
        grid-template-columns: 1fr;
    }

    .laptop {
        transform: translateX(-50%);
    }

    .laptop-screen {
        width: 220px;
        height: 140px;
    }

    .phone {
        transform: translateX(90%);
        width: 62px;
        height: 128px;
    }

    .devices {
        height: 200px;
    }

    .device-tags {
        top: 160px;
    }

    .live-card {
        min-height: 360px;
    }

    .lc-big {
        font-size: 44px;
    }

    .modal {
        padding: 28px 20px 22px;
        border-radius: 14px;
    }

    .modal-head h3 {
        font-size: 20px;
    }

    .modal-head p {
        font-size: 12px;
    }

    .btn-primary,
    .btn-outline,
    .btn-white {
        padding: 13px 18px;
        font-size: 13px;
    }

    .hero-checks {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }
}

/* Small phones (≤360px) */
@media (max-width: 360px) {
    h1 {
        font-size: 32px;
    }

    .logo-word {
        font-size: 16px;
    }

    .btn-dark {
        padding: 10px 12px;
        font-size: 11px;
    }

    .container {
        padding: 0 12px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
    body {
        scroll-snap-type: none;
    }

    .home-hero {
        min-height: auto;
    }

    .hero-visual {
        display: none;
    }
}