﻿:root {
    --bg-0: #06090d;
    --bg-1: #0c1117;
    --bg-2: #111926;
    --surface: rgba(12, 18, 24, 0.72);
    --surface-strong: rgba(8, 12, 18, 0.86);
    --border: rgba(0, 255, 225, 0.18);
    --text: #e6f7f5;
    --text-soft: #9bb9b5;
    --accent: #00ffe1;
    --accent-2: #00bfa6;
    --success: #00ff88;
    --danger: #ff7b9f;
    --shadow: 0 0 24px rgba(0, 255, 225, 0.08), 0 18px 60px rgba(0, 0, 0, 0.38);
    --radius: 22px;
    --max-width: 1180px;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    overflow-x: hidden;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, var(--bg-0), var(--bg-1) 55%, var(--bg-2)) fixed;
}

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(0, 255, 225, 0.14) 0%, transparent 35%), radial-gradient(circle at 80% 80%, rgba(0, 191, 166, 0.12) 0%, transparent 35%);
        z-index: -2;
        pointer-events: none;
    }

* {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

#codeRain {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    z-index: 0;
    opacity: 0.16;
    pointer-events: none;
}

.site-shell {
    position: relative;
    min-height: 100vh;
}

.site-main,
.site-footer,
.tm-nav {
    position: relative;
    z-index: 1;
}

.container {
    width: min(var(--max-width), calc(100% - 2rem));
    margin-inline: auto;
}

.glass-panel,
.contact-card,
.panel-card,
.info-card,
.callout-banner {
    background: linear-gradient(180deg, rgba(13, 20, 28, 0.86), rgba(8, 12, 18, 0.78));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.tm-nav {
    position: sticky;
    top: 0;
    z-index: 5000;
    border-bottom: 1px solid var(--border);
    background: rgba(6, 9, 13, 0.72);
    backdrop-filter: blur(14px);
    box-shadow: 0 0 18px rgba(0, 255, 225, 0.08);
}

.tm-nav-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.tm-link-button {
    appearance: none;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

.tm-brand {
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(0, 255, 225, 0.3);
}

.tm-nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

    .tm-nav-links .nav-link {
        color: var(--text-soft);
        padding: 0.8rem 1rem;
        border: 1px solid transparent;
        border-radius: 999px;
        transition: 0.25s ease;
    }

        .tm-nav-links .nav-link:hover,
        .tm-nav-links .nav-link.active {
            color: var(--accent);
            border-color: rgba(0, 255, 225, 0.18);
            background: rgba(0, 255, 225, 0.08);
            box-shadow: 0 0 14px rgba(0, 255, 225, 0.08);
        }

.site-footer {
    margin-top: 3rem;
    padding: 1.5rem 0 2rem;
    border-top: 1px solid var(--border);
    background: rgba(6, 9, 13, 0.6);
    color: var(--text-soft);
    text-align: center;
}

.hero-section,
.page-section,
.section-block {
    padding: 4.5rem 0;
}

.hero-grid,
.about-grid,
.contact-layout,
.card-grid {
    display: grid;
    gap: 1.5rem;
}

.hero-grid {
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-carousel-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 24px;
    padding: 0;
    background: rgba(10, 15, 20, 0.82);
}

    .hero-carousel-card .carousel,
    .hero-carousel-card .carousel-inner,
    .hero-carousel-card .carousel-item {
        border-radius: inherit;
        overflow: hidden;
    }

.section-eyebrow {
    display: inline-block;
    margin-bottom: 0.85rem;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

h1,
h2,
h3,
h4,
h5,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: #eafffb;
}

.glow {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(0, 255, 225, 0.6), 0 0 24px rgba(0, 191, 166, 0.28);
}

.hero-copy h1 {
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
    max-width: 12ch;
}

.hero-lead,
.section-heading p,
.info-card p,
.panel-card p,
.callout-banner p,
.contact-info p {
    color: var(--text-soft);
    font-size: 1.03rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin: 2rem 0 1.5rem;
}

    .hero-actions .btn {
        min-width: 165px;
    }

.btn,
.neon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.8rem 1.25rem;
    font-weight: 700;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn-primary,
.neon-btn {
    background: linear-gradient(45deg, var(--accent), var(--accent-2));
    color: #041310;
    box-shadow: 0 0 18px rgba(0, 255, 225, 0.2);
}

    .btn-primary:hover,
    .neon-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 0 24px rgba(0, 255, 225, 0.34);
    }

.btn-secondary {
    background: rgba(0, 255, 225, 0.06);
    color: var(--accent);
    border-color: rgba(0, 255, 225, 0.18);
}

    .btn-secondary:hover {
        background: rgba(0, 255, 225, 0.1);
        box-shadow: 0 0 18px rgba(0, 255, 225, 0.12);
    }

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

    .trust-points > div {
        padding: 0.7rem 1rem;
        border-radius: 999px;
        color: var(--accent);
        background: rgba(0, 255, 225, 0.06);
        border: 1px solid rgba(0, 255, 225, 0.14);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
        font-weight: 600;
        font-size: 0.94rem;
    }

.carousel-item {
    background: #05090d;
}

.carousel-img {
    width: 100%;
    min-height: 480px;
    max-height: 600px;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    display: block;
    filter: brightness(0.82);
}

.tm-caption {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    text-align: left;
}

.tm-caption-inner {
    max-width: 460px;
    padding: 1.1rem 1.15rem;
    border-radius: 18px;
    background: rgba(7, 12, 18, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.tm-caption h5 {
    margin-bottom: 0.45rem;
    font-size: 1.3rem;
    color: #f3fffd;
}

.tm-caption p {
    margin-bottom: 0;
    color: #d7e8e5;
    line-height: 1.65;
    font-size: 0.98rem;
}

.tm-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    padding: 0;
    margin: 0;
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(7, 12, 18, 0.6);
    backdrop-filter: blur(8px);
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev.tm-carousel-control {
    left: 1rem;
}

.carousel-control-next.tm-carousel-control {
    right: 1rem;
}

.tm-carousel-control:hover {
    background: rgba(0, 255, 225, 0.12);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 1.1rem;
    height: 1.1rem;
    background-size: 100% 100%;
}

.tm-carousel-indicators {
    bottom: 0.9rem;
    margin-bottom: 0;
}

    .tm-carousel-indicators button {
        width: 8px !important;
        height: 8px !important;
        min-height: 0;
        padding: 0;
        margin-inline: 5px;
        border: 0;
        border-radius: 999px;
        background-color: rgba(255, 255, 255, 0.75);
        opacity: 0.45;
        box-shadow: none;
    }

    .tm-carousel-indicators .active {
        width: 24px !important;
        opacity: 1;
        background-color: var(--accent);
    }

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

    .section-heading h1,
    .section-heading h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        line-height: 1.08;
        letter-spacing: -0.03em;
    }

    .section-heading h1,
    .section-heading h2,
    .callout-banner h2,
    .panel-card h2,
    .info-card h3 {
        color: #ffffff;
        text-shadow: 0 0 8px rgba(0, 0, 0, 0.35), 0 0 12px rgba(0, 255, 225, 0.18);
    }

    .section-heading h2,
    .callout-banner h2,
    .panel-card h2 {
        font-weight: 800;
    }

.card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.panel-card,
.callout-banner,
.contact-card {
    border-radius: var(--radius);
}

.info-card,
.panel-card {
    padding: 1.5rem;
}

    .info-card h3,
    .panel-card h2 {
        margin-bottom: 0.8rem;
    }

    .info-card h3 {
        color: #9affef;
        text-shadow: 0 0 8px rgba(0, 0, 0, 0.35), 0 0 12px rgba(0, 255, 225, 0.3);
    }

.callout-banner {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.about-grid {
    grid-template-columns: 1.15fr 0.85fr;
}

.feature-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--text-soft);
}

    .feature-list li + li {
        margin-top: 0.85rem;
    }

.contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
}

