@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --navy: #07172f;
    --navy2: #0b2144;
    --blue: #0969e8;
    --text: #142039;
    --muted: #64748b;
    --border: #dfe5ed;
    --soft: #f6f9fc;
    --green: #159447;
    --red: #df3b3b;
    --warning: #d68a00;
    --shadow: 0 12px 32px rgba(20, 42, 72, 0.08);
}

/* =========================
   BASIC
   ========================= */
* {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

img {
    display: block;
    max-width: 100%;
}
button,
input,
select,
a {
    font: inherit;
}

button {
    cursor: pointer;
}

/* =========================
   HEADER
   ========================= */

.site-header {
    height: 82px;
    padding: 0 4.2%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--navy);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand-name {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.brand-name strong {
    color: #fff;
}

.brand-name b {
    color: #1683ff;
    margin-left: 6px;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.top-nav a {
    color: #d9e1ed;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.7px;
}

.top-nav a:hover {
    color: #fff;
}

.mobile-menu {
    display: none;
    border: 0;
    background: none;
    color: #fff;
    font-size: 25px;
}

/* =========================
   HERO
   ========================= */

.hero {
    position: relative;
    min-height: 620px;
    padding: 65px 4.2% 55px;

    display: grid;
    grid-template-columns: 48% 52%;
    grid-template-areas: "text image";

    align-items: center;

    background: #fff;
    overflow: hidden;
}

/* LEFT SIDE */
.hero-copy {
    grid-area: text;

    width: 100%;
    max-width: 620px;

    padding-right: 25px;

    z-index: 2;
}

.eyebrow {
    color: #59708f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.hero h1 {
    margin: 18px 0 10px;

    font-size: clamp(44px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -2px;
}

.hero-subtitle {
    margin: 0 0 12px;

    color: #526a87;

    font-size: 20px;
    line-height: 1.55;
}

.hero-text {
    max-width: 540px;

    color: #6a7c93;

    font-size: 15px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 14px 0;

    font-size: 15px;
}

.feature-list li span {
    width: 20px;
    height: 20px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--blue);
    color: #fff;

    font-size: 12px;
    font-weight: 800;
}

/* =========================
   PRODUCT IMAGE — RIGHT
   ========================= */

.product-stage {
    grid-area: image;

    width: 100%;
    min-width: 0;
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    position: relative;

    z-index: 1;
}

.product-glow {
    position: absolute;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background: #edf5ff;

    right: 20px;

    z-index: 0;
}

.product-stage img {
    position: relative;
    z-index: 1;

    display: block;

    width: min(100%, 680px);
    max-width: 680px;

    height: auto;

    margin: 0;

    object-fit: contain;

    filter: drop-shadow(
        0 20px 30px rgba(22, 43, 75, 0.15)
    );
}

/* Remove old hero status card */
.hero > .device-card {
    display: none;
}

/* Remove labels below image */
.product-labels {
    display: none;
}

/* =========================
   BUTTONS
   ========================= */

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    border-radius: 8px;
    padding: 14px 20px;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;

    border: 1px solid var(--blue);
    transition: 0.2s ease;
}

.btn-primary {
    color: #fff;
    background: var(--blue);
}

.btn-primary:hover {
    background: #0759c9;
    transform: translateY(-1px);
}

.btn-outline {
    color: var(--blue);
    background: #fff;
}

.btn-outline:hover {
    background: #f1f7ff;
}

/* =========================
   ICONS
   ========================= */

.line-icon svg,
.product-labels svg,
.feature-icon svg,
.metric-icon svg,
.side-link svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.line-icon {
    color: var(--blue);
}

/* =========================
   FEATURE STRIP
   ========================= */

.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 1px;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: var(--border);
}

.feature-strip > div {
    padding: 28px;

    background: #fff;

    display: grid;
    grid-template-columns: 34px 1fr;

    column-gap: 10px;
}

.feature-icon {
    grid-row: span 2;

    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    color: var(--blue);
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-strip b {
    font-size: 13px;
}

.feature-strip small {
    color: var(--muted);
    margin-top: 4px;
}

/* =========================
   PRODUCT INFORMATION
   ========================= */

.product-info-section {
    padding: 88px 4.5% 70px;

    background: #f8fafc;

    border-top: 1px solid #e4eaf2;
}

.product-heading {
    margin-bottom: 34px;
}

.section-lead,
.dashboard-lead {
    margin: 10px 0 0;

    max-width: 760px;

    color: #5d7088;

    font-size: 16px;
    line-height: 1.65;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.info-card {
    background: #fff;

    border: 1px solid #e1e8f0;
    border-radius: 14px;

    padding: 24px;

    box-shadow: 0 8px 25px rgba(11, 35, 67, 0.045);
}

.info-icon {
    width: 38px;
    height: 38px;

    border-radius: 10px;

    background: #edf5ff;
    color: #086be9;

    display: grid;
    place-items: center;

    font-weight: 800;
    font-size: 12px;

    margin-bottom: 18px;
}

.info-card h3 {
    margin: 0 0 9px;

    color: #14213a;

    font-size: 18px;
}

.info-card p {
    margin: 0;

    color: #64758b;

    font-size: 14px;
    line-height: 1.6;
}

.info-card ul {
    margin: 17px 0 0;

    padding: 0;

    list-style: none;
}

.info-card li {
    position: relative;

    padding: 7px 0 7px 18px;

    color: #1c3454;

    font-size: 13px;

    border-top: 1px solid #eef2f6;
}

.info-card li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #0874ef;

    font-weight: 800;
}

.spec-strip {
    margin-top: 24px;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    background: #071a34;

    border-radius: 14px;

    overflow: hidden;
}

.spec-strip > div {
    padding: 19px 20px;

    border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.spec-strip > div:last-child {
    border-right: 0;
}

.spec-strip span {
    display: block;

    color: #91a5bf;

    font-size: 10px;
    letter-spacing: 0.12em;
    font-weight: 700;

    margin-bottom: 6px;
}

.spec-strip b {
    color: #fff;
    font-size: 13px;
}

.spec-note {
    margin: 12px 2px 0;

    color: #8a99aa;

    font-size: 11px;
}

/* =========================
   DASHBOARD
   ========================= */

.dashboard-section {
    background: var(--soft);

    padding: 75px 4.2%;
    scroll-margin-top: 30px;
}

.section-heading {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    margin-bottom: 25px;
}

.section-heading h2,
.about-section h2,
.contact-section h2 {
    margin: 10px 0 0;

    font-size: clamp(28px, 4vw, 42px);

    letter-spacing: -1px;
}

.connection-pill {
    color: var(--green);

    font-size: 12px;
    font-weight: 800;
}

.connection-pill i {
    display: inline-block;

    width: 7px;
    height: 7px;

    margin-right: 5px;

    border-radius: 50%;

    background: var(--green);
}

.dashboard-shell {
    display: grid;
    grid-template-columns: 210px 1fr;

    background: #fff;

    border: 1px solid var(--border);
    border-radius: 14px;

    overflow: hidden;

    box-shadow: var(--shadow);
}

.sidebar {
    padding: 18px 10px;

    background: var(--navy);

    min-height: 620px;
}

.sidebar-title {
    color: #fff;

    font-weight: 800;
    font-size: 12px;

    letter-spacing: 1px;

    padding: 10px 12px 18px;
}

.side-link {
    width: 100%;

    border: 0;
    background: transparent;

    color: #c5d0df;

    padding: 11px 12px;

    border-radius: 6px;

    text-align: left;

    font-size: 11px;
    font-weight: 600;

    display: flex;
    gap: 9px;
    align-items: center;
}

.side-link:hover,
.side-link.active {
    color: #fff;
    background: var(--blue);
}

.side-link svg {
    width: 15px;
    height: 15px;
}

.dashboard-content {
    padding: 18px;

    min-width: 0;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);

    gap: 10px;
}

.metric-card,
.panel-card {
    background: #fff;

    border: 1px solid var(--border);
    border-radius: 14px;
}

.metric-card {
    min-height: 92px;

    padding: 14px;

    position: relative;

    box-shadow: var(--shadow);
}

.metric-icon {
    position: absolute;

    right: 12px;
    top: 12px;

    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    color: var(--blue);
}

.metric-card small {
    display: block;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.7px;

    color: #718198;
}

.metric-card strong {
    display: block;

    margin-top: 8px;

    font-size: 15px;
}

.metric-card strong.green {
    color: var(--green);
}

.metric-card em {
    display: block;

    margin-top: 5px;

    color: #9aa7b7;

    font-size: 9px;

    font-style: normal;
}

.panel-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;

    gap: 12px;

    margin-top: 12px;
}

.panel-card {
    padding: 18px;

    box-shadow: none;
}

.panel-title {
    font-size: 11px;
    font-weight: 800;

    margin-bottom: 14px;
}

.chart {
    height: 210px;

    position: relative;

    overflow: hidden;

    background: linear-gradient(
        180deg,
        #fff,
        #fbfdff
    );

    border-top: 1px solid #edf1f5;
}

.chart svg {
    width: 100%;
    height: 100%;
}

.activity {
    list-style: none;

    padding: 0;
    margin: 0;
}

.activity li {
    padding: 11px 0;

    border-bottom: 1px solid #edf1f5;

    color: #64748b;

    font-size: 10px;
}

.activity b {
    color: #273750;
}

.table-wrap {
    overflow-x: auto;
}

.data-table {
    width: 100%;

    border-collapse: collapse;

    font-size: 10px;
}

.data-table th,
.data-table td {
    padding: 10px 8px;

    border-bottom: 1px solid #edf1f5;

    text-align: left;

    white-space: nowrap;
}

.data-table th {
    color: #65778f;

    font-size: 9px;
}

.data-table td {
    color: #273750;
}

.toolbar {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;

    margin-bottom: 12px;
}

.small-btn,
.input {
    border: 1px solid var(--border);

    border-radius: 6px;

    background: #fff;

    padding: 8px 10px;

    font-size: 10px;
}

.small-btn.primary {
    background: var(--blue);

    color: #fff;

    border-color: var(--blue);
}

.small-btn.danger {
    color: var(--red);

    border-color: #f2bcbc;
}

.dtc-code {
    color: #d62e2e;

    font-weight: 900;

    font-size: 22px;
}

.detail-box {
    padding: 15px;

    border: 1px solid var(--border);

    border-radius: 9px;
}

.detail-box p {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.6;
}

/* =========================
   CAN MONITOR
   ========================= */

.monitor-toolbar {
    display: flex;

    align-items: center;

    gap: 8px;

    flex-wrap: wrap;

    margin-bottom: 14px;
}

.monitor-toolbar .input {
    min-width: 145px;
}

.monitor-state {
    margin-left: auto;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: var(--green);

    font-size: 10px;

    font-weight: 800;
}

.monitor-state i {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #18a456;
}

.monitor-summary {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 9px;

    margin-bottom: 12px;
}

.monitor-summary div {
    padding: 11px 12px;

    border: 1px solid #e5ebf2;

    border-radius: 8px;

    background: #fbfdff;
}

.monitor-summary span {
    display: block;

    color: #7a899c;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.07em;
}

.monitor-summary b {
    display: block;

    color: #1c2c44;

    margin-top: 5px;

    font-size: 14px;
}

.frame-rx {
    color: #1b6fce !important;

    font-weight: 800;
}

.frame-tx {
    color: #8055bb !important;

    font-weight: 800;
}

.byte {
    color: #263d5c;

    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.id-chip {
    display: inline-block;

    min-width: 46px;

    padding: 3px 6px;

    border-radius: 4px;

    background: #eef5ff;

    color: #075fc9;

    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;

    font-weight: 800;
}

/* =========================
   ABOUT / CONTACT / FOOTER
   ========================= */

.about-section {
    padding: 90px 10%;

    text-align: center;
}

.about-section h2 {
    max-width: 850px;

    margin: 14px auto;
}

.about-section p {
    max-width: 650px;

    margin: auto;

    color: var(--muted);

    line-height: 1.7;
}

.contact-section {
    margin: 0 4.2% 70px;

    padding: 42px;

    border-radius: 14px;

    background: var(--navy);

    color: #fff;

    display: flex;

    justify-content: space-between;
    align-items: center;
}

.contact-section h2 {
    color: #fff;
}

footer {
    padding: 25px 4.2%;

    background: #051329;

    color: #9daabe;

    display: flex;

    justify-content: space-between;

    font-size: 11px;
}

.toast {
    position: fixed;

    right: 22px;
    bottom: 22px;

    background: var(--navy);

    color: #fff;

    padding: 13px 17px;

    border-radius: 8px;

    opacity: 0;

    pointer-events: none;

    transform: translateY(12px);

    transition: 0.25s;

    font-size: 12px;

    z-index: 1000;
}

.toast.show {
    opacity: 1;

    transform: translateY(0);
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 1050px) {

    .hero {
        grid-template-columns: 48% 52%;
    }

    .product-stage {
        min-height: 470px;
    }

    .product-stage img {
        width: min(100%, 600px);
    }

    .product-glow {
        width: 430px;
        height: 430px;
    }

    .metric-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .spec-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 760px) {

    .site-header {
        height: 70px;
        padding: 0 20px;
    }

    .brand-logo {
        width: 36px;
        height: 36px;
    }

    .brand-name {
        font-size: 19px;
    }

    .top-nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        min-height: auto;

        display: flex;
        flex-direction: column;

        padding: 45px 20px 50px;
    }

    .hero-copy {
        width: 100%;
        max-width: none;
        padding-right: 0;
    }

    .product-stage {
        position: relative;

        width: 100%;
        min-height: 360px;

        margin-top: 25px;

        display: flex;

        align-items: center;
        justify-content: center;
    }

    .product-stage img {
        width: min(100%, 380px);
        max-width: 380px;

        margin: 0 auto;
    }

    .product-glow {
        width: 300px;
        height: 300px;

        right: auto;
    }

    .feature-strip {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-shell {
        grid-template-columns: 1fr;
    }

    .sidebar {
        min-height: auto;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 3px;
    }

    .sidebar-title {
        grid-column: 1 / -1;
    }

    .metric-grid {
        grid-template-columns: 1fr 1fr;
    }

    .panel-grid {
        grid-template-columns: 1fr;
    }

    .section-heading,
    .contact-section {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;
    }

    .contact-section {
        padding: 30px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .spec-strip {
        grid-template-columns: 1fr 1fr;
    }

    .monitor-summary {
        grid-template-columns: 1fr 1fr;
    }

    .monitor-state {
        margin-left: 0;
        width: 100%;
    }

    footer {
        flex-direction: column;
        gap: 8px;
    }
}

/* =========================
   SMALL MOBILE
   ========================= */

@media (max-width: 450px) {

    .brand-logo {
        width: 34px;
        height: 34px;
    }

    .brand-name {
        font-size: 17px;
    }

    .hero,
    .dashboard-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .feature-strip {
        grid-template-columns: 1fr;
    }

    .metric-grid {
        grid-template-columns: 1fr;
    }

    .product-stage img {
        max-width: 340px;
    }

    .product-glow {
        width: 280px;
        height: 280px;
    }

    .spec-strip {
        grid-template-columns: 1fr;
    }

    .spec-strip > div {
        border-right: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.09);
    }

    .spec-strip > div:first-child {
        border-top: 0;
    }
}
/* ========================================
   CAN VISION IN ACTION
   ======================================== */
/* =========================================================
   CAN VISION IN ACTION
   Laptop + Smartphone POV
   ========================================================= */

.usage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
}

.usage-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;

    box-shadow: var(--shadow);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.usage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(20, 42, 72, 0.12);
}


