:root {
    color-scheme: light;
    --frio-navy: #06275b;
    --frio-navy-2: #031c47;
    --frio-blue: #0c91f2;
    --frio-cyan: #13bde4;
    --frio-teal: #13b9ae;
    --frio-ink: #092452;
    --frio-text: #49617f;
    --frio-line: #dbe7f2;
    --frio-ice: #f4f9fd;
    --frio-white: #ffffff;
    --header-height: clamp(78px, 7vw, 96px);
    --section-space: clamp(74px, 8vw, 122px);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 30px;
    --shadow-soft: 0 20px 55px rgba(7, 42, 89, 0.09);
    --shadow-blue: 0 18px 38px rgba(12, 145, 242, 0.24);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    min-width: 320px;
    color: var(--frio-ink);
    background: #fbfdff;
    overflow-x: hidden;
}

a {
    color: inherit;
}

::selection {
    color: #ffffff;
    background: var(--frio-blue);
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 12px;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    color: #ffffff;
    background: var(--frio-navy);
    text-decoration: none;
    transform: translateY(-150%);
}

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

/* Header and navigation */
.site-header {
    height: var(--header-height);
    padding: 10px clamp(8px, 3vw, 30px);
    transition: 0.22s ease;
}

.site-header.scrolled {
    padding-top: 6px;
    padding-bottom: 6px;
}

.site-header .navbar {
    height: 100%;
    padding: 0;
}

.nav-shell {
    height: 100%;
    padding-inline: clamp(16px, 2.5vw, 34px);
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.83);
    box-shadow: 0 12px 38px rgba(7, 42, 89, 0.07);
    backdrop-filter: blur(22px);
}

.site-header.scrolled .nav-shell {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 14px 42px rgba(7, 42, 89, 0.12);
}

.navbar-brand {
    width: clamp(122px, 12vw, 174px);
    height: clamp(50px, 5vw, 67px);
    padding: 0;
}

.navbar-brand img, .offcanvas-header img, .footer-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.nav-link {
    position: relative;
    padding: 0.75rem 0.85rem !important;
    color: var(--frio-ink);
    font-size: 0.88rem;
    font-weight: 650;
}

.nav-link::after {
    position: absolute;
    right: 0.85rem;
    bottom: 0.46rem;
    left: 0.85rem;
    height: 2px;
    border-radius: 2px;
    background: var(--frio-blue);
    content: "";
    opacity: 0;
    transform: scaleX(0.2);
    transition: 0.18s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--frio-blue);
}

.nav-link:hover::after, .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-signin {
    color: var(--frio-ink) !important;
    font-size: 0.82rem;
    font-weight: 650;
    text-decoration: none;
    opacity: 0.65;
}

.btn-frio {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: var(--frio-blue);
    --bs-btn-border-color: var(--frio-blue);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #087fd7;
    --bs-btn-hover-border-color: #087fd7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.72rem 1.15rem;
    border-radius: 11px;
    font-weight: 700;
    box-shadow: var(--shadow-blue);
}

.btn-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 1px solid var(--frio-line);
    border-radius: 11px;
    color: var(--frio-ink);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 25px rgba(7, 42, 89, 0.07);
    font-weight: 700;
}

.btn-soft:hover {
    color: var(--frio-blue);
    border-color: #a9d9f8;
    background: #ffffff;
}

.navbar-toggler {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 11px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--frio-line);
    border-radius: 12px;
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 4px;
    background: var(--frio-navy);
}

.offcanvas {
    --bs-offcanvas-width: min(86vw, 380px);
    border-left: 0;
}

.offcanvas-header {
    min-height: 82px;
    border-bottom: 1px solid var(--frio-line);
}

.offcanvas-header img {
    width: 132px;
    height: 58px;
}

.mobile-links {
    display: grid;
    gap: 5px;
}

.mobile-links > a:not(.btn) {
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--frio-line);
    color: var(--frio-ink);
    font-weight: 700;
    text-decoration: none;
}

.hero-section {
    position: relative;
    min-height: 720px;
    padding: calc(var(--header-height) + clamp(38px, 5vw, 72px)) 0 clamp(66px, 7vw, 105px);
    overflow: hidden;
    background: radial-gradient(
            circle at 78% 38%,
            rgba(12, 145, 242, 0.13),
            transparent 34%
    ),
    linear-gradient(
            115deg,
            #ffffff 0%,
            #f8fbff 47%,
            #edf8ff 100%
    );
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.48;
    background-image: linear-gradient(
            rgba(24, 112, 175, 0.08) 1px,
            transparent 1px
    ),
    linear-gradient(
            90deg,
            rgba(24, 112, 175, 0.08) 1px,
            transparent 1px
    );
    background-size: 55px 55px;
    mask-image: linear-gradient(
            to bottom,
            #000000,
            transparent 78%
    );
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(19, 189, 228, 0.52);
    border-radius: 50%;
    transform: rotate(-8deg);
}

