/* =================================================================
   Golden Core Mining — Futuristic Light Mode
   Clean cohesive design system
   ================================================================= */

/* -----------------------------------------------------------------
   Tokens
----------------------------------------------------------------- */
:root {
    /* Brand */
    --c-navy: #0A1F44;
    --c-navy-deep: #050E25;
    --c-navy-mid: #122B5A;

    /* Futuristic accents */
    --c-cyan: #00D9FF;
    --c-cyan-light: #5CE6FF;
    --c-cyan-deep: #0098B8;
    --c-electric: #2D6BFF;
    --c-violet: #6E5BFF;

    /* Gold */
    --c-gold: #FFB703;
    --c-gold-light: #FFD60A;
    --c-gold-deep: #C98800;

    /* Neutrals (light mode) */
    --c-bg: #F7F9FC;
    --c-bg-soft: #EEF3FB;
    --c-bg-card: #FFFFFF;
    --c-border: #DCE3EF;
    --c-border-soft: #E8EDF5;

    /* Text */
    --c-text: #061633;
    --c-text-2: #283A5C;
    --c-text-3: #4D5E7E;

    /* Effects */
    --shadow-sm: 0 4px 16px rgba(10, 31, 68, 0.06);
    --shadow-md: 0 10px 30px rgba(10, 31, 68, 0.08);
    --shadow-lg: 0 24px 60px rgba(10, 31, 68, 0.12);
    --shadow-glow: 0 0 60px rgba(0, 217, 255, 0.25);

    /* Geometry */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 32px;
    --max-w: 1200px;
    --nav-h: 76px;
}

/* -----------------------------------------------------------------
   Reset / Base
----------------------------------------------------------------- */
html { scroll-behavior: smooth; }

.page-home {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.page-home *,
.page-home *::before,
.page-home *::after { box-sizing: border-box; }

.page-home h1, .page-home h2, .page-home h3,
.page-home h4, .page-home h5, .page-home h6 {
    margin: 0 0 1rem;
    color: var(--c-text);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.page-home p { margin: 0 0 1rem; }
.page-home p:last-child { margin-bottom: 0; }
.page-home a { color: var(--c-electric); text-decoration: none; transition: color .25s ease; }
.page-home a:hover { color: var(--c-cyan-deep); }
.page-home img { max-width: 100%; height: auto; display: block; }
.page-home strong { font-weight: 700; color: var(--c-text); }

/* -----------------------------------------------------------------
   Animations / Reveal
----------------------------------------------------------------- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideLeft {
    from { opacity: 0; transform: translateX(-32px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
    from { opacity: 0; transform: translateX(32px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -25px); }
}
@keyframes pulseGlow {
    0%, 100% { opacity: .35; }
    50% { opacity: .65; }
}
@keyframes gridDrift {
    from { transform: translate(0, 0); }
    to { transform: translate(60px, 60px); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.gcm-reveal { opacity: 0; transition: opacity .8s ease, transform .8s cubic-bezier(.23,1,.32,1); transform: translateY(28px); }
.gcm-reveal.is-visible { opacity: 1; transform: translateY(0); }
.gcm-reveal-delay-1 { transition-delay: .15s; }
.gcm-reveal-delay-2 { transition-delay: .3s; }

/* Auto-stagger children inside reveal containers */
.gcm-stagger > *,
.gcm-features > *,
.gcm-stats > *,
.gcm-packages > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.23,1,.32,1);
}
.gcm-stagger.is-visible > *,
.gcm-features.is-visible > *,
.gcm-stats.is-visible > *,
.gcm-packages.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}
.gcm-stagger.is-visible > *:nth-child(1),
.gcm-features.is-visible > *:nth-child(1),
.gcm-stats.is-visible > *:nth-child(1),
.gcm-packages.is-visible > *:nth-child(1) { transition-delay: 0s; }
.gcm-stagger.is-visible > *:nth-child(2),
.gcm-features.is-visible > *:nth-child(2),
.gcm-stats.is-visible > *:nth-child(2),
.gcm-packages.is-visible > *:nth-child(2) { transition-delay: .08s; }
.gcm-stagger.is-visible > *:nth-child(3),
.gcm-features.is-visible > *:nth-child(3),
.gcm-stats.is-visible > *:nth-child(3),
.gcm-packages.is-visible > *:nth-child(3) { transition-delay: .16s; }
.gcm-stagger.is-visible > *:nth-child(4),
.gcm-features.is-visible > *:nth-child(4),
.gcm-stats.is-visible > *:nth-child(4) { transition-delay: .24s; }
.gcm-stagger.is-visible > *:nth-child(5),
.gcm-features.is-visible > *:nth-child(5),
.gcm-stats.is-visible > *:nth-child(5) { transition-delay: .32s; }
.gcm-stagger.is-visible > *:nth-child(6),
.gcm-features.is-visible > *:nth-child(6),
.gcm-stats.is-visible > *:nth-child(6) { transition-delay: .40s; }
.gcm-stats.is-visible > *:nth-child(7) { transition-delay: .48s; }
.gcm-stats.is-visible > *:nth-child(8) { transition-delay: .56s; }

/* -----------------------------------------------------------------
   Navigation
----------------------------------------------------------------- */
.gcm-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(247, 249, 252, 0.78);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(220, 227, 239, 0.6);
    transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.gcm-nav.is-scrolled {
    background: rgba(247, 249, 252, 0.92);
    box-shadow: 0 4px 24px rgba(10, 31, 68, 0.06);
    border-bottom-color: var(--c-border);
}
.gcm-nav__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.gcm-logo {
    display: flex; align-items: center; gap: .7rem;
    text-decoration: none; color: inherit;
    transition: transform .3s ease;
}
.gcm-logo:hover { transform: translateY(-1px); }
.gcm-logo img { width: 42px; height: 42px; }
.gcm-logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.gcm-logo__name {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700; font-size: 1.05rem; letter-spacing: .02em;
    color: var(--c-gold-deep);
    text-transform: uppercase;
}
.gcm-logo__tag {
    font-size: .65rem; font-weight: 600; letter-spacing: .18em;
    color: var(--c-text-3); text-transform: uppercase;
}
.gcm-nav__links {
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: center; gap: 2rem;
}
.gcm-nav__links a {
    color: var(--c-text);
    font-size: .94rem; font-weight: 600;
    position: relative;
    transition: color .3s ease;
}
.gcm-nav__links a::after {
    content: ''; position: absolute;
    left: 0; bottom: -6px; right: 0;
    height: 2px; background: linear-gradient(90deg, var(--c-cyan), var(--c-electric));
    border-radius: 2px;
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s cubic-bezier(.23,1,.32,1);
}
.gcm-nav__links a:hover,
.gcm-nav__links a.is-active { color: var(--c-text); }
.gcm-nav__links a:hover::after,
.gcm-nav__links a.is-active::after { transform: scaleX(1); }
.gcm-nav__toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 40px; height: 40px;
    flex-direction: column; gap: 5px;
    align-items: center; justify-content: center;
}
.gcm-nav__toggle span {
    width: 22px; height: 2px;
    background: var(--c-text); border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
}
.gcm-nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gcm-nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.gcm-nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -----------------------------------------------------------------
   Buttons
