* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #edf4ff;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 34rem),
        radial-gradient(circle at top right, rgba(129, 140, 248, 0.16), transparent 32rem),
        #07111f;
    line-height: 1.6;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(7, 17, 31, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.logo img{
    height:12vh;
    object-fit:cover;
}

.logo span:last-child {
    color: #38bdf8;
}

.logo-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.25);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    color: #b9c7dc;
    font-size: 0.95rem;
}

.nav-links a {
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #38bdf8;
}

.menu-toggle {
    display: none;
    border: 0;
    color: #ffffff;
    background: transparent;
    font-size: 1.8rem;
    cursor: pointer;
}

.nav-button,
.primary-button,
.secondary-button,
.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.25s ease;
}

.nav-button,
.primary-button,
.download-button {
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    box-shadow: 0 14px 40px rgba(56, 189, 248, 0.22);
    cursor: pointer;
}

.nav-button {
    padding: 10px 18px;
}

.primary-button {
    padding: 14px 24px;
}

.secondary-button {
    padding: 13px 23px;
    color: #edf4ff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.download-button {
    padding: 11px 18px;
    font-size: 0.92rem;
}

.nav-button:hover,
.primary-button:hover,
.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(56, 189, 248, 0.36);
}

.secondary-button:hover {
    color: #38bdf8;
    border-color: #38bdf8;
}