.contact-card {
    padding: 1.8rem;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
}

.contact-info li {
    margin-bottom: 1rem;
    color: var(--text);
}

.contact-info a {
    color: var(--accent);
}

.neon-heading {
    font-size: 1.45rem;
    color: var(--accent);
    text-shadow: 0 0 8px rgba(0, 255, 225, 0.58), 0 0 18px rgba(0, 191, 166, 0.24);
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 600;
}

input,
textarea,
.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(0, 0, 0, 0.24);
    color: var(--text);
    border: 1px solid rgba(0, 255, 225, 0.22);
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
    transition: 0.25s ease;
}

    input::placeholder,
    textarea::placeholder,
    .form-control::placeholder {
        color: rgba(230, 247, 245, 0.45);
    }

    input:focus,
    textarea:focus,
    .form-control:focus {
        outline: none;
        border-color: rgba(0, 255, 225, 0.46);
        box-shadow: 0 0 0 4px rgba(0, 255, 225, 0.08), 0 0 16px rgba(0, 191, 166, 0.16);
        background: rgba(0, 0, 0, 0.34);
    }

.text-danger {
    color: var(--danger) !important;
}

.neon-alert {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.28);
    color: var(--success);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.12);
}

.mt-3 {
    margin-top: 1rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.site-main,
.page-section,
.hero-section,
.section-block,
.hero-carousel-card,
.carousel,
.carousel-inner,
.carousel-item {
    position: relative;
}

@media (max-width: 991.98px) {
    .hero-grid,
    .about-grid,
    .contact-layout,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .carousel-img {
        min-height: 380px;
        max-height: 460px;
    }

    .callout-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .tm-nav-inner {
        flex-direction: column;
        justify-content: center;
        padding: 1rem 0;
    }

    .tm-brand {
        text-align: center;
    }

    .hero-section,
    .page-section,
    .section-block {
        padding: 3.5rem 0;
    }

    .hero-copy h1 {
        max-width: 100%;
    }

    .carousel-img {
        min-height: 280px;
        max-height: 340px;
    }

    .tm-caption {
        left: 0.9rem;
        right: 0.9rem;
        bottom: 0.9rem;
    }

    .tm-caption-inner {
        max-width: none;
        padding: 0.95rem 1rem;
        border-radius: 16px;
    }

    .tm-caption h5 {
        font-size: 1.05rem;
    }

    .tm-caption p {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .tm-carousel-control {
        width: 40px;
        height: 40px;
    }

    .contact-card,
    .panel-card,
    .info-card,
    .callout-banner {
        padding: 1.25rem;
    }
}