----------------------------------------------------------------- */
.gcm-btn {
    --btn-pad-y: .9rem;
    --btn-pad-x: 1.7rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: var(--btn-pad-y) var(--btn-pad-x);
    font-family: inherit;
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .01em;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease, color .3s ease;
    white-space: nowrap;
    isolation: isolate;
}
.gcm-btn--sm { --btn-pad-y: .6rem; --btn-pad-x: 1.2rem; font-size: .85rem; }

.gcm-btn--primary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--c-electric) 0%, var(--c-cyan) 100%);
    box-shadow: 0 8px 24px rgba(45, 107, 255, 0.28), inset 0 1px 0 rgba(255,255,255,.2);
}
.gcm-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(45, 107, 255, 0.4), inset 0 1px 0 rgba(255,255,255,.25);
    color: #fff !important;
    background: linear-gradient(135deg, var(--c-cyan) 0%, var(--c-electric) 100%);
}

.gcm-btn--outline {
    color: var(--c-text);
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--c-border);
    backdrop-filter: blur(8px);
}
.gcm-btn--outline:hover {
    color: var(--c-text);
    background: #fff;
    border-color: var(--c-cyan);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 217, 255, 0.18);
}
/* On dark backgrounds: light outline */
.gcm-hero .gcm-btn--outline,
.gcm-section--dark .gcm-btn--outline,
.gcm-cta-banner .gcm-btn--outline {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 217, 255, 0.3);
    backdrop-filter: blur(10px);
}
.gcm-hero .gcm-btn--outline:hover,
.gcm-section--dark .gcm-btn--outline:hover,
.gcm-cta-banner .gcm-btn--outline:hover {
    color: #fff;
    background: rgba(0, 217, 255, 0.12);
    border-color: var(--c-cyan);
    box-shadow: 0 10px 28px rgba(0, 217, 255, 0.25);
}

.gcm-btn--gold {
    color: var(--c-navy-deep);
    background: linear-gradient(135deg, var(--c-gold-light) 0%, var(--c-gold) 100%);
    box-shadow: 0 8px 24px rgba(255, 183, 3, 0.32);
    font-weight: 700;
}
.gcm-btn--gold:hover {
    color: var(--c-navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(255, 183, 3, 0.45);
}

.gcm-btn--white {
    color: var(--c-navy);
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.gcm-btn--white:hover {
    color: var(--c-navy);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

/* -----------------------------------------------------------------
   Section primitives
----------------------------------------------------------------- */
.gcm-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

.gcm-section {
    position: relative;
    padding: 6rem 0;
    background: var(--c-bg);
}
.gcm-section--alt { background: var(--c-bg-soft); }
.gcm-section--tight { padding: 4rem 0; }
.gcm-section--full { min-height: 90vh; display: flex; align-items: center; }
.gcm-section--dark {
    background: linear-gradient(165deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    padding: 7rem 0;
}
.gcm-section--dark::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(700px circle at 80% -20%, rgba(0, 217, 255, 0.18), transparent 60%),
        radial-gradient(500px circle at 0% 100%, rgba(110, 91, 255, 0.15), transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.gcm-section--dark::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
    pointer-events: none;
    z-index: 0;
}
.gcm-section--dark > * { position: relative; z-index: 1; }
.gcm-section--dark .gcm-heading,
.gcm-section--dark h2,
.gcm-section--dark h3 { color: #fff; }
.gcm-section--dark .gcm-lead,
.gcm-section--dark .gcm-body,
.gcm-section--dark p { color: rgba(255,255,255,.92); }
.gcm-section--dark .gcm-statement { color: #fff; }
.gcm-section--dark .gcm-statement strong {
    background: linear-gradient(135deg, var(--c-cyan-light), var(--c-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gcm-section--dark .gcm-eyebrow {
    color: var(--c-cyan-light);
    background: rgba(0, 217, 255, .1);
    border-color: rgba(0, 217, 255, .35);
}
.gcm-section--blue {
    background: linear-gradient(165deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
    color: #fff;
    overflow: hidden;
}
.gcm-section--blue::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(800px circle at 80% -20%, rgba(0, 217, 255, 0.18), transparent 60%),
        radial-gradient(600px circle at 0% 100%, rgba(110, 91, 255, 0.15), transparent 60%);
    pointer-events: none;
}
.gcm-section--blue::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
    pointer-events: none;
}
.gcm-section--blue > * { position: relative; z-index: 1; }

.gcm-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--c-cyan-deep);
    margin-bottom: .9rem;
    padding: .35rem .9rem;
    background: linear-gradient(135deg, rgba(0,217,255,.08), rgba(45,107,255,.06));
    border: 1px solid rgba(0, 217, 255, .25);
    border-radius: 999px;
}
.gcm-section--blue .gcm-eyebrow {
    color: var(--c-cyan-light);
    background: rgba(0, 217, 255, .1);
    border-color: rgba(0, 217, 255, .35);
}

.gcm-heading {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.85rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 1.2rem;
    color: var(--c-text);
}
.gcm-section--blue .gcm-heading,
.gcm-section--blue h2,
.gcm-section--blue h3 { color: #fff; }

.gcm-lead {
    font-size: clamp(1.08rem, 1.6vw, 1.22rem);
    color: var(--c-text);
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: .9;
}
.gcm-section--blue .gcm-lead { color: rgba(255,255,255,.95); }

.gcm-body {
    color: var(--c-text-2);
    font-size: 1.02rem;
    line-height: 1.75;
    font-weight: 450;
}
.gcm-section--blue .gcm-body,
.gcm-section--blue p { color: rgba(255,255,255,.92); }

/* Cinematic centered container */
.gcm-cinematic {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.gcm-cinematic .gcm-lead { margin-left: auto; margin-right: auto; }
.gcm-cinematic .gcm-body { margin-left: auto; margin-right: auto; max-width: 640px; }
.gcm-statement {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.015em;
    color: var(--c-text);
    margin: 2rem 0 0;
}
.gcm-section--blue .gcm-statement { color: #fff; }

/* -----------------------------------------------------------------
   Hero — Full-screen dark futuristic
----------------------------------------------------------------- */
.gcm-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: stretch;
    padding: 0;
    background: linear-gradient(165deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.gcm-hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 30%, transparent);
    animation: gridDrift 30s linear infinite;
    z-index: 0;
}
.gcm-hero__glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
}
.gcm-hero__glow--gold {
    top: -30%;
    right: -10%;
    background: radial-gradient(circle, var(--c-gold), transparent 70%);
    opacity: .18;
    animation: float 14s ease-in-out infinite, pulseGlow 9s ease-in-out infinite;
}
.gcm-hero__glow--blue {
    bottom: -35%;
    left: -15%;
    background: radial-gradient(circle, var(--c-cyan), transparent 70%);
    opacity: .35;
    animation: float 18s ease-in-out infinite reverse, pulseGlow 11s ease-in-out infinite;
}
.gcm-hero__inner {
    position: relative;
    z-index: 2;
    flex: 1;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: calc(var(--nav-h) + 1.75rem) 1.5rem 2.5rem;
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 3.25rem;
    align-items: stretch;
}
.gcm-hero__copy { align-self: center; }
.gcm-hero__visual { display: flex; align-items: stretch; }
.gcm-hero__copy .gcm-eyebrow {
    color: var(--c-cyan-light);
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
}
.gcm-hero__title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(2.2rem, 4.8vw, 3.6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin: 0 0 1.25rem;
    background: linear-gradient(135deg, #fff 0%, var(--c-cyan-light) 60%, var(--c-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gcm-hero__rhythm {
    margin: 0 0 1.1rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(1.05rem, 1.85vw, 1.22rem);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.015em;
    color: #fff;
}
.gcm-hero__rhythm p { margin: 0 0 .35rem; color: rgba(255, 255, 255, 0.92); }
.gcm-hero__tagline {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
    max-width: 34rem;
    margin: 0 0 1.4rem;
    font-weight: 450;
}
.gcm-hero__actions {
    display: flex; flex-wrap: wrap; gap: .9rem;
    margin: .5rem 0 1.25rem;
}
.gcm-hero__trust {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
    letter-spacing: .01em;
    padding: .45rem .9rem;
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.28);
    border-radius: 999px;
}
.gcm-hero__trust::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--c-cyan);
    box-shadow: 0 0 8px var(--c-cyan);
}
.gcm-hero__img-wrap {
    position: relative;
    width: 100%;
    min-height: 400px;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 217, 255, 0.25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 217, 255, 0.15);
    transition: transform .6s cubic-bezier(.23,1,.32,1), box-shadow .6s ease;
}
.gcm-hero__img-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 80px rgba(0, 217, 255, 0.25);
}
.gcm-hero__img-wrap::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,217,255,.15), transparent 50%);
    z-index: 2;
    pointer-events: none;
}
.gcm-hero__img-wrap::after {
    content: '';
    position: absolute;
    top: -1px; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--c-cyan), transparent);
    z-index: 3;
    pointer-events: none;
}
.gcm-hero__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}
.gcm-hero__img-wrap:hover img { transform: scale(1.05); }

