:root {
    --bg: #07111f;
    --bg-soft: #0a1628;
    --panel: rgba(10, 22, 40, 0.78);
    --panel-strong: #0d1d34;
    --line: rgba(130, 170, 255, 0.16);
    --text: #f4f7fb;
    --muted: #99a8c3;
    --muted-strong: #b8c7df;
    --blue: #47a7ff;
    --cyan: #4be8ff;
    --cyan-soft: rgba(75, 232, 255, 0.16);
    --green: #70f4b3;
    --shadow-lg: 0 30px 90px rgba(0, 0, 0, 0.36);
    --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.24);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: min(1180px, calc(100% - 40px));
    --transition: 260ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(71, 167, 255, 0.2), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(75, 232, 255, 0.18), transparent 20%),
        linear-gradient(180deg, #05101c 0%, #07111f 36%, #081322 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

button {
    font: inherit;
}

.site-shell {
    position: relative;
    overflow: clip;
}

.site-shell::before,
.site-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.site-shell::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 110px 110px;
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent 85%);
}

.site-shell::after {
    background:
        radial-gradient(circle at 30% 15%, rgba(71, 167, 255, 0.14), transparent 22%),
        radial-gradient(circle at 75% 42%, rgba(75, 232, 255, 0.08), transparent 18%);
}

.container {
    width: var(--container);
    margin: 0 auto;
}

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

.glass-card {
    border: 1px solid rgba(145, 188, 255, 0.16);
    background: linear-gradient(180deg, rgba(12, 26, 47, 0.84), rgba(10, 20, 36, 0.74));
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-md);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-heading.left {
    margin-left: 0;
    text-align: left;
}

.section-heading.compact {
    max-width: none;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 18px;
}

.section-heading h2,
.hero-copy h1,
.cta-card h2 {
    margin: 0;
    font-family: "Sora", sans-serif;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p,
.hero-text,
.cta-card p,
.benefit-copy p,
.dashboard-copy p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.02rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 18px 0;
    background: rgba(7, 17, 31, 0.25);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: background var(--transition), border-color var(--transition), padding var(--transition);
}

.site-header.is-scrolled {
    padding: 12px 0;
    background: rgba(6, 15, 27, 0.82);
    border-color: rgba(145, 188, 255, 0.12);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(75, 232, 255, 0.2), rgba(71, 167, 255, 0.28));
    border: 1px solid rgba(103, 196, 255, 0.38);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-mark span {
    position: absolute;
    inset: 10px 9px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.88);
    transform: skewX(-18deg);
}

.brand-mark span:last-child {
    inset: 16px 8px 10px 18px;
    opacity: 0.5;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy strong {
    font-size: 1rem;
    letter-spacing: -0.03em;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.74rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted-strong);
}

.site-nav a {
    transition: color var(--transition), transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
    transform: translateY(-1px);
}

.nav-cta {
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(75, 232, 255, 0.1);
    border: 1px solid rgba(75, 232, 255, 0.24);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(145, 188, 255, 0.18);
    background: rgba(8, 18, 32, 0.7);
    color: var(--text);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.hero {
    padding-top: 70px;
}

.hero-backdrop,
.hero-backdrop .glow,
.hero-backdrop .rail-line {
    position: absolute;
    pointer-events: none;
}

.hero-backdrop {
    inset: 0;
}

.glow {
    border-radius: 999px;
    filter: blur(60px);
}

.glow-a {
    top: 12%;
    left: -8%;
    width: 340px;
    height: 340px;
    background: rgba(71, 167, 255, 0.18);
}

.glow-b {
    right: -10%;
    bottom: 6%;
    width: 420px;
    height: 420px;
    background: rgba(75, 232, 255, 0.14);
}

.rail-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(75, 232, 255, 0.45), transparent);
}

.rail-line::before,
.rail-line::after {
    content: "";
    position: absolute;
    top: -6px;
    width: 18px;
    height: 14px;
    border-top: 2px solid rgba(110, 173, 255, 0.24);
    border-bottom: 2px solid rgba(110, 173, 255, 0.24);
}

.rail-line-a {
    top: 28%;
    left: -2%;
    width: 48%;
    transform: rotate(-6deg);
}