.orbit-a {
    top: 25%;
    right: -9%;
    width: 55vw;
    height: 31vw;
}

.orbit-b {
    top: 36%;
    right: -14%;
    width: 45vw;
    height: 22vw;
    border-color: rgba(12, 145, 242, 0.25);
}

.hero-container {
    position: relative;
    z-index: 2;
}

.eyebrow-pill {
    display: inline-flex;
    margin-bottom: 1.35rem;
    padding: 0.53rem 1rem;
    border: 1px solid var(--frio-cyan);
    border-radius: 999px;
    color: var(--frio-blue);
    background: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-copy h1 {
    margin: 0;
    color: var(--frio-ink);
    font-size: clamp(2.7rem, 5.2vw, 5.2rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.hero-copy h1 span {
    color: var(--frio-blue);
}

.product-name {
    margin: 1rem 0 0.6rem;
    color: var(--frio-blue);
    font-size: clamp(1.6rem, 2.5vw, 2.45rem);
    font-weight: 850;
    letter-spacing: -0.035em;
}

.hero-lead {
    max-width: 580px;
    margin: 0;
    color: var(--frio-text);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.65;
}

.hero-actions {
    margin-top: 1.65rem;
}

.hero-actions .btn-lg {
    padding: 0.86rem 1.15rem;
    font-size: 0.92rem;
}

/* Dashboard illustration */

.dashboard-stage {
    position: relative;
    min-height: clamp(440px, 43vw, 610px);
    perspective: 1200px;
}

.dashboard-card {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 0;
    width: min(100%, 720px);
    padding: clamp(16px, 2vw, 24px);
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: clamp(18px, 2.4vw, 30px);
    background: rgba(247, 252, 255, 0.79);
    box-shadow: 0 35px 80px rgba(0, 91, 155, 0.16),
    inset 0 0 32px rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    transform: translateY(-50%) rotateY(-3deg);
}

.dashboard-card::after {
    position: absolute;
    z-index: -1;
    inset: -20px;
    border: 1px solid rgba(12, 145, 242, 0.2);
    border-radius: 36px;
    content: "";
}

.glass-square {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 14px 35px rgba(12, 145, 242, 0.12);
    backdrop-filter: blur(8px);
}

.square-one {
    z-index: 3;
    top: 2%;
    left: 42%;
    width: 68px;
    height: 68px;
}

.square-two {
    bottom: 7%;
    left: 1%;
    width: 98px;
    height: 98px;
}

.dashboard-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.dashboard-topbar strong {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.98rem;
}

.dashboard-kicker {
    color: #6b85a2;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.period-tabs {
    display: flex;
    gap: 3px;
}

.period-tabs span {
    padding: 0.35rem 0.48rem;
    border-radius: 7px;
    color: #597390;
    font-size: 0.62rem;
    font-weight: 700;
}

.period-tabs .active {
    color: var(--frio-blue);
    background: #e7f5ff;
}

.metric-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 10px;
    margin-top: 1rem;
}

.metric {
    min-width: 0;
    padding: clamp(10px, 1.3vw, 15px);
    border: 1px solid #e1ebf4;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 22px rgba(7, 42, 89, 0.04);
}

.metric small,
.metric strong,
.metric span {
    display: block;
}

.metric small {
    color: #65809c;
    font-size: 0.6rem;
}

.metric strong {
    margin: 0.35rem 0;
    overflow: hidden;
    color: var(--frio-ink);
    font-size: clamp(0.75rem, 1.2vw, 1rem);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.metric span {
    color: var(--frio-teal);
    font-size: 0.58rem;
    font-weight: 700;
}

.dashboard-lower {
    display: grid;
    grid-template-columns:
        minmax(0, 1.6fr)
        minmax(170px, 0.8fr);
    gap: 10px;
    margin-top: 10px;
}

.chart-panel,
.health-panel {
    min-width: 0;
    padding: clamp(12px, 1.5vw, 18px);
    border: 1px solid #e1ebf4;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.86);
}

.panel-label {
    color: #55708e;
    font-size: 0.61rem;
}

.dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 5px 0 9px;
    border-radius: 50%;
}

.dot:first-child {
    margin-left: 0;
}

.dot.blue {
    background: var(--frio-blue);
}

.dot.teal {
    background: var(--frio-teal);
}

.trend-chart {
    width: 100%;
    height: clamp(130px, 15vw, 205px);
    margin-top: 8px;
}

.chart-grid path {
    fill: none;
    stroke: #e5edf5;
    stroke-width: 1;
}

.area {
    fill: url("#chartFill");
}

.line {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
}

.blue-line {
    stroke: var(--frio-blue);
}

.teal-line {
    stroke: var(--frio-teal);
}

.chart-months {
    display: flex;
    justify-content: space-between;
    color: #7890a8;
    font-size: 0.55rem;
}

.health-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.health-ring {
    display: grid;
    width: clamp(76px, 8vw, 105px);
    height: clamp(76px, 8vw, 105px);
    margin: 1rem auto;
    place-content: center;
    border: 8px solid #e7f0f7;
    border-top-color: var(--frio-teal);
    border-right-color: var(--frio-teal);
    border-radius: 50%;
    text-align: center;
}

.health-ring strong {
    font-size: 1.35rem;
    line-height: 1;
}

.health-ring small {
    color: var(--frio-teal);
    font-size: 0.6rem;
}

.health-panel ul {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.health-panel li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 5px;
    color: #52708e;
    font-size: 0.59rem;
}

.health-panel li span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--frio-teal);
}