/* Hero overlay elements — floating badges + scan + frame corners */
@keyframes scanLine {
    0% { transform: translateY(-20%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(120%); opacity: 0; }
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(0, 217, 255, 0); }
}
.gcm-hero__scan {
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 90px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0, 217, 255, 0.08) 40%,
        rgba(0, 217, 255, 0.22) 50%,
        rgba(0, 217, 255, 0.08) 60%,
        transparent 100%);
    pointer-events: none;
    z-index: 4;
    animation: scanLine 6s ease-in-out infinite;
    mix-blend-mode: screen;
}
.gcm-hero__badge {
    position: absolute;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .65rem 1rem;
    background: rgba(5, 14, 37, 0.75);
    border: 1px solid rgba(0, 217, 255, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.04) inset;
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .01em;
    transition: transform .5s cubic-bezier(.23,1,.32,1);
}
.gcm-hero__badge--tl { top: 1rem; left: 1rem; }
.gcm-hero__badge--br { bottom: 1rem; right: 1rem; }
.gcm-hero__img-wrap:hover .gcm-hero__badge--tl { transform: translate(-3px, -3px); }
.gcm-hero__img-wrap:hover .gcm-hero__badge--br { transform: translate(3px, 3px); }
.gcm-hero__badge-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--c-cyan);
    box-shadow: 0 0 12px var(--c-cyan);
    animation: badgePulse 2s ease-out infinite;
    flex-shrink: 0;
}
.gcm-hero__badge-text { color: rgba(255,255,255,.85); }
.gcm-hero__badge-text strong {
    color: var(--c-cyan-light);
    font-weight: 700;
    margin-left: .25rem;
}
.gcm-hero__badge-icon {
    width: 32px; height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0,217,255,.18), rgba(45,107,255,.1));
    border: 1px solid rgba(0, 217, 255, 0.3);
    color: var(--c-cyan-light);
    flex-shrink: 0;
}
.gcm-hero__badge-icon svg { width: 16px; height: 16px; }
.gcm-hero__badge-label {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--c-cyan-light);
    margin-bottom: 2px;
}
.gcm-hero__badge-value {
    display: block;
    font-size: .92rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}
.gcm-hero__frame-corner {
    position: absolute;
    width: 28px; height: 28px;
    z-index: 4;
    pointer-events: none;
}
.gcm-hero__frame-corner::before,
.gcm-hero__frame-corner::after {
    content: '';
    position: absolute;
    background: var(--c-cyan);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.7);
}
.gcm-hero__frame-corner--tl { top: 10px; left: 10px; }
.gcm-hero__frame-corner--tr { top: 10px; right: 10px; }
.gcm-hero__frame-corner--bl { bottom: 10px; left: 10px; }
.gcm-hero__frame-corner--br { bottom: 10px; right: 10px; }
.gcm-hero__frame-corner--tl::before { top: 0; left: 0; width: 16px; height: 2px; }
.gcm-hero__frame-corner--tl::after  { top: 0; left: 0; width: 2px; height: 16px; }
.gcm-hero__frame-corner--tr::before { top: 0; right: 0; width: 16px; height: 2px; }
.gcm-hero__frame-corner--tr::after  { top: 0; right: 0; width: 2px; height: 16px; }
.gcm-hero__frame-corner--bl::before { bottom: 0; left: 0; width: 16px; height: 2px; }
.gcm-hero__frame-corner--bl::after  { bottom: 0; left: 0; width: 2px; height: 16px; }
.gcm-hero__frame-corner--br::before { bottom: 0; right: 0; width: 16px; height: 2px; }
.gcm-hero__frame-corner--br::after  { bottom: 0; right: 0; width: 2px; height: 16px; }
@media (max-width: 720px) {
    .gcm-hero__badge { padding: .5rem .75rem; font-size: .72rem; }
    .gcm-hero__badge--tl { top: .6rem; left: .6rem; }
    .gcm-hero__badge--br { bottom: .6rem; right: .6rem; }
    .gcm-hero__badge-icon { width: 26px; height: 26px; }
    .gcm-hero__badge-label { font-size: .6rem; }
    .gcm-hero__badge-value { font-size: .82rem; }
    .gcm-hero__frame-corner { width: 22px; height: 22px; }
}

/* Laptop screens — tighten hero typography so it fits 100vh without overflow */
@media (min-width: 961px) and (max-width: 1440px) {
    .gcm-hero__inner { padding: calc(var(--nav-h) + 1.5rem) 1.5rem 2.25rem; gap: 2.75rem; }
    .gcm-hero__title { font-size: clamp(2.1rem, 4vw, 3.05rem); margin-bottom: 1.1rem; }
    .gcm-hero__rhythm { font-size: 1.1rem; margin-bottom: 1rem; }
    .gcm-hero__tagline { font-size: .97rem; margin-bottom: 1.2rem; }
    .gcm-hero__img-wrap { min-height: 360px; }
}

/* Short laptop viewports — extra-compact text so 100vh still fits */
@media (max-height: 820px) and (min-width: 961px) {
    .gcm-hero__inner { padding: calc(var(--nav-h) + 1.25rem) 1.5rem 2rem; }
    .gcm-hero__title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: .85rem; }
    .gcm-hero__rhythm { font-size: 1.02rem; margin-bottom: .75rem; }
    .gcm-hero__tagline { font-size: .94rem; line-height: 1.55; margin-bottom: .95rem; }
    .gcm-hero__img-wrap { min-height: 320px; }
    .gcm-hero__trust { font-size: .78rem; padding: .4rem .8rem; }
}

/* -----------------------------------------------------------------
   Split sections
----------------------------------------------------------------- */
.gcm-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.gcm-split--reverse { direction: rtl; }
.gcm-split--reverse > * { direction: ltr; }