.rail-line-b {
    bottom: 20%;
    right: -4%;
    width: 44%;
    transform: rotate(7deg);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    gap: 52px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(75, 232, 255, 0.08);
    border: 1px solid rgba(75, 232, 255, 0.16);
    color: var(--muted-strong);
    font-size: 0.9rem;
    margin-bottom: 22px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 18px rgba(75, 232, 255, 0.8);
}

.hero-copy h1 {
    font-size: clamp(3rem, 6vw, 5.6rem);
    max-width: 12ch;
}

.hero-text {
    max-width: 620px;
    margin: 24px 0 34px;
    font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    color: #02111f;
    background: linear-gradient(135deg, var(--cyan), #7bf2ff 55%, #d2fbff 100%);
    box-shadow: 0 18px 40px rgba(75, 232, 255, 0.25);
}

.btn-secondary {
    border: 1px solid rgba(145, 188, 255, 0.18);
    background: rgba(11, 24, 42, 0.72);
    color: var(--text);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-proof span,
.signal-list span,
.download-stack span,
.signal-pill,
.chip,
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.84rem;
}

.hero-proof span,
.signal-list span,
.download-stack span,
.badge {
    border: 1px solid rgba(145, 188, 255, 0.14);
    background: rgba(11, 22, 40, 0.6);
    color: var(--muted-strong);
}

.hero-visual {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* shared device styles */
.device {
    position: absolute;
    transition: transform 0.4s ease;
}

.device img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45));
}

/* tablet */
.tablet-device {
    width:690px;
    left: 89%;
    transform: translateX(-50%);
    z-index: 1;
}

/* phone */
.phone-device {
    width: 260px;
    right: 62%;
    bottom: 82px;
    z-index: 2;
}

/* tablet screens */
@media (max-width: 992px) {
    .hero-visual {
        min-height: 620px;
    }

    .tablet-device {
        width: 420px;
    }

    .phone-device {
        width: 180px;
        right: 8%;
    }
}

/* mobile screens */
@media (max-width: 768px) {
    .hero-visual {
        min-height: auto;
        padding-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .device {
        position: relative;
    }

    .tablet-device {
        width: 100%;
        max-width: 250px;
        left: 13%;
        transform: none;
    }

    .phone-device {
        width: 180px;
        right: 30%;
        bottom: 215px;
        margin-top: -80px;
        z-index: 5;
    }

    .hero-visual:hover .tablet-device,
    .hero-visual:hover .phone-device {
        transform: none;
    }
}

.control-panel {
    position: absolute;
    inset: 64px 30px 54px;
    padding: 28px;
    border-radius: var(--radius-xl);
}

.panel-top,
.preview-head,
.widget-head,
.mini-card-head,
.phone-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.panel-label,
.widget-head span,
.side-widget span,
.phone-row span,
.phone-top span {
    margin: 0 0 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
}

.panel-top h2,
.preview-head h3 {
    margin: 0;
    font-size: 1.45rem;
}

.panel-pulse {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted-strong);
    white-space: nowrap;
}

.panel-pulse span,
.crew-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 18px rgba(112, 244, 179, 0.5);
    flex: none;
}

.panel-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.85fr;
    gap: 18px;
    margin-top: 24px;
}

.mini-card {
    min-height: 180px;
    padding: 22px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
        rgba(6, 16, 28, 0.8);
    border: 1px solid rgba(145, 188, 255, 0.12);
}

.emphasis-card {
    grid-row: span 2;
}

.chip,
.signal-pill {
    background: rgba(71, 167, 255, 0.12);
    border: 1px solid rgba(71, 167, 255, 0.22);
    color: var(--muted-strong);
}

.chip.success {
    background: rgba(112, 244, 179, 0.08);
    border-color: rgba(112, 244, 179, 0.18);
}

.chip.info {
    background: rgba(75, 232, 255, 0.08);
    border-color: rgba(75, 232, 255, 0.18);
}

.mini-card h3 {
    margin: 18px 0 12px;
    font-size: 1.32rem;
}

.mini-card p,
.side-widget p,
.bullet-card p,
.phone-panel,
.feature-card p,
.testimonial-card p,
.workflow-step p,
.point-card p,
.report-stat p {
    color: var(--muted);
    line-height: 1.7;
}

