:root {
    --g3-ink: #031022;
    --g3-navy: #061a33;
    --g3-navy-2: #0a2446;
    --g3-indigo: #1b1a4a;
    --g3-accent: #25ACE6;
    --g3-accent-2: #2bd4ff;
    --g3-magenta: #8b5cf6; /* subtle secondary accent for drama */
    --g3-text-soft: rgba(255,255,255,.78);
    --g3-card: rgba(255,255,255,.08);
    --g3-border: rgba(255,255,255,.14);
}

html {
    scroll-behavior: smooth;
}

.text-accent {
    color: var(--g3-accent) !important;
}

/* Buttons */
.btn-accent {
    --bs-btn-color: #052034;
    --bs-btn-bg: var(--g3-accent);
    --bs-btn-border-color: var(--g3-accent);
    --bs-btn-hover-bg: var(--g3-accent-2);
    --bs-btn-hover-border-color: var(--g3-accent-2);
    --bs-btn-hover-color: #052034;
    --bs-btn-focus-shadow-rgb: 37, 172, 230;
}

    .btn-accent:     {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(37,172,230,.45), 0 0 25px rgba(43,212,255,.6), 0 0 45px rgba(139,92,246,.25);
    }

.btn-glow {
    position: relative;
    box-shadow: 0 10px 30px rgba(37,172,230,.25);
}

    .btn-glow:after {
        content: "";
        position: absolute;
        inset: -2px;
        border-radius: inherit;
        background: radial-gradient(300px 80px at 20% 30%, rgba(43,212,255,.45), transparent 70%), radial-gradient(220px 70px at 80% 60%, rgba(139,92,246,.25), transparent 70%);
        opacity: .55;
        filter: blur(10px);
        z-index: -1;
    }

/* Navbar */
.nav-glass {
    background: linear-gradient(180deg, rgba(3,16,34,.88), rgba(3,16,34,.70));
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Hero */
.hero-wrap {
    position: relative;
    overflow: hidden;
    background: radial-gradient(1200px 600px at 18% 8%, rgba(43,212,255,.34), transparent 60%), radial-gradient(900px 520px at 84% 36%, rgba(37,172,230,.26), transparent 60%), radial-gradient(700px 420px at 70% 10%, rgba(139,92,246,.22), transparent 60%), linear-gradient(180deg, var(--g3-ink), var(--g3-navy));
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: .92;
    background: linear-gradient(115deg, rgba(255,255,255,.10) 0%, transparent 30%), linear-gradient(65deg, rgba(37,172,230,.18) 0%, transparent 45%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800'%3E%3Cdefs%3E%3CradialGradient id='g' cx='50%25' cy='50%25' r='65%25'%3E%3Cstop offset='0%25' stop-color='rgba(255,255,255,0.14)'/%3E%3Cstop offset='100%25' stop-color='rgba(255,255,255,0)'/%3E%3C/radialGradient%3E%3C/defs%3E%3Ccircle cx='140' cy='120' r='260' fill='url(%23g)'/%3E%3Ccircle cx='680' cy='240' r='220' fill='url(%23g)'/%3E%3Ccircle cx='380' cy='680' r='300' fill='url(%23g)'/%3E%3C/svg%3E");
    background-size: auto, auto, 900px 900px;
    background-repeat: no-repeat;
    background-position: 0 0, 0 0, 50% 40%;
    animation: drift 18s ease-in-out infinite alternate;
}


@keyframes drift {
    0% {
        transform: translate3d(0,0,0) scale(1);
    }

    100% {
        transform: translate3d(0,-14px,0) scale(1.02);
    }
}

.hero-wrap .text-white-75 {
    color: var(--g3-text-soft) !important;
}

.hero-title {
    letter-spacing: -0.02em;
}

..gradient-text {
    background: linear-gradient( 90deg, rgba(43,212,255,1), rgba(37,172,230,1), rgba(139,92,246,0.9) );
    -webkit-background-clip: text; /* Chrome, Edge, Safari */
    background-clip: text; /* Standard */
    -webkit-text-fill-color: transparent; /* Required for WebKit */
    color: transparent; /* Fallback */
}
.wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 120px;
    fill: #f8f9fa;
}

.py-lg-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}


/* Cards / tiles */
.feature-title {

}.feature-tile {
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

    .feature-tile:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 50px rgba(0,0,0,.25), 0 0 25px rgba(37,172,230,.30), 0 0 45px rgba(139,92,246,.15);
        border-color: rgba(37,172,230,.45);
    }

.feature-tile-OLD {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    padding: 1.35rem;
    box-shadow: 0 18px 55px rgba(0,0,0,.10);
}

