/* ==========================================================================
   NetMonkey — Dark theme overlay
   --------------------------------------------------------------------------
   Brings the rest of the site in line with the Scorer aesthetic:
   deep slate background, glass cards, glowing orbs, gradient accents.
   Loaded AFTER styles.css so it wins specificity battles.
   ========================================================================== */

/* ------------------------------------------------------------------
   Color tokens (re-use scorer palette where it makes sense)
   ------------------------------------------------------------------ */
:root {
    --d-bg-0:   #020617;   /* deep slate */
    --d-bg-1:   #0b1220;   /* navy ink */
    --d-bg-2:   #0f172a;   /* slate-900 */
    --d-panel:  rgba(15, 23, 42, 0.55);
    --d-panel-strong: rgba(15, 23, 42, 0.78);
    --d-border: rgba(148, 163, 184, 0.14);
    --d-border-strong: rgba(148, 163, 184, 0.28);
    --d-text:   #e2e8f0;
    --d-text-dim: #94a3b8;
    --d-text-bright: #f8fafc;
    --d-cyan:   #22d3ee;
    --d-blue:   #3b82f6;
    --d-violet: #8b5cf6;
}

/* ------------------------------------------------------------------
   Body + global
   ------------------------------------------------------------------ */
html, body {
    background: var(--d-bg-0);
    color: var(--d-text);
}
body {
    background:
        radial-gradient(1200px 800px at 10% -10%, rgba(34, 211, 238, 0.08), transparent 60%),
        radial-gradient(1000px 700px at 110% 20%, rgba(59, 130, 246, 0.10), transparent 60%),
        radial-gradient(900px 700px at 50% 110%, rgba(139, 92, 246, 0.08), transparent 60%),
        var(--d-bg-0);
    background-attachment: fixed;
}

/* ------------------------------------------------------------------
   Kill the red-white-blue diagonal stripe accents
   ------------------------------------------------------------------ */
.section-stripe-accent { display: none !important; }

/* ------------------------------------------------------------------
   Section title pieces — light text, glowing underline
   ------------------------------------------------------------------ */
.section-title,
h1, h2, h3, h4, h5 {
    color: var(--d-text-bright);
}
.section-title::after {
    background: linear-gradient(90deg, var(--d-cyan), var(--d-blue), var(--d-violet)) !important;
    box-shadow: 0 0 18px rgba(59, 130, 246, 0.55);
}
.section-subtitle {
    color: var(--d-text-dim);
}

/* ------------------------------------------------------------------
   Generic light section overrides
   ------------------------------------------------------------------ */
.services,
.about,
.careers,
.contact,
.portfolio {
    background: transparent !important;
    color: var(--d-text);
    position: relative;
}
.services::before,
.about::before,
.contact::before,
.portfolio::before,
.careers::before {
    content: '';
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(2,6,23,0.0), rgba(2,6,23,0.35) 50%, rgba(2,6,23,0.0));
}
.services > *,
.about > *,
.contact > *,
.portfolio > *,
.careers > * { position: relative; z-index: 1; }

/* ------------------------------------------------------------------
   Cards — turn every white card into a glass panel
   ------------------------------------------------------------------ */
.service-card,
.value-item,
.career-benefit,
.careers-roles,
.contact-method,
.contact-card,
.stat-card,
.pricing-card,
.portfolio-item,
.process-step,
.about-stats > * {
    background: var(--d-panel) !important;
    color: var(--d-text);
    border: 1px solid var(--d-border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 20px 50px -25px rgba(0, 0, 0, 0.6);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.service-card:hover,
.value-item:hover,
.career-benefit:hover,
.contact-method:hover,
.contact-card:hover,
.pricing-card:hover,
.portfolio-item:hover,
.process-step:hover,
.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.35);
    box-shadow:
        0 30px 60px -20px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(34, 211, 238, 0.15);
}

