﻿:root {
    color-scheme: dark;
    --bg: #06080c;
    --panel: #0d1017;
    --ink: #f3f5f8;
    --muted: #9aa4b2;
    --muted-2: #6d7887;
    --line: #20262f;
    --orange: #f26419;
    --orange-hi: #ff8a3d;
    --red: #e05252;
    --maxw: 1200px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button {
    -webkit-appearance: none;
    appearance: none;
    font-family: inherit;
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}

    body::before {
        content: '';
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 0;
        background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(242,100,25,.06) 0%, transparent 70%);
    }

a {
    color: inherit;
    text-decoration: none;
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 48px);
    background: rgba(6,8,12,.94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.brandline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.brand-phase {
    color: var(--orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

    .nav-links a {
        color: var(--muted);
        font-size: 14.5px;
        transition: color .2s;
    }

        .nav-links a:hover, .nav-links a.active {
            color: var(--ink);
        }

    .nav-links .btn-primary {
        color: #000;
    }

        .nav-links .btn-primary:hover {
            color: #000;
        }

/* AURA MARK */
.aura-mark {
    overflow: visible;
    filter: drop-shadow(0 0 6px rgba(242,100,25,.45));
    flex-shrink: 0;
}

.aura-ring {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: aura-draw 2s cubic-bezier(.16,1,.3,1) forwards;
}

@keyframes aura-draw {
    to {
        stroke-dashoffset: 0;
    }
}

.aura-orbit-1 {
    transform-origin: 100px 100px;
    animation: aura-spin 7s linear infinite;
}

.aura-orbit-2 {
    transform-origin: 100px 100px;
    animation: aura-spin 11s linear infinite reverse;
}

@keyframes aura-spin {
    to {
        transform: rotate(360deg);
    }
}

.aura-pulse {
    transform-origin: 100px 100px;
    animation: aura-pulse-kf 3.2s ease-in-out infinite;
}

@keyframes aura-pulse-kf {
    0%, 100% {
        opacity: .25;
        transform: scale(1);
    }

    50% {
        opacity: .6;
        transform: scale(1.12);
    }
}

/* BUTTONS */
.btn {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid var(--line);
    transition: transform .12s ease, background .2s, border-color .2s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-sm {
    padding: 9px 17px;
    font-size: 14.5px;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: var(--orange);
    color: #000;
    border-color: var(--orange);
    font-weight: 650;
}

    .btn-primary:hover {
        background: var(--orange-hi);
    }

    .btn-primary:disabled {
        opacity: .55;
        cursor: not-allowed;
        transform: none;
    }

/* LAYOUT */
.wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
}

.eyebrow {
    font-size: 13px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 18px;
}

h2 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 720;
    letter-spacing: -0.02em;
    line-height: 1.14;
    padding-bottom: .06em;
}

.lead {
    margin-top: 18px;
    font-size: clamp(15px, 1.3vw, 17px);
    color: var(--muted);
    line-height: 1.62;
}

/* PAGE HEADER */
.page-header {
    position: relative;
    padding: calc(66px + clamp(48px, 8vh, 80px)) 0 clamp(40px, 6vh, 64px);
    border-bottom: 1px solid var(--line);
}

    .page-header h1 {
        font-size: clamp(32px, 5vw, 64px);
        font-weight: 760;
        line-height: 1.07;
        letter-spacing: -.03em;
        max-width: 18ch;
        padding-bottom: .1em;
        background: linear-gradient(175deg, #ffffff 28%, #b9c6e0 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* TWO-COLUMN CONTACT LAYOUT */
.contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: clamp(40px, 6vw, 80px);
    padding: clamp(56px, 8vh, 96px) 0;
    align-items: start;
}

/* LEFT COLUMN */
.contact-info h2 {
    max-width: 22ch;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted-2);
    font-weight: 600;
}

.detail-value {
    font-size: 15.5px;
    color: var(--ink);
    font-weight: 500;
}

    .detail-value a {
        transition: color .2s;
    }

        .detail-value a:hover {
            color: var(--orange);
        }

.what-to-expect {
    margin-top: 40px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--panel);
}

    .what-to-expect h3 {
        font-size: 13.5px;
        font-weight: 700;
        color: var(--orange);
        margin-bottom: 12px;
    }

    .what-to-expect ol {
        padding-left: 18px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .what-to-expect li {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.55;
    }

/* FORM */
.form-wrap {
    position: relative;
}

.form-card {
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--panel);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}

    .form-group:last-of-type {
        margin-bottom: 0;
    }

label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
}

    label .optional {
        font-weight: 400;
        color: var(--muted-2);
        font-size: 12px;
        margin-left: 4px;
    }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 11px 14px;
    color: var(--ink);
    font-family: inherit;
    font-size: 15px;
    transition: border-color .2s;
    outline: none;
    -webkit-appearance: none;
}

    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="tel"]:focus,
    textarea:focus {
        border-color: var(--orange);
    }

    input[type="text"]::placeholder,
    input[type="email"]::placeholder,
    input[type="tel"]::placeholder,
    textarea::placeholder {
        color: var(--muted-2);
    }

textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.55;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0 10px;
}

    .checkbox-row input[type="checkbox"] {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        margin-top: 1px;
        accent-color: var(--orange);
        cursor: pointer;
        background: var(--bg);
        border: 1px solid var(--line);
        border-radius: 4px;
    }

    .checkbox-row span {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.55;
        cursor: pointer;
    }

.form-legal {
    margin-top: 12px;
    font-size: 12.5px;
    color: var(--muted-2);
    line-height: 1.65;
}

.form-submit {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

    .form-submit .btn {
        font-size: 15.5px;
        padding: 13px 28px;
    }

.form-error {
    display: none;
    font-size: 13.5px;
    color: var(--red);
}

/* SUCCESS STATE */
.success-card {
    display: none;
    padding: 48px 36px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--panel);
    text-align: center;
}

.success-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(242,100,25,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-card h3 {
    font-size: 22px;
    font-weight: 680;
    margin-bottom: 12px;
}

.success-card p {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.6;
    max-width: 36ch;
    margin: 0 auto;
}

/* FOOTER */
footer {
    border-top: 1px solid var(--line);
    padding: 48px 0 60px;
}

.foot-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 28px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
    margin-bottom: 22px;
}

.foot-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
}

.foot-meta {
    margin-top: 8px;
    font-size: 13.5px;
    color: var(--muted);
    max-width: 32ch;
    line-height: 1.5;
}

.foot-links {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: flex-end;
}

    .foot-links a {
        color: var(--ink);
        font-weight: 600;
        font-size: 14px;
        transition: color .2s;
    }

        .foot-links a:hover {
            color: var(--orange);
        }

.foot-legal {
    font-size: 12.5px;
    color: var(--muted-2);
    line-height: 1.75;
    max-width: 90ch;
}

/* RESPONSIVE */
@media (max-width: 860px) {
    .nav-links a:not(.btn) {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .foot-links {
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aura-ring {
        animation: none;
        stroke-dashoffset: 0;
    }

    .aura-orbit-1, .aura-orbit-2, .aura-pulse {
        animation: none;
    }
}