.feature-ico {
    font-size: 1.8rem;
    color: var(--g3-accent);
}

.approach-band {
    background: radial-gradient(900px 520px at 10% 10%, rgba(43,212,255,.16), transparent 60%), radial-gradient(820px 520px at 92% 20%, rgba(139,92,246,.14), transparent 60%), linear-gradient(180deg, var(--g3-navy), #041427);
}

.card-dark {
    background: var(--g3-card);
    color: #fff;
    border-radius: 18px;
    border: 1px solid var(--g3-border);
    box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
    font-weight: 700;
    color: #0b2a50;
    opacity: .7;
}

/* Lists */
.icon-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .icon-list li {
        display: flex;
        align-items: flex-start;
        gap: .55rem;
        margin: .55rem 0;
    }

    .icon-list i {
        color: var(--g3-accent);
        margin-top: .1rem;
    }

.stat {
    border: 1px solid rgba(0,0,0,.06);
}

/* Hero mini table */
.mini-list {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.mini-row {
    display: flex;
    gap: .75rem;
    align-items: center;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37,172,230,.38), rgba(3,16,34,.12));
    border: 1px solid rgba(255,255,255,.12);
}

.mini-line, .mini-sub {
    height: 10px;
    border-radius: 7px;
    background: rgba(255,255,255,.16);
}

.mini-sub {
    height: 8px;
    opacity: .8;
    margin-top: 6px;
}

.score {
    font-weight: 800;
    color: #eaf6ff;
    background: rgba(37,172,230,.18);
    border: 1px solid rgba(37,172,230,.35);
    padding: .25rem .60rem;
    border-radius: 999px;
}

/* Framework diagram */
.framework-rail {
    border-left: 2px solid rgba(37,172,230,.35);
    padding-left: 1rem;
}

.badge-soft {
    background: rgba(37,172,230,.12);
    border: 1px solid rgba(37,172,230,.25);
    color: #0b2a50;
}

/* CTA */
.cta-band {
    background: radial-gradient(900px 450px at 15% 10%, rgba(43,212,255,.24), transparent 60%), radial-gradient(700px 380px at 85% 30%, rgba(139,92,246,.18), transparent 60%), linear-gradient(180deg, #031022, #020a18);
}

/* Page header for inner pages */
.page-hero {
    background: radial-gradient(900px 420px at 12% 10%, rgba(43,212,255,.20), transparent 60%), radial-gradient(820px 420px at 92% 30%, rgba(139,92,246,.14), transparent 60%), linear-gradient(180deg, var(--g3-ink), var(--g3-navy));
    color: #fff;
}

    .page-hero .text-soft {
        color: var(--g3-text-soft);
    }


/* ===== Final polish: consistent background + section cards ===== */

body {
    background: radial-gradient(1200px 700px at 18% 8%, rgba(43,212,255,.12), transparent 60%), radial-gradient(900px 520px at 84% 36%, rgba(139,92,246,.10), transparent 60%), linear-gradient(180deg, #030f22, #061a33 40%, #071a33 100%);
}

.section-card {
    position: relative; /* ADD THIS */
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0,0,0,.25);
    padding: 1.5rem;
    /* ADD THIS */
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;

    .section-card::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient( 120deg, transparent 40%, rgba(43,212,255,.25), transparent 60% );
        opacity: 0;
        transition: opacity .4s ease;
        pointer-events: none;
    }

    .section-card:hover::after {
        opacity: 1;
    }
}
    .section-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 80px rgba(0,0,0,.35), /* depth */
        0 0 35px rgba(37,172,230,.35), /* primary blue glow */
        0 0 60px rgba(139,92,246,.18); /* subtle violet aura */

        border-color: rgba(37,172,230,.55);
    }

@media (min-width: 992px) {
    .section-card {
        padding: 2rem;
    }
}

.section-card .feature-tile {
    box-shadow: 0 14px 40px rgba(0,0,0,.10);
}

.section-title {
    color: #ffffff;
}

    .section-title .gradient-text {
        color: transparent;
    }

.section-subtitle {
    color: rgba(255,255,255,.78);
}

.navbar-brand img {
    filter: drop-shadow(0 6px 18px rgba(0,0,0,.35));
}

.footer-strong {
    color: rgba(255,255,255,.88) !important;
}

    .footer-strong a {
        color: rgba(255,255,255,.92) !important;
    }
h1:focus,
h1:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* Gradient text (hero + anywhere) */
.gradient-text {
    background: linear-gradient( 90deg, rgba(43,212,255,1), rgba(37,172,230,1), rgba(139,92,246,.9) );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; /* key for Chrome/Safari */
    color: transparent !important; /* beats inherited white */

    display: inline-block;
}