/* Card text inside */
.service-card,
.service-card *,
.value-item,
.value-item *,
.career-benefit,
.career-benefit *,
.contact-method,
.contact-method *,
.contact-card,
.contact-card *,
.pricing-card,
.pricing-card *,
.portfolio-item,
.portfolio-item *,
.process-step,
.process-step *,
.stat-card,
.stat-card *,
.about-content,
.about-content *,
.about-text,
.about-text * {
    color: var(--d-text);
    border-color: var(--d-border);
}
.service-title, .value-title, .contact-card-title,
.service-card h3, .service-card h4,
.value-item h3, .value-item h4,
.career-benefit h3, .career-benefit h4,
.about-text h2, .about-text h3, .about-text h4,
.stat-number,
.contact-method h4,
.contact-card h3, .contact-card h4 {
    color: var(--d-text-bright) !important;
}
.service-card p,
.value-item p,
.career-benefit p,
.contact-method p,
.contact-card p,
.pricing-card p,
.portfolio-item p,
.process-step p,
.about-text p,
.stat-label,
.section-subtitle,
.contact-note {
    color: var(--d-text) !important;
    opacity: 0.92;
}
.service-card strong,
.about-text strong,
.contact-card strong,
.value-item strong,
strong {
    color: var(--d-text-bright) !important;
}
.service-card .service-icon,
.value-item .value-icon,
.career-benefit-icon,
.contact-icon {
    color: var(--d-cyan) !important;
}
/* Pricing tag inside service cards */
.service-price, .price, .price-amount {
    color: var(--d-cyan) !important;
}
.service-features, .service-features li,
.pricing-features, .pricing-features li {
    color: var(--d-text) !important;
}
.service-features li::before,
.pricing-features li::before {
    color: var(--d-cyan) !important;
}
.service-details {
    border-top-color: rgba(255,255,255,0.08) !important;
}
.service-details > summary {
    color: var(--d-text) !important;
}
.service-details > summary::after {
    color: var(--d-cyan) !important;
}
.service-details > summary:hover {
    color: var(--d-cyan) !important;
}
/* Links inside cards/sections still pop */
.contact-link, a.contact-link {
    color: var(--d-cyan) !important;
}

/* Star pseudo-element decoration on stat cards looks awful on dark — kill it */
.stat-card::before { display: none !important; }

/* ==========================================================================
   BUTTONS — unified dark-theme system
   --------------------------------------------------------------------------
   One cohesive language across .btn-primary, .btn-secondary, .nav-cta,
   .inquiry-btn, .scorer-submit, .scorer-chip, .scorer-share-btn, etc.
   Palette: cyan -> blue -> violet on glass; shared radius, motion, focus.
   ========================================================================== */

/* Shared focus ring for every button-like element in the dark theme */
.btn:focus-visible,
.nav-cta:focus-visible,
.inquiry-btn:focus-visible,
.scorer-submit:focus-visible,
.scorer-chip:focus-visible,
.scorer-share-btn:focus-visible,
.scorer-history-clear:focus-visible,
.nav-toggle:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 2px rgba(2, 6, 23, 0.9),
        0 0 0 4px rgba(34, 211, 238, 0.55);
}

/* ---------- Base .btn polish (sweep highlight + crisper edges) ---------- */
.btn {
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    isolation: isolate;
}
.btn::before {
    background: linear-gradient(120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.18) 45%,
        rgba(255, 255, 255, 0.05) 55%,
        transparent 100%) !important;
}