/* =========================================================
   LANDSCAPE POV IMAGE
   ========================================================= */

.usage-image {
    width: 100%;
    height: 360px;

    overflow: hidden;

    background: #0b1628;
}

.usage-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   CARD TEXT
   ========================================================= */

.usage-content {
    padding: 24px;
}

.usage-content .eyebrow {
    color: var(--blue);
}

.usage-content h3 {
    margin: 8px 0 10px;

    color: var(--text);

    font-size: 22px;
    line-height: 1.25;
}

.usage-content p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FEATURE TAGS
   ========================================================= */

.usage-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 18px;
}

.usage-tags span {
    padding: 7px 10px;

    border-radius: 6px;

    background: #edf5ff;

    color: #075fc9;

    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .usage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .usage-image {
        height: 390px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .usage-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 24px;
    }

    .usage-image {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .usage-image img {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }

    .usage-content {
        padding: 20px;
    }

    .usage-content h3 {
        font-size: 20px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 450px) {

    .usage-image {
        aspect-ratio: 16 / 10;
    }

    .usage-content {
        padding: 18px;
    }
}
/* =====================================================
   MOBILE CAN VISION HERO — FINAL
   ===================================================== */

@media screen and (max-width: 760px) {

    .hero {
        width: 100%;
        max-width: 100%;
        min-height: auto;

        display: flex;
        flex-direction: column;

        padding: 40px 18px 40px;

        overflow: hidden;
    }

    /* Text */
    .hero-copy {
        width: 100%;
        max-width: 100%;

        padding: 0;
        margin: 0;
    }

    .hero h1 {
        width: 100%;

        margin: 16px 0 10px;

        font-size: 42px;
        line-height: 1.05;

        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        width: 100%;

        font-size: 18px;
        line-height: 1.45;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;

        font-size: 14px;
        line-height: 1.65;
    }

    .feature-list {
        width: 100%;
        margin: 22px 0;
    }

    .feature-list li {
        width: 100%;

        font-size: 14px;
        line-height: 1.45;
    }


    /* Product image */
    .product-stage {
        position: relative;

        width: 100%;
        max-width: 100%;

        min-height: 320px;
        height: 320px;

        margin-top: 15px;

        display: flex;
        align-items: center;
        justify-content: center;

        overflow: hidden;
    }

    .product-stage .product-glow {
        width: 280px;
        height: 280px;

        left: 50%;
        right: auto;
        top: 50%;

        transform: translate(-50%, -50%);
    }

    .product-stage img {
        position: relative;

        width: 100%;
        max-width: 350px;

        height: auto;
        max-height: 290px;

        margin: 0 auto;

        object-fit: contain;
    }
}
/* =========================================================
   MATCH MAIN YANTRIC THINGS HEADER
   ========================================================= */

.site-header {
    height: 82px !important;
    padding: 0 4.2% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #07172f !important;
    color: #fff !important;
    position: sticky !important;
    top: 0;
    z-index: 100;
}

.header-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    flex-shrink: 0;
}

.brand-mark {
    width: 36px !important;
    height: 36px !important;
    object-fit: contain;
    display: block;
}

.brand-text {
    margin-left: 10px;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    white-space: nowrap;
}

.brand-text strong {
    color: #ffffff !important;
}

.brand-text em {
    color: #1e8bff !important;
    font-style: normal !important;
}

.site-nav {
    display: flex !important;
    align-items: center !important;
    gap: 38px !important;
}

.site-nav a {
    color: #d9e1ed !important;
    text-decoration: none !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.7px !important;
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: #ffffff !important;
}

.nav-toggle {
    display: none;
}
