
:root {

    --bg: #ffffff;

    --soft: #f6f7fb;

    --text: #101321;

    --muted: #687083;

    --border: #e7e9f0;



    --primary: #6d4aff;

    --primary-dark: #4f31d8;

    --cyan: #15c7d4;



    --dark: #0c1020;

    --dark-soft: #141a2d;



    --radius: 24px;

    --shadow: 0 30px 80px rgba(23, 27, 50, .12);

}



* {

    box-sizing: border-box;

}



html {

    scroll-behavior: smooth;

}



body {

    margin: 0;

    font-family:

        Inter,

        ui-sans-serif,

        system-ui,

        -apple-system,

        BlinkMacSystemFont,

        "Segoe UI",

        sans-serif;

    color: var(--text);

    background: var(--bg);

    line-height: 1.6;

}



a {

    color: inherit;

    text-decoration: none;

}



.container {

    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;

}





/* HEADER */



.site-header {

    position: sticky;

    top: 0;

    z-index: 100;

    backdrop-filter: blur(20px);

    background: rgba(255, 255, 255, .82);

    border-bottom: 1px solid rgba(231, 233, 240, .7);

}



.nav {

    min-height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 36px;

}



.brand {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-size: 22px;

    font-weight: 800;

    letter-spacing: -.5px;

}



.brand-mark {

    display: grid;

    place-items: center;

    width: 38px;

    height: 38px;

    border-radius: 12px;

    color: white;

    font-weight: 900;

    background:

        linear-gradient(135deg, var(--primary), var(--cyan));

    box-shadow: 0 10px 30px rgba(109, 74, 255, .28);

}



.desktop-nav {

    display: flex;

    align-items: center;

    gap: 32px;

    color: #444b5e;

    font-size: 14px;

    font-weight: 600;

}



.desktop-nav a:hover {

    color: var(--primary);

}



.nav-actions {

    display: flex;

    align-items: center;

    gap: 10px;

}



.language-button {

    border: 0;

    background: transparent;

    padding: 10px;

    cursor: pointer;

    color: #4f5668;

    font-weight: 700;

}





/* BUTTON */



.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 50px;

    padding: 0 22px;

    border-radius: 14px;

    background: var(--primary);

    color: white;

    font-weight: 700;

    font-size: 14px;

    box-shadow: 0 14px 35px rgba(109, 74, 255, .22);

    transition: .2s ease;

}



.button:hover {

    transform: translateY(-2px);

    background: var(--primary-dark);

}



.button-small {

    min-height: 42px;

    padding: 0 17px;

}



.button-secondary {

    color: var(--text);

    background: white;

    border: 1px solid var(--border);

    box-shadow: none;

}



.button-secondary:hover {

    background: var(--soft);

}



.button-light {

    color: var(--dark);

    background: white;

    box-shadow: none;

}





/* HERO */



.hero {

    padding: 100px 0 110px;

    overflow: hidden;

    position: relative;

}



.hero::before {

    content: "";

    position: absolute;

    width: 680px;

    height: 680px;

    right: -300px;

    top: -250px;

    border-radius: 50%;

    background:

        radial-gradient(circle, rgba(109, 74, 255, .13), transparent 67%);

    pointer-events: none;

}



.hero-grid {

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    align-items: center;

    gap: 80px;

}



.eyebrow {

    color: var(--primary);

    font-weight: 800;

    font-size: 12px;

    letter-spacing: 1.7px;

    text-transform: uppercase;

}



.hero h1 {

    max-width: 720px;

    margin: 18px 0 24px;

    font-size: clamp(52px, 6.2vw, 82px);

    line-height: .98;

    letter-spacing: -4px;

}



.hero h1 span {

    display: block;

}