/* Capability rail */

.capability-rail {
    position: relative;
    z-index: 5;
    margin-top: -38px;
}

.capability-scroller {
    display: grid;
    grid-template-columns:
        repeat(6, minmax(190px, 1fr));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.96);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.rail-item {
    display: grid;
    min-height: 130px;
    grid-template-columns:
        auto 1fr auto;
    gap: 0.75rem;
    padding: 1.15rem;
    border-right: 1px solid var(--frio-line);
}

.rail-item:last-child {
    border-right: 0;
}

.rail-icon {
    display: grid;
    width: 39px;
    height: 39px;
    place-content: center;
    border-radius: 11px;
    color: var(--frio-blue);
    background: #eef8ff;
    box-shadow: 0 7px 18px rgba(7, 42, 89, 0.07);
    font-size: 1.1rem;
    font-weight: 800;
}

.rail-item h2 {
    margin: 0.1rem 0 0.45rem;
    font-size: 0.79rem;
    font-weight: 800;
}

.rail-item p {
    margin: 0;
    color: var(--frio-text);
    font-size: 0.68rem;
    line-height: 1.5;
}

.rail-item > a {
    align-self: end;
    color: var(--frio-ink);
    text-decoration: none;
}

/* Shared sections */

.section {
    padding: var(--section-space) 0;
}