.gcm-img-card {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--c-border);
    aspect-ratio: 4/3;
    position: relative;
    transition: transform .5s cubic-bezier(.23,1,.32,1), box-shadow .5s ease;
}
.gcm-img-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(10, 31, 68, 0.18);
}
.gcm-img-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,217,255,.08), transparent 50%);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity .5s ease;
}
.gcm-img-card:hover::before { opacity: 1; }
.gcm-img-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .9s ease;
}
.gcm-img-card:hover img { transform: scale(1.04); }

/* -----------------------------------------------------------------
   Mission lines + ownership callout
----------------------------------------------------------------- */
.gcm-mission-pull {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--c-electric), var(--c-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 1.5rem 0;
}
.gcm-mission-lines {
    margin: 1.75rem 0 0;
    padding: 0;
    list-style: none;
}
.gcm-mission-lines li {
    position: relative;
    padding-left: 1.5rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.55;
    margin-bottom: .5rem;
    color: var(--c-text);
}
.gcm-mission-lines li::before {
    content: '';
    position: absolute;
    left: 0; top: .65rem;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-cyan), var(--c-electric));
    box-shadow: 0 0 12px rgba(0, 217, 255, .5);
}
.gcm-ownership-callout {
    margin-top: 1.75rem;
    padding: 1.1rem 1.4rem;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, rgba(0,217,255,.08), rgba(45,107,255,.05));
    border: 1px solid rgba(0, 217, 255, .3);
    border-left: 3px solid var(--c-cyan);
}
.gcm-ownership-callout p {
    margin: 0;
    font-weight: 600;
    color: var(--c-navy);
    font-size: 1rem;
}

/* -----------------------------------------------------------------
   Steps (numbered, works on dark background)
----------------------------------------------------------------- */
.gcm-steps {
    list-style: none;
    padding: 0;
    margin: 2.5rem auto 0;
    max-width: 640px;
    text-align: left;
    counter-reset: step;
    display: grid;
    gap: 1.25rem;
}
.gcm-steps li {
    position: relative;
    padding: 1.4rem 1.5rem 1.4rem 4.5rem;
    counter-increment: step;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--r-md);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
    font-size: 1rem;
    transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.gcm-steps li:hover {
    background: rgba(0, 217, 255, 0.08);
    border-color: rgba(0, 217, 255, 0.35);
    transform: translateX(4px);
}
.gcm-steps li::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    left: 1.25rem; top: 50%;
    transform: translateY(-50%);
    width: 2.5rem; height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-cyan), var(--c-electric));
    color: #fff;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: .92rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 217, 255, .35);
}
.gcm-steps li strong,
.gcm-steps li .gcm-steps__title {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: .35rem;
    letter-spacing: -0.01em;
}
.gcm-steps__desc {
    display: block;
    color: rgba(255, 255, 255, 0.88);
    font-size: .98rem;
    line-height: 1.65;
}

/* -----------------------------------------------------------------
   Packages
----------------------------------------------------------------- */
.gcm-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.gcm-package {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2.25rem 1.85rem;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    transition: transform .4s cubic-bezier(.23,1,.32,1), box-shadow .4s ease, border-color .4s ease;
    overflow: hidden;
}
.gcm-package::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-cyan), var(--c-electric), var(--c-violet));
    opacity: 0;
    transition: opacity .4s ease;
}
.gcm-package:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(10, 31, 68, 0.14);
    border-color: rgba(0, 217, 255, 0.35);
}
.gcm-package:hover::before { opacity: 1; }
.gcm-package__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-text);
    text-transform: uppercase;
    letter-spacing: .14em;
    margin: 0 0 .35rem;
    opacity: .85;
}
.gcm-package__price {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--c-navy);
    line-height: 1;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}
.gcm-package__price small {
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-text-2);
    margin-left: .25rem;
}
.gcm-package__desc {
    font-size: .98rem;
    color: var(--c-text-2);
    line-height: 1.65;
    flex: 1;
    margin: 0 0 1.5rem;
    font-weight: 450;
}
.gcm-package__note {
    font-size: .8rem;
    color: var(--c-text-3);
    margin: 1rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid var(--c-border-soft);
    line-height: 1.55;
}

/* Package: detailed feature list */
.gcm-package__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: .55rem;
}
.gcm-package__features li {
    position: relative;
    padding-left: 1.6rem;
    font-size: .9rem;
    color: var(--c-text-2);
    line-height: 1.55;
}
.gcm-package__features li::before {
    content: '';
    position: absolute;
    left: 0; top: .55rem;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-cyan), var(--c-electric));
    box-shadow: 0 2px 6px rgba(0, 217, 255, 0.35);
}
.gcm-package__features li::after {
    content: '';
    position: absolute;
    left: 3px; top: .85rem;
    width: 8px; height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}
.gcm-package__features li strong {
    color: var(--c-text);
    font-weight: 700;
    margin-right: .25rem;
}
.gcm-package__tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin: 0 0 .6rem;
    padding: .25rem .7rem;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0,217,255,.12), rgba(45,107,255,.08));
    color: var(--c-cyan-deep);
    border: 1px solid rgba(0, 217, 255, 0.28);
    align-self: flex-start;
}
.gcm-package--featured {
    border-color: rgba(0, 217, 255, 0.45);
    box-shadow: 0 18px 50px rgba(45, 107, 255, 0.12);
}
.gcm-package--featured::before { opacity: 1; }

/* -----------------------------------------------------------------
   Trust strip (above contact form)
----------------------------------------------------------------- */
.gcm-trust {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.gcm-trust__item {
    position: relative;
    padding: 1.5rem 1.4rem 1.5rem 3.4rem;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.gcm-trust__item:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 14px 36px rgba(10, 31, 68, 0.1);
}
.gcm-trust__item::before {
    content: '';
    position: absolute;
    left: 1.2rem; top: 1.65rem;
    width: 1.5rem; height: 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-cyan), var(--c-electric));
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.35);
}
.gcm-trust__item::after {
    content: '';
    position: absolute;
    left: 1.55rem; top: 2.05rem;
    width: .65rem; height: .35rem;
    border-left: 2.2px solid #fff;
    border-bottom: 2.2px solid #fff;
    transform: rotate(-45deg);
}
.gcm-trust__item h4 {
    font-size: 1rem;
    margin: 0 0 .25rem;
    color: var(--c-text);
    font-weight: 700;
    letter-spacing: -0.01em;
}
.gcm-trust__item p {
    font-size: .9rem;
    color: var(--c-text-2);
    line-height: 1.6;
    margin: 0;
}

/* -----------------------------------------------------------------
   Risk / Reality grid
----------------------------------------------------------------- */
.gcm-risk {
    margin: 2.5rem 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}
.gcm-risk__item {
    padding: 1.5rem 1.4rem;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    transition: border-color .3s ease, background .3s ease, transform .3s ease;
}
.gcm-risk__item:hover {
    border-color: rgba(255, 183, 3, 0.45);
    background: rgba(255, 183, 3, 0.05);
    transform: translateY(-3px);
}
.gcm-risk__item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 .35rem;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: .55rem;
}
.gcm-risk__item h4::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--c-gold);
    box-shadow: 0 0 8px var(--c-gold);
}
.gcm-risk__item p {
    margin: 0;
    font-size: .9rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}
