:root {
    --navy-950: #061724;
    --navy-900: #092238;
    --navy-800: #10334c;
    --cyan-600: #078fb8;
    --cyan-500: #13a8d1;
    --cyan-400: #39c3e3;
    --mint-500: #32c99a;
    --ink: #102536;
    --muted: #627584;
    --line: #dfe9ee;
    --soft: #f2f8fa;
    --white: #fff;
    --shadow: 0 24px 70px rgba(8, 36, 55, .12);
    --radius-lg: 32px;
    --radius-md: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 15px;
    color: var(--white);
    background: var(--navy-950);
    border-radius: 8px;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 92px;
    transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-stuck {
    position: fixed;
    height: 76px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 30px rgba(4, 28, 43, .08);
    backdrop-filter: blur(18px);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    width: 204px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-nav > a {
    color: #334d5e;
    font-size: 14px;
    font-weight: 650;
    transition: color .2s ease;
}

.site-nav > a:hover {
    color: var(--cyan-600);
}

.site-nav .nav-login {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 18px;
    color: var(--white);
    background: var(--navy-900);
    border-radius: 12px;
}

.site-nav .nav-login:hover {
    color: var(--white);
    background: var(--cyan-600);
}

.nav-login svg,
.button svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 0;
    background: var(--soft);
    border-radius: 12px;
}

.menu-toggle > span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--navy-900);
    border-radius: 4px;
    transition: transform .2s ease, opacity .2s ease;
}

.hero {
    position: relative;
    min-height: 880px;
    padding: 150px 0 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 83% 13%, rgba(54, 195, 227, .17), transparent 32%),
        linear-gradient(180deg, #f7fcfd 0%, #fff 76%);
}

.hero::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 46%;
    height: 100%;
    content: "";
    opacity: .32;
    background-image: radial-gradient(#9bc9d5 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(to right, #000, transparent);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero-glow-one {
    top: 130px;
    left: -210px;
    width: 430px;
    height: 430px;
    background: rgba(42, 200, 155, .08);
}

.hero-glow-two {
    right: -180px;
    bottom: 20px;
    width: 400px;
    height: 400px;
    background: rgba(13, 157, 198, .1);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.25fr;
    align-items: center;
    gap: 64px;
}

.hero-copy {
    padding-bottom: 58px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--cyan-600);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--cyan-600);
}

.eyebrow-dot,
.live-pulse {
    position: relative;
    width: 8px;
    height: 8px;
    background: var(--mint-500);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(50, 201, 154, .12);
}

.hero h1 {
    margin: 24px 0 25px;
    color: var(--navy-950);
    font-size: clamp(52px, 5vw, 76px);
    font-weight: 810;
    letter-spacing: -.055em;
    line-height: .99;
}

.hero h1 span {
    color: var(--cyan-600);
}

.hero-lead {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 34px;
}

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 760;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

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

.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--cyan-600), var(--cyan-500));
    box-shadow: 0 14px 30px rgba(8, 150, 188, .23);
}

.button-primary:hover {
    box-shadow: 0 18px 36px rgba(8, 150, 188, .3);
}

.button-ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, .7);
    border-color: #d7e6ea;
}

.hero-promise {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 35px;
}

.promise-avatars {
    display: flex;
    padding-left: 8px;
}

.promise-avatars span {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    color: var(--navy-900);
    background: #d9f3f8;
    border: 3px solid var(--white);
    border-radius: 50%;
    font-size: 9px;
    font-weight: 800;
}

.promise-avatars span:nth-child(2) {
    background: #dff7ea;
}

.promise-avatars span:nth-child(3) {
    background: #fbe8cc;
}

.hero-promise p {
    margin: 0;
    color: #83929c;
    font-size: 11px;
    line-height: 1.55;
}

.hero-promise strong {
    color: #2d4656;
    font-size: 12px;
}

.hero-visual {
    position: relative;
}