/* ---------- Primary: gradient cyan -> blue with glow ---------- */
.btn-primary {
    background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 55%, #6366f1 100%) !important;
    color: #f8fafc !important;
    border: 1px solid rgba(34, 211, 238, 0.55) !important;
    box-shadow:
        0 10px 30px -10px rgba(34, 211, 238, 0.55),
        0 6px 20px -8px rgba(59, 130, 246, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    border-color: rgba(34, 211, 238, 0.85) !important;
    box-shadow:
        0 16px 40px -12px rgba(34, 211, 238, 0.7),
        0 10px 30px -10px rgba(99, 102, 241, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}
.btn-primary:active {
    transform: translateY(0);
    box-shadow:
        0 6px 18px -6px rgba(34, 211, 238, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* ---------- Secondary: glass with cyan accent on hover ---------- */
.btn-secondary {
    background: rgba(15, 23, 42, 0.55) !important;
    color: var(--d-text-bright) !important;
    border: 1px solid var(--d-border-strong) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 8px 24px -12px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}
.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(34, 211, 238, 0.10) !important;
    border-color: var(--d-cyan) !important;
    color: var(--d-text-bright) !important;
    box-shadow:
        0 14px 34px -14px rgba(34, 211, 238, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}
.btn-secondary:active { transform: translateY(0); }

/* ---------- Nav CTA: was crimson -> recolor to match palette ---------- */
.nav-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #22d3ee 100%) !important;
    color: #f8fafc !important;
    border: 1px solid rgba(34, 211, 238, 0.55) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow:
        0 8px 24px -10px rgba(34, 211, 238, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
.nav-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(34, 211, 238, 0.85) !important;
    box-shadow:
        0 14px 32px -12px rgba(34, 211, 238, 0.7),
        0 8px 20px -10px rgba(99, 102, 241, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

/* ---------- Inquiry buttons (contact section) ---------- */
.inquiry-btn {
    background: var(--d-panel) !important;
    border: 1px solid var(--d-border-strong) !important;
    color: var(--d-text-bright) !important;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.6);
}
.inquiry-btn:hover {
    background: rgba(34, 211, 238, 0.08) !important;
    border-color: var(--d-cyan) !important;
    transform: translateX(6px) translateY(-1px);
    box-shadow: 0 14px 30px -14px rgba(34, 211, 238, 0.45);
}
.inquiry-btn svg { color: var(--d-cyan) !important; }

/* ---------- Scorer chips (URL quick-pick) ---------- */
.scorer-chip {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--d-border-strong);
    color: var(--d-text);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}
.scorer-chip:hover {
    background: rgba(34, 211, 238, 0.10);
    border-color: var(--d-cyan);
    color: var(--d-text-bright);
    box-shadow: 0 6px 16px -8px rgba(34, 211, 238, 0.5);
}

/* ---------- Scorer share / icon buttons ---------- */
.scorer-share-btn {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--d-border-strong);
    color: var(--d-text);
    border-radius: var(--radius-md);
}
.scorer-share-btn:hover {
    transform: translateY(-2px);
    background: rgba(34, 211, 238, 0.10);
    border-color: var(--d-cyan);
    color: var(--d-text-bright);
    box-shadow: 0 10px 22px -10px rgba(34, 211, 238, 0.5);
}

/* ---------- Tertiary text button (history clear) ---------- */
.scorer-history-clear {
    padding: 4px 10px;
    border-radius: var(--radius-md);
    color: var(--d-text-dim);
    transition: all var(--transition-fast);
}
.scorer-history-clear:hover {
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.08);
}

/* ---------- Mobile nav toggle: glass icon button ---------- */
.nav-toggle {
    border-radius: var(--radius-md);
    border: 1px solid var(--d-border);
    background: rgba(15, 23, 42, 0.5);
    transition: all var(--transition-fast);
}
.nav-toggle:hover {
    border-color: var(--d-cyan);
    background: rgba(34, 211, 238, 0.10);
}
.nav-toggle span { background: var(--d-cyan); }

/* Disabled state — applies to any button-ish element */
.btn[disabled],
.btn:disabled,
.scorer-submit[disabled],
.inquiry-btn[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
    filter: grayscale(0.2);
}

/* ------------------------------------------------------------------
   Nav — already dark, just polish
   ------------------------------------------------------------------ */
.nav {
    background: rgba(2, 6, 23, 0.65) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--d-border);
}
.nav.scrolled {
    background: rgba(2, 6, 23, 0.85) !important;
}

/* ------------------------------------------------------------------
   Contact form / inputs (if any are white-fielded)
   ------------------------------------------------------------------ */
.contact input,
.contact textarea,
.contact select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea {
    background: rgba(2, 6, 23, 0.55);
    color: var(--d-text-bright);
    border: 1px solid var(--d-border-strong);
}
.contact input::placeholder,
.contact textarea::placeholder { color: var(--d-text-dim); }

/* ------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------ */
.footer {
    background: rgba(2, 6, 23, 0.85) !important;
    border-top: 1px solid var(--d-border);
}

/* ==========================================================================
   HERO ANIMATION ENHANCEMENTS
   ========================================================================== */

.hero { overflow: hidden; isolation: isolate; }

/* Make the photo recede a little — let our gradients & particles breathe */
.hero-image { filter: brightness(0.6) saturate(1.05); }
.hero-overlay {
    background:
        radial-gradient(900px 600px at 20% 30%, rgba(34, 211, 238, 0.18), transparent 60%),
        radial-gradient(800px 500px at 85% 70%, rgba(139, 92, 246, 0.18), transparent 60%),
        linear-gradient(180deg, rgba(2,6,23,0.55), rgba(2,6,23,0.85)) !important;
}

/* Floating glow orbs behind hero */
.hero-background::before,
.hero-background::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
    animation: hero-orb-float 14s ease-in-out infinite;
}
.hero-background::before {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.6), transparent 70%);
    top: -120px; left: -120px;
}
.hero-background::after {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5), transparent 70%);
    bottom: -180px; right: -160px;
    animation-delay: -7s;
}

