:root {
    --bg-dark: #050507;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-orange: #f97316;
    --accent-cyan: #00F3FF;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --font-main: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.bg-gradient-mask {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.08), transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(234, 88, 12, 0.05), transparent 40%);
}

.unicorn-canvas {
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

.btn-glow {
    position: relative;
    overflow: hidden;
    animation: pulse-orange 2s infinite;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(249, 115, 22, 0.2),
            transparent);
    transition: 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

/* Radar Pulse Animation for Buttons */
@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-dot {
    color: rgb(254, 215, 170);
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    text-align: center;
}

.hero-title {
    font-size: 80px;
    margin-bottom: 24px;
    background: linear-gradient(to bottom, #fff, #a1a1aa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* System Section (Cards) */
.system-section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
}

.rotator-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    perspective: 1000px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.card-rotator {
    position: relative;
    width: 400px;
    height: 500px;
    transform-style: preserve-3d;
}

.card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 22, 0.6);
    backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    transform: translateZ(-100px) scale(0.9);
    pointer-events: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card.active {
    opacity: 1;
    transform: translateZ(0) scale(1);
    z-index: 10;
    pointer-events: all;
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.4);
}

.card-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.card-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.card-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.card-glow {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0), transparent);
    transition: background 0.3s;
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 40px;
    margin-bottom: 24px;
}

.feature-visual {
    flex: 1;
    height: 400px;
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-visual img {
    max-width: 100%;
    height: auto;
}

/* Marquee */
.marquee-section {
    overflow: hidden;
    padding: var(--spacing-md) 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

.brand-item {
    display: inline-block;
    padding: 0 var(--spacing-lg);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.brand-item:hover {
    opacity: 1;
    color: var(--text-primary);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 500px;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: rgb(254, 215, 170);
}

.btn-full {
    width: 100%;
}

.hidden {
    display: none;
}

.form-success {
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    font-size: 48px;
    color: rgb(254, 215, 170);
    margin-bottom: 16px;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
}

/* Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .card-rotator {
        width: 100%;
        height: 400px;
    }

    .rotator-wrapper {
        flex-direction: column;
        gap: 20px;
    }
}

/* Added Styles for Feature Text */
.feature-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.feature-text ul {
    list-style: none;
}

.feature-text li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-secondary);
}

.feature-text li::before {
    content: "•";
    color: rgb(254, 215, 170);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Logo Component */
.logo-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--text-primary);
    transition: color 0.3s ease;
    text-decoration: none;
}

.logo-link:hover {
    color: #ffedd5;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-block;
}

.logo-svg {
    width: 100%;
    height: 100%;
}

.logo-track {
    fill: none;
    stroke: #44403c;
    stroke-width: 8;
    stroke-linecap: round;
}

.logo-redline {
    fill: none;
    stroke: #ea580c;
    stroke-width: 8;
    stroke-linecap: round;
}

.logo-needle {
    stroke: #f97316;
    stroke-width: 4;
    stroke-linecap: round;
    transform-origin: 50px 50px;
    animation: redline 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.logo-pin {
    fill: #e7e5e4;
}

@keyframes redline {
    0% {
        transform: rotate(-120deg);
    }

    20% {
        transform: rotate(80deg);
    }

    30% {
        transform: rotate(60deg);
    }

    50% {
        transform: rotate(130deg);
    }

    55% {
        transform: rotate(125deg);
    }

    60% {
        transform: rotate(135deg);
    }

    65% {
        transform: rotate(125deg);
    }

    70% {
        transform: rotate(135deg);
    }

    100% {
        transform: rotate(-120deg);
    }
}

/* Color Updates */
.text-orange {
    background: linear-gradient(to right, #fb923c, #ea580c) !important; -webkit-background-clip: text !important; background-clip: text !important; -webkit-text-fill-color: transparent !important; color: transparent !important;
}

.section-title { background: linear-gradient(to right, #fb923c, #ea580c); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

.feature-text h3 { background: linear-gradient(to right, #fb923c, #ea580c); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }