:root {
    --navy: #050f2e;
    --deep: #071538;
    --blue: #285dff;
    --lime: #48c900;
    --white: #fff;
    --ink: #101a3d;
    --muted: #65708c;
    --line: #e8ebf2;
    --purple: #633cff
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    background: #f7f9fc
}

.shell {
    width: min(100% - 7rem, 1140px);
    margin: auto
}

.site-header {
    height: 92px;
    position: absolute;
    z-index: 5;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100% - 7rem, 1140px);
    display: flex;
    align-items: center;
    gap: 60px;
    color: #fff
}

.brand img {
    width: 160px;
    height: auto;
    display: block
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 47px;
    margin-left: auto
}

.main-nav a {
    color: #f6f8ff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 35px 0 16px;
    position: relative
}

.main-nav a.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: var(--lime)
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 45px;
    padding: 0 25px;
    border: 0;
    border-radius: 10px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(100deg, #48bd13, #3269ff 68%, #5b34ea);
    box-shadow: 0 8px 24px #2559f25c;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: .25s
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px #2559f280
}

.button-small {
    min-height: 38px;
    padding: 0 22px
}

.header-cta {
    margin-left: auto;
    white-space: nowrap
}

.menu-toggle {
    display: none
}

.hero {
    min-height: 690px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    color: #fff
}

.hero-inner {
    width: min(100% - 7rem, 1140px);
    margin: auto;
    min-height: 690px;
    display: grid;
    grid-template-columns: 43% 57%;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 40px
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(65px);
    opacity: .45
}

.glow-one {
    width: 440px;
    height: 270px;
    background: #263cff;
    left: 34%;
    top: 170px
}