.hero-image-frame {
    position: relative;
    height: 575px;
    overflow: hidden;
    background: var(--navy-900);
    border: 10px solid rgba(255, 255, 255, .8);
    border-radius: 40px 40px 40px 150px;
    box-shadow: 0 35px 90px rgba(8, 44, 67, .2);
}

.hero-image-frame > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 61% center;
}

.hero-image-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 25, 38, .12), transparent 35%, transparent 80%, rgba(5, 25, 38, .1));
}

.floating-card {
    position: absolute;
    z-index: 3;
    color: var(--ink);
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 17px;
    box-shadow: 0 18px 46px rgba(4, 28, 42, .2);
    backdrop-filter: blur(14px);
}

.scan-success {
    right: 23px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 15px;
}

.floating-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #118e68;
    background: #dcf8ee;
    border-radius: 12px;
}

.floating-icon svg {
    width: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.floating-card small,
.floating-card strong {
    display: block;
}

.floating-card small {
    margin-bottom: 2px;
    color: #7a8b95;
    font-size: 10px;
}

.floating-card strong {
    font-size: 13px;
}

.rank-card {
    top: 22px;
    left: 22px;
    width: 150px;
    padding: 15px;
}

.rank-card > div {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.rank-card > div strong {
    font-size: 26px;
}

.rank-card > div span {
    color: #667984;
    font-size: 10px;
}

.rank-card > i,
.app-progress > span {
    height: 5px;
    display: block;
    margin-top: 8px;
    overflow: hidden;
    background: #e7f0f3;
    border-radius: 99px;
}

.rank-card > i b,
.app-progress > span b {
    height: 100%;
    display: block;
    background: linear-gradient(90deg, var(--cyan-500), var(--mint-500));
    border-radius: inherit;
}

.visual-orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(19, 168, 209, .2);
    border-radius: 50%;
}

.orbit-one {
    top: -45px;
    right: -85px;
    width: 250px;
    height: 250px;
}

.orbit-two {
    right: -35px;
    bottom: -50px;
    width: 140px;
    height: 140px;
}

.live-stats {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1.45fr repeat(4, 1fr);
    margin-top: 70px;
    padding: 23px 30px;
    background: var(--white);
    border: 1px solid #e1ecef;
    border-radius: 20px;
    box-shadow: 0 16px 50px rgba(7, 41, 62, .08);
}

.stat-intro,
.stat-item {
    min-height: 55px;
    display: flex;
    align-items: center;
}

.stat-intro {
    gap: 15px;
}

.stat-intro p {
    margin: 0;
    color: #84939c;
    font-size: 11px;
    line-height: 1.45;
}

.stat-intro strong {
    color: var(--ink);
    font-size: 13px;
}

.stat-item {
    position: relative;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding-left: 30px;
    border-left: 1px solid #e4edf0;
}

.stat-item strong {
    color: var(--navy-900);
    font-size: 27px;
    letter-spacing: -.03em;
}

.stat-item span {
    margin-top: 3px;
    color: #7a8b95;
    font-size: 11px;
}

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

.section-soft {
    background: var(--soft);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 58px;
}

.section-heading.centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading h2,
.feature-copy h2,
.analytics-copy h2,
.story-copy h2,
.final-cta h2 {
    margin: 17px 0 18px;
    color: var(--navy-950);
    font-size: clamp(38px, 4vw, 54px);
    letter-spacing: -.045em;
    line-height: 1.08;
}

.section-heading p,
.feature-lead,
.analytics-copy > p,
.story-copy > p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    position: relative;
    min-height: 315px;
    padding: 30px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #e0ebee;
    border-radius: var(--radius-md);
    transition: transform .25s ease, box-shadow .25s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.step-card.featured {
    color: var(--white);
    background: linear-gradient(145deg, var(--navy-900), #0a2d47);
    border-color: transparent;
    box-shadow: 0 24px 50px rgba(7, 34, 55, .18);
}

.step-card.featured::after {
    position: absolute;
    right: -55px;
    bottom: -70px;
    width: 200px;
    height: 200px;
    content: "";
    background: rgba(28, 184, 220, .1);
    border: 1px solid rgba(87, 217, 238, .14);
    border-radius: 50%;
}

.step-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: #d7e5e9;
    font-size: 38px;
    font-weight: 850;
}

.featured .step-number {
    color: rgba(255, 255, 255, .12);
}

.step-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    color: var(--cyan-600);
    background: #e5f6fa;
    border-radius: 16px;
}