.route-bars,
.line-chart {
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.route-bars {
    height: 12px;
    margin: 20px 0 18px;
}

.bar-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.bar-fill-88 {
    width: 88%;
}

.mini-meta,
.phone-row,
.testimonial-meta,
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.mini-meta,
.phone-row,
.coord-grid span {
    color: var(--muted-strong);
    font-size: 0.92rem;
}

.metric-row {
    display: grid;
    gap: 6px;
}

.metric-row strong,
.stat-card strong,
.report-stat strong {
    font-size: clamp(2.1rem, 5vw, 3.8rem);
    font-family: "Sora", sans-serif;
    letter-spacing: -0.05em;
}

.metric-row span {
    color: var(--muted);
}

.signal-list,
.download-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.crew-list,
.widget-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 14px;
}

.crew-list li,
.widget-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted-strong);
}

.chart-bars,
.analytics-bars {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: end;
    gap: 12px;
    min-height: 160px;
    margin-top: 18px;
}

.analytics-bars {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 140px;
}

.chart-bars span,
.analytics-bars span {
    height: var(--bar-size);
    border-radius: 999px 999px 10px 10px;
    background: linear-gradient(180deg, rgba(75, 232, 255, 0.95), rgba(71, 167, 255, 0.35));
    box-shadow: 0 10px 24px rgba(75, 232, 255, 0.18);
}

.floating-card {
    position: absolute;
    max-width: 240px;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(8, 19, 34, 0.95), rgba(10, 22, 40, 0.88));
    border: 1px solid rgba(145, 188, 255, 0.14);
    box-shadow: var(--shadow-lg);
    animation: floatCard 7s ease-in-out infinite;
}

.floating-card p,
.floating-card span {
    color: var(--muted);
}

.floating-card strong {
    display: block;
    margin: 10px 0 8px;
    font-size: 1.45rem;
}

.floating-card-top {
    top: 0;
    right: 0;
}

.floating-card-bottom {
    bottom: 0;
    left: 0;
    animation-delay: -3s;
}

.stats {
    padding-top: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.stat-card {
    padding: 30px 26px;
    border-radius: 24px;
}

.stat-card strong {
    display: block;
    color: var(--cyan);
    text-shadow: 0 0 28px rgba(75, 232, 255, 0.2);
}

.stat-card span {
    display: block;
    margin-top: 10px;
    color: var(--muted-strong);
}

.features-grid,
.testimonial-grid,
.reports-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
}

.feature-card,
.testimonial-card,
.report-card {
    padding: 26px;
    border-radius: 26px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card {
    grid-column: span 4;
}

.feature-card:hover,
.testimonial-card:hover,
.report-card:hover,
.workflow-step:hover,
.bullet-card:hover,
.point-card:hover,
.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(75, 232, 255, 0.28);
    box-shadow: 0 22px 60px rgba(5, 10, 18, 0.38);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, rgba(75, 232, 255, 0.12), rgba(71, 167, 255, 0.08));
    border: 1px solid rgba(75, 232, 255, 0.18);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--cyan);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3,
.workflow-step h3,
.benefit-copy h3,
.point-card strong,
.bullet-card h3 {
    margin: 0 0 12px;
    font-size: 1.28rem;
}

.workflow-timeline {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.workflow-step {
    position: relative;
    padding: 28px;
    border-radius: 26px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.workflow-step::before {
    content: "";
    position: absolute;
    top: 46px;
    left: 28px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 18px rgba(75, 232, 255, 0.55);
}

.step-number {
    display: inline-block;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.34);
    font-size: 1rem;
    letter-spacing: 0.24em;
}

.dashboard-grid,
.mobile-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 34px;
    align-items: center;
}

.bullet-stack,
.mobile-points {
    display: grid;
    gap: 16px;
}

