:root {
    --navy: #081b33;
    --navy2: #0f3d68;
    --blue: #2563eb;
    --cyan: #00c2ff;
    --orange: #d79a2b;
    --green: #22c55e;
    --amber: #f59e0b;
    --red: #ef4444;
    --text: #0f172a;
    --muted: #64748b;
    --bg: #f8fafc;
    --white: #fff;
    --line: #e2e8f0;
    --shadow: 0 20px 60px rgba(8, 27, 51, 0.14);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        Segoe UI,
        Arial,
        sans-serif;
    color: var(--text);
    background: var(--bg);
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    width: min(1180px, 92vw);
    margin: auto;
}
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4vw;
    color: #fff;
    transition: 0.3s;
    background: transparent;
}
.nav.scrolled {
    background: rgba(8, 27, 51, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    min-width: 245px;
    max-width: 320px;
    overflow: hidden;
}
.brand-mark-img {
    height: 46px;
    width: 46px;
    min-width: 46px;
    object-fit: contain;
    display: block;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    letter-spacing: 0.02em;
}
.brand-text strong {
    font-size: 21px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.08em;
}
.brand-text small {
    font-size: 10.5px;
    font-weight: 700;
    color: #dbeafe;
    letter-spacing: 0.03em;
    margin-top: 4px;
    white-space: nowrap;
}
.brand-logo {
    height: 44px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}
.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    display: grid;
    place-items: center;
    color: white;
    font-weight: 900;
}
.nav-links {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #dbeafe;
}
.nav-links a:hover {
    color: #fff;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.login {
    color: #dbeafe;
}
.hamburger {
    display: none;
    background: none;
    border: 0;
    color: white;
    font-size: 24px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 700;
    transition: 0.25s;
    border: 1px solid transparent;
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(135deg, var(--orange), #fb923c);
    color: white;
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.28);
}
.btn-primary:hover {
    transform: translateY(-2px);
}
.btn-ghost {
    border-color: rgba(255, 255, 255, 0.25);
    color: white;
    background: rgba(255, 255, 255, 0.08);
}
.btn-lg {
    padding: 15px 24px;
}
.section {
    padding: 110px 0;
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
    background: linear-gradient(135deg, #07172c, #0f3d68 55%, #0b5bbf);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.eyebrow {
    font-size: 13px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-weight: 800;
    color: #93c5fd;
}
.eyebrow.dark {
    color: var(--blue);
}
h1 {
    font-size: clamp(44px, 6vw, 76px);
    line-height: 0.98;
    margin: 14px 0 24px;
    letter-spacing: -0.05em;
}
h1 span {
    color: #e0f2fe;
}
h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    margin: 0 0 20px;
    letter-spacing: -0.04em;
}
h3 {
    margin: 0 0 10px;
}
.hero-text,
.section-sub {
    font-size: 18px;
    line-height: 1.7;
    color: #dbeafe;
    text-align: justify;
}
.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 30px 0;
}
.trust-strip {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.trust-strip span {
    font-size: 13px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 8px 12px;
    border-radius: 999px;
}
.control-room {
    position: relative;
    min-height: 520px;
}
.panel {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}
.main-panel {
    padding: 24px;
    position: absolute;
    inset: 70px 35px 70px 35px;
}
.panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-weight: 800;
}
.live {
    font-size: 12px;
    background: #16a34a;
    padding: 5px 10px;
    border-radius: 999px;
}
.metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.battery {
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    overflow: hidden;
    margin: 10px 0;
    background: rgba(0, 0, 0, 0.16);
}
.battery i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--green), #86efac);
    border-radius: 999px;
}
.battery.amber i {
    background: linear-gradient(90deg, var(--amber), #fde68a);
}
.risk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 25px 0;
}
.risk {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
}
.risk b {
    display: block;
    font-size: 16px;
    margin-top: 5px;
}
.risk.high b {
    color: #fecaca;
}
.risk.low b {
    color: #bbf7d0;
}
.risk.warn b {
    color: #fde68a;
}
.workflow {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.16);
    border-radius: 20px;
    padding: 16px;
}
.workflow span {
    background: rgba(255, 255, 255, 0.12);
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 12px;
}
.workflow em {
    width: 26px;
    height: 2px;
    background: #93c5fd;
}
.float-card {
    position: absolute;
    background: #fff;
    color: var(--text);
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: var(--shadow);
    font-size: 13px;
}
.card-1 {
    right: 0;
    top: 35px;
}
.card-2 {
    left: 0;
    bottom: 65px;
}
.card-3 {
    right: 40px;
    bottom: 28px;
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.problem,
.pricing {
    background: white;
}
.problem p,
.story p,
.intelligence p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    text-align: justify;
}
.story-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
}
.story {
    padding: 24px;
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow);
}
.story span {
    display: block;
    padding: 13px;
    margin: 10px 0;
    border-radius: 14px;
    background: #f1f5f9;
}
.story.bad h3 {
    color: var(--red);
}
.story.good h3 {
    color: var(--green);
}
.center {
    text-align: center;
}
.center .section-sub {
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}
.feature-card {
    background: white;
    padding: 28px;
    border-radius: 26px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    transition: 0.25s;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 80px rgba(37, 99, 235, 0.18);
}
.feature-card span {
    font-size: 28px;
}
.feature-card p {
    color: var(--muted);
    line-height: 1.6;
}
.cta-block {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy), var(--navy2));
    color: white;
}
.cta-block.alt {
    background: linear-gradient(135deg, #0f3d68, var(--blue));
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.cta-inner h2 {
    font-size: 36px;
}
.cta-inner p {
    color: #dbeafe;
    max-width: 520px;
}
.timeline {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 40px 0;
}
.timeline div {
    min-width: 120px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 999px;
    padding: 16px;
    text-align: center;
    font-weight: 800;
}
.pipeline {
    display: grid;
    gap: 14px;
}
.pipeline span {
    padding: 18px 22px;
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--blue);
    font-weight: 800;
}
.check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}
.check-list li {
    margin: 12px 0;
    color: var(--text);
    font-weight: 700;
}
.check-list li:before {
    content: "✓";
    color: var(--green);
    margin-right: 10px;
}
.knowledge {
    background: #eef6ff;
}
.search-demo {
    margin: 28px auto 35px;
    max-width: 620px;
    background: white;
    border-radius: 999px;
    padding: 20px 28px;
    text-align: left;
    box-shadow: var(--shadow);
    color: var(--muted);
}
.knowledge-grid,
.industry-grid,
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.knowledge-grid div,
.industry-grid div,
.video-card {
    background: white;
    border-radius: 22px;
    padding: 24px;
    box-shadow: var(--shadow);
    font-weight: 800;
}
.industries {
    background: white;
}
.industry-grid div {
    min-height: 100px;
    display: flex;
    align-items: end;
    background: linear-gradient(135deg, #fff, #e0f2fe);
}
.video-card {
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    background: linear-gradient(135deg, var(--navy), var(--navy2));
    color: white;
}
.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    max-width: 850px;
}
.compare div {
    background: white;
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 28px;
}
.compare span {
    display: block;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
    color: var(--muted);
}
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.price-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
}
.price-card.featured {
    transform: scale(1.04);
    border-color: var(--blue);
}
.price-card label {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--blue);
    color: white;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
}
.price-card b {
    font-size: 36px;
}
.price-card li {
    margin: 12px 0;
    color: var(--muted);
}
.story {
    background: #f8fafc;
}
.final-cta {
    padding: 120px 0;
    background: radial-gradient(circle at top, #2563eb, var(--navy));
    color: white;
}
.final-cta p {
    color: #dbeafe;
}
.demo-form {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 30px;
}
.demo-form input,
.demo-form select {
    padding: 15px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    color: white;
}
.demo-form input::placeholder {
    color: #dbeafe;
}
.footer {
    background: #061326;
    color: #dbeafe;
    padding: 60px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer a {
    display: block;
    color: #93c5fd;
    margin: 10px 0;
}
.to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    background: var(--orange);
    color: white;
    font-size: 22px;
    box-shadow: var(--shadow);
    display: none;
    cursor: pointer;
    z-index: 60;
}
.to-top.show {
    display: block;
}
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: 0.7s;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
@media (max-width: 960px) {
    .nav-links {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--navy);
        display: none;
        flex-direction: column;
        padding: 24px;
    }
    .nav-links.open {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .login {
        display: none;
    }
    .hero-grid,
    .two-col {
        grid-template-columns: 1fr;
    }
    .control-room {
        min-height: 460px;
    }
    .feature-grid,
    .knowledge-grid,
    .industry-grid,
    .video-grid,
    .price-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .demo-form {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 620px) {
    .brand {
        min-width: 155px;
        max-width: 210px;
    }
    .brand-mark-img {
        height: 38px;
        width: 38px;
        min-width: 38px;
    }
    .brand-text strong {
        font-size: 17px;
    }
    .brand-text small {
        font-size: 9px;
    }
    .brand-logo {
        height: 36px;
    }
    h1 {
        font-size: 42px;
    }
    .feature-grid,
    .knowledge-grid,
    .industry-grid,
    .video-grid,
    .price-grid,
    .story-compare,
    .risk-grid,
    .metric-row {
        grid-template-columns: 1fr;
    }
    .nav-actions .btn {
        display: none;
    }
    .hero {
        padding-top: 90px;
    }
    .main-panel {
        inset: 60px 0 80px 0;
    }
    .float-card {
        position: relative;
        margin: 10px 0;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }
    .control-room {
        min-height: auto;
    }
    .panel.main-panel {
        position: relative;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* === HARD LOGO FIX v4 === */
.nav {
    height: 72px !important;
    padding: 0 4vw !important;
}
.brand.brand-compact {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-width: 230px !important;
    max-width: 270px !important;
    height: 72px !important;
    overflow: visible !important;
}
.brand-symbol {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
    object-fit: contain !important;
    display: block !important;
    flex: 0 0 38px !important;
}
.brand-wordmark {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.05 !important;
}
.brand-wordmark strong {
    font-size: 21px !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em !important;
    color: #fff !important;
}
.brand-wordmark small {
    font-size: 10px !important;
    font-weight: 700 !important;
    color: #dbeafe !important;
    margin-top: 4px !important;
    white-space: nowrap !important;
    letter-spacing: 0.02em !important;
}
.brand-mark-img,
.brand-logo {
    display: none !important;
}
@media (max-width: 760px) {
    .brand.brand-compact {
        min-width: 180px;
        max-width: 210px;
    }
    .brand-symbol {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
    }
    .brand-wordmark strong {
        font-size: 17px !important;
    }
    .brand-wordmark small {
        font-size: 8.5px !important;
    }
}
.menu-active{
	color:white;
}