.gcm-risk-note {
    margin: 2rem auto 0;
    max-width: 720px;
    text-align: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: .95rem;
    line-height: 1.7;
}

/* -----------------------------------------------------------------
   Compare table (light section, used on comparison pages)
----------------------------------------------------------------- */
.gcm-compare {
    margin: 2.5rem auto 0;
    max-width: 960px;
    overflow-x: auto;
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
    background: var(--c-bg-card);
}
.gcm-compare table {
    width: 100%;
    border-collapse: collapse;
    font-size: .95rem;
}
.gcm-compare thead th {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
    color: #fff;
    text-align: left;
    padding: 1rem 1.25rem;
    font-weight: 700;
    letter-spacing: .02em;
    font-size: .92rem;
}
.gcm-compare tbody td {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--c-border-soft);
    color: var(--c-text-2);
    line-height: 1.55;
    vertical-align: top;
}
.gcm-compare tbody tr:nth-child(even) td { background: var(--c-bg-soft); }
.gcm-compare tbody td:first-child {
    font-weight: 600;
    color: var(--c-text);
    width: 26%;
}
.gcm-compare tbody td.is-pos { color: var(--c-cyan-deep); }
.gcm-compare tbody td.is-pos::before {
    content: '✓ ';
    color: var(--c-cyan-deep);
    font-weight: 800;
    margin-right: .25rem;
}

/* -----------------------------------------------------------------
   Two-up info cards (used on comparison/primer pages)
----------------------------------------------------------------- */
.gcm-twoup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.gcm-twoup__card {
    padding: 2rem 1.85rem;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
}
.gcm-twoup__card h3 {
    font-size: 1.25rem;
    margin: 0 0 .85rem;
    color: var(--c-text);
}
.gcm-twoup__card p {
    color: var(--c-text-2);
    line-height: 1.7;
}
.gcm-twoup__card ul {
    list-style: none;
    padding: 0;
    margin: .5rem 0 0;
    display: grid;
    gap: .4rem;
}
.gcm-twoup__card ul li {
    position: relative;
    padding-left: 1.25rem;
    font-size: .95rem;
    color: var(--c-text-2);
    line-height: 1.55;
}
.gcm-twoup__card ul li::before {
    content: '';
    position: absolute;
    left: 0; top: .55rem;
    width: 8px; height: 8px;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--c-cyan), var(--c-electric));
}

/* -----------------------------------------------------------------
   FAQ
----------------------------------------------------------------- */
.gcm-faq {
    max-width: 800px;
    margin: 2.5rem auto 0;
    border-radius: var(--r-lg);
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.gcm-faq__item { border-bottom: 1px solid var(--c-border-soft); }
.gcm-faq__item:last-child { border-bottom: none; }
.gcm-faq__q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.35rem 1.6rem;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.02rem;
    font-weight: 600;
    text-align: left;
    color: var(--c-text);
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
    letter-spacing: -0.01em;
}
.gcm-faq__q:hover { background: var(--c-bg-soft); color: var(--c-electric); }
.gcm-faq__q svg {
    width: 22px; height: 22px;
    stroke: var(--c-text-3);
    fill: none;
    stroke-width: 2.2;
    flex-shrink: 0;
    transition: transform .35s ease, stroke .25s ease;
}
.gcm-faq__item.is-open .gcm-faq__q { color: var(--c-electric); }
.gcm-faq__item.is-open .gcm-faq__q svg { transform: rotate(180deg); stroke: var(--c-electric); }
.gcm-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.23,1,.32,1), padding .35s ease;
    padding: 0 1.6rem;
}
.gcm-faq__item.is-open .gcm-faq__a {
    max-height: 500px;
    padding: 0 1.6rem 1.4rem;
}
.gcm-faq__a p {
    color: var(--c-text-2);
    line-height: 1.75;
    font-size: 1rem;
    margin: 0;
    font-weight: 450;
}
.gcm-faq__a a { color: var(--c-electric); font-weight: 600; }

/* -----------------------------------------------------------------
   CTA Banner
----------------------------------------------------------------- */
.gcm-cta-banner {
    position: relative;
    padding: 3rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.gcm-cta-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}
.gcm-cta-banner__glow {
    position: absolute;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--c-cyan), transparent 60%);
    filter: blur(110px);
    opacity: .28;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: pulseGlow 7s ease-in-out infinite;
}
.gcm-cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, black, transparent);
    pointer-events: none;
    animation: gridDrift 30s linear infinite;
}
.gcm-cta-banner > * { position: relative; z-index: 1; }
.gcm-cta-banner h2 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 800;
    margin: 0 0 .9rem;
    letter-spacing: -0.025em;
    color: #fff;
    background: linear-gradient(135deg, #fff 0%, var(--c-cyan-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.15;
}
.gcm-cta-banner p {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 32rem;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}
.gcm-cta-banner .gcm-btn-group {
    display: flex; flex-wrap: wrap; gap: .85rem;
    justify-content: center;
    margin-top: .5rem;
}

/* -----------------------------------------------------------------
   Contact form
----------------------------------------------------------------- */
.gcm-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.gcm-form {
    background: var(--c-bg-card);
    padding: 2.5rem;
    border-radius: var(--r-xl);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.gcm-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-cyan), var(--c-electric), var(--c-violet));
}
.gcm-form__fields { display: flex; flex-direction: column; gap: 1.1rem; }
.gcm-form__field { display: flex; flex-direction: column; gap: .4rem; }
.gcm-form__field label {
    font-size: .86rem;
    font-weight: 600;
    color: var(--c-text);
    letter-spacing: .02em;
}
.gcm-form__field input {
    padding: .85rem 1.1rem;
    font-size: .98rem;
    font-family: inherit;
    color: var(--c-text);
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.gcm-form__field input:focus {
    outline: none;
    background: #fff;
    border-color: var(--c-cyan);
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.12);
}
.gcm-form__submit { margin-top: .5rem; }
.gcm-form__disclaimer {
    margin: 1rem 0 0;
    font-size: .82rem;
    color: var(--c-text-2);
    line-height: 1.6;
}
.gcm-form.is-success .gcm-form__fields { display: none; }
.gcm-form__success {
    display: none;
    text-align: center;
    padding: 2rem 0;
}
.gcm-form.is-success .gcm-form__success { display: block; }
.gcm-form__success svg {
    width: 56px; height: 56px;
    stroke: var(--c-cyan-deep);
    stroke-width: 2;
    fill: none;
    margin-bottom: 1rem;
}
.gcm-form__success h3 { color: var(--c-navy); margin: 0 0 .5rem; }
.gcm-form__success p { color: var(--c-text-2); }