.glow-two {
    width: 260px;
    height: 220px;
    background: #4015d4;
    right: 3%;
    bottom: -30px
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#2576da 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: .27;
    mask-image: linear-gradient(90deg, transparent 48%, #000 72%)
}

.hero-copy {
    padding-bottom: 40px;
    position: relative;
    z-index: 2
}

.eyebrow {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    border: 1px solid #8d23c9;
    border-radius: 20px;
    padding: 7px 13px;
    color: #b6da8c;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700
}

.eyebrow span {
    color: #8b5cff
}

.hero h1 {
    font: 800 clamp(45px, 5vw, 58px)/.99 Manrope, sans-serif;
    letter-spacing: -2.5px;
    margin: 20px 0 16px
}

.gradient-text {
    background: linear-gradient(90deg, #58d20f, #00b5d6, #3976f4);
    color: transparent;
    background-clip: text
}

.soft-gradient {
    background: linear-gradient(90deg, #e3edf6, #9875fd);
    color: transparent;
    background-clip: text
}

.hero-copy p {
    color: #dae1ed;
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 28px
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center
}

.video-link {
    height: 45px;
    border: 1px solid #9aa3be;
    border-radius: 9px;
    padding: 0 17px;
    display: flex;
    gap: 10px;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px
}

.play {
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 9px;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center
}

.product-stage {
    height: 620px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px
}

.phone {
    width: 210px;
    height: 448px;
    border: 4px solid #303b49;
    border-radius: 34px;
    background: #101828;
    box-shadow: 0 0 0 2px #0b0f16, 0 0 45px #5283ff75;
    position: relative;
    margin-left: 62px;
    z-index: 2;
    padding: 10px
}

.phone-screen {
    height: 100%;
    border-radius: 23px;
    background: linear-gradient(#111b30, #061125);
    padding: 22px 11px 10px;
    overflow: hidden;
    font-size: 9px
}

.phone-notch {
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 18px;
    border-radius: 0 0 12px 12px;
    background: #04070d;
    z-index: 3
}

.app-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff
}

.hamburger {
    font-size: 15px;
    color: #bdc5d1
}

.mini-brand {
    font-size: 10px;
    font-weight: 800
}

.mini-brand i {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #42b90a;
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
    vertical-align: -1px
}

.mini-brand b {
    color: #49ce0d
}

.mini-brand small {
    display: block;
    color: #48bd13;
    font-size: 6px;
    text-align: right;
    margin-top: -2px
}

.avatar {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #43ae31;
    display: grid;
    place-items: center
}

.screen-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 29px 0 13px
}

.screen-row b {
    font-size: 10px
}

.screen-row small {
    background: #2a3448;
    padding: 6px 7px;
    border-radius: 5px;
    color: #c0c5d1
}

.donut {
    width: 138px;
    height: 138px;
    margin: auto;
    border-radius: 50%;
    background: conic-gradient(#6843f5 0 28%, #22aad3 28% 47%, #31c17a 47% 67%, #f8921f 67% 84%, #ed4a72 84% 100%);
    display: grid;
    place-items: center
}

.donut:before {
    content: '';
    position: absolute;
    width: 93px;
    height: 93px;
    border-radius: 50%;
    background: #111a2b
}

.donut div {
    z-index: 1;
    text-align: center
}

.donut small {
    display: block;
    font-size: 7px
}

.donut strong {
    font-size: 25px;
    display: block
}

.legend {
    margin: 12px 0 0;
    border-top: 1px solid #28344b
}

.legend span {
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid #28344b;
    padding: 6px 0;
    font-size: 7px;
    color: #e3e7ef
}

.legend i {
    width: 6px;
    height: 6px
}

.legend b {
    margin-left: auto
}

.c-green {
    background: #42c36d
}

.c-orange {
    background: #ff921f
}

.c-pink {
    background: #e45e6b
}

.c-lime {
    background: #8fc529
}

.details {
    display: block;
    text-align: center;
    color: #5ea2ff;
    font-size: 8px;
    margin: 17px
}

.app-tabs {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #28344b;
    padding-top: 10px;
    color: #65718a;
    text-align: center;
    font-size: 12px
}

.app-tabs span:first-child {
    color: #53c52d
}

.app-tabs small {
    font-size: 6px;
    display: block;
    color: inherit
}

.metric-stack {
    display: flex;
    flex-direction: column;
    gap: 11px;
    z-index: 2
}

.metric-card {
    width: 255px;
    height: 100px;
    border: 1px solid #2354a2;
    border-radius: 11px;
    background: #091939cc;
    display: flex;
    align-items: center;
    padding: 14px 12px;
    gap: 11px;
    box-shadow: 0 10px 26px #0004
}

.metric-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 23px
}

.metric-icon.green {
    background: #1c662f;
    color: #52d84c
}

.metric-icon.purple {
    background: #43218f;
    color: #fff
}

.metric-icon.blue {
    background: #1f427d;
    color: #fff
}

.metric-card div {
    min-width: 105px
}

.metric-card small,
.metric-card label {
    display: block;
    font-size: 9px;
    color: #fff;
    font-weight: 600
}

.metric-card strong {
    font-size: 22px;
    display: block;
    margin: 3px 0
}

.metric-card em {
    font-style: normal;
    font-size: 9px;
    color: #52d425
}

.metric-card label {
    font-size: 7px;
    font-weight: 400;
    color: #d3d9e7;
    white-space: nowrap
}

.metric-card svg {
    width: 62px;
    height: 40px;
    overflow: visible
}

.metric-card polyline {
    fill: none;
    stroke: #4cd22d;
    stroke-width: 2
}

.metric-card .purple-line polyline {
    stroke: #a566ff
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: -5%;
    width: 110%;
    height: 72px;
    background: #f7f9fc;
    clip-path: ellipse(60% 55% at 52% 100%)
}

.benefits {
    position: relative;
    margin-top: -1px
}

.benefit-grid {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 13px 30px #10214c12;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 26px 18px;
    position: relative;
    z-index: 2
}

.benefit {
    display: flex;
    gap: 14px;
    padding: 3px 16px;
    border-right: 1px solid var(--line)
}

.benefit:last-child {
    border: 0
}

.round-icon {
    flex: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 25px
}

.green-bg {
    background: #eff8e8;
    color: #56ad28
}

.purple-bg {
    background: #f2efff;
    color: #5230d5
}

.blue-bg {
    background: #eef4ff;
    color: #2772e8
}

.orange-bg {
    background: #fff4e9;
    color: #ef7415
}

.benefit h3 {
    font-size: 12px;
    margin: 5px 0 10px
}

.benefit h3 b {
    display: block;
    color: #50b322;
    margin-top: 4px
}

.benefit p {
    font-size: 9px;
    line-height: 1.65;
    margin: 0;
    color: #33405f
}

.purple-text {
    color: #5128db !important
}

.blue-text {
    color: #1760df !important
}

.orange-text {
    color: #ed7111 !important
}

.testimonials {
    padding-top: 15px
}

.section-dark {
    background: linear-gradient(110deg, #071742, #071334);
    border-radius: 17px;
    color: #fff;
    padding: 12px 52px 17px
}

.section-dark h2 {
    text-align: center;
    font: 700 19px Manrope;
    margin: 0 0 6px
}

.section-dark h2 span,
.features h2 span,
.cta span {
    color: #55c918
}

.testimonial-row {
    display: flex;
    align-items: center;
    gap: 15px
}

.carousel-btn {
    border: 1px solid #8c96aa;
    background: none;
    color: #fff;
    border-radius: 50%;
    font-size: 28px;
    width: 35px;
    height: 35px;
    line-height: 20px;
    flex: none
}

.quote-card {
    flex: 1;
    background: linear-gradient(120deg, #162954, #0b1b43);
    border: 1px solid #1a4671;
    border-radius: 11px;
    padding: 12px 15px 10px;
    min-height: 129px
}

.quote-card.third {
    display: block
}

.quote-mark {
    color: #68ce12;
    font-size: 40px;
    line-height: 18px
}

.quote-card p {
    font-size: 10px;
    line-height: 1.55;
    margin: 0 0 9px
}

.person {
    display: flex;
    align-items: center;
    gap: 7px
}

.person-avatar {
    font-size: 20px;
    background: #fff;
    border-radius: 50%;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center
}

.person strong {
    font-size: 9px
}

.person strong small {
    display: block;
    font-size: 7px;
    font-weight: 400;
    color: #d4dbea;
    margin-top: 2px
}

.stars {
    margin-left: auto;
    color: #61ca0e;
    letter-spacing: 1px;
    font-size: 11px
}

.dots {
    text-align: center;
    margin-top: 7px
}

.dots i {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    margin: 0 2px;
    opacity: .8
}

.dots i.selected {
    background: #55cf11;
    opacity: 1
}

.features {
    padding: 11px 0
}

.features h2 {
    text-align: center;
    font: 700 20px Manrope;
    margin: 0 0 8px
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px
}

.feature-grid article {
    background: #fff;
    border-radius: 13px;
    padding: 13px 15px 10px;
    box-shadow: 0 5px 15px #14234c0b;
    min-height: 150px;
    transition: .25s
}

.feature-grid article:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px #14234c18
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 24px;
    background: #f2f8e9
}

.feature-icon.violet {
    color: #5334d4;
    background: #f1efff
}

.feature-icon.cyan {
    color: #168cf0;
    background: #edf7ff
}

.feature-icon.orange {
    color: #ec7113;
    background: #fff4e8
}

.feature-icon.teal {
    color: #188d88;
    background: #edf8f7
}

.feature-icon.pink {
    color: #ce4760;
    background: #fff0f3
}

.feature-grid h3 {
    font-size: 11px;
    margin: 10px 0 8px
}

.feature-grid p {
    font-size: 9px;
    line-height: 1.5;
    color: #55617b;
    margin: 0
}

.feature-grid a {
    display: block;
    margin-top: 7px;
    color: #41b41b;
    text-decoration: none;
    font-size: 20px;
    text-align: center
}

.reports {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 2px 0 11px
}

.report-chart {
    background: #061436;
    border-radius: 14px;
    color: #fff;
    display: flex;
    overflow: hidden;
    min-height: 190px;
    padding: 19px 20px
}

.chart-copy {
    width: 47%;
    position: relative;
    z-index: 1
}

.chart-copy h2 {
    font: 700 18px/1.25 Manrope;
    margin: 0 0 11px
}

.chart-copy h2 span {
    color: #8ede82
}

.chart-copy p {
    font-size: 9px;
    line-height: 1.55;
    color: #dae2f0;
    margin: 0 0 14px
}

.chart {
    width: 58%;
    position: relative;
    margin: 17px -10px 0 -5px
}

.chart-grid {
    position: absolute;
    inset: 0;
    background: linear-gradient(#1a477144 1px, transparent 1px), linear-gradient(90deg, #1a477144 1px, transparent 1px);
    background-size: 35px 35px
}

.chart svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0
}

.chart .area {
    fill: url(#chartGradient);
    fill: #0b768880
}

.chart polyline {
    fill: none;
    stroke: #21d9da;
    stroke-width: 2
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: -1px;
    width: 100%;
    font-size: 7px;
    color: #aab5ca
}

.chart-badge {
    position: absolute;
    bottom: 14px;
    right: 0;
    background: #42bf2a;
    border-radius: 6px;
    padding: 7px 9px;
    font-size: 15px
}

.chart-badge small {
    display: block;
    font-size: 7px;
    font-weight: 400
}

.report-list {
    background: #fff;
    border-radius: 14px;
    padding: 7px 16px
}

.report-list article {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--line);
    padding: 6px 0
}

.report-list article:last-child {
    border: 0
}

.report-list i {
    width: 26px;
    min-height: 30px;
    border-radius: 7px;
    background: #edfbef;
    color: #419e28;
    display: grid;
    place-items: center;
    font-style: normal
}

.report-list article:nth-child(2) i {
    color: #299ca5;
    background: #edf9fa
}

.report-list article:nth-child(3) i {
    color: #4c3cc2;
    background: #f0eeff
}

.report-list article:nth-child(4) i {
    color: #dd4a6b;
    background: #fff0f4
}

.report-list h3 {
    font-size: 9px;
    margin: 0 0 2px
}

.report-list p {
    font-size: 7px;
    margin: 0;
    color: #5a6783
}

.report-list article>b {
    margin-left: auto;
    color: #3587a4
}

.cta {
    min-height: 90px;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(100deg, #2c18a3, #171a6e 55%, #5315c9);
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 13px 65px;
    box-shadow: 0 7px 18px #4811a536
}

.cta h2 {
    font: 700 20px/1.2 Manrope;
    margin: 0
}

.cta p {
    font-size: 10px;
    margin: 4px 0 0
}

.cta .button {
    margin-left: auto;
    min-width: 260px
}

.hex-mark {
    width: 88px;
    height: 65px;
    position: relative;
    flex: none
}

.hex-mark span {
    position: absolute;
    width: 36px;
    height: 40px;
    border: 2px solid #a9d7e5;
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%)
}

.hex-mark span:nth-child(1) {
    top: 0;
    left: 23px
}

.hex-mark span:nth-child(2) {
    top: 25px;
    left: 0;
    border-color: #57b911
}

.hex-mark span:nth-child(3) {
    top: 25px;
    left: 46px;
    background: #50b91b;
    border: 0
}

.footer {
    background: #04112e;
    color: #fff;
    margin-top: 5px;
    padding: 26px 0 10px
}

.footer-inner {
    width: min(100% - 7rem, 1140px);
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr .8fr 1.3fr 1.25fr;
    gap: 40px
}

.footer-brand img {
    width: 115px
}

.footer p,
.footer a {
    font-size: 10px;
    line-height: 1.6;
    color: #d6dbea
}

.footer a {
    display: block;
    text-decoration: none
}

.footer h4 {
    text-transform: uppercase;
    color: #8bd939;
    font-size: 9px;
    margin: 3px 0 9px
}

.socials {
    display: flex;
    gap: 10px
}

.socials a {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1c467d;
    color: #fff;
    font-weight: 700;
    font-size: 14px
}

.socials a:nth-child(2) {
    background: #9c3685
}

.socials a:nth-child(3) {
    background: #7651e7
}

.socials a:nth-child(4) {
    background: #299559
}

.footer form {
    display: flex;
    margin-top: 10px
}

.footer input {
    height: 34px;
    border: 0;
    border-radius: 6px 0 0 6px;
    padding: 0 12px;
    min-width: 0;
    flex: 1;
    font-size: 10px
}

.footer form button {
    border: 0;
    background: #3d9e50;
    color: #fff;
    width: 42px;
    border-radius: 0 6px 6px 0
}

.copyright {
    text-align: center;
    color: #73809f;
    border-top: 1px solid #17254a;
    margin-top: 17px;
    padding-top: 10px;
    font-size: 9px
}

@media(max-width:900px) {

    .site-header,
    .hero-inner,
    .footer-inner {
        width: min(100% - 3rem, 720px)
    }

    .site-header {
        gap: 25px
    }

    .main-nav {
        gap: 20px
    }

    .main-nav a {
        font-size: 11px
    }

    .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 120px
    }

    .hero {
        padding-bottom: 40px
    }

    .hero-copy {
        text-align: center
    }

    .eyebrow {
        margin: auto
    }

    .hero-actions {
        justify-content: center
    }

    .product-stage {
        height: 500px;
        justify-content: center
    }

    .phone {
        margin-left: 0
    }

    .metric-card {
        width: 230px
    }

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

    .benefit:nth-child(2) {
        border: 0
    }

    .benefit {
        margin-bottom: 18px
    }

    .feature-grid {
        grid-template-columns: repeat(3, 1fr)
    }

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

    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px
    }
}

@media(max-width:600px) {
    .shell {
        width: calc(100% - 2rem)
    }

    .site-header {
        width: calc(100% - 2rem);
        height: 75px
    }

    .brand img {
        width: 126px
    }

    .header-cta,
    .main-nav {
        display: none
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
        background: none;
        border: 0;
        flex-direction: column;
        gap: 5px;
        padding: 8px
    }

    .menu-toggle span {
        width: 24px;
        height: 2px;
        background: #fff
    }

    .main-nav.open {
        display: flex;
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        background: #08163b;
        padding: 18px;
        flex-direction: column;
        gap: 13px;
        border-radius: 10px
    }

    .main-nav.open a {
        padding: 5px
    }

    .hero-inner {
        width: calc(100% - 2rem);
        padding-top: 110px
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -2px
    }

    .hero-copy p {
        font-size: 14px
    }

    .desktop-only {
        display: none
    }

    .product-stage {
        height: 650px;
        display: block;
        padding-top: 30px
    }

    .phone {
        width: 218px;
        height: 465px;
        margin: 0 auto
    }

    .metric-stack {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 3px;
        width: 100%;
        align-items: center;
        gap: 7px
    }

    .metric-card {
        height: 74px;
        width: min(100%, 305px);
        padding: 9px
    }

    .metric-icon {
        width: 35px;
        height: 35px;
        font-size: 17px
    }

    .metric-card strong {
        font-size: 18px
    }

    .metric-card svg {
        width: 65px
    }

    .hero-wave {
        height: 42px
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        padding: 18px 14px
    }

    .benefit {
        border: 0 !important;
        border-bottom: 1px solid var(--line) !important;
        padding: 13px 5px;
        margin: 0
    }

    .benefit:last-child {
        border: 0 !important
    }

    .section-dark {
        padding: 15px 14px
    }

    .testimonial-row {
        position: relative
    }

    .quote-card {
        min-width: 100%
    }

    .quote-card.second,
    .quote-card.third {
        display: none
    }

    .carousel-btn {
        position: absolute;
        z-index: 1;
        top: 50%
    }

    .prev {
        left: -10px
    }

    .next {
        right: -10px
    }

    .features h2 {
        font-size: 18px
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px
    }

    .feature-grid article {
        min-height: 160px;
        padding: 12px
    }

    .reports {
        display: block
    }

    .report-chart {
        min-height: 250px
    }

    .chart-copy {
        width: 54%
    }

    .chart {
        width: 55%;
        margin-top: 38px
    }

    .report-list {
        margin-top: 10px
    }

    .cta {
        padding: 18px;
        gap: 12px;
        flex-wrap: wrap
    }

    .hex-mark {
        display: none
    }

    .cta h2 {
        font-size: 18px
    }

    .cta .button {
        margin: 6px 0 0;
        min-width: 100%;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        width: calc(100% - 2rem);
        gap: 22px
    }

    .footer-inner>div:first-child,
    .footer-inner>div:last-child {
        grid-column: 1/-1
    }

    .copyright {
        font-size: 8px
    }
}

.hero-copy p strong {
    display: block;
    color: #f3f6ff;
    font-size: 13px;
    margin-bottom: 5px
}

/* Feixes e luzes do hero, inspirados na composição diagonal da referência. */
.hero {
    isolation: isolate;
    background: radial-gradient(ellipse 75% 85% at 64% 18%, #102c70 0%, #091a4a 38%, #040c25 76%, #020817 100%)
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0
}

.hero::before {
    inset: -170px -12%;
    background: linear-gradient(126deg, transparent 0 33.6%, #426bff12 34.1%, #7794ffbc 34.25%, #1767ffef 34.43%, #925cffaf 34.58%, transparent 34.82%), linear-gradient(126deg, transparent 0 37%, #1432af48 37.25%, #7663ffb8 37.4%, #2095ffdb 37.54%, transparent 37.8%), linear-gradient(126deg, transparent 0 66.1%, #4929b66b 66.35%, #7b37ff 66.47%, #a536f9b8 66.62%, transparent 66.9%);
    filter: drop-shadow(0 0 11px #416dff) drop-shadow(0 0 28px #3b2dfc);
    opacity: .95
}

.hero::after {
    right: -15%;
    bottom: -115px;
    width: 86%;
    height: 360px;
    background: radial-gradient(ellipse at center, #263effa6 0%, #4833dd65 33%, transparent 69%);
    filter: blur(18px)
}

.grid-overlay {
    background-image: radial-gradient(#5ca6ff 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: .33;
    mask-image: linear-gradient(90deg, transparent 35%, #000 58%, transparent 100%)
}

.light-beam {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    height: 2px;
    border-radius: 100%;
    transform-origin: left center;
    filter: drop-shadow(0 0 7px #8bb8ff) drop-shadow(0 0 19px #473cff)
}

.beam-one {
    width: 360px;
    top: 131px;
    left: -50px;
    transform: rotate(42deg);
    background: linear-gradient(90deg, transparent, #4e95ff, #d76aff, transparent)
}

.beam-two {
    width: 480px;
    right: -110px;
    bottom: 92px;
    transform: rotate(-10deg);
    background: linear-gradient(90deg, transparent, #366eff, #cc45ff, transparent)
}

.mini-brand {
    width: 65px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.mini-brand img {
    width: 65px;
    height: auto;
    display: block
}

.icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden
}

.round-icon svg,
.feature-icon svg {
    width: 30px;
    height: 30px;
    display: block
}

.feature-icon svg {
    width: 25px;
    height: 25px
}

.hero-lines {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none
}

.hero::before {
    display: none
}

.hero::after {
    opacity: .6
}

.hero-glow {
    z-index: 0
}

.hero-inner {
    z-index: 2
}

.grid-overlay {
    z-index: 1
}

.metric-icon svg {
    width: 25px;
    height: 25px;
    display: block
}

.metric-icon.green svg {
    color: #52d84c
}

.metric-icon.purple svg,
.metric-icon.blue svg {
    color: #fff
}

/* Interações discretas e estados de navegação. */
@keyframes phoneFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-9px)
    }
}

@keyframes cardPulse {

    0%,
    100% {
        box-shadow: 0 10px 26px #0004
    }

    50% {
        box-shadow: 0 12px 31px #3378ff55
    }
}

@keyframes drawChart {
    to {
        stroke-dashoffset: 0
    }
}

.phone {
    animation: phoneFloat 5.5s ease-in-out infinite
}

.metric-card {
    transition: transform .25s ease, border-color .25s ease;
    animation: cardPulse 4.5s ease-in-out infinite
}

.metric-card:nth-child(2) {
    animation-delay: .6s
}

.metric-card:nth-child(3) {
    animation-delay: 1.2s
}

.metric-card:hover {
    transform: translateX(5px);
    border-color: #6499ff
}

.chart polyline,
.metric-card polyline {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawChart 2.2s ease-out forwards
}

.metric-card:nth-child(2) polyline {
    animation-delay: .25s
}

.metric-card:nth-child(3) polyline {
    animation-delay: .5s
}

.benefit {
    transition: transform .25s ease, background .25s ease
}

.benefit:hover {
    transform: translateY(-4px);
    background: #fbfdff
}

.carousel-btn {
    transition: background .2s ease, transform .2s ease
}

.carousel-btn:hover {
    background: #fff;
    color: #10204a;
    transform: scale(1.08)
}

.quote-card {
    transition: transform .28s ease, box-shadow .28s ease
}

.quote-card.is-current:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px #0004
}

.report-list article {
    cursor: pointer;
    transition: background .25s ease, padding .25s ease
}

.report-list article:hover {
    background: #f5faff
}

.report-list article p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .3s ease, opacity .22s ease
}

.report-list article.open {
    padding: 9px 0
}

.report-list article.open p {
    max-height: 65px;
    opacity: 1
}

.report-list article>b {
    transition: transform .25s ease
}

.report-list article.open>b {
    transform: rotate(45deg)
}

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

.reveal.in-view {
    opacity: 1;
    transform: translateY(0)
}

@media(min-width:601px) and (max-width:900px) {
    .testimonial-row {
        gap: 12px
    }

    .testimonial-row .quote-card {
        flex: 1;
        min-width: 0
    }

    .testimonial-row .quote-card p {
        font-size: 9px
    }

    .testimonial-row .stars {
        font-size: 9px
    }

    .section-dark {
        padding-left: 38px;
        padding-right: 38px
    }
}

@media(prefers-reduced-motion:reduce) {

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

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

/* Escala de leitura para as seções de conteúdo (o hero permanece inalterado). */
.benefit h3 {
    font-size: 14px
}

.benefit p {
    font-size: 11px;
    line-height: 1.6
}

.section-dark h2 {
    font-size: 23px
}

.quote-card p {
    font-size: 12px;
    line-height: 1.6
}

.person strong {
    font-size: 10px
}

.person strong small {
    font-size: 8px
}

.features h2 {
    font-size: 24px
}

.feature-grid h3 {
    font-size: 13px
}

.feature-grid p {
    font-size: 10.5px;
    line-height: 1.55
}

.chart-copy h2 {
    font-size: 21px
}

.chart-copy p {
    font-size: 11px;
    line-height: 1.58
}

.report-list h3 {
    font-size: 11px
}

.report-list p {
    font-size: 12px
}

.cta h2 {
    font-size: 22px
}

.cta p {
    font-size: 11px
}

.footer p,
.footer a {
    font-size: 11px
}

.footer h4 {
    font-size: 10px
}

.copyright {
    font-size: 10px
}

@media(min-width:601px) and (max-width:900px) {
    .benefit h3 {
        font-size: 13px
    }

    .benefit p {
        font-size: 10.5px
    }

    .section-dark h2 {
        font-size: 21px
    }

    .quote-card p {
        font-size: 11px
    }

    .features h2 {
        font-size: 22px
    }

    .feature-grid h3 {
        font-size: 12px
    }

    .feature-grid p {
        font-size: 10px
    }

    .chart-copy h2 {
        font-size: 20px
    }

    .chart-copy p {
        font-size: 10.5px
    }

    .report-list h3 {
        font-size: 10.5px
    }

    .report-list p {
        font-size: 8.5px
    }

    .cta h2 {
        font-size: 20px
    }
}

@media(max-width:600px) {
    .benefit h3 {
        font-size: 14px
    }

    .benefit p {
        font-size: 11.5px
    }

    .section-dark h2 {
        font-size: 21px
    }

    .quote-card p {
        font-size: 12px
    }

    .person strong {
        font-size: 10px
    }

    .person strong small {
        font-size: 8px
    }

    .features h2 {
        font-size: 21px
    }

    .feature-grid h3 {
        font-size: 12px
    }

    .feature-grid p {
        font-size: 10.5px
    }

    .chart-copy h2 {
        font-size: 20px
    }

    .chart-copy p {
        font-size: 10.5px
    }

    .report-list h3 {
        font-size: 11px
    }

    .report-list p {
        font-size: 9.5px
    }

    .cta h2 {
        font-size: 20px
    }

    .cta p {
        font-size: 10.5px
    }

    .footer p,
    .footer a {
        font-size: 11px
    }

    .footer h4 {
        font-size: 10px
    }
}