.bullet-card,
.point-card {
    padding: 22px 24px;
    border-radius: 22px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.dashboard-preview {
    padding: 28px;
    border-radius: var(--radius-xl);
}

.preview-layout {
    margin-top: 22px;
}

.preview-layout img {
    border-radius: 18px;
    width: 100%;
}

.preview-widget,
.side-widget {
    border-radius: 24px;
    padding: 22px;
    border: 1px solid rgba(145, 188, 255, 0.1);
    background: rgba(4, 12, 22, 0.72);
}

.wide-widget {
    margin-bottom: 18px;
}

.line-chart {
    min-height: 160px;
    padding: 20px 16px 16px;
    margin-top: 16px;
}

.line-chart span {
    position: absolute;
    inset: auto auto 30px 18px;
    width: calc(100% - 36px);
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
}

.line-chart span:nth-child(1) {
    height: 88px;
    bottom: 36px;
    border-top: 2px solid rgba(75, 232, 255, 0.9);
    border-radius: 999px;
    transform: skewX(-28deg);
    background: none;
}

.line-chart span:nth-child(2) {
    height: 64px;
    bottom: 66px;
    border-top: 2px solid rgba(71, 167, 255, 0.9);
    border-radius: 999px;
    transform: skewX(-18deg);
    background: none;
}

.line-chart span:nth-child(3) {
    bottom: 58px;
}

.line-chart span:nth-child(4) {
    bottom: 94px;
    opacity: 0.45;
}

.preview-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.coord-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.preview-sidebar {
    display: grid;
    gap: 16px;
}

.side-widget strong {
    display: block;
    margin: 6px 0 10px;
    font-size: 1.1rem;
}

.benefit-list {
    display: grid;
    gap: 26px;
}

.benefit-row {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: center;
}

.benefit-row.reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.benefit-row.reverse .benefit-visual {
    order: 2;
}

.benefit-row.reverse .benefit-copy {
    order: 1;
}

.benefit-visual {
    min-height: 250px;
    border-radius: 28px;
    padding: 30px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.signal-board,
.verification-board,
.ops-board {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 1px solid rgba(145, 188, 255, 0.12);
    background:
        linear-gradient(135deg, rgba(75, 232, 255, 0.08), transparent 40%),
        rgba(6, 16, 28, 0.8);
    padding: 28px;
}

.signal-board strong,
.verification-board strong {
    display: block;
    margin: 18px 0 10px;
    font-size: 1.5rem;
}

.verification-board {
    display: flex;
    align-items: center;
    gap: 20px;
}

.verification-ring {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 10px solid rgba(75, 232, 255, 0.18);
    box-shadow: inset 0 0 0 10px rgba(71, 167, 255, 0.1);
}

.verification-ring::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(75, 232, 255, 0.9), rgba(71, 167, 255, 0.25));
}

.ops-board {
    display: grid;
    place-items: center;
}

.ops-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
}

.ops-grid span {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(145, 188, 255, 0.12);
    background: rgba(12, 25, 42, 0.82);
    color: var(--muted-strong);
    text-align: center;
}

.phone-stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 700px;
}

.phone-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(75, 232, 255, 0.25), transparent 65%);
    filter: blur(12px);
}

.phone-shell {
    position: relative;
    width: min(360px, 100%);
    padding: 16px;
    border-radius: 42px;
    background: linear-gradient(180deg, #0a1322, #07101d);
    border: 1px solid rgba(158, 192, 255, 0.18);
    box-shadow: var(--shadow-lg);
}

.phone-notch {
    width: 140px;
    height: 24px;
    border-radius: 0 0 18px 18px;
    background: #020810;
    margin: 0 auto;
}

.phone-screen {
    padding: 22px;
}

.phone-top strong {
    font-size: 0.9rem;
}

.camera-frame {
    position: relative;
    min-height: 270px;
    margin: 24px 0 20px;
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
        linear-gradient(135deg, rgba(75, 232, 255, 0.18), rgba(71, 167, 255, 0.05)),
        #0c1e35;
}

.camera-frame::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%);
}

.camera-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(112, 244, 179, 0.12);
    border: 1px solid rgba(112, 244, 179, 0.18);
    color: var(--text);
    font-size: 0.84rem;
}

.camera-grid {
    position: absolute;
    inset: 32px;
    border-radius: 24px;
    border: 1px solid rgba(75, 232, 255, 0.16);
}

.camera-grid::before,
.camera-grid::after {
    content: "";
    position: absolute;
    background: rgba(75, 232, 255, 0.2);
}

.camera-grid::before {
    inset: 50% 18% auto 18%;
    height: 1px;
}

.camera-grid::after {
    inset: 18% auto 18% 50%;
    width: 1px;
}

.phone-panel {
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(145, 188, 255, 0.12);
    background: rgba(4, 12, 22, 0.78);
}