/* -----------------------------------------------------------------
   Inner-page hero + breadcrumb + prose
----------------------------------------------------------------- */
.gcm-page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 3.5rem) 0 4rem;
    background: linear-gradient(165deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.gcm-page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent);
    pointer-events: none;
    z-index: 0;
    animation: gridDrift 30s linear infinite;
}
.gcm-page-hero::after {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.3), transparent 70%);
    filter: blur(110px);
    pointer-events: none;
    z-index: 0;
    animation: float 16s ease-in-out infinite, pulseGlow 9s ease-in-out infinite;
}
.gcm-page-hero > .gcm-wrap { position: relative; z-index: 1; }
.gcm-page-hero .gcm-eyebrow,
.gcm-page-hero .gcm-badge {
    color: var(--c-cyan-light);
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
}
.gcm-page-hero h1 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin: .75rem 0 1.25rem;
    background: linear-gradient(135deg, #fff 0%, var(--c-cyan-light) 60%, var(--c-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gcm-page-hero .gcm-lead { color: rgba(255, 255, 255, 0.94); max-width: 42rem; }
.gcm-breadcrumb {
    font-size: .85rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.gcm-breadcrumb a {
    color: rgba(255, 255, 255, 0.72);
    transition: color .25s ease;
}
.gcm-breadcrumb a:hover { color: var(--c-cyan); }
.gcm-breadcrumb span { color: #fff; font-weight: 600; }

.gcm-prose {
    color: var(--c-text-2);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 450;
}
.gcm-prose p { margin: 0 0 1.1rem; }
.gcm-prose h2, .gcm-prose h3 {
    color: var(--c-text);
    margin: 2rem 0 1rem;
}
.gcm-prose ul {
    margin: 1.25rem 0;
    padding: 0;
    list-style: none;
}
.gcm-prose li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: .6rem;
    line-height: 1.65;
}
.gcm-prose li::before {
    content: '';
    position: absolute;
    left: 0; top: .65rem;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-cyan), var(--c-electric));
    box-shadow: 0 0 10px rgba(0,217,255,.4);
}
.gcm-callout {
    margin: 1.75rem 0;
    padding: 1.4rem 1.6rem;
    background: linear-gradient(135deg, rgba(0,217,255,.06), rgba(45,107,255,.04));
    border: 1px solid rgba(0, 217, 255, 0.25);
    border-left: 3px solid var(--c-cyan);
    border-radius: var(--r-md);
}
.gcm-callout p {
    margin: 0;
    color: var(--c-navy);
    font-weight: 600;
}
.gcm-page-cta {
    display: flex; flex-wrap: wrap; gap: 1rem;
    margin-top: 2rem;
}

/* -----------------------------------------------------------------
   Stat tiles & feature grid (dense visual content)
----------------------------------------------------------------- */
.gcm-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin: 2.5rem 0 0;
}
.gcm-stat {
    padding: 1.4rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: var(--r-md);
    backdrop-filter: blur(10px);
    transition: transform .35s cubic-bezier(.23,1,.32,1), border-color .3s ease, background .3s ease;
}
.gcm-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 217, 255, 0.4);
    background: rgba(0, 217, 255, 0.06);
}
.gcm-stat__label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--c-cyan-light);
    margin: 0 0 .5rem;
}
.gcm-stat__value {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.42rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 0;
}

/* Light variant of stats */
.gcm-stats--light .gcm-stat {
    background: var(--c-bg-card);
    border-color: var(--c-border);
}
.gcm-stats--light .gcm-stat:hover {
    background: #fff;
    border-color: var(--c-cyan);
    box-shadow: var(--shadow-md);
}
.gcm-stats--light .gcm-stat__label { color: var(--c-cyan-deep); }
.gcm-stats--light .gcm-stat__value { color: var(--c-navy); }

/* Inline 3-col variant (for hero-adjacent stat strips) */
.gcm-stats--inline {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3rem;
}

/* Disclosure strip — compact inline disclaimer */
.gcm-disclosure-strip {
    margin: 3rem auto 0;
    padding: 1.25rem 1.75rem;
    max-width: 880px;
    background: linear-gradient(135deg, rgba(0,217,255,.05), rgba(45,107,255,.03));
    border: 1px solid rgba(0, 217, 255, 0.18);
    border-radius: var(--r-md);
    text-align: center;
}
.gcm-disclosure-strip p {
    margin: 0;
    color: var(--c-text-2);
    font-size: .94rem;
    line-height: 1.65;
    font-weight: 500;
}
.gcm-disclosure-strip strong { color: var(--c-navy); }
.gcm-disclosure-strip a { color: var(--c-electric); font-weight: 600; }

/* Feature grid */
.gcm-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.gcm-feature {
    position: relative;
    padding: 1.6rem 1.5rem;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    transition: transform .35s cubic-bezier(.23,1,.32,1), box-shadow .35s ease, border-color .35s ease;
    overflow: hidden;
}
.gcm-feature::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--c-cyan), var(--c-electric));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.23,1,.32,1);
}
.gcm-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 217, 255, 0.35);
}
.gcm-feature:hover::before { transform: scaleX(1); }
.gcm-feature__icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,217,255,.12), rgba(45,107,255,.06));
    border: 1px solid rgba(0, 217, 255, 0.2);
    margin-bottom: 1rem;
}
.gcm-feature__icon svg {
    width: 22px; height: 22px;
    stroke: var(--c-cyan-deep);
    stroke-width: 1.8;
    fill: none;
}
.gcm-feature h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-text);
    margin: 0 0 .5rem;
    letter-spacing: -0.01em;
}
.gcm-feature p {
    color: var(--c-text-2);
    font-size: .96rem;
    line-height: 1.65;
    margin: 0;
    font-weight: 450;
}

/* Dark variant of features (for inside gcm-section--dark) */
.gcm-section--dark .gcm-feature {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(0, 217, 255, 0.22);
    backdrop-filter: blur(10px);
}
.gcm-section--dark .gcm-feature h3 { color: #fff; }
.gcm-section--dark .gcm-feature p { color: rgba(255,255,255,.88); }
.gcm-section--dark .gcm-feature:hover {
    background: rgba(0, 217, 255, 0.06);
    border-color: rgba(0, 217, 255, 0.4);
    transform: translateY(-4px);
}

/* Section header (eyebrow + heading combined) */
.gcm-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2rem;
}
.gcm-section-head .gcm-heading { margin-bottom: .75rem; }
.gcm-section-head .gcm-lead { margin: 0 auto; }

/* Tighter heading margins */
.gcm-section .gcm-heading { margin-bottom: 1rem; }
.gcm-section .gcm-lead { margin-bottom: .75rem; }

/* Inline highlight badge */
.gcm-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .85rem;
    background: linear-gradient(135deg, rgba(0,217,255,.1), rgba(45,107,255,.08));
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--c-cyan-deep);
    letter-spacing: .04em;
}
.gcm-badge--dot::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--c-cyan);
    box-shadow: 0 0 8px var(--c-cyan);
}

/* Tighter package layout */
.gcm-packages { margin-top: 2rem; }
.gcm-package { padding: 1.85rem 1.6rem; }
.gcm-package__price { font-size: 2.2rem; margin: 0 0 .75rem; }
.gcm-package__desc { margin-bottom: 1.2rem; }

/* -----------------------------------------------------------------
   Economic Reality Dashboard (debt + dollar purchasing power)
----------------------------------------------------------------- */
.gcm-econ { padding-top: 6rem; padding-bottom: 6rem; }
.gcm-econ .gcm-section-head { margin-bottom: 3rem; }

