:root {
    --primary-gold: #E5C368;
    --accent-gold-bright: #FFD700;
    --bg-black: #080808;
    --bg-darker: #040404;
    --bg-ivory: #FAF9F6;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --text-white: #FFFFFF;
    --text-silver: #D1D1D1;
    --text-muted: #808080;
    --text-charcoal: #121212;
    --text-charcoal-muted: #4A4A4A;
    --container-max: 1300px;
    --content-max: 950px;
    --section-spacing: 160px;
    --ease-smooth: cubic-bezier(0.85, 0, 0.15, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: #080808;
    color: var(--text-silver);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.02em;
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.text-center {
    text-align: center !important;
}

.centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.content-balanced {
    max-width: var(--content-max);
    margin: 0 auto;
}

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

nav {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1250px;
    z-index: 1000;
    padding: 12px 35px;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    transition: all 0.4s var(--ease-smooth);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

nav:hover {
    background: rgba(8, 8, 8, 0.95);
    border-color: var(--primary-gold);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo img {
    height: 38px;
    width: auto;
}

.logo span {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 50px;
    list-style: none;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    z-index: 2001;
    padding: 10px;
}

.menu-toggle .material-symbols-outlined {
    font-size: 2rem;
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none !important;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-display: block;
    user-select: none;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(12, 12, 12, 0.98);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    list-style: none;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.4s var(--ease-smooth);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    display: grid;
    gap: 15px;
}

.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown a {
    padding: 15px;
    font-size: 0.9rem;
    color: var(--text-silver);
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 8px;
    white-space: nowrap;
}

.dropdown a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-gold);
    transform: translateX(5px);
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-black);
    text-align: center;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero .slide {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--primary-gold);
    position: absolute;
    top: 8px;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.2), var(--bg-black)), url('../assets/images/corporate_hq.png');
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    z-index: 1;
}

.hero-inner {
    text-align: center;
    z-index: 4;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 0.95;
    margin-bottom: 30px;
    font-weight: 800;
    color: var(--text-white);
}

.hero-title .outline-text {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    color: transparent;
}

.hero-sub {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.bg-ivory {
    background-color: rgba(250, 249, 246, 0.90);
    color: var(--text-charcoal);
}

.bg-black {
    background-color: rgba(8, 8, 8, 0.88);
}

.bg-darker {
    background-color: rgba(4, 4, 4, 0.90);
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 50px;
    transition: all 0.5s var(--ease-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: var(--primary-gold);
}

.grid-exciting {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.pillar-item {
    padding: 0;
}

.pillar-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 30px;
    display: block;
}

.blueprint-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.blueprint-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(188, 157, 85, 0.15);
    border-radius: 24px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bg-ivory .blueprint-card {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(188, 157, 85, 0.2);
}

.blueprint-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(188, 157, 85, 0.1);
}

.blueprint-card .icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    display: block;
}

.blueprint-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-white);
    font-family: var(--font-heading);
}

.bg-ivory .blueprint-card h4 {
    color: var(--text-charcoal);
}

.blueprint-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.bg-ivory .blueprint-card p {
    color: var(--text-charcoal-muted);
}

.badge-gold {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(188, 157, 85, 0.1);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.pillar-item h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.btn-premium {
    padding: 22px 55px;
    background: var(--primary-gold);
    color: var(--bg-black);
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s var(--ease-smooth);
    border: none;
}

.btn-premium:hover {
    background: var(--text-white);
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--glass-border);
    color: var(--text-white);
}

