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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    scroll-snap-type: y mandatory;
    overflow-y: scroll
}

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

svg {
    display: block
}

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

.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: var(--bg);
    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: 80px;
    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: 36px;
    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
}

.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
}

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

.header-inner .btn {
    flex: none;
    align-self: center
}

.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)
}

.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: 12px;
    padding: 13px 20px;
    border-radius: 8px
}

.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
}

.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
}

.home-hero h1 {
    font-size: 60px;
    margin-bottom: 26px
}

.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: 26px;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 10px
}

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

/* 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
}

.learn:hover {
    gap: 10px
}

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

.flow-dark h2 {
    color: #fff;
    font-size: 40px;
    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: 52px;
    margin-bottom: 24px
}

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

.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
}

.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 {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -.02em;
    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
}

.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
}

.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: 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 h2 {
    font-size: 40px;
    margin-bottom: 14px
}

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

.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
}

.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);
    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
}

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

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

.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: 12px 14px;
    font: inherit;
    font-size: 14px;
    color: var(--ink);
    background: #fbfcfe;
    outline: none;
    transition: border-color .2s, box-shadow .2s
}

.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 */
@media (max-width:1024px) {

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

    .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 h1 {
        font-size: 48px
    }

    .sol-hero h1 {
        font-size: 42px
    }

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

@media (max-width:720px) {
    .main-nav {
        display: none
    }

    .op-grid {
        grid-template-columns: 1fr
    }

    .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
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .device {
        transform: none
    }

    .fc-top {
        right: 0
    }

    .fc-bottom {
        left: 0
    }

    .home-hero h1,
    .sol-hero h1 {
        font-size: 38px
    }

    .cta-split h2,
    .everywhere h2 {
        font-size: 30px
    }

    .sol-copy h3 {
        font-size: 26px
    }

    .laptop-screen {
        width: 260px;
        height: 160px
    }
}