/* Remedii logo-matched palette:
   Black: #000000
   Deep navy: #011836
   Electric blue: #2CBEFA
   Ice blue: #63D2FB
   Pale ice: #9FDDF5
   Silver white: #D1EEF9 / #F6FAFC
*/
:root {
    --bg: #000000;
    --bg-2: #010A18;
    --bg-3: #011836;
    --ink: #F6FAFC;
    --ink-soft: #D1EEF9;
    --muted: #8493A4;
    --card: rgba(1, 10, 24, 0.86);
    --card-strong: rgba(1, 24, 54, 0.96);
    --card-ice: rgba(99, 210, 251, 0.075);
    --line: rgba(99, 210, 251, 0.24);
    --line-hot: rgba(159, 221, 245, 0.72);
    --accent: #2CBEFA;
    --accent-2: #63D2FB;
    --accent-3: #9FDDF5;
    --accent-deep: #011836;
    --glow: rgba(44, 190, 250, 0.48);
    --glow-soft: rgba(44, 190, 250, 0.16);
    --glow-hard: rgba(44, 190, 250, 0.72);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: #000000;
}

body {
    margin: 0;
    color: var(--ink);
    min-height: 100vh;
    overflow-x: hidden;
    background: radial-gradient(circle at 16% 8%, rgba(44, 190, 250, 0.30), transparent 26%), radial-gradient(circle at 84% 12%, rgba(44, 190, 250, 0.28), transparent 25%), radial-gradient(circle at 50% 115%, rgba(159, 221, 245, 0.16), transparent 34%), linear-gradient(135deg, #000000 0%, var(--bg) 36%, var(--bg-2) 68%, #000000 100%);
}

    /* Soft logo-matched ambient light */
    body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -2;
        pointer-events: none;
        background: linear-gradient(rgba(44, 190, 250, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(44, 190, 250, 0.035) 1px, transparent 1px);
        background-size: 64px 64px;
        mask-image: linear-gradient(to bottom, rgba(0,0,0,0.88), transparent 78%);
    }

    body::after {
        content: "";
        position: fixed;
        left: 50%;
        bottom: -360px;
        z-index: -1;
        width: 920px;
        height: 520px;
        pointer-events: none;
        transform: translateX(-50%);
        background: radial-gradient(ellipse at center, rgba(44, 190, 250, 0.24), transparent 66%);
        filter: blur(22px);
    }

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    color: #001018;
    background: var(--accent-2);
}

.page-shell {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.nav {
    position: sticky;
    top: 16px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 16px 0 42px;
    padding: 10px 12px;
    border: 1px solid rgba(209, 238, 249, 0.36);
    border-radius: 999px;
    background: #000000;
    background-color: #000000;
    backdrop-filter: none;
    box-shadow: 0 0 0 1px rgba(246, 250, 252, 0.08) inset, 0 0 14px rgba(209, 238, 249, 0.32), 0 0 34px rgba(99, 210, 251, 0.24), 0 0 64px rgba(44, 190, 250, 0.16), 0 24px 80px rgba(0, 0, 0, 0.95);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 210px;
}

.brand-logo {
    height: 46px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: none;
}
.site-footer {
    padding: 28px 24px 36px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

    .site-footer p {
        margin: 0;
        color: rgba(255, 255, 255, 0.48);
        font-size: 0.78rem;
        letter-spacing: 0.02em;
    }
/* Kept as fallback in case old markup is still somewhere */
.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #001018;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 25%, #ffffff 0%, var(--accent-2) 22%, var(--accent) 58%, var(--accent-3) 100%);
    box-shadow: 0 0 18px rgba(159, 221, 245, 0.85), 0 0 44px var(--glow), 0 0 88px rgba(44, 190, 250, 0.35);
}

.nav-links {
    display: flex;
    gap: 24px;
    color: var(--muted);
    font-weight: 760;
}

    .nav-links a {
        position: relative;
        transition: color 180ms ease, text-shadow 180ms ease;
    }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -8px;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
            opacity: 0;
            transform: scaleX(0.55);
            transition: opacity 180ms ease, transform 180ms ease;
        }

        .nav-links a:hover {
            color: var(--accent-2);
            text-shadow: 0 0 24px var(--glow);
        }

            .nav-links a:hover::after {
                opacity: 1;
                transform: scaleX(1);
            }

.nav-cta,
.button,
.contact-form button {
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
}

.nav-cta {
    padding: 12px 18px;
    color: #001018;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-2) 34%, var(--accent) 72%, var(--accent-3) 100%);
    box-shadow: 0 0 20px rgba(159, 221, 245, 0.44), 0 0 42px rgba(44, 190, 250, 0.22), 0 16px 42px rgba(44, 190, 250, 0.30);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 28px rgba(159, 221, 245, 0.62), 0 0 74px rgba(44, 190, 250, 0.34), 0 20px 54px rgba(44, 190, 250, 0.36);
    }