.step-icon.scan {
    color: var(--white);
    background: rgba(46, 194, 226, .17);
}

.step-icon.trophy {
    color: #b37613;
    background: #fff4dc;
}

.step-icon svg,
.feature-list svg,
.cta-icon svg {
    width: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.step-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 20px;
}

.step-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #71838e;
    font-size: 14px;
    line-height: 1.7;
}

.step-card.featured h3 {
    color: var(--white);
}

.step-card.featured p {
    color: #abc2cf;
}

.feature-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 110px;
}

.phone-stage {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-halo {
    position: absolute;
    width: 490px;
    height: 490px;
    background: radial-gradient(circle, #dff5f8 0, #f1fafb 58%, transparent 59%);
    border-radius: 50%;
}

.phone-halo::before,
.phone-halo::after {
    position: absolute;
    inset: 40px;
    content: "";
    border: 1px dashed rgba(12, 151, 188, .2);
    border-radius: 50%;
}

.phone-halo::after {
    inset: 82px;
    border-style: solid;
}

.phone {
    position: relative;
    z-index: 2;
    width: 285px;
    padding: 9px;
    background: var(--navy-950);
    border: 3px solid #19384d;
    border-radius: 42px;
    box-shadow: 0 35px 70px rgba(6, 34, 51, .27);
    transform: rotate(-2deg);
}

.phone::before {
    position: absolute;
    top: 9px;
    left: 50%;
    z-index: 5;
    width: 82px;
    height: 20px;
    content: "";
    background: var(--navy-950);
    border-radius: 0 0 14px 14px;
    transform: translateX(-50%);
}

.phone-screen {
    min-height: 545px;
    padding: 24px 15px 12px;
    overflow: hidden;
    background: #f5fafb;
    border-radius: 31px;
}

.phone-bar {
    position: absolute;
    top: 15px;
    left: 24px;
    right: 24px;
    z-index: 6;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 8px;
}

.app-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 3px 15px;
}

.app-top small,
.app-top strong {
    display: block;
}

.app-top small {
    color: #8797a0;
    font-size: 9px;
}

.app-top strong {
    margin-top: 2px;
    font-size: 14px;
}

.app-avatar {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #076f8f;
    background: #d7f2f7;
    border-radius: 11px;
    font-size: 10px;
    font-weight: 800;
}

.app-map {
    position: relative;
    height: 345px;
    overflow: hidden;
    background:
        linear-gradient(35deg, transparent 45%, rgba(255, 255, 255, .8) 46%, rgba(255, 255, 255, .8) 54%, transparent 55%),
        linear-gradient(145deg, transparent 42%, rgba(255, 255, 255, .7) 43%, rgba(255, 255, 255, .7) 50%, transparent 51%),
        #dcefdc;
    border-radius: 21px;
}

.map-water {
    position: absolute;
    top: -20px;
    left: -35px;
    width: 110px;
    height: 390px;
    background: #bfe7ef;
    border-radius: 50%;
    transform: rotate(-15deg);
}

.map-road {
    position: absolute;
    height: 14px;
    background: #fff;
    border: 3px solid #e6e2cf;
    border-radius: 30px;
}

.road-one {
    top: 125px;
    left: 20px;
    width: 250px;
    transform: rotate(-22deg);
}

.road-two {
    top: 180px;
    right: -35px;
    width: 210px;
    transform: rotate(69deg);
}

.map-pin {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--cyan-600);
    border: 5px solid var(--white);
    border-radius: 50% 50% 50% 0;
    box-shadow: 0 5px 12px rgba(3, 87, 112, .23);
    transform: rotate(-45deg);
}