.gradient-text {

    background:

        linear-gradient(100deg, var(--primary) 5%, #9c56f3 45%, var(--cyan));

    -webkit-background-clip: text;

    color: transparent;

}



.hero-text {

    max-width: 670px;

    margin: 0;

    color: var(--muted);

    font-size: 18px;

}



.hero-actions {

    display: flex;

    gap: 12px;

    margin-top: 34px;

}



.feature-strip {

    display: flex;

    flex-wrap: wrap;

    gap: 19px;

    margin-top: 34px;

    color: #72798a;

    font-size: 12px;

    font-weight: 700;

}



.feature-strip span::before {

    content: "✓";

    margin-right: 6px;

    color: var(--primary);

}





/* HERO MOCKUP */



.hero-visual {

    min-height: 550px;

    position: relative;

    display: grid;

    place-items: center;

}



.visual-card {

    width: min(440px, 90%);

    overflow: hidden;

    border-radius: 32px;

    background: white;

    box-shadow: var(--shadow);

    transform: rotate(2deg);

}



.visual-art {

    height: 410px;

    position: relative;

    overflow: hidden;

    display: grid;

    place-items: center;

    background:

        radial-gradient(circle at 30% 20%, #f8bd72, transparent 27%),

        radial-gradient(circle at 70% 72%, #18bfd1, transparent 28%),

        radial-gradient(circle at 63% 28%, #855df6, transparent 33%),

        linear-gradient(145deg, #171c35, #070914);

}



.visual-orbit {

    position: absolute;

    border: 1px solid rgba(255,255,255,.22);

    border-radius: 50%;

}



.orbit-one {

    width: 360px;

    height: 360px;

}



.orbit-two {

    width: 260px;

    height: 260px;

}



.qr-symbol {

    position: relative;

    width: 180px;

    height: 180px;

    background: rgba(255,255,255,.94);

    border-radius: 30px;

    box-shadow: 0 30px 90px rgba(0,0,0,.35);

}



.qr-corner {

    position: absolute;

    width: 48px;

    height: 48px;

    border: 12px solid #101321;

}



.q1 { top: 24px; left: 24px; }

.q2 { top: 24px; right: 24px; }

.q3 { bottom: 24px; left: 24px; }



.qr-dot {

    position: absolute;

    width: 17px;

    height: 17px;

    background: #101321;

}



.d1 { right: 28px; bottom: 28px; }

.d2 { right: 55px; bottom: 28px; }

.d3 { right: 28px; bottom: 55px; }

.d4 { left: 84px; top: 82px; }

.d5 { left: 106px; top: 105px; }



.scan-badge {

    padding: 22px 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}



.scan-badge small,

.analytics-demo small {

    color: var(--muted);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}



.scan-badge strong {

    display: block;

    font-size: 24px;

}



.scan-badge > span {

    padding: 7px 10px;

    border-radius: 999px;

    color: #16865e;

    background: #e6f8f1;

    font-size: 12px;

    font-weight: 700;

}



.floating-stat {

    position: absolute;

    min-width: 150px;

    padding: 15px 18px;

    border: 1px solid rgba(255,255,255,.8);

    border-radius: 16px;

    background: rgba(255,255,255,.88);

    backdrop-filter: blur(18px);

    box-shadow: 0 20px 45px rgba(21,25,46,.12);

}



.floating-stat span {

    display: block;

    color: var(--muted);

    font-size: 11px;

}



.floating-stat strong {

    font-size: 18px;

}



.stat-one { left: -20px; top: 110px; }

.stat-two { right: -10px; bottom: 70px; }

.stat-three { right: -10px; top: 70px; }





/* GENERAL SECTIONS */



.section {

    padding: 110px 0;

}



.section-soft {

    background: var(--soft);

}



.section-dark {

    color: white;

    background:

        radial-gradient(circle at 50% 0%, #24214f, transparent 45%),

        var(--dark);

}



.section-heading {

    max-width: 700px;

    margin-bottom: 52px;

}



.section-heading.centered {

    margin-left: auto;

    margin-right: auto;

    text-align: center;

}



.section-heading h2,

.split h2,

.visual-grid h2,

.qr-check h2 {

    margin: 12px 0 18px;

    font-size: clamp(36px, 4vw, 56px);

    line-height: 1.05;

    letter-spacing: -2px;

}



.section-heading p,

.split p,

.visual-grid p,

.qr-check p {

    color: var(--muted);

    font-size: 17px;

}



.light p {

    color: #aeb4c8;

}





/* FLOW */



.flow {

    display: grid;

    grid-template-columns: 1fr auto 1fr auto 1fr;

    align-items: center;

    gap: 18px;

}



.flow-card {

    min-height: 190px;

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: white;

}



.flow-card.featured {

    border-color: transparent;

    color: white;

    background:

        linear-gradient(145deg, var(--primary), #5636d9);

    box-shadow: 0 25px 55px rgba(109,74,255,.25);

}



.flow-icon {

    font-size: 28px;

    margin-bottom: 18px;

}



.flow-card span {

    color: var(--muted);

    margin-top: 5px;

}



.flow-card.featured span {

    color: #ddd6ff;

}



.flow-arrow {

    color: #b6bac5;

    font-size: 26px;

}





/* PRODUCT */



.product-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

}



.product-card {

    position: relative;

    min-height: 300px;

    padding: 28px;

    border: 1px solid var(--border);

    border-radius: 24px;

    background: white;

    transition: .2s ease;

}



.product-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);

}



.product-number {

    position: absolute;

    right: 23px;

    top: 22px;

    color: #c0c4cf;

    font-size: 11px;

    font-weight: 800;

}



.product-icon {

    width: 50px;

    height: 50px;

    display: grid;

    place-items: center;

    border-radius: 15px;

    color: var(--primary);

    background: #f0edff;

    font-size: 22px;

    margin-bottom: 45px;

}



.product-card h3 {

    margin-bottom: 8px;

    font-size: 20px;

}



.product-card p {

    margin: 0;

    color: var(--muted);

    font-size: 14px;

}





/* VISUAL */



.visual-grid,

.split {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 75px;

    align-items: center;

}



.tag-list {

    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 30px;

}



.tag-list span,

.analytics-tags span {

    padding: 9px 12px;

    border-radius: 999px;

    background: var(--soft);

    color: #555c6f;

    font-size: 11px;

    font-weight: 700;

}



.visual-gallery {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

    transform: rotate(2deg);

}



.gallery-card {

    min-height: 220px;

    padding: 22px;

    border-radius: 25px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    color: white;

    box-shadow: 0 20px 45px rgba(22,26,47,.12);

}



.gallery-card span {

    font-size: 11px;

    opacity: .8;

}



.gallery-card strong {

    font-size: 19px;

}



.gallery-a {

    background:

        radial-gradient(circle at 30% 20%, #ffb65c, transparent 25%),

        linear-gradient(135deg, #2c2036, #bd5454);

}



.gallery-b {

    background:

        radial-gradient(circle at 65% 35%, #4adbd3, transparent 25%),

        linear-gradient(135deg, #171d3a, #5f3bc0);

}



.gallery-c {

    background:

        radial-gradient(circle at 35% 25%, #fa72ca, transparent 25%),

        linear-gradient(135deg, #201d41, #4b7ae1);

}



.gallery-d {

    background:

        radial-gradient(circle at 65% 25%, #ffcc6c, transparent 22%),

        linear-gradient(135deg, #182c33, #127e75);

}





/* ROUTING */



.routing-layout {

    display: grid;

    grid-template-columns: 260px 1fr;

    gap: 60px;

    align-items: center;

}



.routing-node {

    min-height: 260px;

    border: 1px solid #303752;

    border-radius: 30px;

    display: grid;

    place-items: center;

    align-content: center;

    gap: 14px;

    background: rgba(255,255,255,.03);

}



.routing-qr {

    width: 96px;

    height: 96px;

    display: grid;

    place-items: center;

    border-radius: 24px;

    color: white;

    font-size: 42px;

    font-weight: 900;

    background:

        linear-gradient(135deg, var(--primary), var(--cyan));

}



.routing-options {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 13px;

}



.routing-options div {

    min-height: 130px;

    padding: 20px;

    border: 1px solid #303752;

    border-radius: 18px;

    display: flex;

    flex-direction: column;

    background: rgba(255,255,255,.03);

}



.routing-options span {

    font-size: 20px;

    margin-bottom: auto;

}



.routing-options strong {

    font-size: 14px;

}



.routing-options small {

    color: #929ab4;

}





/* GEO */



.notice {

    display: inline-flex;

    gap: 9px;

    margin-top: 20px;

    padding: 12px 15px;

    border-radius: 13px;

    background: #e9faf4;

    color: #16765a;

    font-size: 13px;

    font-weight: 700;

}



.location-demo,

.analytics-demo {

    padding: 28px;

    border: 1px solid var(--border);

    border-radius: 28px;

    background: white;

    box-shadow: var(--shadow);

}



.location-header,

.location-row {

    display: flex;

    justify-content: space-between;

    gap: 20px;

}



.location-header {

    padding-bottom: 20px;

    border-bottom: 1px solid var(--border);

}



.location-header strong {

    color: var(--primary);

}



.location-row {

    padding: 18px 0;

    border-bottom: 1px solid var(--border);

    font-size: 13px;

}



.location-row:last-child {

    border-bottom: 0;

}





/* VISITS */



.visit-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;

}



.visit-card {

    min-height: 360px;

    padding: 42px;

    border-radius: 30px;

    color: white;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

}



.visit-card.first {

    background:

        radial-gradient(circle at 70% 20%, #ca6ef7, transparent 28%),

        linear-gradient(135deg, #262044, #642da7);

}



.visit-card.return {

    background:

        radial-gradient(circle at 30% 20%, #54ddd5, transparent 27%),

        linear-gradient(135deg, #132e38, #16596e);

}



.visit-label {

    margin-bottom: auto;

    font-size: 10px;

    letter-spacing: 1.5px;

    font-weight: 800;

    opacity: .75;

}



.visit-icon {

    font-size: 32px;

}



.visit-card h3 {

    font-size: 26px;

    margin: 8px 0;

}



.visit-card p {

    color: rgba(255,255,255,.75);

    max-width: 460px;

}





/* ANALYTICS */



.analytics-top {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

}



.analytics-top > div {

    padding: 18px;

    border-radius: 16px;

    background: var(--soft);

}



.analytics-top strong {

    display: block;

    margin-top: 5px;

    font-size: 25px;

}



.mini-chart {

    height: 180px;

    display: flex;

    align-items: end;

    gap: 12px;

    margin: 28px 0;

    padding: 0 5px;

}



.mini-chart i {

    flex: 1;

    min-height: 10px;

    border-radius: 8px 8px 2px 2px;

    background:

        linear-gradient(180deg, var(--primary), #a38bff);

}



.analytics-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

}





/* USE CASES */



.use-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;

}



.use-grid article {

    min-height: 220px;

    padding: 26px;

    border: 1px solid var(--border);

    border-radius: 21px;

    background: white;

}



.use-grid article > span {

    font-size: 27px;

}



.use-grid h3 {

    margin: 30px 0 8px;

}



.use-grid p {

    margin: 0;

    color: var(--muted);

    font-size: 13px;

}





/* QR CHECK */



.qr-check {

    display: grid;

    grid-template-columns: 1fr .8fr;

    gap: 70px;

    align-items: center;

}



.check-box {

    min-height: 270px;

    padding: 30px;

    border: 2px dashed #d8dbe5;

    border-radius: 26px;

    display: grid;

    place-items: center;

    align-content: center;

    text-align: center;

    background: var(--soft);

}



.check-icon {

    font-size: 45px;

    color: var(--primary);

    margin-bottom: 10px;

}



.check-box small {

    color: var(--muted);

    margin-top: 6px;

}





/* CTA */



.cta-section {

    padding: 120px 0;

    color: white;

    background:

        radial-gradient(circle at 50% 0%, #7961df, transparent 38%),

        linear-gradient(135deg, #17132e, #0b0f1e);

}



.cta {

    text-align: center;

}



.cta h2 {

    margin: 12px 0;

    font-size: clamp(44px, 6vw, 76px);

    letter-spacing: -3px;

    line-height: 1;

}



.cta p {

    color: #bcc2d3;

    margin: 0 auto 30px;

    font-size: 17px;

}



.eyebrow.light {

    color: #b9aaff;

}





/* FOOTER */



footer {

    padding: 70px 0 25px;

    background: #080b14;

    color: #a7adbc;

}



.footer-grid {

    display: grid;

    grid-template-columns: 2fr repeat(3, 1fr);

    gap: 60px;

}



.footer-brand {

    color: white;

}



.footer-grid p {

    max-width: 280px;

    font-size: 13px;

}



.footer-grid > div {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;

}



.footer-grid strong {

    color: white;

    margin-bottom: 6px;

    font-size: 13px;

}



.footer-grid a {

    font-size: 12px;

}



.footer-grid a:hover {

    color: white;

}



.footer-bottom {

    margin-top: 55px;

    padding-top: 24px;

    border-top: 1px solid #1c2130;

    display: flex;

    justify-content: space-between;

    gap: 30px;

    font-size: 11px;

}





/* RESPONSIVE */



@media (max-width: 980px) {



    .desktop-nav {

        display: none;

    }



    .hero {

        padding-top: 70px;

    }



    .hero-grid,

    .visual-grid,

    .split,

    .qr-check {

        grid-template-columns: 1fr;

    }



    .hero-grid {

        gap: 35px;

    }



    .hero-visual {

        margin-top: 10px;

    }



    .product-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    .routing-layout {

        grid-template-columns: 1fr;

    }



    .use-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    .footer-grid {

        grid-template-columns: 1.5fr 1fr 1fr;

    }



    .footer-grid > div:last-child {

        grid-column: 2;

    }

}





@media (max-width: 680px) {



    .container {

        width: min(100% - 28px, 1180px);

    }



    .site-header .button-small {

        display: none;

    }



    .hero {

        padding: 58px 0 80px;

    }



    .hero h1 {

        letter-spacing: -2.6px;

    }



    .hero-actions {

        flex-direction: column;

    }



    .button {

        width: 100%;

    }



    .hero-visual {

        min-height: 470px;

    }



    .floating-stat {

        min-width: 125px;

    }



    .stat-one {

        left: 0;

    }



    .stat-two {

        right: 0;

    }



    .stat-three {

        display: none;

    }



    .section {

        padding: 78px 0;

    }



    .flow {

        grid-template-columns: 1fr;

    }



    .flow-arrow {

        text-align: center;

        transform: rotate(90deg);

    }



    .product-grid,

    .visit-grid,

    .use-grid,

    .routing-options,

    .footer-grid {

        grid-template-columns: 1fr;

    }



    .visual-gallery {

        transform: none;

    }



    .gallery-card {

        min-height: 175px;

    }



    .visit-card {

        min-height: 310px;

    }



    .footer-grid > div:last-child {

        grid-column: auto;

    }



    .footer-bottom {

        flex-direction: column;

    }

}