.section-label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--frio-blue);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-heading h2,
.roadmap-intro h2,
.company-card h2 {
    margin: 0;
    color: var(--frio-ink);
    font-size: clamp(2rem, 3.7vw, 3.65rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.section-heading p,
.roadmap-intro p,
.company-card p {
    margin: 0;
    color: var(--frio-text);
    line-height: 1.7;
}

/* Capabilities */

.capabilities-section {
    background: linear-gradient(
            #ffffff,
            #f7fbfe
    );
}

.feature-card {
    position: relative;
    min-height: 255px;
    padding: clamp(24px, 2.5vw, 32px);
    overflow: hidden;
    border: 1px solid var(--frio-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 35px rgba(7, 42, 89, 0.05);
    transition: 0.2s ease;
}

.feature-card:hover {
    border-color: #a9d9f8;
    box-shadow: 0 20px 45px rgba(7, 42, 89, 0.1);
    transform: translateY(-5px);
}

.feature-card > span {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #b2c4d5;
    font-family: Consolas,
    monospace;
    font-size: 0.72rem;
}

.feature-card h3 {
    margin: 3.3rem 0 0.8rem;
    font-size: 1.18rem;
}

.feature-card p {
    color: var(--frio-text);
    font-size: 0.88rem;
    line-height: 1.65;
}

.feature-card small {
    position: absolute;
    bottom: 26px;
    color: var(--frio-blue);
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Security */

.security-section {
    padding: clamp(52px, 6vw, 82px) 0;
    color: #ffffff;
    background: radial-gradient(
            circle at 72% 10%,
            rgba(15, 154, 240, 0.2),
            transparent 32%
    ),
    linear-gradient(
            105deg,
            #031b46,
            #062e69
    );
}

.shield-icon {
    display: grid;
    width: 58px;
    height: 68px;
    place-content: center;
    border: 2px solid #a6c9e7;
    border-radius: 22px 22px 28px 28px;
    color: #65dbef;
    font-size: 1.3rem;
}

.security-intro h2 {
    margin: 1.15rem 0 0;
    font-size: clamp(1.35rem, 2vw, 2rem);
}

.security-grid article {
    min-height: 180px;
    padding: clamp(18px, 2vw, 28px);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.security-grid article > span {
    color: #63dfef;
    font-size: 1.9rem;
}

.security-grid h3 {
    margin: 1.1rem 0 0.5rem;
    font-size: 0.97rem;
}

.security-grid p {
    margin: 0;
    color: #c0d1e3;
    font-size: 0.79rem;
    line-height: 1.55;
}

/* Roadmap */

.roadmap-section {
    background: #ffffff;
}

.roadmap-intro a {
    display: inline-block;
    margin-top: 1.2rem;
    color: var(--frio-blue);
    font-weight: 750;
    text-decoration: none;
}

.roadmap-list {
    position: relative;
    display: grid;
    grid-template-columns:
        repeat(5, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}

.roadmap-list::before {
    position: absolute;
    top: 17px;
    right: 8%;
    left: 3%;
    height: 1px;
    background: #9fd9fb;
    content: "";
}

.roadmap-list li {
    position: relative;
    padding: 3rem 1rem 1rem;
    border-right: 1px solid var(--frio-line);
}

.roadmap-list li:last-child {
    border-right: 0;
}

.roadmap-dot {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 12px;
    display: grid;
    width: 15px;
    height: 15px;
    place-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--frio-cyan);
    box-shadow: 0 0 0 7px #ffffff;
    font-size: 0.65rem;
}

.roadmap-list
.complete
.roadmap-dot {
    top: 3px;
    width: 29px;
    height: 29px;
    background: var(--frio-blue);
}

.roadmap-list small {
    color: #5e7b9a;
    font-size: 0.67rem;
}

.roadmap-list h3 {
    margin: 0.9rem 0 0.5rem;
    font-size: 0.9rem;
}

.roadmap-list p {
    margin: 0;
    color: var(--frio-text);
    font-size: 0.75rem;
    line-height: 1.55;
}

/* Company status */

.company-section {
    padding: 0 0 var(--section-space);
    background: #ffffff;
}

.company-card {
    display: grid;
    grid-template-columns:
        1.3fr 0.7fr;
    align-items: center;
    gap: 3rem;
    padding: clamp(30px, 5vw, 62px);
    border: 1px solid var(--frio-line);
    border-radius: var(--radius-lg);
    background: radial-gradient(
            circle at 88% 18%,
            rgba(19, 189, 228, 0.18),
            transparent 30%
    ),
    linear-gradient(
            120deg,
            #f7fbfe,
            #eef9ff
    );
    box-shadow: var(--shadow-soft);
}

.company-card h2 {
    max-width: 800px;
}

.company-card p {
    max-width: 760px;
    margin-top: 1.1rem;
}

.development-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem;
    border: 1px solid #cde5f5;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.75);
}

.development-status > span {
    width: 11px;
    height: 11px;
    flex: 0 0 11px;
    border-radius: 50%;
    background: var(--frio-teal);
    box-shadow: 0 0 0 6px rgba(19, 185, 174, 0.12);
}

.development-status strong,
.development-status small {
    display: block;
}

.development-status strong {
    font-size: 0.86rem;
}

.development-status small {
    margin-top: 0.25rem;
    color: var(--frio-text);
    font-size: 0.7rem;
}

/* Footer */

.site-footer {
    border-top: 1px solid var(--frio-line);
    background: #f9fcff;
}

.footer-main {
    display: flex;
    min-height: 150px;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.footer-brand img {
    width: 126px;
    height: 58px;
}

.footer-brand p {
    margin: 0.4rem 0 0;
    color: var(--frio-text);
    font-size: 0.76rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: clamp(1.2rem, 3vw, 2.8rem);
}

.footer-links a {
    color: var(--frio-ink);
    font-size: 0.75rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--frio-blue);
}

.footer-bottom {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--frio-line);
    color: #6d85a0;
    font-size: 0.68rem;
}

/* Back to top */

.back-to-top {
    position: fixed;
    z-index: 100;
    right: 20px;
    bottom: 20px;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    border-radius: 12px;
    color: #ffffff;
    background: var(--frio-blue);
    box-shadow: var(--shadow-blue);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: 0.2s ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Scroll reveal */

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease,
    transform 0.6s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: none;
}

/* Large tablets and smaller desktops */

@media (max-width: 1399.98px) {
    .capability-scroller {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .rail-item {
        min-width: 230px;
        scroll-snap-align: start;
    }
}

@media (max-width: 1199.98px) {
    .dashboard-stage {
        min-height: 520px;
    }

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

    .roadmap-list {
        grid-template-columns:
            repeat(3, 1fr);
        row-gap: 1rem;
    }

    .roadmap-list::before {
        display: none;
    }

    .roadmap-list li {
        margin: 0.3rem;
        padding-top: 3.2rem;
        border: 1px solid var(--frio-line);
        border-radius: 14px;
    }
}

/* Tablets */

@media (max-width: 991.98px) {
    .site-header {
        padding-inline: 8px;
    }

    .hero-section {
        padding-top: calc(
                var(--header-height)
                + 44px
        );
    }

    .hero-copy {
        max-width: 760px;
    }

    .dashboard-stage {
        width: min(100%, 760px);
        min-height: 520px;
        margin: 0 auto;
    }

    .dashboard-card {
        right: 50%;
        transform: translate(50%, -50%);
    }

    .capability-rail {
        margin-top: -22px;
    }

    .security-intro {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .security-intro h2 {
        margin: 0;
    }

    .security-grid article {
        border-top: 1px solid rgba(255, 255, 255, 0.13);
    }

    .company-card {
        grid-template-columns: 1fr;
    }

    .footer-main {
        align-items: flex-start;
        flex-direction: column;
        padding: 2.5rem 0;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

/* Mobile landscape and small tablets */

@media (max-width: 767.98px) {
    .hero-section {
        padding-bottom: 68px;
    }

    .hero-copy h1 {
        font-size: clamp(2.5rem, 11vw, 4rem);
    }

    .dashboard-stage {
        min-height: 490px;
    }

    .dashboard-card {
        width: calc(100% - 12px);
        padding: 13px;
    }

    .dashboard-lower {
        grid-template-columns: 1fr;
    }

    .health-panel {
        display: none;
    }

    .trend-chart {
        height: 170px;
    }

    .metric:nth-child(n+3) {
        display: none;
    }

    .capability-scroller {
        margin-inline: -12px;
        border-radius: 15px;
    }

    .rail-item {
        min-width: 245px;
    }

    .security-intro {
        align-items: flex-start;
        flex-direction: column;
    }

    .security-grid article {
        min-height: 155px;
        border-left: 0;
    }

    .roadmap-list {
        grid-template-columns: 1fr;
    }

    .roadmap-list li {
        min-height: 140px;
        padding: 2.2rem 1.2rem 1rem 4.3rem;
    }

    .roadmap-dot,
    .roadmap-list
    .complete
    .roadmap-dot {
        top: 20px;
        left: 20px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 0.35rem;
    }
}

/* Phones */

@media (max-width: 575.98px) {
    .nav-shell {
        padding-inline: 13px;
        border-radius: 15px;
    }

    .navbar-brand {
        width: 118px;
        height: 52px;
    }

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

    .dashboard-stage {
        min-height: 405px;
    }

    .dashboard-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .period-tabs {
        position: absolute;
        top: 13px;
        right: 13px;
    }

    .metric-grid {
        margin-top: 0.65rem;
    }

    .metric {
        padding: 10px;
    }

    .dashboard-lower {
        margin-top: 7px;
    }

    .trend-chart {
        height: 130px;
    }

    .square-one,
    .square-two {
        display: none;
    }

    .feature-card {
        min-height: 235px;
    }

    .security-grid article {
        padding-inline: 0;
    }

    .company-card {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .footer-links {
        display: grid;
        width: 100%;
        grid-template-columns:
            repeat(2, 1fr);
    }

    .back-to-top {
        right: 14px;
        bottom: 14px;
    }
}

/* Reduced motion accessibility */

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   Legal pages
   ========================================================= */

.legal-page {
    min-height: 100vh;
    background: linear-gradient(
            180deg,
            #f8fbff 0,
            #ffffff 31rem
    );
}

.legal-hero {
    position: relative;
    overflow: hidden;
    padding: 10.5rem 0 4.5rem;
    border-bottom: 1px solid rgba(15, 52, 104, 0.1);
    background: radial-gradient(
            circle at 82% 28%,
            rgba(19, 159, 246, 0.16),
            transparent 28rem
    ),
    radial-gradient(
            circle at 12% 80%,
            rgba(22, 199, 194, 0.1),
            transparent 24rem
    );
}

.legal-hero .container-xxl {
    position: relative;
    z-index: 2;
}

.legal-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 2rem;
    color: #667892;
    font-size: 0.88rem;
    font-weight: 600;
}

.legal-breadcrumb a {
    color: #087ed8;
    text-decoration: none;
    transition: color 160ms ease,
    text-decoration-color 160ms ease;
}

.legal-breadcrumb a:hover {
    color: #0759a5;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

.legal-breadcrumb span[aria-current="page"] {
    color: #243b5d;
}

.legal-hero h1 {
    max-width: 52rem;
    margin: 1.35rem 0 1rem;
    color: #08285e;
    font-size: clamp(2.75rem, 7vw, 5.4rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.legal-introduction {
    max-width: 48rem;
    margin: 0;
    color: #526681;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.75;
}

.legal-effective-date {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 1.6rem 0 0;
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(13, 132, 220, 0.16);
    border-radius: 999px;
    color: #4d6380;
    background: rgba(255, 255, 255, 0.74);
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 0.5rem 1.8rem rgba(25, 77, 137, 0.06);
    backdrop-filter: blur(0.8rem);
}

.legal-content-section {
    padding: 4.5rem 0 6rem;
}

.legal-navigation-card {
    position: sticky;
    top: 7.5rem;
    overflow: hidden;
    padding: 1.25rem;
    border: 1px solid rgba(24, 72, 126, 0.12);
    border-radius: 1.25rem;
    background: linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(245, 250, 255, 0.98)
    );
    box-shadow: 0 1.25rem 3rem rgba(17, 57, 108, 0.09);
}

.legal-navigation-label {
    display: block;
    margin-bottom: 0.85rem;
    padding: 0 0.6rem 0.8rem;
    border-bottom: 1px solid rgba(21, 66, 119, 0.09);
    color: #70819a;
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-navigation-card nav {
    display: grid;
    gap: 0.18rem;
}

.legal-navigation-card a {
    display: flex;
    min-height: 2.6rem;
    align-items: center;
    padding: 0.6rem;
    border-radius: 0.65rem;
    color: #3f5572;
    font-size: 0.84rem;
    font-weight: 650;
    line-height: 1.35;
    text-decoration: none;
    transition: color 150ms ease,
    background-color 150ms ease,
    transform 150ms ease;
}

.legal-navigation-card a:hover,
.legal-navigation-card a:focus-visible {
    color: #087ed8;
    background: rgba(15, 150, 238, 0.08);
    transform: translateX(0.2rem);
}

.legal-navigation-card a:focus-visible {
    outline: 2px solid rgba(10, 143, 229, 0.38);
    outline-offset: 2px;
}

.legal-document {
    overflow: hidden;
    padding: clamp(1.4rem, 4vw, 3.5rem);
    border: 1px solid rgba(24, 72, 126, 0.12);
    border-radius: 1.5rem;
    background: #ffffff;
    box-shadow: 0 1.5rem 4.5rem rgba(17, 57, 108, 0.09);
}

.legal-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 3.25rem;
    padding: 1.2rem;
    border: 1px solid rgba(12, 147, 229, 0.2);
    border-left: 0.28rem solid #0b97e8;
    border-radius: 0.9rem;
    background: linear-gradient(
            135deg,
            rgba(234, 247, 255, 0.92),
            rgba(239, 253, 252, 0.92)
    );
    color: #354e6e;
}

.legal-notice > span {
    display: grid;
    width: 1.8rem;
    height: 1.8rem;
    flex: 0 0 1.8rem;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #087ed8, #10b8c3);
    font-family: Georgia, serif;
    font-size: 0.95rem;
    font-weight: 800;
}

.legal-notice p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.7;
}

.legal-document section {
    position: relative;
    padding-bottom: 3.25rem;
    scroll-margin-top: 7.5rem;
}

.legal-document section + section {
    padding-top: 3.25rem;
    border-top: 1px solid rgba(20, 62, 112, 0.09);
}

.legal-document section:last-of-type {
    padding-bottom: 0;
}

.legal-section-number {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: #0a92e2;
    font-family: "Cascadia Code",
    Consolas,
    monospace;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.legal-document h2 {
    margin: 0 0 1.2rem;
    color: #0a2b60;
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.025em;
}

.legal-document p {
    margin: 0 0 1.15rem;
    color: #536783;
    font-size: 0.96rem;
    line-height: 1.82;
}

.legal-document p:last-child {
    margin-bottom: 0;
}

.legal-document strong {
    color: #173a6b;
    font-weight: 750;
}

.legal-document ul {
    display: grid;
    gap: 0.75rem;
    margin: 1.3rem 0 1.4rem;
    padding: 0;
    list-style: none;
}

.legal-document li {
    position: relative;
    padding-left: 1.7rem;
    color: #536783;
    font-size: 0.95rem;
    line-height: 1.7;
}

.legal-document li::before {
    position: absolute;
    top: 0.58rem;
    left: 0.1rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: linear-gradient(
            135deg,
            #087fe0,
            #19c0bd
    );
    box-shadow: 0 0 0 0.28rem rgba(12, 151, 223, 0.09);
    content: "";
}

.legal-document-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(20, 62, 112, 0.12);
}

.legal-document-footer p {
    margin: 0;
    color: #7889a0;
    font-size: 0.8rem;
    font-weight: 650;
}

/* =========================================================
   Legal page responsive layout
   ========================================================= */

@media (max-width: 991.98px) {
    .legal-hero {
        padding-top: 9rem;
        padding-bottom: 3.5rem;
    }

    .legal-content-section {
        padding-top: 3rem;
    }

    .legal-navigation-card {
        position: static;
    }

    .legal-navigation-card nav {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .legal-hero {
        padding-top: 7.8rem;
        padding-bottom: 2.8rem;
    }

    .legal-breadcrumb {
        margin-bottom: 1.5rem;
        font-size: 0.8rem;
    }

    .legal-hero h1 {
        margin-top: 1rem;
    }

    .legal-content-section {
        padding: 2rem 0 4rem;
    }

    .legal-navigation-card {
        padding: 1rem;
        border-radius: 1rem;
    }

    .legal-navigation-card nav {
        grid-template-columns:
            minmax(0, 1fr);
    }

    .legal-navigation-card a {
        min-height: 2.45rem;
    }

    .legal-document {
        border-radius: 1rem;
    }

    .legal-notice {
        margin-bottom: 2.4rem;
        padding: 1rem;
    }

    .legal-document section {
        padding-bottom: 2.5rem;
    }

    .legal-document section + section {
        padding-top: 2.5rem;
    }

    .legal-document-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .legal-document-footer .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .legal-navigation-card a {
        transition: none;
    }

    .legal-navigation-card a:hover,
    .legal-navigation-card a:focus-visible {
        transform: none;
    }
}

/* =========================================================
   404 error page
   ========================================================= */

.error-page {
    min-height: 100vh;
    background: #f7fbff;
}

.error-main {
    position: relative;
    display: flex;
    min-height: calc(100vh - 13rem);
    align-items: center;
    overflow: hidden;
    padding: 10.5rem 0 6rem;
    background: radial-gradient(
            circle at 78% 30%,
            rgba(12, 153, 239, 0.18),
            transparent 29rem
    ),
    radial-gradient(
            circle at 20% 82%,
            rgba(20, 195, 190, 0.11),
            transparent 26rem
    ),
    linear-gradient(
            180deg,
            #f9fcff,
            #ffffff
    );
}

.error-container {
    position: relative;
    z-index: 3;
}

.error-orbit {
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(13, 169, 225, 0.24);
    border-radius: 50%;
    pointer-events: none;
}

.error-orbit-one {
    top: 14%;
    right: -14rem;
    width: 45rem;
    height: 45rem;
    transform: rotate(-18deg);
}

.error-orbit-two {
    right: 8%;
    bottom: -16rem;
    width: 32rem;
    height: 32rem;
    border-color: rgba(25, 198, 190, 0.2);
}

.error-code {
    margin: 1.25rem 0 -0.5rem;
    color: transparent;
    background: linear-gradient(
            120deg,
            #073878 5%,
            #078ded 52%,
            #19beb8 100%
    );
    background-clip: text;
    font-size: clamp(5.5rem, 13vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.085em;
    line-height: 0.88;
    -webkit-background-clip: text;
}

.error-main h1 {
    max-width: 43rem;
    margin: 1.35rem 0 1.25rem;
    color: #08285e;
    font-size: clamp(2.15rem, 5vw, 4rem);
    font-weight: 850;
    letter-spacing: -0.05em;
    line-height: 1.06;
}

.error-description {
    max-width: 41rem;
    margin: 0;
    color: #526781;
    font-size: clamp(1rem, 2vw, 1.14rem);
    line-height: 1.75;
}

.error-actions {
    margin-top: 2rem;
}

/* =========================================================
   404 visual
   ========================================================= */

.error-visual {
    position: relative;
    width: min(100%, 38rem);
    margin-inline: auto;
    padding: 2.4rem;
}

.error-visual::before {
    position: absolute;
    z-index: -1;
    inset: 8% 5%;
    border-radius: 50%;
    background: radial-gradient(
            circle,
            rgba(33, 185, 237, 0.3),
            rgba(28, 193, 191, 0.1) 42%,
            transparent 70%
    );
    filter: blur(1.8rem);
    content: "";
}

.error-glass-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 1.65rem;
    background: linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.92),
            rgba(235, 248, 255, 0.78)
    );
    box-shadow: 0 2rem 5rem rgba(14, 75, 137, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(1.3rem);
}

.error-glass-card::before {
    position: absolute;
    top: -6rem;
    right: -5rem;
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    background: rgba(20, 174, 235, 0.11);
    content: "";
}

.error-card-header {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 3rem;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid rgba(24, 75, 132, 0.1);
    color: #25466e;
    font-size: 0.78rem;
    font-weight: 750;
}

.error-status-light {
    width: 0.62rem;
    height: 0.62rem;
    flex: 0 0 0.62rem;
    border-radius: 50%;
    background: #19c2ba;
    box-shadow: 0 0 0 0.3rem rgba(25, 194, 186, 0.12);
}

.error-card-code {
    margin-left: auto;
    padding: 0.32rem 0.55rem;
    border-radius: 999px;
    color: #087ed8;
    background: rgba(9, 139, 224, 0.09);
    font-family: "Cascadia Code",
    Consolas,
    monospace;
    font-size: 0.65rem;
}

.error-route {
    position: relative;
    display: flex;
    min-height: 9rem;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.route-node {
    position: relative;
    z-index: 2;
    display: grid;
    min-width: 6.5rem;
    min-height: 3.2rem;
    place-items: center;
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(18, 125, 205, 0.17);
    border-radius: 0.8rem;
    color: #24496f;
    background: rgba(255, 255, 255, 0.88);
    font-size: 0.76rem;
    font-weight: 750;
    box-shadow: 0 0.8rem 2rem rgba(14, 71, 130, 0.09);
}

.route-node-missing {
    min-width: 3.2rem;
    border-color: rgba(12, 151, 229, 0.35);
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(
            135deg,
            #087fdc,
            #14babd
    );
    font-size: 1.25rem;
}

.route-line {
    position: relative;
    width: 38%;
    height: 2px;
    background: linear-gradient(
            90deg,
            rgba(9, 129, 216, 0.7),
            rgba(20, 188, 188, 0.2)
    );
}

.route-line::after {
    position: absolute;
    top: 50%;
    right: -0.2rem;
    width: 0.52rem;
    height: 0.52rem;
    border-top: 2px solid #16aebc;
    border-right: 2px solid #16aebc;
    transform: translateY(-50%) rotate(45deg);
    content: "";
}

.error-message-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem;
    border: 1px solid rgba(13, 140, 221, 0.14);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.78);
}

.error-message-icon {
    display: grid;
    width: 2.2rem;
    height: 2.2rem;
    flex: 0 0 2.2rem;
    place-items: center;
    border-radius: 0.65rem;
    color: #ffffff;
    background: linear-gradient(
            135deg,
            #087fdc,
            #16babb
    );
    font-weight: 900;
}

.error-message-card div {
    display: grid;
    gap: 0.2rem;
}

.error-message-card strong {
    color: #173b69;
    font-size: 0.84rem;
}

.error-message-card small {
    color: #6c7f98;
    font-size: 0.69rem;
    line-height: 1.45;
}

.error-destination-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 1rem;
}

.error-destination-grid span {
    display: grid;
    min-height: 3rem;
    place-items: center;
    padding: 0.45rem;
    border: 1px solid rgba(24, 75, 132, 0.1);
    border-radius: 0.65rem;
    color: #5f7591;
    background: rgba(247, 251, 255, 0.8);
    font-size: 0.63rem;
    font-weight: 700;
    text-align: center;
}

.error-floating-square {
    position: absolute;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    background: linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.85),
            rgba(214, 244, 255, 0.48)
    );
    box-shadow: 0 1.2rem 3rem rgba(12, 96, 160, 0.13);
    backdrop-filter: blur(0.8rem);
}

.error-square-one {
    top: 0;
    right: 12%;
    width: 4.5rem;
    height: 4.5rem;
    transform: rotate(7deg);
}

.error-square-two {
    bottom: 0.8rem;
    left: 0;
    width: 5.5rem;
    height: 5.5rem;
    transform: rotate(-8deg);
}

/* =========================================================
   404 responsive layout
   ========================================================= */

@media (max-width: 991.98px) {
    .error-main {
        min-height: auto;
        padding-top: 9rem;
        text-align: center;
    }

    .error-main .legal-breadcrumb {
        justify-content: center;
    }

    .error-main h1,
    .error-description {
        margin-right: auto;
        margin-left: auto;
    }

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

    .error-visual {
        max-width: 35rem;
        margin-top: 1rem;
    }
}

@media (max-width: 575.98px) {
    .error-main {
        padding: 7.8rem 0 4rem;
    }

    .error-code {
        margin-top: 1rem;
    }

    .error-main h1 {
        margin-top: 1rem;
    }

    .error-actions .btn {
        width: 100%;
    }

    .error-visual {
        padding: 1.4rem 0.4rem;
    }

    .error-glass-card {
        padding: 1rem;
        border-radius: 1.15rem;
    }

    .error-card-header {
        padding-right: 0.25rem;
        padding-left: 0.25rem;
    }

    .error-route {
        min-height: 7.5rem;
        padding: 1rem 0.25rem;
    }

    .route-node {
        min-width: 5.3rem;
        font-size: 0.66rem;
    }

    .route-node-missing {
        min-width: 3.2rem;
    }

    .route-line {
        width: 25%;
    }

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

    .error-floating-square {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .error-floating-square {
        transform: none;
    }
}