.phone-row + .phone-row {
    margin-top: 14px;
}

.phone-row strong {
    font-size: 0.95rem;
}

.verified {
    color: var(--green);
}

.report-card {
    grid-column: span 3;
}

.download-stack {
    margin-top: 16px;
    flex-direction: column;
    align-items: flex-start;
}

.testimonial-card {
    grid-column: span 4;
}

.testimonial-card p {
    font-size: 1.02rem;
}

.testimonial-meta {
    margin-top: 24px;
    align-items: flex-start;
    flex-direction: column;
}

.testimonial-meta span {
    color: var(--muted);
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 42px;
    border-radius: 34px;
    border: 1px solid rgba(75, 232, 255, 0.18);
    background:
        radial-gradient(circle at top right, rgba(75, 232, 255, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(10, 21, 38, 0.92), rgba(8, 18, 32, 0.88));
    box-shadow: var(--shadow-lg);
}

.cta-card h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-top: 10px;
}

.site-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(145, 188, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, minmax(0, 0.6fr));
    gap: 28px;
    padding: 36px 0;
}

.footer-brand p,
.footer-links span,
.footer-bottom p {
    color: var(--muted);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 12px;
}

.footer-links h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.social-row {
    display: flex;
    gap: 12px;
}

.social-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(145, 188, 255, 0.14);
    background: rgba(8, 18, 32, 0.7);
    color: var(--muted-strong);
}

.footer-bottom {
    padding: 18px 0 34px;
    border-top: 1px solid rgba(145, 188, 255, 0.08);
}

.report-stat {
    margin-top: 18px;
}

.js .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1100px) {
    .hero-grid,
    .dashboard-grid,
    .mobile-grid,
    .benefit-row,
    .benefit-row.reverse {
        grid-template-columns: 1fr;
    }

    .benefit-row.reverse .benefit-visual,
    .benefit-row.reverse .benefit-copy {
        order: initial;
    }

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

    .feature-card {
        grid-column: span 6;
    }

    .report-card {
        grid-column: span 6;
    }

    .testimonial-card {
        grid-column: span 6;
    }

    .workflow-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .control-panel {
        position: relative;
        inset: auto;
    }

    .hero-visual {
        min-height: auto;
        padding: 72px 0;
    }

    .floating-card-top {
        top: 8px;
        right: 18px;
    }

    .floating-card-bottom {
        left: 18px;
        bottom: 8px;
    }

    .preview-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 820px) {
    .section {
        padding: 86px 0;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        padding: 20px;
        border-radius: 24px;
        background: rgba(7, 17, 31, 0.96);
        border: 1px solid rgba(145, 188, 255, 0.12);
        box-shadow: var(--shadow-md);
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }

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

    .hero-copy h1 {
        max-width: 100%;
    }

    .panel-grid,
    .preview-row,
    .workflow-timeline,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .workflow-timeline::before {
        left: 34px;
        right: auto;
        top: 70px;
        bottom: 70px;
        width: 1px;
        height: auto;
        background: linear-gradient(180deg, transparent, rgba(75, 232, 255, 0.45), transparent);
    }

    .feature-card,
    .report-card,
    .testimonial-card {
        grid-column: 1 / -1;
    }

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

    .cta-card,
    .panel-top,
    .preview-head,
    .mini-card-head,
    .mini-meta,
    .phone-row,
    .footer-bottom .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .control-panel,
    .dashboard-preview {
        padding: 22px;
    }

    .floating-card {
        position: relative;
        inset: auto;
        max-width: none;
        margin-bottom: 18px;
    }

    .hero-visual {
        padding: 0;
    }
}

@media (max-width: 560px) {
    :root {
        --container: min(100% - 24px, 1180px);
    }

    .site-header {
        padding: 14px 0;
    }

    .hero-proof,
    .hero-actions,
    .cta-actions {
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .hero-copy h1 {
        font-size: 2.6rem;
    }

    .metric-row strong,
    .stat-card strong,
    .report-stat strong {
        font-size: 2.4rem;
    }

    .phone-shell {
        width: 100%;
    }

    .cta-card {
        padding: 28px;
    }
}

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

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

    .js .reveal,
    .js .reveal.is-visible {
        opacity: 1;
        transform: none;
    }
}


.brand-logo {
    width: 162px;
    
}