.section {
    padding: 76px 0;
}

.hero {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 58px;
    min-height: 72vh;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent-2);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-shadow: 0 0 14px rgba(159, 221, 245, 0.70), 0 0 34px rgba(44, 190, 250, 0.34);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 800px;
    font-size: clamp(3.4rem, 8.4vw, 7.2rem);
    line-height: 0.86;
    letter-spacing: -0.092em;
    color: #ffffff;
    text-shadow: 0 0 18px rgba(159, 221, 245, 0.18), 0 0 70px rgba(44, 190, 250, 0.16);
}

h2 {
    font-size: clamp(2.35rem, 4.2vw, 4.45rem);
    line-height: 0.94;
    letter-spacing: -0.07em;
    color: #ffffff;
    text-shadow: 0 0 42px rgba(44, 190, 250, 0.17);
}

h3 {
    letter-spacing: -0.035em;
    color: var(--ink-soft);
}

.hero-text,
.split p,
.process p,
.contact-card p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 34px 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 23px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

    .button:hover,
    .contact-form button:hover {
        transform: translateY(-2px);
    }

.primary {
    color: #001018;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-2) 32%, var(--accent) 72%, var(--accent-3) 100%);
    box-shadow: 0 0 20px rgba(159, 221, 245, 0.44), 0 0 58px rgba(44, 190, 250, 0.30), 0 22px 58px rgba(44, 190, 250, 0.34);
}

    .primary:hover {
        box-shadow: 0 0 30px rgba(159, 221, 245, 0.66), 0 0 92px rgba(44, 190, 250, 0.40), 0 26px 70px rgba(44, 190, 250, 0.42);
    }

.secondary {
    color: var(--ink);
    background: rgba(159, 221, 245, 0.035);
    border: 1px solid rgba(159, 221, 245, 0.24);
    box-shadow: inset 0 0 24px rgba(44, 190, 250, 0.04), 0 0 18px rgba(44, 190, 250, 0.055);
}

    .secondary:hover {
        border-color: var(--line-hot);
        box-shadow: inset 0 0 30px rgba(44, 190, 250, 0.09), 0 0 34px rgba(44, 190, 250, 0.16);
    }

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
}

    .trust-row span {
        padding: 9px 12px;
        border: 1px solid rgba(159, 221, 245, 0.23);
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(44, 190, 250, 0.09), rgba(44, 190, 250, 0.035));
        box-shadow: inset 0 0 18px rgba(44, 190, 250, 0.04), 0 0 18px rgba(44, 190, 250, 0.045);
    }

.hero-card,
.feature-grid article,
.contact-card,
.steps div {
    border: 1px solid rgba(159, 221, 245, 0.20);
    background: linear-gradient(145deg, rgba(1, 24, 54, 0.90), rgba(0, 6, 14, 0.88));
    box-shadow: 0 0 0 1px rgba(159, 221, 245, 0.05) inset, 0 0 44px rgba(44, 190, 250, 0.11), 0 36px 120px rgba(0, 0, 0, 0.70);
    backdrop-filter: blur(26px);
}

.hero-card {
    padding: 28px;
    border-radius: 36px;
    transform: rotate(1deg);
    position: relative;
    overflow: hidden;
}

    .hero-card::before,
    .contact-card::before,
    .feature-grid article::before,
    .steps div::before {
        content: "";
        position: absolute;
        inset: -1px;
        pointer-events: none;
        background: linear-gradient(135deg, rgba(255,255,255,0.13), transparent 24%, rgba(53,220,255,0.16) 70%, transparent);
        opacity: 0.86;
    }

    .hero-card::after {
        content: "";
        position: absolute;
        width: 240px;
        height: 240px;
        right: -80px;
        top: -80px;
        border-radius: 50%;
        background: rgba(44, 190, 250, 0.16);
        filter: blur(24px);
        pointer-events: none;
    }

    .hero-card > *,
    .feature-grid article > *,
    .steps div > *,
    .contact-card > * {
        position: relative;
    }

.card-topline,
.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-pill {
    padding: 7px 11px;
    border-radius: 999px;
    color: #001018;
    background: linear-gradient(135deg, #ffffff, var(--accent-2), var(--accent));
    font-weight: 900;
    box-shadow: 0 0 18px rgba(159, 221, 245, 0.76), 0 0 42px var(--glow);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 28px 0;
}

    .metric-grid div {
        padding: 18px;
        border-radius: 22px;
        background: linear-gradient(145deg, rgba(159, 221, 245, 0.075), rgba(1, 10, 24, 0.88));
        border: 1px solid rgba(159, 221, 245, 0.16);
        box-shadow: inset 0 0 30px rgba(44, 190, 250, 0.04), 0 0 22px rgba(44, 190, 250, 0.035);
    }

small {
    display: block;
    color: var(--muted);
    margin-bottom: 10px;
}

strong {
    font-size: 1.95rem;
    letter-spacing: -0.055em;
    color: #ffffff;
    text-shadow: 0 0 16px rgba(159, 221, 245, 0.34), 0 0 34px rgba(44, 190, 250, 0.16);
}

.progress {
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(159, 221, 245, 0.10);
    border: 1px solid rgba(159, 221, 245, 0.12);
}

    .progress span {
        display: block;
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(90deg, var(--accent-3), var(--accent), #ffffff);
        box-shadow: 0 0 18px rgba(159, 221, 245, 0.80), 0 0 38px var(--glow);
    }

.activity-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

    .activity-list div {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px;
        border-radius: 18px;
        background: rgba(159, 221, 245, 0.045);
        border: 1px solid rgba(159, 221, 245, 0.13);
    }

    .activity-list span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent-2);
        box-shadow: 0 0 14px rgba(159, 221, 245, 0.95), 0 0 30px var(--glow);
    }

