body {
    margin: 0;
    overflow-x: hidden;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    background-color: #1A2744;
    color: #E0E8FF;
}

html {
    scroll-behavior: smooth;
}

h1, .h1 {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #00F0FF;
}

h2, .h2 {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    color: #E0E8FF;
}

h3, .h3 {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    color: #E0E8FF;
}

h4, .h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #E2E8F0;
}

h5, .h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #94A3B8;
}

h6, .h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #94A3B8;
}

a {
    cursor: pointer;
    color: #00F0FF;
    transition: color 0.2s ease;
}

a:hover {
    color: #FF00AA;
}

.text-primary { color: #00F0FF !important; }
.text-accent { color: #FF00AA !important; }
.text-muted { color: #64748B !important; }

/* --- Nav --- */
.navbar {
    background-color: rgba(26, 39, 68, 0.95) !important;
    backdrop-filter: blur(12px);
    border-bottom: none;
    padding: 12px 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: baseline;
    text-decoration: none;
    line-height: 1;
}

.logo-light {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 28px;
    color: #E0E8FF;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

.logo-sep {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 200;
    font-size: 28px;
    color: rgba(224, 232, 255, 0.35);
    margin: 0 1px;
}

.logo-bold {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 22px;
    color: #E0E8FF;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.15);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28224, 232, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #94A3B8 !important;
    transition: color 0.2s ease;
    padding: 8px 16px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #00F0FF !important;
}

/* --- Buttons --- */
.btn-primary {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    background: linear-gradient(135deg, #00F0FF 0%, #FF00AA 100%);
    border: none;
    border-radius: 4px;
    padding: 14px 28px;
    letter-spacing: 0.05em;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4), 0 0 40px rgba(255, 0, 170, 0.2);
    transform: translateY(-1px);
    background: linear-gradient(135deg, #00F0FF 0%, #FF00AA 100%);
    color: #FFFFFF;
}

.btn-outline {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 14px;
    color: #00F0FF;
    background: transparent;
    border: 1px solid rgba(0, 240, 255, 0.4);
    border-radius: 4px;
    padding: 14px 28px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: #00F0FF;
    color: #00F0FF;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

/* --- Carousel --- */
#heroCarousel .carousel-item {
    min-height: 340px;
}

#heroCarousel .carousel-indicators {
    bottom: -10px;
    margin-bottom: 0;
}

#heroCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(0, 240, 255, 0.4);
    background-color: transparent;
    opacity: 0.6;
    margin: 0 5px;
}

#heroCarousel .carousel-indicators button.active {
    background-color: #00F0FF;
    border-color: #00F0FF;
    opacity: 1;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

#heroCarousel .carousel-control-prev { left: -30px; }
#heroCarousel .carousel-control-next { right: -30px; }

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    opacity: 1;
}

@media (max-width: 991px) {
    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        display: none;
    }
    #heroCarousel .carousel-item {
        min-height: auto;
    }
}

/* --- Hero --- */
.hero {
    padding: 80px 0 60px;
    position: relative;
}

.hero .gradient-backdrop {
    display: none;
}

.hero-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    font-weight: 500;
    color: #00F0FF;
    margin-bottom: 12px;
}

/* --- Sections --- */
.section {
    padding: 80px 0;
}

.section-sm {
    padding: 50px 0;
}

.section-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.3), rgba(255, 0, 170, 0.2), transparent);
    margin: 0;
}

.section-label {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #00F0FF;
    margin-bottom: 16px;
}

/* --- Cards --- */
.card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    transition: box-shadow 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
    height: 100%;
}

.card:hover {
    box-shadow: 0 8px 32px rgba(0, 240, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(0, 240, 255, 0.2);
}

.card-body {
    padding: 32px 28px;
}

/* --- Step Cards --- */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(255, 0, 170, 0.15));
    border: 1px solid rgba(0, 240, 255, 0.3);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 16px;
    color: #00F0FF;
    margin-bottom: 20px;
}

/* --- Icon Box --- */
.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.12), rgba(255, 0, 170, 0.08));
    border: 1px solid rgba(0, 240, 255, 0.15);
    color: #00F0FF;
    font-size: 24px;
    flex-shrink: 0;
}

/* --- Trade Tags --- */
.trade-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trade-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    color: #94A3B8;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.2s ease;
}

.trade-tag:hover {
    border-color: rgba(0, 240, 255, 0.3);
    color: #00F0FF;
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.cta-banner .gradient-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(255, 0, 170, 0.08) 50%, rgba(0, 240, 255, 0.05) 100%);
    filter: blur(20px);
    pointer-events: none;
}

/* --- Form --- */
label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #94A3B8;
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #E0E8FF;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(8px);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #00F0FF;
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    color: #E0E8FF;
}

.form-control::placeholder {
    color: #64748B;
}

.form-select {
    background-size: 22px 18px;
}

.bg-light {
    background-color: rgba(26, 39, 68, 0.95) !important;
}

.alert-success {
    background-color: rgba(0, 240, 255, 0.08);
    border-color: #00F0FF;
    color: #E0E8FF;
}

.alert-danger {
    background-color: rgba(255, 0, 170, 0.08);
    border-color: #FF00AA;
    color: #E0E8FF;
}

/* --- Footer --- */
footer {
    padding: 40px 0 24px;
    background-color: #020617;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

footer a {
    color: #64748B;
    text-decoration: none;
    padding: 6px 4px;
}

footer a:hover {
    color: #00F0FF;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .footer-links {
        justify-content: flex-start;
    }
}

/* --- Solutions Page --- */
.solution-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.solution-section:last-of-type {
    border-bottom: none;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-row .icon-box {
    margin-top: 2px;
}

.subsection-label {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FF00AA;
    margin-bottom: 20px;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    h2, .h2 {
        font-size: 32px;
        line-height: 40px;
    }
    h3, .h3 {
        font-size: 26px;
        line-height: 32px;
    }
    .hero {
        padding: 50px 0 40px;
    }
    .section {
        padding: 50px 0;
    }
}

@media (max-width: 575px) {
    h2, .h2 {
        font-size: 26px;
        line-height: 34px;
    }
    h3, .h3 {
        font-size: 22px;
        line-height: 28px;
    }
    .hero {
        padding: 36px 0 30px;
    }
    .section {
        padding: 40px 0;
    }
    .card-body {
        padding: 24px 20px;
    }
    .btn-primary, .btn-outline {
        padding: 12px 20px;
        font-size: 13px;
    }
    .logo-svg {
        width: 225px;
        height: 30px;
    }
    .form-submit-row {
        text-align: center !important;
    }
    .form-submit-row .btn {
        width: 100%;
    }
}