.pin-one { top: 63px; left: 136px; }
.pin-two { top: 145px; right: 42px; background: var(--mint-500); }
.pin-three { top: 204px; left: 63px; }

.nearby-card {
    position: absolute;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, .94);
    border-radius: 14px;
    box-shadow: 0 9px 30px rgba(8, 38, 54, .14);
}

.qr-mini {
    width: 38px;
    height: 38px;
    background:
        linear-gradient(90deg, #0b2d40 25%, transparent 25% 50%, #0b2d40 50% 75%, transparent 75%),
        linear-gradient(#0b2d40 25%, transparent 25% 50%, #0b2d40 50% 75%, transparent 75%);
    background-size: 12px 12px;
    border: 6px solid #e7f4f6;
    border-radius: 8px;
}

.nearby-card small,
.nearby-card strong {
    display: block;
}

.nearby-card small {
    color: #87949b;
    font-size: 7px;
}

.nearby-card strong {
    margin-top: 2px;
    font-size: 9px;
}

.nearby-card > b {
    color: var(--cyan-600);
    font-size: 8px;
}

.app-progress {
    display: grid;
    grid-template-columns: 1fr 90px;
    align-items: center;
    gap: 10px;
    margin-top: 13px;
    padding: 11px 12px;
    background: var(--white);
    border-radius: 14px;
}

.app-progress small,
.app-progress strong {
    display: block;
}

.app-progress small {
    color: #89979f;
    font-size: 7px;
}

.app-progress strong {
    margin-top: 2px;
    font-size: 9px;
}

.app-progress > span {
    margin: 0;
}

.app-tabs {
    display: flex;
    justify-content: space-around;
    margin: 13px 10px 0;
}

.app-tabs i {
    width: 16px;
    height: 4px;
    background: #ccdade;
    border-radius: 99px;
}

.app-tabs i:first-child {
    background: var(--cyan-500);
}

.phone-float {
    position: absolute;
    z-index: 4;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid #e4eef0;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(7, 39, 57, .13);
}

.phone-float.points {
    top: 100px;
    left: 5px;
}

.phone-float.points small,
.phone-float.points strong,
.phone-float.points span {
    display: block;
}

.phone-float.points small {
    color: #85949c;
    font-size: 9px;
}

.phone-float.points strong {
    margin: 2px 0;
    color: var(--navy-900);
    font-size: 22px;
}

.phone-float.points span {
    color: #16936d;
    font-size: 8px;
    font-weight: 700;
}

.phone-float.location {
    right: -8px;
    bottom: 115px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.phone-float.location i {
    width: 31px;
    height: 31px;
    background: #dcf7ed;
    border-radius: 10px;
}

.phone-float.location small,
.phone-float.location strong {
    display: block;
}

.phone-float.location small {
    color: #84939b;
    font-size: 8px;
}

.phone-float.location strong {
    margin-top: 2px;
    font-size: 10px;
}

.feature-copy h2 {
    max-width: 570px;
}

.feature-list {
    display: grid;
    gap: 25px;
    margin-top: 38px;
}

.feature-list article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 17px;
}

.feature-list article > span {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-600);
    background: #e8f7fa;
    border-radius: 14px;
}

.feature-list h3 {
    margin: 0 0 6px;
    font-size: 16px;
}

.feature-list p {
    margin: 0;
    color: #71838e;
    font-size: 13px;
    line-height: 1.65;
}

.analytics-section {
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.analytics-section::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .16;
    background-image: radial-gradient(rgba(117, 207, 229, .7) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(90deg, transparent, #000 45%, transparent);
}

.analytics-glow {
    position: absolute;
    top: 160px;
    left: 50%;
    width: 800px;
    height: 500px;
    background: rgba(20, 172, 207, .12);
    border-radius: 50%;
    filter: blur(100px);
    transform: translateX(-50%);
}

.analytics-copy {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: end;
    gap: 90px;
    margin-bottom: 55px;
}

.analytics-copy h2 {
    margin-bottom: 0;
    color: var(--white);
}

.analytics-copy > p {
    color: #9db3bf;
}

.dashboard-preview {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 82px 1fr;
    min-height: 540px;
    overflow: hidden;
    background: #f3f8fa;
    border: 9px solid rgba(255, 255, 255, .08);
    border-radius: 28px;
    box-shadow: 0 45px 100px rgba(0, 0, 0, .32);
}

.preview-sidebar {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 21px;
    padding: 22px 15px;
    background: #fff;
    border-right: 1px solid #e6eef1;
}

.preview-sidebar img {
    width: 52px;
    height: 24px;
    object-fit: cover;
    object-position: left;
    margin-bottom: 23px;
}

.preview-sidebar span {
    width: 29px;
    height: 29px;
    background: #edf3f5;
    border-radius: 9px;
}

.preview-sidebar span.active {
    position: relative;
    background: #dff5fa;
}

.preview-sidebar span.active::before {
    position: absolute;
    top: 7px;
    left: 7px;
    width: 15px;
    height: 15px;
    content: "";
    background: var(--cyan-500);
    border-radius: 4px;
}

.preview-main {
    padding: 28px;
    color: var(--ink);
}

.preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.preview-top small,
.preview-top strong {
    display: block;
}

.preview-top small {
    color: #84939c;
    font-size: 10px;
}

.preview-top strong {
    margin-top: 3px;
    color: var(--navy-900);
    font-size: 21px;
}

.preview-filter {
    padding: 10px 12px;
    color: #667b87;
    background: #fff;
    border: 1px solid #dfe9ec;
    border-radius: 10px;
    font-size: 9px;
}

.preview-filter b {
    margin-left: 10px;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.metric-row article {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border: 1px solid #e5edef;
    border-radius: 14px;
}

.metric-icon {
    width: 37px;
    height: 37px;
    flex: 0 0 auto;
    background: #dcf5e9;
    border-radius: 11px;
}

.metric-icon.scans {
    background: #dff3fa;
}

.metric-icon.places {
    background: #fff0d8;
}

.metric-row small,
.metric-row strong,
.metric-row em {
    display: block;
}

.metric-row small {
    color: #81919a;
    font-size: 8px;
}

.metric-row strong {
    margin: 2px 0;
    font-size: 18px;
}

.metric-row em {
    color: #19936f;
    font-size: 7px;
    font-style: normal;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 14px;
    margin-top: 14px;
}

.chart-card,
.top-card {
    padding: 19px;
    background: #fff;
    border: 1px solid #e5edef;
    border-radius: 15px;
}

.card-title {
    display: flex;
    justify-content: space-between;
}

.card-title strong,
.card-title small {
    display: block;
}

.card-title strong {
    font-size: 11px;
}

.card-title small {
    margin-top: 3px;
    color: #89979f;
    font-size: 7px;
}

.card-title > b {
    color: #a1afb6;
    font-size: 10px;
    letter-spacing: 2px;
}

.chart-area {
    position: relative;
    height: 220px;
    margin-top: 20px;
}

.chart-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: #e7eef0;
}

.line-1 { top: 15px; }
.line-2 { top: 75px; }
.line-3 { top: 135px; }

.chart-area svg {
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 180px;
}

.chart-fill {
    fill: url(#chartFill);
}

.chart-stroke {
    fill: none;
    stroke: var(--cyan-500);
    stroke-width: 4;
    stroke-linecap: round;
}

.chart-days {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    color: #93a1a8;
    font-size: 7px;
}

.top-card ol {
    display: grid;
    gap: 15px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.top-card li {
    display: grid;
    grid-template-columns: 20px 1fr 25px;
    align-items: center;
    gap: 8px;
}

.top-card li > b {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-600);
    background: #e5f6fa;
    border-radius: 6px;
    font-size: 7px;
}

.top-card li strong {
    display: block;
    font-size: 8px;
}

.top-card li i {
    height: 4px;
    display: block;
    margin-top: 5px;
    overflow: hidden;
    background: #e8eff1;
    border-radius: 9px;
}

.top-card li i em {
    height: 100%;
    display: block;
    background: var(--cyan-500);
    border-radius: inherit;
}

.top-card li > small {
    color: #73858f;
    font-size: 7px;
    text-align: right;
}

.analytics-benefits {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    margin-top: 55px;
}

.analytics-benefits article {
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.analytics-benefits article > strong {
    color: var(--cyan-400);
    font-size: 11px;
}

.analytics-benefits h3 {
    margin: 10px 0 8px;
    font-size: 16px;
}

.analytics-benefits p {
    margin: 0;
    color: #8fa8b5;
    font-size: 12px;
    line-height: 1.65;
}

.story-section {
    background: linear-gradient(180deg, #fff, #f7fbfc);
}

.story-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 100px;
}

.story-copy blockquote {
    position: relative;
    margin: 35px 0 0;
    padding: 24px 26px;
    color: #395262;
    background: #eef8fa;
    border-left: 4px solid var(--cyan-500);
    border-radius: 0 14px 14px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
}

.story-cards {
    display: grid;
    gap: 14px;
}

.story-cards article {
    position: relative;
    padding: 24px 25px 24px 150px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e1ebee;
    border-radius: 17px;
    box-shadow: 0 12px 35px rgba(6, 39, 58, .05);
}

.story-cards article::before {
    position: absolute;
    top: -25px;
    left: -30px;
    width: 145px;
    height: 145px;
    content: "";
    background: #e3f6fa;
    border-radius: 50%;
}

.story-cards article:nth-child(2)::before {
    background: #e5f7ee;
}

.story-cards article:nth-child(3)::before {
    background: #fff2dd;
}

.story-cards span {
    position: absolute;
    top: 41px;
    left: 22px;
    z-index: 2;
    width: 85px;
    color: var(--cyan-600);
    font-size: 10px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.story-cards strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

.story-cards p {
    margin: 0;
    color: #768690;
    font-size: 12px;
    line-height: 1.6;
}

.final-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #078db7, #0ca8c7 55%, #32b998);
}

.final-cta::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .15;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 26px 26px;
}

.cta-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
}

.cta-orbit-one {
    top: -220px;
    left: -130px;
    width: 500px;
    height: 500px;
}

.cta-orbit-two {
    right: -130px;
    bottom: -240px;
    width: 550px;
    height: 550px;
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 790px;
    text-align: center;
}

.cta-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
}

.cta-icon svg {
    width: 31px;
}

.final-cta h2 {
    margin: 0;
    color: #fff;
}

.final-cta p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
}

.centered-actions {
    justify-content: center;
}

.button-light {
    color: var(--cyan-600);
    background: #fff;
    box-shadow: 0 15px 35px rgba(4, 65, 84, .18);
}

.button-outline-light {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, .45);
}