.gcm-econ__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.gcm-econ-card {
    position: relative;
    padding: 2rem 1.85rem 1.75rem;
    background: linear-gradient(165deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(0, 217, 255, 0.18);
    border-radius: var(--r-lg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    isolation: isolate;
    transition: border-color .35s ease, transform .35s cubic-bezier(.23,1,.32,1);
}
.gcm-econ-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,217,255,.55), transparent);
    z-index: 1;
}
.gcm-econ-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(420px circle at 90% -10%, rgba(0, 217, 255, 0.12), transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.gcm-econ-card > * { position: relative; z-index: 1; }
.gcm-econ-card:hover {
    border-color: rgba(0, 217, 255, 0.32);
    transform: translateY(-3px);
}

.gcm-econ-card--dollar { border-color: rgba(255, 183, 3, 0.22); }
.gcm-econ-card--dollar::before { background: linear-gradient(90deg, transparent, rgba(255,183,3,.6), transparent); }
.gcm-econ-card--dollar::after { background: radial-gradient(420px circle at 90% -10%, rgba(255, 183, 3, 0.14), transparent 60%); }
.gcm-econ-card--dollar:hover { border-color: rgba(255, 183, 3, 0.4); }

.gcm-econ-card__head { margin-bottom: 1.5rem; }
.gcm-econ-card__title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: .75rem 0 .35rem;
    letter-spacing: -0.01em;
}
.gcm-econ-card__sub {
    color: rgba(255,255,255,.72);
    font-size: .92rem;
    line-height: 1.55;
    margin: 0;
    font-weight: 450;
}

/* Live pill */
.gcm-econ-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .32rem .8rem;
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.32);
    border-radius: 999px;
    color: var(--c-cyan-light);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.gcm-econ-pill__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--c-cyan);
    box-shadow: 0 0 8px var(--c-cyan), 0 0 16px rgba(0, 217, 255, .55);
    animation: econPillPulse 2.2s ease-in-out infinite;
}
.gcm-econ-pill--gold {
    background: rgba(255, 183, 3, 0.08);
    border-color: rgba(255, 183, 3, 0.35);
    color: var(--c-gold-light);
}
.gcm-econ-pill--gold .gcm-econ-pill__dot {
    background: var(--c-gold-light);
    box-shadow: 0 0 8px var(--c-gold), 0 0 16px rgba(255, 183, 3, .55);
}
@keyframes econPillPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .55; transform: scale(.82); }
}

/* Main counter (national debt) */
.gcm-econ-counter {
    font-family: 'Space Grotesk', 'Inter', monospace, sans-serif;
    font-size: clamp(1.85rem, 4.2vw, 2.85rem);
    font-weight: 700;
    color: var(--c-gold-light);
    letter-spacing: -0.015em;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 32px rgba(255, 183, 3, 0.28);
    word-break: break-all;
    overflow-wrap: anywhere;
    min-height: 1.1em;
    transition: text-shadow .6s ease;
}
.gcm-econ-counter.is-pulse { text-shadow: 0 0 42px rgba(255, 183, 3, 0.55); }
.gcm-econ-counter__loading {
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255,255,255,.5);
    letter-spacing: .04em;
    text-shadow: none;
    font-family: 'Inter', sans-serif;
}

/* Subgrid (held by public / intragov) */
.gcm-econ-subgrid {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
}
.gcm-econ-subgrid li {
    padding: .9rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-sm);
}
.gcm-econ-subgrid__label {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: .35rem;
}
.gcm-econ-subgrid__value {
    display: block;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: #fff;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}

/* Dollar widget */
.gcm-econ-bigstat { margin: 0 0 1.5rem; }
.gcm-econ-bigstat__line {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: .55rem;
    margin: 0 0 1.4rem;
    line-height: 1.15;
}
.gcm-econ-bigstat__prefix,
.gcm-econ-bigstat__suffix {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,.7);
    letter-spacing: -0.005em;
}
.gcm-econ-bigstat__arrow {
    color: rgba(255,255,255,.45);
    font-size: 1.1rem;
}
.gcm-econ-bigstat__value {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(1.85rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--c-gold-light);
    letter-spacing: -0.015em;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 28px rgba(255, 183, 3, 0.28);
}

.gcm-econ-bigstat__bar {
    position: relative;
    height: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: .85rem;
}
.gcm-econ-bigstat__bar-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--c-gold-deep), var(--c-gold), var(--c-gold-light));
    box-shadow: 0 0 18px rgba(255, 183, 3, 0.5);
    border-radius: 999px;
    width: 0;
    transition: width 1.4s cubic-bezier(.23,1,.32,1);
}
.gcm-econ-card.is-visible .gcm-econ-bigstat__bar-fill,
.gcm-reveal.is-visible .gcm-econ-bigstat__bar-fill { width: var(--bar-width, 97%); }
.gcm-econ-bigstat__bar-label {
    position: absolute;
    inset: auto 0 -1.45rem 0;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    text-align: right;
    padding-right: 2px;
}
.gcm-econ-bigstat__caption {
    margin: 1.7rem 0 0;
    display: flex;
    align-items: baseline;
    gap: .6rem;
    color: rgba(255,255,255,.75);
    font-size: .94rem;
    line-height: 1.5;
    font-weight: 450;
}
.gcm-econ-bigstat__pct {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-gold-light);
    letter-spacing: -0.01em;
    text-shadow: 0 0 18px rgba(255, 183, 3, 0.32);
}

/* Card source line */
.gcm-econ-card__source {
    margin-top: auto;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,.5);
    font-size: .76rem;
    line-height: 1.5;
    letter-spacing: .02em;
}

/* Marketing note under the grid */
.gcm-econ-note {
    margin: 3rem auto 0;
    max-width: 880px;
    padding: 1.4rem 1.85rem;
    background: linear-gradient(135deg, rgba(0,217,255,.06), rgba(255,183,3,.04));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-md);
    text-align: center;
}
.gcm-econ-note p {
    margin: 0;
    color: rgba(255,255,255,.85);
    font-size: 1.02rem;
    line-height: 1.7;
    font-weight: 450;
}

/* -----------------------------------------------------------------
   The Shift: Old model vs New model
----------------------------------------------------------------- */
.gcm-shift {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: stretch;
}
.gcm-shift__col {
    position: relative;
    padding: 2rem 1.85rem;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    isolation: isolate;
    transition: transform .35s cubic-bezier(.23,1,.32,1), box-shadow .35s ease;
}
.gcm-shift__col--old { opacity: .92; }
.gcm-shift__col--old::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #B0B8C7, #8C97AB);
    opacity: .55;
}
.gcm-shift__col--new {
    background: linear-gradient(165deg, var(--c-navy) 0%, var(--c-navy-deep) 100%);
    border-color: rgba(255, 183, 3, 0.28);
    color: #fff;
}
.gcm-shift__col--new::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-gold-deep), var(--c-gold-light), var(--c-gold-deep));
}
.gcm-shift__col--new::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(440px circle at 100% 0%, rgba(255, 183, 3, 0.14), transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.gcm-shift__col--new > * { position: relative; z-index: 1; }
.gcm-shift__col:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.gcm-shift__col-head { margin-bottom: 1.35rem; }
.gcm-shift__tag {
    display: inline-block;
    padding: .28rem .75rem;
    background: rgba(76, 90, 117, 0.08);
    border: 1px solid rgba(76, 90, 117, 0.2);
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--c-text-3);
    margin-bottom: .85rem;
}
.gcm-shift__tag--gold {
    background: rgba(255, 183, 3, 0.12);
    border-color: rgba(255, 183, 3, 0.35);
    color: var(--c-gold-light);
}
.gcm-shift__col h3 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.01em;
}
.gcm-shift__col--old h3 { color: var(--c-text-2); }
.gcm-shift__col--new h3 { color: #fff; }

.gcm-shift__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}
.gcm-shift__list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .75rem .9rem;
    border-radius: var(--r-sm);
    background: rgba(0,0,0,0.025);
    border: 1px solid var(--c-border-soft);
    font-size: .98rem;
    color: var(--c-text-2);
    line-height: 1.5;
    font-weight: 500;
}
.gcm-shift__col--new .gcm-shift__list li {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 183, 3, 0.18);
    color: rgba(255,255,255,.92);
}
.gcm-shift__icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 90, 117, 0.12);
    color: var(--c-text-3);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    margin-top: 1px;
}
.gcm-shift__icon--plus {
    background: rgba(255, 183, 3, 0.18);
    color: var(--c-gold-light);
    box-shadow: 0 0 14px rgba(255, 183, 3, 0.28);
}

