:root {
    --mist-black: #050608;
    --mist-surface: #0f1216;
    --mist-border: rgba(255, 255, 255, 0.08);
    --mist-text: #f5f7ff;
    --mist-muted: rgba(245, 247, 255, 0.62);
    --mist-orange: #ff4d00;
    --mist-orange-soft: #ff7a1f;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--mist-black);
    color: var(--mist-text);
    font-family: "Space Mono", "JetBrains Mono", "Trebuchet MS", Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--mist-orange);
}

.preload {
    z-index: 999999999;
    opacity: 1;
    display: block;
}

.nav-logo-text {
    display: flex;
    align-items: center;
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 0.4rem;
    font-size: clamp(1.4rem, 3vw, 2rem);
    text-transform: uppercase;
    color: var(--mist-text);
}

.nav_bar_logo_icon svg,

.nav_open_lines_center,
.nav_open_lines_top,
.nav_open_lines_bottom {
    transition: transform 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}

.nav_open.is-open .nav_open_lines_center {
    opacity: 0;
}

.nav_open.is-open .nav_open_lines_top {
    margin-top: 0;
    transform: rotate(45deg);
}

.nav_open.is-open .nav_open_lines_bottom {
    margin-top: 0;
    transform: rotate(-45deg);
}

.nav_menu_link_icon svg,
.footer_logo_icon svg {
    color: var(--mist-text);
    fill: currentColor;
}

.wrapper-lines line {
    stroke: rgba(255, 255, 255, 0.08);
}

.text-color-grey {
    color: var(--mist-muted);
}

.button {
    background: linear-gradient(135deg, var(--mist-orange), var(--mist-orange-soft));
    color: #050505;
    border: 1px solid rgba(0, 0, 0, 0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button .text-style-cpt2 {
    color: inherit;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(255, 77, 0, 0.32);
}

.home_features_grid_item-inner,
.home_piece,
.home_hero_content_1,
.home_hero_content_2,
.home_hero_content_3,
.home_features_cta_content,
.contact-form_locations_item .position-relative,
.footer_col,
.page-section {
    background: rgba(15, 18, 22, 0.65);
    backdrop-filter: blur(16px);
    border: 1px solid var(--mist-border);
}

.home_features_grid_item-inner h3,
.home_features_cta_content h2,
.home_piece h1,
.section-home-hero h1,
.section-home-hero h2,
.page-section h1,
.page-section h2 {
    color: var(--mist-text);
}

.background-color-blur {
    background: radial-gradient(circle at 20% 20%, rgba(255, 77, 0, 0.18), rgba(15, 18, 22, 0.15));
}

.footer {
    background: var(--mist-surface);
    color: var(--mist-text);
}

.footer_col p,
.footer_col .text-style-cpt1 {
    color: var(--mist-muted);
}

.footer_link:hover {
    color: var(--mist-orange);
}

.page-section {
    margin: 120px auto;
    padding: 56px clamp(24px, 6vw, 72px);
    max-width: min(960px, 90vw);
    line-height: 1.65;
}

.page-section h1 {
    font-size: clamp(2.4rem, 3vw, 3rem);
    margin-bottom: 16px;
}

.page-section h2 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    margin: 32px 0 12px;
}

.page-section p {
    margin: 12px 0;
    color: var(--mist-muted);
}

.page-section ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    gap: 16px;
}

.page-section li {
    padding: 16px 20px;
    border: 1px solid var(--mist-border);
    border-radius: 12px;
    background: rgba(15, 18, 22, 0.45);
}

.page-section li strong {
    display: block;
    margin-bottom: 4px;
    color: var(--mist-text);
}

.page-section a.button-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 77, 0, 0.16);
    color: var(--mist-orange);
    border: 1px solid rgba(255, 77, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-section a.button-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 77, 0, 0.25);
}

.not-designed-card {
    text-align: center;
    padding: 96px clamp(24px, 5vw, 120px);
}

.not-designed-card p {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

@media (max-width: 768px) {
    .page-section {
        margin: 96px auto;
        padding: 48px 24px;
    }
}

body.nav-open {
    overflow: hidden;
}