.site-footer {
    color: #9cb0bd;
    background: var(--navy-950);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-top: 65px;
    padding-bottom: 55px;
}

.footer-brand img {
    width: 190px;
    padding: 5px 10px;
    background: #fff;
    border-radius: 10px;
}

.footer-brand p {
    max-width: 340px;
    margin: 19px 0 0;
    font-size: 13px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 90px;
}

.footer-links div {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links strong {
    margin-bottom: 5px;
    color: #fff;
    font-size: 13px;
}

.footer-links a {
    font-size: 12px;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: var(--cyan-400);
}

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

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

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1050px) {
    .hero {
        min-height: auto;
        padding-top: 135px;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .hero-image-frame {
        height: 520px;
    }

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

    .stat-intro {
        display: none;
    }

    .stat-item:first-of-type {
        border-left: 0;
    }

    .stat-intro + .stat-item {
        border-left: 0;
    }

    .feature-layout,
    .story-grid {
        gap: 60px;
    }

    .phone-float.points {
        left: -15px;
    }

    .phone-float.location {
        right: -15px;
    }
}

@media (max-width: 860px) {
    .site-header,
    .site-header.is-stuck {
        height: 76px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        top: 76px;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 15px 20px 25px;
        background: #fff;
        border-top: 1px solid #e7eef0;
        box-shadow: 0 22px 35px rgba(6, 32, 49, .12);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav > a {
        padding: 14px 8px;
        border-bottom: 1px solid #edf2f3;
    }

    .site-nav .nav-login {
        justify-content: center;
        margin-top: 13px;
        border-bottom: 0;
    }

    .hero-grid,
    .feature-layout,
    .analytics-copy,
    .story-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding-bottom: 0;
        text-align: center;
    }

    .hero-lead {
        margin: 0 auto;
    }

    .hero-actions,
    .hero-promise {
        justify-content: center;
    }

    .hero-image-frame {
        height: 560px;
        border-radius: 35px 35px 35px 110px;
    }

    .live-stats {
        margin-top: 45px;
    }

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

    .step-card {
        min-height: auto;
    }

    .feature-layout {
        gap: 45px;
    }

    .feature-copy {
        max-width: 650px;
        margin: 0 auto;
    }

    .analytics-copy {
        gap: 20px;
    }

    .dashboard-preview {
        grid-template-columns: 60px 1fr;
    }

    .preview-sidebar {
        padding-right: 10px;
        padding-left: 10px;
    }

    .preview-sidebar img {
        width: 40px;
    }

    .analytics-benefits {
        gap: 22px;
    }

    .story-grid {
        gap: 45px;
    }
}

@media (max-width: 650px) {
    .shell {
        width: min(100% - 28px, 1180px);
    }

    .brand img {
        width: 175px;
    }

    .hero {
        padding-top: 115px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-lead {
        font-size: 16px;
    }

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

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

    .hero-image-frame {
        height: 455px;
        border-width: 6px;
        border-radius: 28px 28px 28px 75px;
    }

    .hero-image-frame > img {
        object-position: 62% center;
    }

    .rank-card {
        top: 14px;
        left: 14px;
    }

    .scan-success {
        right: 14px;
        bottom: 14px;
    }

    .live-stats {
        grid-template-columns: 1fr 1fr;
        padding: 15px;
    }

    .stat-item {
        padding: 14px;
        border-left: 0;
        border-bottom: 1px solid #e4edef;
    }

    .stat-item:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .stat-item:nth-of-type(odd) {
        border-left: 1px solid #e4edef;
    }

    .stat-intro + .stat-item {
        border-left: 0;
    }

    .stat-item strong {
        font-size: 23px;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading h2,
    .feature-copy h2,
    .analytics-copy h2,
    .story-copy h2,
    .final-cta h2 {
        font-size: 37px;
    }

    .phone-stage {
        min-height: 580px;
        transform: scale(.9);
        margin: -30px 0;
    }

    .phone-float.points {
        left: -5px;
    }

    .phone-float.location {
        right: -5px;
    }

    .dashboard-preview {
        grid-template-columns: 1fr;
        min-width: 760px;
        transform-origin: top left;
        transform: scale(.72);
    }

    .dashboard-preview {
        margin-bottom: -145px;
    }

    .preview-sidebar {
        display: none;
    }

    .analytics-section .shell {
        overflow: hidden;
    }

    .analytics-benefits {
        grid-template-columns: 1fr;
        margin-top: 45px;
    }

    .story-cards article {
        padding: 105px 22px 24px;
    }

    .story-cards article::before {
        top: -55px;
        left: 50%;
        transform: translateX(-50%);
    }

    .story-cards span {
        top: 38px;
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-main {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        width: 100%;
        gap: 55px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

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