.gcm-shift__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-cyan-deep);
    opacity: .85;
}
.gcm-shift__arrow svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 12px rgba(0, 217, 255, 0.32));
}

.gcm-shift__note {
    margin: 2.25rem auto 0;
    max-width: 760px;
    text-align: center;
    color: var(--c-text-3);
    font-size: .94rem;
    line-height: 1.65;
}

/* Economic dashboard + shift responsive */
@media (max-width: 960px) {
    .gcm-econ__grid { grid-template-columns: 1fr; }
    .gcm-shift {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .gcm-shift__arrow { transform: rotate(90deg); height: 56px; }
    .gcm-shift__arrow svg { width: 40px; height: 40px; }
}

@media (max-width: 720px) {
    .gcm-econ { padding: 4rem 0; }
    .gcm-econ-card { padding: 1.5rem 1.35rem 1.35rem; }
    .gcm-econ-subgrid { grid-template-columns: 1fr; gap: .65rem; }
    .gcm-econ-counter { font-size: clamp(1.5rem, 7vw, 2rem); }
    .gcm-econ-bigstat__value { font-size: clamp(1.6rem, 7vw, 2.1rem); }
    .gcm-econ-note { padding: 1.2rem 1.25rem; }
    .gcm-econ-note p { font-size: .96rem; }
    .gcm-shift__col { padding: 1.5rem 1.35rem; }
}

/* -----------------------------------------------------------------
   Footer
----------------------------------------------------------------- */
.gcm-footer {
    position: relative;
    background: linear-gradient(165deg, var(--c-navy-deep) 0%, var(--c-navy) 100%);
    color: rgba(255, 255, 255, 0.88);
    padding: 3rem 0 0;
    overflow: hidden;
    isolation: isolate;
}
.gcm-footer::before {
    content: '';
    position: absolute;
    top: -200px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15), transparent 60%);
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}
.gcm-footer__grid {
    position: relative; z-index: 1;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem 2.25rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.25rem;
}
.gcm-footer__brand p {
    font-size: .94rem;
    margin-top: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.84);
    max-width: 24rem;
}
.gcm-footer h5 {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--c-cyan-light);
    margin: 0 0 1.1rem;
}
.gcm-footer ul { list-style: none; padding: 0; margin: 0; }
.gcm-footer li { margin-bottom: .6rem; }
.gcm-footer a {
    color: rgba(255, 255, 255, 0.85);
    font-size: .94rem;
    font-weight: 500;
    transition: color .25s ease;
}
.gcm-footer a:hover { color: var(--c-cyan); }
.gcm-footer .gcm-logo__name { color: var(--c-gold-light); }
.gcm-footer .gcm-logo__tag { color: rgba(255,255,255,.5); }
.gcm-footer__bottom {
    position: relative; z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.75rem 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: .88rem;
}
.gcm-footer__bottom p { margin: .25rem 0; }

/* -----------------------------------------------------------------
   Sticky CTA
----------------------------------------------------------------- */
.gcm-sticky-cta {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    z-index: 999;
    background: rgba(10, 31, 68, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 999px;
    padding: .5rem .5rem .5rem 1.4rem;
    box-shadow: 0 12px 40px rgba(10, 31, 68, 0.4);
    transition: transform .5s cubic-bezier(.23,1,.32,1), opacity .3s ease;
    opacity: 0;
}
.gcm-sticky-cta.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.gcm-sticky-cta__inner {
    display: flex; align-items: center; gap: 1rem;
}
.gcm-sticky-cta__text {
    font-size: .9rem;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
}

/* -----------------------------------------------------------------
   Disclaimer
----------------------------------------------------------------- */
.gcm-disclaimer {
    background: var(--c-navy-deep);
    color: rgba(255, 255, 255, 0.78);
    padding: 1.75rem 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.gcm-disclaimer p {
    max-width: 60rem;
    margin: 0 auto;
    font-size: .8rem;
    line-height: 1.7;
}

/* -----------------------------------------------------------------
   Responsive
----------------------------------------------------------------- */
@media (max-width: 960px) {
    .gcm-hero__inner,
    .gcm-split,
    .gcm-contact { grid-template-columns: 1fr; gap: 2.5rem; }
    .gcm-split--reverse { direction: ltr; }
    .gcm-packages { grid-template-columns: 1fr; }
    .gcm-features { grid-template-columns: 1fr 1fr; }
    .gcm-stats { grid-template-columns: 1fr 1fr; }
    .gcm-stats--inline { grid-template-columns: 1fr; }
    .gcm-trust { grid-template-columns: 1fr 1fr; }
    .gcm-risk { grid-template-columns: 1fr 1fr; }
    .gcm-twoup { grid-template-columns: 1fr; }
    .gcm-footer__grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
    .gcm-section { padding: 4rem 0; }
    .gcm-section--dark { padding: 5rem 0; }
    .gcm-section--full { min-height: auto; }
    .gcm-hero__inner { padding: calc(var(--nav-h) + 2rem) 1.5rem 2.5rem; }
    .gcm-hero__visual { align-items: center; }
    .gcm-hero__img-wrap { min-height: 0; aspect-ratio: 4/3; }
    .gcm-page-hero { min-height: auto; padding: calc(var(--nav-h) + 2.5rem) 0 3rem; }
    .gcm-cta-banner { padding: 3rem 1.5rem; }
}

@media (max-width: 720px) {
    .gcm-nav__toggle { display: flex; }
    .gcm-nav__links {
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: rgba(247, 249, 252, 0.98);
        backdrop-filter: blur(20px);
        padding: 1rem 1.5rem 1.5rem;
        border-bottom: 1px solid var(--c-border);
        gap: 1rem;
        align-items: flex-start;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: transform .35s ease, opacity .25s ease;
    }
    .gcm-nav__links.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .gcm-nav__links a::after { display: none; }
    .gcm-hero__inner { padding: calc(var(--nav-h) + 1.5rem) 1.5rem 2.5rem; }
    .gcm-footer__grid { grid-template-columns: 1fr; }
    .gcm-features { grid-template-columns: 1fr; }
    .gcm-stats { grid-template-columns: 1fr; }
    .gcm-form { padding: 1.75rem; }
    .gcm-sticky-cta__text { display: none; }
    .gcm-steps li { padding-left: 4rem; }
    .gcm-trust { grid-template-columns: 1fr; }
    .gcm-risk { grid-template-columns: 1fr; }
    .gcm-compare table { font-size: .88rem; }
    .gcm-compare tbody td { padding: .8rem .9rem; }
}