/* Subtle scanline grid in front of the photo, behind the content */
.hero-content { position: relative; z-index: 3; }
.hero::before {
    content: '';
    position: absolute; inset: -10%;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.18) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
    pointer-events: none;
    z-index: 2;
    animation: hero-grid-drift 12s linear infinite;
    transform: perspective(800px) rotateX(55deg);
    transform-origin: center bottom;
    opacity: 0.9;
}
/* Second grid layer scrolling the other direction for parallax */
.hero .hero-background::before { z-index: 1; }
.hero-content::before {
    content: '';
    position: absolute; inset: -50% -10%;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.10) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    pointer-events: none;
    z-index: -1;
    animation: hero-grid-drift-rev 24s linear infinite;
}
/* Sweeping cyan beam across the grid */
.hero-content::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 0; right: 0;
    pointer-events: none;
    z-index: -1;
    background: linear-gradient(115deg,
        transparent 0%,
        transparent 40%,
        rgba(34, 211, 238, 0.12) 50%,
        transparent 60%,
        transparent 100%);
    background-size: 250% 100%;
    animation: hero-grid-beam 6s linear infinite;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* Hero entrance choreography — staggered fade/rise */
.badge-24-7,
.hero-title-main,
.hero-title-sub,
.hero-description,
.hero-cta-group,
.hero-trust-bar {
    opacity: 0;
    transform: translateY(24px);
    animation: hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.badge-24-7        { animation-delay: 0.10s; }
.hero-title-main   { animation-delay: 0.25s; }
.hero-title-sub    { animation-delay: 0.40s; }
.hero-description  { animation-delay: 0.55s; }
.hero-cta-group    { animation-delay: 0.70s; }
.hero-trust-bar    { animation-delay: 0.85s; }

/* Title shimmer on the gradient line */
.hero-title-sub {
    background: linear-gradient(90deg, var(--d-cyan), var(--d-blue), var(--d-violet), var(--d-cyan));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    animation: hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.40s forwards,
               hero-shimmer 6s linear infinite;
}

/* Title glow */
.hero-title-main {
    text-shadow:
        0 0 30px rgba(59, 130, 246, 0.35),
        0 4px 30px rgba(0, 0, 0, 0.6);
}

/* Trust bar items lift on hover */
.trust-item {
    transition: transform 220ms ease, color 220ms ease;
    color: var(--d-text-bright);
}
.trust-item:hover {
    transform: translateY(-2px);
    color: var(--d-cyan);
}
.trust-item svg { color: var(--d-cyan); }

/* Pulse the CTA buttons subtly (preserves the base primary glow) */
.hero-cta-group .btn-primary {
    animation: hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.70s forwards,
               hero-cta-pulse 3.2s ease-in-out 1.6s infinite;
}

/* Drifting accent lines along the bottom of the hero */
.hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(34, 211, 238, 0.7),
        rgba(59, 130, 246, 0.7),
        rgba(139, 92, 246, 0.7),
        transparent);
    background-size: 50% 100%;
    animation: hero-line-sweep 4s linear infinite;
    z-index: 4;
}

/* ------------------------------------------------------------------
   Keyframes
   ------------------------------------------------------------------ */
@keyframes hero-rise {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-shimmer {
    0%   { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}
@keyframes hero-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(40px, -30px) scale(1.1); }
}
@keyframes hero-grid-drift {
    from { background-position: 0 0, 0 0; }
    to   { background-position: 48px 0, 0 48px; }
}
@keyframes hero-grid-drift-rev {
    from { background-position: 0 0, 0 0; }
    to   { background-position: -96px 0, 0 -96px; }
}
@keyframes hero-grid-beam {
    from { background-position: -150% 0; }
    to   { background-position: 150% 0; }
}
@keyframes hero-cta-pulse {
    0%, 100% {
        box-shadow:
            0 10px 30px -10px rgba(34, 211, 238, 0.55),
            0 6px 20px -8px rgba(59, 130, 246, 0.55),
            inset 0 1px 0 rgba(255, 255, 255, 0.18),
            0 0 0 0 rgba(34, 211, 238, 0.5);
    }
    50% {
        box-shadow:
            0 10px 30px -10px rgba(34, 211, 238, 0.55),
            0 6px 20px -8px rgba(59, 130, 246, 0.55),
            inset 0 1px 0 rgba(255, 255, 255, 0.18),
            0 0 0 16px rgba(34, 211, 238, 0);
    }
}
@keyframes hero-line-sweep {
    from { background-position: -50% 0; }
    to   { background-position: 150% 0; }
}