.btn-outline:hover {
    border-color: var(--primary-gold);
    background: transparent;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.pricing-card {
    background: var(--bg-ivory);
    border: 1px solid var(--border-ivory);
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.5s var(--ease-smooth);
    color: var(--text-charcoal);
}

.pricing-card.featured {
    background: var(--bg-black);
    color: #fff;
    transform: scale(1.05);
    border-color: var(--primary-gold);
}

.price-box {
    margin: 30px 0;
}

.price-box .amount {
    font-size: 4rem;
    font-weight: 800;
}

.price-box .period {
    color: var(--text-muted);
    font-size: 1rem;
}

.pricing-list {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card.featured .pricing-list li {
    border-color: rgba(255, 255, 255, 0.05);
}

.diagram-container {
    background: var(--bg-darker);
    border-radius: 40px;
    padding: 80px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.node-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.diag-node {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    width: 200px;
    transition: all 0.5s var(--ease-smooth);
    position: relative;
    z-index: 5;
}

.diag-node:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(229, 195, 104, 0.1);
    transform: translateY(-10px);
}

.pulse-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    background-size: 200% 100%;
    animation: flow 3s linear infinite;
    position: relative;
    opacity: 0.6;
}

.pulse-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-gold);
    box-shadow: 0 0 15px var(--primary-gold);
    width: 20px;
    height: 1px;
    border-radius: 50%;
    animation: pulse-move 3s linear infinite;
}

@keyframes flow {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes pulse-move {
    0% {
        left: -10%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        left: 110%;
        opacity: 0;
    }
}

.slideshow-container {
    max-width: 1000px;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 16 / 9;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    background: #000;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
    color: var(--text-white);
    font-size: 0.9rem;
    text-align: left;
}

.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-gold);
    transform: scale(1.5);
}

.nav-links a.active {
    color: var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
}

.dropdown a.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-gold);
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    font-weight: normal !important;
    font-style: normal !important;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none !important;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    user-select: none;
}

.return-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--bg-black);
    border: 1px solid var(--glass-border);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-smooth);
    backdrop-filter: blur(10px);
}

.return-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.return-to-top:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229, 195, 104, 0.2);
}

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

.social-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--primary-gold);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.2);
}

@media (max-width:1024px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: rgba(8, 8, 8, 0.98);
        padding: 100px 40px;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        backdrop-filter: blur(30px);
        gap: 25px;
        align-items: flex-start;
        z-index: 1002;
    }

    .nav-links.active {
        right: 0;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    }

    .nav-links a.active {
        border-bottom: none;
        padding-left: 10px;
        border-left: 2px solid var(--primary-gold);
    }

    .section-spacing {
        --section-spacing: 100px;
    }

    .stats-row {
        flex-direction: column;
        gap: 40px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .hide-mobile {
        display: none !important;
    }

    .diagram-container {
        padding: 40px 20px !important;
    }

    .diag-node {
        width: 100% !important;
        margin-bottom: 20px;
    }
}

.spec-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.spec-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(188, 157, 85, 0.05);
    border: 1px solid rgba(188, 157, 85, 0.2);
    border-radius: 100px;
    color: var(--primary-gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.spec-tag .material-symbols-outlined {
    font-size: 1.1rem;
}

.hardware-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.hardware-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.hardware-card:hover {
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-5px);
}

.hardware-icon {
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    display: block;
    opacity: 0.8;
}

.hardware-card h4 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.hardware-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width:768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.flow-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
    padding: 20px;
}

.flow-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--text-charcoal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.flow-step:hover .flow-icon-circle {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.flow-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-charcoal);
}

.flow-step p {
    font-size: 0.9rem;
    color: var(--text-charcoal-muted);
}

.flow-connector {
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

.pulse-gold {
    animation: pulse-border 2s infinite;
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@media (max-width:768px) {
    .flow-grid {
        flex-direction: column;
    }

    .flow-connector {
        transform: rotate(90deg);
        height: 60px;
        width: 20px;
    }
}

.return-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.return-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.return-to-top:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    background: var(--primary-gold);
    color: #000;
}

.form-group input:invalid,
.form-group textarea:invalid {
    border-color: rgba(255, 0, 0, 0.3);
}

.success-message {
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 10px;
    margin-top: 20px;
    display: none;
    animation: fade-up 0.5s ease forwards;
}