.split {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 42px;
    align-items: start;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

    .feature-grid article,
    .steps div {
        position: relative;
        overflow: hidden;
        padding: 26px;
        border-radius: 28px;
        transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

        .feature-grid article:hover,
        .steps div:hover {
            transform: translateY(-3px);
            border-color: var(--line-hot);
            box-shadow: 0 0 0 1px rgba(159, 221, 245, 0.09) inset, 0 0 58px rgba(44, 190, 250, 0.20), 0 38px 120px rgba(0, 0, 0, 0.76);
        }

    .feature-grid span {
        color: var(--accent-2);
        font-weight: 950;
        text-shadow: 0 0 16px rgba(159, 221, 245, 0.52), 0 0 30px var(--glow);
    }

.process {
    text-align: center;
}

    .process h2 {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
    text-align: left;
}

.contact-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    padding: 34px;
    border-radius: 36px;
    margin-bottom: 64px;
    position: relative;
    overflow: hidden;
}

.contact-form {
    display: grid;
    gap: 12px;
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 16px 18px;
        border: 1px solid rgba(159, 221, 245, 0.20);
        border-radius: 20px;
        background: rgba(0, 7, 14, 0.72);
        color: var(--ink);
        font: inherit;
        outline: none;
        box-shadow: inset 0 0 24px rgba(44, 190, 250, 0.04), 0 0 16px rgba(44, 190, 250, 0.035);
    }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: rgba(132, 147, 164, 0.74);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--line-hot);
            box-shadow: 0 0 0 4px rgba(44, 190, 250, 0.10), 0 0 30px rgba(44, 190, 250, 0.16), inset 0 0 28px rgba(44, 190, 250, 0.05);
        }

    .contact-form textarea {
        min-height: 120px;
        resize: vertical;
    }

    .contact-form button {
        padding: 16px 20px;
        color: #001018;
        background: linear-gradient(135deg, #ffffff 0%, var(--accent-2) 34%, var(--accent) 78%, var(--accent-3) 100%);
        box-shadow: 0 0 20px rgba(159, 221, 245, 0.42), 0 0 48px rgba(44, 190, 250, 0.22), 0 18px 52px rgba(44, 190, 250, 0.32);
        transition: transform 180ms ease, box-shadow 180ms ease;
    }

        .contact-form button:hover {
            box-shadow: 0 0 30px rgba(159, 221, 245, 0.60), 0 0 80px rgba(44, 190, 250, 0.34), 0 22px 62px rgba(44, 190, 250, 0.40);
        }

        .contact-form button:disabled,
        .contact-form input:disabled,
        .contact-form textarea:disabled {
            opacity: 0.68;
            cursor: not-allowed;
        }

.form-note {
    margin: 0;
    color: var(--accent-2) !important;
    font-weight: 850;
    text-shadow: 0 0 20px rgba(159, 221, 245, 0.36);
}

    .form-note.error {
        color: #ffb4c4 !important;
        text-shadow: 0 0 20px rgba(255, 84, 122, 0.28);
    }

.validation-message,
.validation-summary-errors {
    color: #ffb4c4;
    font-size: 0.92rem;
}

@media (max-width: 860px) {
    .nav {
        gap: 14px;
    }

    .brand {
        min-width: 150px;
    }

    .brand-logo {
        height: 38px;
    }

    .nav-links {
        display: none;
    }

    .hero,
    .split,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .steps,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: clamp(3rem, 14vw, 5.15rem);
    }

    .section {
        padding: 50px 0;
    }

    .hero-card {
        transform: none;
    }
}

@media (max-width: 480px) {
    .page-shell {
        width: min(100% - 22px, 1160px);
    }

    .nav {
        top: 10px;
        margin-top: 10px;
        padding: 9px;
    }

    .nav-cta {
        padding: 10px 13px;
        font-size: 0.88rem;
    }

    .brand {
        min-width: 118px;
    }

    .brand-logo {
        height: 32px;
    }

    .metric-grid {
        grid-template-columns: 1fr;
    }
}