/* ============================================================
   Section legibility + scorer-style accents
   ============================================================ */

/* Force-bright body copy in the spots that were still too dim */
.careers-intro p,
.careers-intro,
.careers-roles h3,
.careers-cta h3,
.careers-cta p,
.contact-card-content p,
.contact-card-content ul,
.contact-card-content ul li,
.contact-card-content strong,
.service-features li,
.section-subtitle {
    color: var(--d-text) !important;
    opacity: 1 !important;
}
.careers-roles h3,
.careers-cta h3,
.contact-card h3,
.contact-card-content strong {
    color: var(--d-text-bright) !important;
}

/* Bullet markers in contact card list -> cyan check style */
.contact-card-content ul {
    list-style: none;
    padding-left: 0;
}
.contact-card-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin: 0.4rem 0;
}
.contact-card-content ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.55em;
    width: 14px; height: 8px;
    border-left: 2px solid var(--d-cyan);
    border-bottom: 2px solid var(--d-cyan);
    transform: rotate(-45deg);
}

/* Service card feature list - cyan checkmarks */
.service-features {
    list-style: none;
    padding-left: 0;
}
.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin: 0.35rem 0;
}
.service-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.5em;
    width: 14px; height: 8px;
    border-left: 2px solid var(--d-cyan);
    border-bottom: 2px solid var(--d-cyan);
    transform: rotate(-45deg);
}

/* ----- Scorer-style section headers for Services + Process ----- */
#services .section-header,
#portfolio .section-header {
    text-align: center;
    margin-bottom: 3rem;
}
#services .section-title,
#portfolio .section-title {
    background: linear-gradient(90deg, #60a5fa, #22d3ee, #2dd4bf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    padding-bottom: 0.6rem;
    letter-spacing: 0.04em;
}
#services .section-title::after,
#portfolio .section-title::after {
    content: '';
    position: absolute;
    left: 50%; bottom: 0;
    transform: translateX(-50%);
    width: 80px; height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #3b82f6, #22d3ee, #2dd4bf);
    box-shadow: 0 0 16px rgba(34, 211, 238, 0.55);
}
#services .section-subtitle,
#portfolio .section-subtitle {
    color: var(--d-text) !important;
    opacity: 0.92 !important;
    margin-top: 0.75rem;
}

/* Inject a small "eyebrow" pill above each title via ::before on header */
#services .section-header::before,
#portfolio .section-header::before {
    content: attr(data-eyebrow);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto 1rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--d-cyan);
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.35);
    border-radius: 999px;
    box-shadow: 0 0 24px rgba(34, 211, 238, 0.18) inset;
}
/* Eyebrow pills removed per design — keep selectors inert */
#services .section-header::before,
#portfolio .section-header::before { content: none; display: none; }

/* ----- Service cards: cyan top-stripe + glowing price ----- */
.service-card {
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #22d3ee, #2dd4bf);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.service-card:hover::before { opacity: 1; }
.service-card .service-icon {
    color: var(--d-cyan) !important;
    filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.35));
}
.price-tag {
    background: linear-gradient(90deg, #60a5fa, #22d3ee, #2dd4bf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.price-tag span {
    -webkit-text-fill-color: var(--d-text-dim);
    color: var(--d-text-dim) !important;
    font-weight: 500;
}

/* ----- Process step cards (career-benefit) ----- */
.career-benefit {
    --step-color: #22d3ee;
    position: relative;
    overflow: hidden;
    text-align: left;
}
.career-benefit::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg,
        color-mix(in srgb, var(--step-color) 90%, transparent),
        color-mix(in srgb, var(--step-color) 40%, transparent));
    opacity: 0.85;
}

