:root{
    --bg: #0b0d12;
    --panel: rgba(255,255,255,.04);
    --panel-2: rgba(255,255,255,.06);
    --border: rgba(255,255,255,.08);
    --text: rgba(255,255,255,.92);
    --muted: rgba(255,255,255,.68);
    --accent: #7c5cff;      /* soft electric purple */
    --accent-2: #2ee59d;    /* subtle “tech” green highlight */
}

* { box-sizing: border-box; }

html, body {
    height: 100%;
    margin: 0;
}

html{
    background: var(--bg);
}

body{
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
}

/* Main site background */
.bg-19six{
    min-height: 100vh;
    background:
        radial-gradient(1000px 600px at 10% -10%, rgba(124,92,255,.18), transparent 50%),
        radial-gradient(900px 600px at 90% 0%, rgba(46,229,157,.10), transparent 55%),
        var(--bg);
    background-repeat: no-repeat;
    background-size: cover;
}

.text-19six{ color: var(--text); }
.text-muted-19six{ color: var(--muted) !important; }

.fw-700{ font-weight: 700; }
.fw-800{ font-weight: 800; }

.border-19six{ border-color: var(--border) !important; }

/* Branding */
.brand-mark{
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 0 6px rgba(124,92,255,.10);
}

.brand-name{
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
}

/* Nav */
.nav-link-lite{
    color: var(--muted);
    text-decoration: none;
}
.nav-link-lite:hover{
    color: var(--text);
}

/* Eyebrow */
.eyebrow{
    display: inline-block;
    font-size: .85rem;
    color: var(--muted);
    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);
    padding: .4rem .65rem;
    border-radius: 999px;
}

/* Buttons */
.btn-cta{
    background: linear-gradient(135deg, var(--accent), #5a7bff);
    border: 0;
    color: #fff;
    font-weight: 700;
    border-radius: 14px;
    padding: .7rem 1rem;
}
.btn-cta:hover{
    filter: brightness(1.05);
    color:#fff;
}

.btn-outline-lite{
    border: 1px solid var(--border);
    background: rgba(255,255,255,.02);
    color: var(--text);
    border-radius: 14px;
    padding: .7rem 1rem;
}
.btn-outline-lite:hover{
    background: rgba(255,255,255,.05);
    color: var(--text);
}

/* Cards */
.card-lite{
    border: 1px solid var(--border);
    background: linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,.35);
}

/* Pills */
.pill{
    font-size: .85rem;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: .35rem .6rem;
    border-radius: 999px;
    background: rgba(255,255,255,.02);
}

/* Steps */
.step{
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,.03);
}

.step-num{
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: .75rem;
    background: rgba(124,92,255,.18);
    border: 1px solid rgba(124,92,255,.35);
}

/* Forms */
.form-control-lite{
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 14px;
}

.form-control-lite:focus{
    background: rgba(255,255,255,.04);
    border-color: rgba(124,92,255,.55);
    box-shadow: 0 0 0 .25rem rgba(124,92,255,.15);
    color: var(--text);
}

.form-control-lite::placeholder{
    color: rgba(255,255,255,.45);
}

/* Spacing */
.py-lg-6{
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* ---------------------------------------
   Success Popup (fade + slide + auto close)
---------------------------------------- */
.success-modal{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: modalFadeIn .18s ease-out forwards;
}

.success-modal-inner{
    background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 20px;
    padding: 2rem;
    max-width: 440px;
    width: calc(100% - 2rem);
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
    transform: translateY(10px);
    opacity: 0;
    animation: modalSlideIn .22s ease-out .05s forwards;
}

.success-modal-inner h3{
    margin-bottom: .5rem;
    font-weight: 800;
}

@keyframes modalFadeIn{
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn{
    from { transform: translateY(12px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.success-modal.is-closing{
    animation: modalFadeOut .18s ease-in forwards;
}

.success-modal.is-closing .success-modal-inner{
    animation: modalSlideOut .18s ease-in forwards;
}

@keyframes modalFadeOut{
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes modalSlideOut{
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(10px); opacity: 0; }
}