.hero {
    width: min(1180px, 92%);
    min-height: 86vh;
    margin: 0 auto;
    padding: 76px 0;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.eyebrow {
    margin-bottom: 14px;
    color: #38bdf8;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.hero h1,
.section-heading h2,
.about h2,
.contact-content h2,
.dark-section h2 {
    font-size: clamp(2.35rem, 5vw, 4.8rem);
    line-height: 1;
    letter-spacing: -0.065em;
}

.hero-text,
.section-heading p,
.about-content p,
.contact-content p {
    color: #b9c7dc;
    font-size: 1.05rem;
}

.hero-text {
    max-width: 640px;
    margin-top: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.trust-row {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    color: #8fa3bf;
    font-size: 0.92rem;
}

.trust-row strong {
    padding: 7px 12px;
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.07);
}

.hero-visual {
    position: relative;
    min-height: 480px;
    display: grid;
    place-items: center;
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: 0.7;
}

.orb-one {
    width: 180px;
    height: 180px;
    top: 30px;
    right: 20px;
    background: rgba(56, 189, 248, 0.28);
}

.orb-two {
    width: 140px;
    height: 140px;
    left: 20px;
    bottom: 30px;
    background: rgba(99, 102, 241, 0.34);
}

.dashboard-card {
    position: relative;
    width: min(100%, 480px);
    min-height: 430px;
    padding: 28px;
    overflow: hidden;
    border-radius: 32px;
    background:
        radial-gradient(circle at 20% 15%, rgba(56, 189, 248, 0.32), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}

.dashboard-header {
    display: flex;
    gap: 8px;
    margin-bottom: 38px;
}

.dashboard-header span {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #38bdf8;
}

.dashboard-header span:nth-child(2) {
    background: #818cf8;
}

.dashboard-header span:nth-child(3) {
    background: #22c55e;
}

.terminal-line {
    width: 84%;
    height: 14px;
    margin-bottom: 17px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.terminal-line.short {
    width: 44%;
}

.terminal-line.medium {
    width: 66%;
}

.chart {
    position: absolute;
    left: 28px;
    bottom: 32px;
    width: 210px;
    height: 130px;
    padding: 18px;
    display: flex;
    gap: 12px;
    align-items: end;
    border-radius: 24px;
    background: rgba(7, 17, 31, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.chart span {
    flex: 1;
    border-radius: 999px 999px 4px 4px;
    background: linear-gradient(180deg, #38bdf8, #6366f1);
}

.floating-badge {
    position: absolute;
    right: 28px;
    bottom: 54px;
    width: 156px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(7, 17, 31, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-badge strong {
    display: block;
    color: #38bdf8;
    font-size: 1.75rem;
    line-height: 1;
}

.floating-badge small {
    color: #b9c7dc;
}

.shield-image {
    position: absolute;
    top: 112px;
    right: 44px;
    width: 122px;
    height: 142px;
    display: grid;
    place-items: center;
}

.shield-top,
.shield-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #38bdf8, #6366f1);
}

.shield-top {
    clip-path: polygon(50% 0, 96% 20%, 84% 72%, 50% 100%, 16% 72%, 4% 20%);
    opacity: 0.95;
}

.shield-bottom {
    inset: 12px;
    clip-path: polygon(50% 0, 92% 22%, 80% 68%, 50% 94%, 20% 68%, 8% 22%);
    background: #07111f;
}

.shield-image span {
    position: relative;
    z-index: 2;
    font-size: 1.55rem;
    font-weight: 900;
}

.stats {
    width: min(1180px, 92%);
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stats div,
.service-card,
.about-card,
.feature-card,
.download-card,
.contact-form {
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats div {
    padding: 26px;
}

.stats h2 {
    color: #38bdf8;
    font-size: 2rem;
}

.stats p,
.service-card p,
.feature-card p,
.download-card p,
.testimonial p,
.about-card li,
.contact-details p {
    color: #b9c7dc;
}

.section,
.about,
.dark-section,
.testimonial,
.contact-section {
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: 90px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading p {
    margin-top: 16px;
}

.services-grid,
.feature-grid,
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card,
.feature-card,
.download-card {
    padding: 30px;
}

.service-card {
    min-height: 310px;
}

.service-image {
    position: relative;
    width: 76px;
    height: 76px;
    margin-bottom: 24px;
    border-radius: 22px;
    background: rgba(56, 189, 248, 0.14);
    overflow: hidden;
}

.web-image span {
    position: absolute;
    left: 16px;
    right: 16px;
    height: 8px;
    border-radius: 999px;
    background: #38bdf8;
}

.web-image span:nth-child(1) {
    top: 18px;
}

.web-image span:nth-child(2) {
    top: 34px;
    right: 26px;
}

.web-image span:nth-child(3) {
    top: 50px;
    right: 34px;
}

.app-image div {
    position: absolute;
    inset: 16px;
    border-radius: 14px;
    border: 4px solid #38bdf8;
    box-shadow: inset 0 0 0 8px rgba(99, 102, 241, 0.3);
}

.cloud-image span {
    position: absolute;
    left: 15px;
    top: 28px;
    width: 46px;
    height: 22px;
    border-radius: 999px;
    background: #38bdf8;
}

.cloud-image span::before,
.cloud-image span::after {
    content: "";
    position: absolute;
    bottom: 8px;
    border-radius: 50%;
    background: #38bdf8;
}

.cloud-image span::before {
    width: 24px;
    height: 24px;
    left: 6px;
}

.cloud-image span::after {
    width: 30px;
    height: 30px;
    right: 4px;
}

.ai-image span {
    position: absolute;
    border-radius: 50%;
    background: #38bdf8;
}

.ai-image span:nth-child(1) {
    width: 18px;
    height: 18px;
    left: 16px;
    top: 16px;
}

.ai-image span:nth-child(2) {
    width: 22px;
    height: 22px;
    right: 16px;
    top: 26px;
}

.ai-image span:nth-child(3) {
    width: 16px;
    height: 16px;
    left: 30px;
    bottom: 16px;
}

.mobile-image span {
    position: absolute;
    inset: 12px 22px;
    border-radius: 14px;
    border: 4px solid #38bdf8;
}

.mobile-image span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 10px;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #38bdf8;
}

.support-image span {
    position: absolute;
    inset: 17px;
    border: 5px solid #38bdf8;
    border-radius: 50%;
}

.support-image span::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 5px;
    right: -20px;
    bottom: -8px;
    transform: rotate(45deg);
    border-radius: 999px;
    background: #38bdf8;
}

.service-card h3,
.feature-card h3,
.download-card h3,
.about-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.about {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 38px;
    align-items: center;
}

.about-content p {
    margin: 22px 0;
}

.about-card {
    padding: 34px;
}

.viking-image {
    height: 180px;
    margin-bottom: 26px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background:
        radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent 60%),
        rgba(255, 255, 255, 0.045);
}

.helmet {
    position: relative;
    width: 110px;
    height: 92px;
}

.helmet-face {
    position: absolute;
    inset: 10px 18px 0;
    display: grid;
    place-items: center;
    border-radius: 55px 55px 24px 24px;
    background: linear-gradient(145deg, #38bdf8, #6366f1);
    color: #ffffff;
    font-size: 2rem;
    font-weight: 900;
}

.horn {
    position: absolute;
    top: 4px;
    width: 54px;
    height: 54px;
    border: 8px solid #dbeafe;
    border-bottom: 0;
    border-radius: 54px 54px 0 0;
}

.horn.left {
    left: -28px;
    transform: rotate(-35deg);
}

.horn.right {
    right: -28px;
    transform: rotate(35deg);
}

.about-card ul {
    list-style: none;
    margin-top: 18px;
}

.about-card li {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-card li::before {
    content: "✓";
    margin-right: 10px;
    color: #22c55e;
}

.dark-section {
    padding: 74px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(99, 102, 241, 0.28), transparent 34%),
        #0c1728;
}

.downloads-section {
    padding-bottom: 60px;
}

.download-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(56, 189, 248, 0.14);
    font-size: 1.6rem;
}

.download-card p {
    margin-bottom: 22px;
}

.testimonial {
    text-align: center;
}

.testimonial blockquote {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: clamp(1.5rem, 3vw, 2.35rem);
    line-height: 1.25;
    letter-spacing: -0.04em;
}

.contact-section {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 34px;
    align-items: start;
    margin-bottom: 70px;
}

.contact-content p {
    margin-top: 18px;
}

.contact-details {
    margin-top: 28px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-details p {
    margin: 8px 0;
}

.contact-form {
    padding: 32px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #dbeafe;
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-bottom: 18px;
    padding: 14px 15px;
    color: #edf4ff;
    background: rgba(7, 17, 31, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.contact-form textarea {
    resize: vertical;
}

.form-status {
    min-height: 26px;
    margin-top: 16px;
    color: #22c55e;
    font-weight: 800;
}

.footer {
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: 30px 0 42px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #8fa3bf;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer a:hover {
    color: #38bdf8;
}

@media (max-width: 960px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        left: 4%;
        right: 4%;
        top: 74px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
        border-radius: 22px;
        background: rgba(7, 17, 31, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-button {
        display: none;
    }

    .hero,
    .about,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 56px;
    }

    .stats,
    .services-grid,
    .feature-grid,
    .downloads-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dark-section {
        padding: 48px 26px;
    }
}

@media (max-width: 640px) {
    .stats,
    .services-grid,
    .feature-grid,
    .downloads-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 410px;
    }

    .dashboard-card {
        min-height: 390px;
    }

    .shield-image {
        right: 24px;
        width: 100px;
        height: 120px;
    }

    .chart {
        width: 180px;
    }

    .floating-badge {
        right: 18px;
        bottom: 42px;
        width: 140px;
    }

    .section,
    .about,
    .dark-section,
    .testimonial,
    .contact-section {
        padding: 66px 0;
    }

    .footer {
        flex-direction: column;
    }
}

/* --- Login Styles --- */
.login-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background: rgba(7, 17, 31, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid #38bdf8; /* Lighter blue border */
    border-radius: 24px; /* Rounded corners */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    letter-spacing: -0.04em;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b9c7dc;
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    accent-color: #38bdf8;
    cursor: pointer;
}

.forgot-link {
    color: #38bdf8;
    transition: opacity 0.2s;
}

.forgot-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    color: #b9c7dc;
}

.form-group input {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: #38bdf8;
}

.login-button {
    margin-top: 10px;
    padding: 14px;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
}

.login-button:active {
    transform: translateY(0);
}