/* Per-step accent colors (matches scorer-feature palette) */
.careers-grid .career-benefit:nth-child(1) { --step-color: #f59e0b; } /* Discovery   */
.careers-grid .career-benefit:nth-child(2) { --step-color: #8b5cf6; } /* Design      */
.careers-grid .career-benefit:nth-child(3) { --step-color: #06b6d4; } /* Review      */
.careers-grid .career-benefit:nth-child(4) { --step-color: #10b981; } /* Approval    */
.careers-grid .career-benefit:nth-child(5) { --step-color: #f97316; } /* Launch      */
.careers-grid .career-benefit:nth-child(6) { --step-color: #3b82f6; } /* Support     */

/* Colored icon chip like .scorer-feature-icon */
.career-benefit-icon {
    width: 56px !important;
    height: 56px !important;
    margin: 0 0 var(--space-5) 0 !important;
    display: grid;
    place-items: center;
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--step-color) 18%, transparent) !important;
    color: var(--step-color) !important;
    border: 1px solid color-mix(in srgb, var(--step-color) 35%, transparent);
    box-shadow:
        0 0 24px color-mix(in srgb, var(--step-color) 35%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    filter: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.career-benefit-icon svg { width: 28px; height: 28px; }
.career-benefit:hover .career-benefit-icon {
    transform: scale(1.06) !important;
    color: var(--step-color) !important;
    box-shadow:
        0 0 36px color-mix(in srgb, var(--step-color) 55%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.career-benefit:hover {
    border-color: color-mix(in srgb, var(--step-color) 45%, transparent) !important;
    box-shadow:
        0 30px 60px -20px rgba(0, 0, 0, 0.6),
        0 0 0 1px color-mix(in srgb, var(--step-color) 25%, transparent),
        0 20px 40px -20px color-mix(in srgb, var(--step-color) 45%, transparent) !important;
}
.career-benefit h4 {
    color: var(--d-text-bright) !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
}

/* Role tags in "What We Build" */
.careers-roles h3 {
    background: linear-gradient(90deg, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
    display: inline-block;
}
.role-tag {
    background: rgba(34, 211, 238, 0.08) !important;
    border: 1px solid rgba(34, 211, 238, 0.35) !important;
    color: var(--d-text-bright) !important;
    transition: all 0.25s ease;
}
.role-tag:hover {
    background: rgba(34, 211, 238, 0.18) !important;
    border-color: var(--d-cyan) !important;
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.35);
    transform: translateY(-2px);
}

/* ==========================================================================
   ANALYZER-STYLE TREATMENT FOR EVERY SECTION
   --------------------------------------------------------------------------
   Bring services / about / portfolio / contact in line with the scorer
   section: floating gradient orbs, faint masked grid, glass cards.
   ========================================================================== */

.services,
.about,
#portfolio.careers,
.contact {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Replace the old vertical-fade ::before with a scorer-style orb+grid layer */
.services::before,
.about::before,
#portfolio.careers::before,
.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 500px at 85% -10%, rgba(6, 182, 212, 0.14), transparent 60%),
        radial-gradient(800px 500px at -10% 110%, rgba(59, 130, 246, 0.14), transparent 60%),
        radial-gradient(700px 500px at 50% 110%, rgba(139, 92, 246, 0.10), transparent 60%);
}

/* Faint masked grid overlay (matches .scorer-bg-grid) */
.services::after,
.about::after,
#portfolio.careers::after,
.contact::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* Make sure section content sits above the decorative layers */
.services > .container,
.about > .container,
#portfolio.careers > .container,
.contact > .container { position: relative; z-index: 1; }

/* Unified section title — gradient like the analyzer */
.services .section-title,
.about .section-title,
#portfolio.careers .section-title,
.contact .section-title {
    background: linear-gradient(90deg, #60a5fa, #22d3ee, #2dd4bf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    padding-bottom: 0.6rem;
    letter-spacing: 0.04em;
}
.services .section-title::after,
.about .section-title::after,
#portfolio.careers .section-title::after,
.contact .section-title::after {
    content: '';
    position: absolute;
    left: 50%; bottom: 0;
    transform: translateX(-50%);
    width: 80px; height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #3b82f6, #22d3ee, #2dd4bf) !important;
    box-shadow: 0 0 16px rgba(34, 211, 238, 0.55);
}
.about .section-header,
.contact .section-header { text-align: center; }

/* ==========================================================================
   ANALYZER SECTION \u2014 vertically compact for desktop one-screen fit
   ========================================================================== */
.scorer-section {
    padding: var(--space-12) 0 var(--space-16) !important;
}
.scorer-header {
    margin-bottom: var(--space-6) !important;
}
.scorer-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem) !important;
    margin-bottom: var(--space-2);
}
.scorer-subtitle {
    margin-bottom: 0 !important;
    font-size: var(--text-base);
}
.scorer-input-card {
    padding: var(--space-4) var(--space-5) !important;
    margin-bottom: var(--space-6) !important;
}
.scorer-features {
    margin-top: var(--space-6) !important;
    gap: var(--space-3) !important;
}
.scorer-feature {
    padding: var(--space-4) !important;
}
.scorer-feature-icon {
    width: 40px !important;
    height: 40px !important;
    margin-bottom: var(--space-3) !important;
}
.scorer-feature-icon svg { width: 20px !important; height: 20px !important; }
.scorer-feature h4 { font-size: var(--text-base) !important; margin-bottom: 4px !important; }
.scorer-feature p { font-size: var(--text-xs) !important; line-height: 1.45 !important; }

/* ==========================================================================
   FIX: weird double border on the URL input inside the scorer field
   --------------------------------------------------------------------------
   The global dark-theme override on input[type=\"url\"] paints a border
   inside .scorer-input-wrap, which already has its own border. Strip it
   on the scorer input only.
   ========================================================================== */
.scorer-input,
input.scorer-input[type=\"url\"] {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
}
.scorer-input-wrap { overflow: hidden; }

/* ==========================================================================
   INQUIRIES SECTION (extracted "How can we help you?")
   ========================================================================== */
.inquiries-section {
    padding: var(--space-16) 0 var(--space-20);
}
.inquiries-section .section-header {
    text-align: center;
    margin-bottom: var(--space-10);
}
.inquiries-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-4) !important;
    max-width: 960px;
    margin: 0 auto;
}
.inquiries-section .inquiry-btn {
    justify-content: flex-start;
}

@media (prefers-reduced-motion: reduce) {
    .hero-background::before,
    .hero-background::after,
    .hero::before,
    .hero::after,
    .hero-content::before,
    .hero-content::after,
    .hero-cta-group .btn-primary,
    .hero-title-sub {
        animation: none !important;
    }
    .badge-24-7,
    .hero-title-main,
    .hero-title-sub,
    .hero-description,
    .hero-cta-group,
    .hero-trust-bar {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}


/* ========================================================================
   SCORER � Cloud10 engine additions
   ====================================================================== */

/* Warn check state (amber triangle) */
.scorer-check-warn .scorer-check-mark {
    color: #fbbf24 !important;
    background: rgba(251, 191, 36, 0.12) !important;
    border-color: rgba(251, 191, 36, 0.35) !important;
}
.scorer-check-warn .scorer-check-label { color: #fde68a; }

/* Detailed Breakdown wrapper */
.scorer-breakdown,
.scorer-recommendations {
    margin-top: var(--space-6, 1.5rem);
    padding: var(--space-6, 1.5rem) var(--space-7, 1.75rem);
    border-radius: 18px;
}
.scorer-breakdown-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--space-5, 1.25rem);
    padding-bottom: var(--space-4, 1rem);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}
.scorer-breakdown-head h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #e2e8f0;
    letter-spacing: 0.02em;
}
.scorer-breakdown-icon {
    width: 22px;
    height: 22px;
    color: #3b82f6;
    flex-shrink: 0;
}
.scorer-rec-head-icon { color: #fbbf24; }

/* "See Details" toggle on the breakdown card */
.scorer-breakdown-toggle {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(59, 130, 246, 0.12);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.scorer-breakdown-toggle:hover {
    background: rgba(59, 130, 246, 0.22);
    color: #bfdbfe;
    border-color: rgba(59, 130, 246, 0.6);
    transform: translateY(-1px);
}
.scorer-breakdown-toggle svg {
    transition: transform 0.25s ease;
}
.scorer-breakdown[data-open="true"] .scorer-breakdown-toggle svg {
    transform: rotate(180deg);
}

/* Recommendations grid */
.scorer-recommendations-list {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .scorer-recommendations-list { grid-template-columns: repeat(2, 1fr); }
}
.scorer-rec {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.45);
    border-radius: 14px;
    transition: border-color 0.2s, transform 0.2s;
}
.scorer-rec:hover {
    border-color: color-mix(in srgb, var(--rec-color, #3b82f6) 45%, transparent);
    transform: translateY(-1px);
}
.scorer-rec-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: color-mix(in srgb, var(--rec-color, #3b82f6) 18%, transparent);
    color: var(--rec-color, #3b82f6);
}
.scorer-rec-icon svg { width: 16px; height: 16px; }
.scorer-rec-body { min-width: 0; }
.scorer-rec-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.3;
}
.scorer-rec-detail {
    font-size: 0.72rem;
    color: #94a3b8;
    margin-top: 0.25rem;
    line-height: 1.4;
}
.scorer-rec-cat {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.4rem;
    color: var(--rec-color, #3b82f6);
}
.scorer-rec-empty {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    color: #34d399;
    font-weight: 600;
    text-align: center;
}
.scorer-rec-empty svg { color: #34d399; }

/* Grade pill � let inline color win */
.scorer-grade-pill {
    border: 1px solid currentColor;
}


/* ========================================================================
   SCORER � "Free forever" badge
   ====================================================================== */
.scorer-free-badge {
    margin: 1rem auto 0;
    max-width: 720px;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 238, 0.35);
    background: linear-gradient(
        90deg,
        rgba(34, 211, 238, 0.10),
        rgba(16, 185, 129, 0.10)
    );
    color: #e2e8f0;
    font-size: 0.85rem;
    line-height: 1.45;
    text-align: left;
    box-shadow: 0 0 24px rgba(34, 211, 238, 0.10);
}
.scorer-free-badge svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: #22d3ee;
}
.scorer-free-badge strong {
    color: #22d3ee;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.scorer-free-badge-soft {
    color: #94a3b8;
    display: inline-block;
    margin-left: 0.25rem;
}
.scorer-free-badge-soft a {
    color: #22d3ee;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.scorer-free-badge-soft a:hover { color: #67e8f9; }

@media (max-width: 640px) {
    .scorer-free-badge {
        border-radius: 16px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   LEAD CAPTURE FORM — dark theme
   ========================================================================== */
.lead-form-section {
    background: transparent !important;
    border-top: 1px solid var(--d-border);
    position: relative;
}
.lead-form-section::before {
    content: '';
    position: absolute; inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(2,6,23,0) 0%, rgba(2,6,23,0.35) 50%, rgba(2,6,23,0) 100%);
}
.lead-form-section > * { position: relative; z-index: 1; }

.lead-form {
    background: var(--d-panel-strong) !important;
    border: 1px solid var(--d-border) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 30px 60px -25px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(34, 211, 238, 0.06);
}

.lead-field label {
    color: var(--d-text-bright) !important;
}
.lead-field label span {
    color: var(--d-cyan) !important;
}

.lead-field input,
.lead-field select,
.lead-field textarea {
    background: rgba(2, 6, 23, 0.55) !important;
    color: var(--d-text) !important;
    border: 1.5px solid var(--d-border) !important;
}
.lead-field input::placeholder,
.lead-field textarea::placeholder {
    color: var(--d-text-dim) !important;
    opacity: 0.7;
}
.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
    border-color: var(--d-cyan) !important;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18) !important;
}
.lead-field select option {
    background: #0f172a;
    color: var(--d-text);
}

.lead-submit {
    background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 55%, #6366f1 100%) !important;
    color: #f8fafc !important;
    border: 1px solid rgba(34, 211, 238, 0.55) !important;
    box-shadow: 0 10px 30px -10px rgba(34, 211, 238, 0.55);
}
.lead-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #67e8f9 0%, #60a5fa 55%, #818cf8 100%) !important;
    box-shadow: 0 16px 40px -10px rgba(34, 211, 238, 0.7);
}

.lead-form-privacy {
    color: var(--d-text-dim) !important;
}

.lead-form-error {
    background: rgba(239, 68, 68, 0.12) !important;
    border-color: rgba(239, 68, 68, 0.4) !important;
    color: #fca5a5 !important;
}
.lead-form-success {
    background: rgba(16, 185, 129, 0.12) !important;
    border-color: rgba(16, 185, 129, 0.4) !important;
    color: #6ee7b7 !important;
}
