/* ============================================================
   HOME3.CSS - Premium Homepage Variant 3
   Imports all h2-* styles from home2.css and adds h3-* spotlight sections
   ============================================================ */

/* Import home2 base styles (hero, proof bar, services, cases, about, testimonials, CTA) */
@import url('home2.css');

/* ── CURSOR GLOW ───────────────────────────────────────── */
#cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, rgba(6, 182, 212, 0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

#cursor-glow.active {
    opacity: 1;
}

/* ── TYPED LINE (fixed height to prevent layout jumps) ── */
.h3-typed-line {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    min-height: 1.3em;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #9b5de5 0%, #f15bb5 40%, #00bbf9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-shift 4s ease-in-out infinite alternate;
}

.h3-typed-line .typed-cursor {
    -webkit-text-fill-color: #f15bb5;
    font-weight: 300;
}

/* ── HERO BUTTON OVERRIDES ─────────────────────────────── */
.h2-hero-text {
    text-align: left !important;
}

.h2-hero-actions {
    justify-content: flex-start !important;
}

/* ── CTA BUTTON CONSISTENCY ────────────────────────────── */
.h2-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.h2-cta-buttons .btn-primary,
.h2-cta-buttons .btn-outline {
    border-radius: 14px !important;
    padding: 16px 36px !important;
    margin-left: 0 !important;
}

.h2-hero-actions .btn-primary,
.h2-hero-actions .btn-outline {
    position: relative;
    overflow: hidden;
}

.h2-hero-actions .btn-primary::after,
.h2-hero-actions .btn-outline::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.h2-hero-actions .btn-primary::after {
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.6), inset 0 0 30px rgba(124, 58, 237, 0.15);
}

.h2-hero-actions .btn-outline::after {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15), inset 0 0 25px rgba(255, 255, 255, 0.05);
}

.h2-hero-actions .btn-primary:hover::after,
.h2-hero-actions .btn-outline:hover::after {
    opacity: 1;
}

/* ── SPOTLIGHT SECTIONS ─────────────────────────────────── */
.h3-spotlight {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.h3-spotlight-dark {
    background: linear-gradient(180deg,
            rgba(239, 68, 68, 0.03) 0%,
            rgba(239, 68, 68, 0.06) 50%,
            rgba(239, 68, 68, 0.03) 100%);
}

.h3-spotlight-web {
    background: linear-gradient(180deg,
            rgba(255, 107, 53, 0.02) 0%,
            rgba(255, 107, 53, 0.05) 50%,
            rgba(255, 107, 53, 0.02) 100%);
}

.h3-spotlight-ai {
    background: linear-gradient(180deg,
            rgba(124, 58, 237, 0.03) 0%,
            rgba(124, 58, 237, 0.06) 50%,
            rgba(124, 58, 237, 0.03) 100%);
}

.h3-spotlight-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ── SPOTLIGHT VISUAL ───────────────────────────────────── */
.h3-spot-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    overflow: visible;
}

.h3-spot-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    opacity: 0.12;
    filter: blur(60px);
    animation: glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.08;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

/* ── FLOATING ICONS ─────────────────────────────────────── */
.h3-spot-icon-float {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: orbit 8s ease-in-out infinite;
    z-index: 5;
}

.h3-float-1 {
    top: 20px;
    right: 30px;
    animation-delay: 0s;
}

.h3-float-2 {
    bottom: 40px;
    left: 20px;
    animation-delay: -2.5s;
}

/* ── TYPED TEXT CURSOR ──────────────────────────────────── */
.typed-cursor {
    color: var(--gradient-end);
    font-weight: 800;
}

/* ── PREMIUM HERO BENTO BOX ─────────────────────────────── */
.h3-hero-bento {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.bento-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: glow-pulse-hero 4s ease-in-out infinite alternate;
}

@keyframes glow-pulse-hero {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.bento-img {
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.bento-badge {
    position: absolute;
    background: rgba(15, 15, 25, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float-gentle 5s ease-in-out infinite;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse-dot-anim 2s infinite;
}

@keyframes pulse-dot-anim {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.bento-badge-1 {
    top: -15px;
    right: -20px;
    animation-delay: 0s;
}

.bento-badge-2 {
    bottom: 40px;
    left: -30px;
    animation-delay: -1.5s;
}

.bento-badge-3 {
    bottom: -10px;
    right: 20px;
    animation-delay: -3s;
}

/* ── PARALLAX ELEMENTS ──────────────────────────────────── */
.parallax-el {
    transition: transform 0.1s ease-out;
}

/* ───────────────────────────────────────────────────────── */


@keyframes orbit {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(10px, -15px) scale(1.1);
    }

    50% {
        transform: translate(-5px, -25px) scale(0.95);
    }

    75% {
        transform: translate(-15px, -10px) scale(1.05);
    }
}

/* ══════════════════════════════════════════════════════════
   SMART HOME DASHBOARD MOCKUP
   ══════════════════════════════════════════════════════════ */
.h3-dashboard {
    width: 340px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    animation: float-gentle 6s ease-in-out infinite;
    z-index: 3;
}

.h3-dash-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.h3-dash-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.h3-dash-title {
    margin-left: 10px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.h3-dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px;
}

.h3-dash-widget {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}

.h3-widget-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.h3-widget-value {
    font-size: 1.6rem;
    font-weight: 800;
}

.h3-widget-bar-wrap {
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    margin: 8px 0 4px;
}

.h3-widget-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #4ade80);
    border-radius: 10px;
    transition: width 1.5s ease;
}

.h3-energy-val {
    font-size: 1.1rem !important;
}

.h3-widget-status {
    font-size: 0.85rem;
    color: #22c55e;
    font-weight: 600;
}

/* ── SPOTLIGHT CONTENT ──────────────────────────────────── */
.h3-spot-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.h3-spot-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.h3-spot-content>p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ── FEATURE LIST ───────────────────────────────────────── */
.h3-spot-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.h3-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.h3-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(6px);
}

.h3-feature-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ── SPOTLIGHT BUTTONS ──────────────────────────────────── */
.h3-spot-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.h3-btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, var(--btn-accent), color-mix(in srgb, var(--btn-accent) 70%, black));
    box-shadow: 0 8px 25px color-mix(in srgb, var(--btn-accent) 35%, transparent);
    transition: all 0.3s ease;
    border: none;
}

.h3-btn-accent:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 35px color-mix(in srgb, var(--btn-accent) 50%, transparent);
}

.h3-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.h3-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   SECURITY — ANIMATED METRIC BARS
   ══════════════════════════════════════════════════════════ */
.h3-spot-metrics {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.h3-metric {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.h3-metric-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.h3-metric-fill {
    height: 100%;
    width: 0;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--fill-color), color-mix(in srgb, var(--fill-color) 60%, white));
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 12px color-mix(in srgb, var(--fill-color) 40%, transparent);
}

.h3-metric-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   SECURITY — SHIELD + RADAR + THREATS
   ══════════════════════════════════════════════════════════ */
.h3-spot-shield {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h3-shield-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.h3-ring-1 {
    width: 100%;
    height: 100%;
    animation: shield-pulse 3s ease-in-out infinite;
}

.h3-ring-2 {
    width: 75%;
    height: 75%;
    border-color: rgba(239, 68, 68, 0.25);
    animation: shield-pulse 3s ease-in-out infinite;
    animation-delay: -1s;
}

.h3-ring-3 {
    width: 50%;
    height: 50%;
    border-color: rgba(239, 68, 68, 0.35);
    animation: shield-pulse 3s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes shield-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.h3-shield-core {
    font-size: 4rem;
    z-index: 2;
    filter: drop-shadow(0 0 40px rgba(239, 68, 68, 0.4));
    animation: float-gentle 5s ease-in-out infinite;
}

/* Radar sweep */
.h3-radar-sweep {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            transparent 0deg,
            rgba(239, 68, 68, 0.15) 30deg,
            transparent 60deg);
    animation: radar-spin 4s linear infinite;
    z-index: 1;
}

@keyframes radar-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Threat indicators */
.h3-threat {
    position: absolute;
    font-size: 0.8rem;
    opacity: 0;
    animation: threat-blink 5s ease-in-out infinite;
    z-index: 3;
}

.h3-threat-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.h3-threat-2 {
    bottom: 20%;
    left: 8%;
    animation-delay: 1.7s;
}

.h3-threat-3 {
    top: 50%;
    right: 2%;
    animation-delay: 3.3s;
}

@keyframes threat-blink {

    0%,
    15%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }

    5%,
    10% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* ══════════════════════════════════════════════════════════
   WEB DEV — BROWSER MOCKUP
   ══════════════════════════════════════════════════════════ */
.h3-browser {
    width: 340px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    animation: float-gentle 7s ease-in-out infinite;
    z-index: 3;
}

.h3-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.h3-browser-url {
    margin-left: 10px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 6px;
    flex-grow: 1;
}

.h3-browser-body {
    padding: 16px;
}

.h3-browser-hero-mock {
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.05));
    border-radius: 10px;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
}

.h3-browser-hero-mock::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.h3-browser-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.h3-mock-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
}

/* Lighthouse-style scores */
.h3-scores {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 4;
    animation: float-gentle 5s ease-in-out infinite;
    animation-delay: -2s;
    margin-left: 12px;
    flex-shrink: 0;
}

.h3-score-ring {
    width: 84px;
    background: rgba(15, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 10px;
    text-align: center;
    position: relative;
}

.h3-score-ring svg {
    width: 44px;
    height: 44px;
    transform: rotate(-90deg);
    display: block;
    margin: 0 auto;
}

.h3-score-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 2.5;
}

.h3-score-fill {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    transition: stroke-dasharray 1.5s ease;
}

.h3-score-num {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 800;
    color: white;
}

.h3-score-lbl {
    display: block;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    font-weight: 600;
    overflow: visible;
    white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   AI — WORKFLOW STEPS
   ══════════════════════════════════════════════════════════ */
.h3-ai-workflow {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 30px;
}

.h3-workflow-step {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.h3-workflow-step:hover {
    background: rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.2);
    transform: translateX(8px);
}

.h3-wf-num {
    font-size: 1.8rem;
    font-weight: 800;
    opacity: 0.4;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.h3-workflow-step:hover .h3-wf-num {
    opacity: 1;
}

.h3-wf-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.h3-wf-text strong {
    color: white;
    font-size: 1rem;
    font-weight: 700;
}

.h3-wf-text span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.h3-workflow-connector {
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(6, 182, 212, 0.3), rgba(6, 182, 212, 0.1));
    margin-left: 38px;
}

/* ══════════════════════════════════════════════════════════
   AI — NEURAL BRAIN VISUALIZATION
   ══════════════════════════════════════════════════════════ */
.h3-brain {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h3-brain-core {
    font-size: 4.5rem;
    z-index: 3;
    filter: drop-shadow(0 0 40px rgba(6, 182, 212, 0.4));
    animation: float-gentle 5s ease-in-out infinite;
}

.h3-brain-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(6, 182, 212, 0.15);
}

.h3-br-1 {
    width: 200px;
    height: 200px;
    animation: brain-rotate 20s linear infinite;
}

.h3-br-2 {
    width: 280px;
    height: 280px;
    animation: brain-rotate 30s linear infinite reverse;
}

@keyframes brain-rotate {
    to {
        transform: rotate(360deg);
    }
}

/* Orbiting nodes */
.h3-brain-orbit {
    position: absolute;
}

.h3-node {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: white;
    background: color-mix(in srgb, var(--node-color) 15%, transparent);
    border: 1px solid color-mix(in srgb, var(--node-color) 30%, transparent);
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 0 20px color-mix(in srgb, var(--node-color) 20%, transparent);
}

.h3-orbit-1 {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: node-bob 4s ease-in-out infinite;
}

.h3-orbit-2 {
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    animation: node-bob 4s ease-in-out infinite;
    animation-delay: -1s;
}

.h3-orbit-3 {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: node-bob 4s ease-in-out infinite;
    animation-delay: -2s;
}

.h3-orbit-4 {
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    animation: node-bob 4s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes node-bob {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -10px;
    }
}

/* ══════════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ══════════════════════════════════════════════════════════ */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #7c3aed, #06b6d4, #22c55e);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s;
}

/* Pause marquee on hover */
.h2-testimonial-track:hover {
    animation-play-state: paused;
}

/* Tech Partners Monochrome Transition */
.tech-logo {
    filter: grayscale(1) opacity(0.5);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.tech-logo:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

/* ══════════════════════════════════════════════════════════
   MINI CASE STUDIES (inline per spotlight)
   ══════════════════════════════════════════════════════════ */
.h3-mini-case {
    margin: 24px 0;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid color-mix(in srgb, var(--case-accent) 20%, transparent);
    border-left: 3px solid var(--case-accent);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.h3-mini-case:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: color-mix(in srgb, var(--case-accent) 35%, transparent);
    border-left-color: var(--case-accent);
}

.h3-mini-case-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--case-accent);
    opacity: 0.7;
    margin-bottom: 6px;
}

.h3-mini-case-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.h3-mini-case-stats {
    display: flex;
    gap: 20px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.h3-mini-case-stats strong {
    font-weight: 800;
    font-size: 0.95rem;
}

/* ══════════════════════════════════════════════════════════
   COMPACT PARTNERS
   ══════════════════════════════════════════════════════════ */
.h3-partners-compact {
    padding: 24px 0 20px;
    overflow: hidden;
    width: 100%;
}

.h3-partners-compact .logo-marquee-wrapper {
    opacity: 0.8;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.h3-partners-compact .logo-marquee {
    display: flex;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.h3-partners-compact .logo-track {
    display: flex;
    width: max-content;
    animation: marquee-logos 25s linear infinite;
}

@keyframes marquee-logos {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.h3-partners-compact .tech-logo svg {
    width: 20px;
    height: 20px;
}

.h3-partners-compact .tech-logo span {
    font-size: 0.7rem;
}

.h3-partners-compact .tech-logo {
    gap: 6px;
    padding: 6px 12px;
}

/* ══════════════════════════════════════════════════════════
   CUSTOM NAVIGATION (home3 only)
   ══════════════════════════════════════════════════════════ */
.h3-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(10, 10, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.h3-nav.scrolled {
    background: rgba(10, 10, 20, 0.88);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.h3-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    max-width: 1200px;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.h3-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.h3-nav-logo img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.h3-nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.h3-nav-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 10px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.h3-nav-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

/* Menu button (left of logo) */
.h3-menu-btn {
    display: flex;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.h3-menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.5);
}

/* Section labels in the drawer */
.h3-mobile-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.35);
    padding: 8px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Anchor link active state (scroll-spy) ──────────── */
.h3-nav-links .h3-anchor-link.active {
    color: white;
    background: rgba(124, 58, 237, 0.2);
}

/* ── Mobile section labels ──────────────────────────── */
.h3-mobile-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    padding: 20px 16px 6px;
    margin-top: 4px;
}

.h3-mobile-section-label:first-child {
    padding-top: 0;
    margin-top: 0;
}

.h3-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.h3-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.5);
}

.h3-nav-cta-call {
    display: inline-flex;
    opacity: 1;
    max-width: 160px;
    padding: 9px 22px;
}

.h3-nav-inner {
    gap: 8px;
}

/* ══════════════════════════════════════════════════════════
   TOAST FAB — floating site-navigation button
   ══════════════════════════════════════════════════════════ */
.toast-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    border: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.45), 0 0 0 0 rgba(124, 58, 237, 0.3);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: toast-pulse 3s ease-in-out infinite;
}

@keyframes toast-pulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(124, 58, 237, 0.45), 0 0 0 0 rgba(124, 58, 237, 0.3);
    }

    50% {
        box-shadow: 0 6px 24px rgba(124, 58, 237, 0.45), 0 0 0 8px rgba(124, 58, 237, 0);
    }
}

.toast-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.6);
    animation: none;
}

.toast-fab-icon,
.toast-fab-close {
    position: absolute;
    transition: all 0.3s ease;
}

.toast-fab-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.toast-fab.open .toast-fab-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.toast-fab.open .toast-fab-close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Toast panel */
.toast-panel {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 300px;
    max-height: calc(100vh - 140px);
    background: rgba(12, 12, 25, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.toast-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.toast-panel-inner {
    display: flex;
    flex-direction: column;
    padding: 20px 16px;
    gap: 3px;
}

.toast-panel-header {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    padding-bottom: 12px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.toast-panel-section-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    padding: 14px 12px 4px;
    margin-top: 4px;
}

.toast-panel-section-label:first-of-type {
    padding-top: 0;
    margin-top: 0;
}

.toast-panel-inner>a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.toast-panel-inner>a:hover {
    color: white;
    background: rgba(124, 58, 237, 0.15);
    padding-left: 16px;
}

.toast-panel-cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Toast backdrop */
.toast-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1098;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.toast-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

/* ── SERVICES CAROUSEL ARROWS ─────────────────────────────── */
.h2-services {
    position: relative;
}

.h3-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.h3-carousel-arrow:hover {
    background: rgba(124, 58, 237, 0.3);
    border-color: rgba(124, 58, 237, 0.5);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.h3-carousel-arrow--left {
    left: 16px;
}

.h3-carousel-arrow--right {
    right: 16px;
}

@media (max-width: 900px) {
    .h3-carousel-arrow {
        display: none;
    }
}

/* Hamburger */
.h3-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.h3-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.h3-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.h3-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.h3-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile drawer */
.h3-mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 999;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5);
}

.h3-mobile-menu.open {
    left: 0;
}

/* Desktop: wider drawer with multi-column grid */
@media (min-width: 901px) {
    .h3-mobile-menu {
        max-width: 560px;
        width: 560px;
    }

    .h3-mobile-menu-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 24px;
        padding-top: 80px;
    }
}

.h3-mobile-menu-inner {
    display: flex;
    flex-direction: column;
    padding: 100px 30px 40px;
    gap: 4px;
}

.h3-mobile-menu-inner>a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 14px 16px;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.h3-mobile-menu-inner>a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.h3-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.h3-mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.h3-mobile-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .h3-spotlight-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* On mobile, ALL visuals go above text consistently */
    .h3-spot-visual {
        order: -1;
    }

    .h3-spot-visual {
        min-height: 280px;
    }

    .h3-spot-content h2 {
        font-size: 2rem;
    }

    .h3-dashboard,
    .h3-browser {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .h3-scores {
        right: 0;
        bottom: 0;
        flex-direction: row;
        position: relative;
        justify-content: center;
        margin-top: 16px;
    }

    .h3-brain {
        width: 240px;
        height: 240px;
        margin: 0 auto;
    }

    .h3-brain-core {
        font-size: 3.5rem;
    }

    .h3-spot-shield {
        width: 220px;
        height: 220px;
        margin: 0 auto;
    }

    /* Nav responsive */
    .h3-nav-links {
        display: none;
    }

    .h3-nav-cta {
        display: none;
    }

    /* Contact CTA on mobile */
    .h3-nav-cta-call {
        display: inline-flex !important;
        opacity: 1;
        max-width: 160px;
        padding: 9px 22px;
        font-size: 0.8rem;
    }

    .h3-hamburger {
        display: flex;
    }

    /* Override home2.css centering */
    .h2-hero-actions {
        justify-content: flex-start !important;
    }

    .h2-hero-text {
        text-align: left !important;
    }

    .h2-hero-text .subtitle {
        margin: 0 0 30px !important;
    }
}

@media (max-width: 600px) {
    .h3-spotlight {
        padding: 60px 16px;
    }

    .h3-spot-content h2 {
        font-size: 1.7rem;
    }

    .h3-spot-actions {
        flex-direction: column;
    }

    .h3-btn-accent,
    .h3-btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .h3-dashboard {
        width: 100%;
    }

    .h3-browser {
        width: 100%;
    }

    .h3-spot-icon-float {
        display: none;
    }

    .h3-shield-core {
        font-size: 3rem;
    }

    .h3-spot-shield {
        width: 180px;
        height: 180px;
    }

    .h3-brain {
        width: 200px;
        height: 200px;
    }

    .h3-node {
        font-size: 0.6rem;
        padding: 4px 8px;
    }
}

/* ══════════════════════════════════════════════════════════
   WEB DEV — Browser + Scores side by side
   ══════════════════════════════════════════════════════════ */
.h3-spotlight-web .h3-spot-visual {
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

@media (max-width: 768px) {
    .h3-spotlight-web .h3-spot-visual {
        flex-direction: column;
    }
}

/* ══════════════════════════════════════════════════════════
   CHEVRON OVERRIDES — transparent background, no separate "section"
   ══════════════════════════════════════════════════════════ */
.section-chevron {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    position: absolute !important;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 48px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.section-chevron span {
    font-size: 1.5rem !important;
    color: rgba(255, 255, 255, 0.2) !important;
    text-shadow: 0 0 20px rgba(155, 93, 229, 0.3);
    transition: color 0.3s ease;
}

.section-chevron:hover span {
    color: rgba(155, 93, 229, 0.6) !important;
}

/* Hide old homepage's section navigator on the new homepage */
.section-navigator {
    display: none !important;
}

/* ══════════════════════════════════════════════════════════
   ORBIT HERO — Avatar center + rotating service icons
   ══════════════════════════════════════════════════════════ */
/* Override hero-inner grid for orbit layout */
.orbit-hero .h2-hero-inner {
    grid-template-columns: 560px 1fr;
    gap: 40px;
}

.orbit-hero-stage {
    position: relative;
    width: 560px;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-shrink: 0;
}

/* ── Central avatar ─────────────────────────────────────── */
.orbit-center {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.orbit-center-glow {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(124, 58, 237, 0.45) 0%,
            rgba(6, 182, 212, 0.15) 40%,
            transparent 70%);
    filter: blur(50px);
    animation: orbit-glow-pulse 4s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes orbit-glow-pulse {
    0% {
        transform: scale(0.85);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.orbit-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(124, 58, 237, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 2;
    animation: float-gentle 6s ease-in-out infinite;
}

/* ── Orbit ring visuals ─────────────────────────────────── */
.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.orbit-ring-inner {
    width: 340px;
    height: 340px;
}

.orbit-ring-outer {
    width: 540px;
    height: 540px;
}

/* ── Orbit tracks (the rotating containers) ─────────────── */
.orbit-track {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.orbit-track-inner {
    width: 340px;
    height: 340px;
    animation: orbit-spin 90s linear infinite;
}

.orbit-track-outer {
    width: 540px;
    height: 540px;
    animation: orbit-spin 140s linear infinite reverse;
}

@keyframes orbit-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Individual service items ───────────────────────────── */
.orbit-service {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    text-decoration: none;
    pointer-events: auto;
    /* Position each item in a circle using CSS calc + custom properties */
    transform:
        rotate(calc(360deg / var(--total) * var(--i))) translateY(calc(-50%)) translateY(calc(-1 * var(--orbit-radius)));
    transform-origin: 0 0;
}

.orbit-track-inner .orbit-service {
    --orbit-radius: 170px;
    transform:
        rotate(calc(360deg / var(--total) * var(--i))) translate(-50%, calc(-170px));
}

.orbit-track-outer .orbit-service {
    --orbit-radius: 270px;
    transform:
        rotate(calc(360deg / var(--total) * var(--i))) translate(-50%, calc(-270px));
}

.orbit-service .orbit-icon,
.orbit-service .orbit-label {
    display: block;
    text-align: center;
    /* Counter-rotate: undo item angle + undo track spin */
    --item-angle: calc(360deg / var(--total) * var(--i));
}

/* The visual pill */
.orbit-service .orbit-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: rgba(15, 15, 25, 0.75);
    backdrop-filter: blur(16px);
    border: none;
    border-radius: 16px;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 0 20px color-mix(in srgb, var(--color) 15%, transparent);
    margin: 0 0 0 -22px;
    transition: all 0.3s ease;
}

.orbit-service .orbit-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 6px;
    margin-left: -40px;
    width: 80px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.orbit-service:hover .orbit-label {
    opacity: 1;
}

/* Counter-rotate: undo item static angle + undo track's continuous rotation */
.orbit-track-inner .orbit-service>* {
    transform: rotate(calc(-1 * var(--item-angle)));
    animation: orbit-counter-spin-inner 90s linear infinite;
}

.orbit-track-outer .orbit-service>* {
    transform: rotate(calc(-1 * var(--item-angle)));
    animation: orbit-counter-spin-outer 140s linear infinite;
}

@keyframes orbit-counter-spin-inner {
    from {
        transform: rotate(calc(-1 * var(--item-angle)));
    }

    to {
        transform: rotate(calc(-1 * var(--item-angle) - 360deg));
    }
}

@keyframes orbit-counter-spin-outer {
    from {
        transform: rotate(calc(-1 * var(--item-angle)));
    }

    to {
        transform: rotate(calc(-1 * var(--item-angle) + 360deg));
    }
}

/* Hover effects */
.orbit-service:hover .orbit-icon {
    transform: scale(1.2);
    border-color: var(--color);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 30px color-mix(in srgb, var(--color) 35%, transparent);
}

.orbit-service:hover .orbit-label {
    color: var(--color);
}

/* Pause orbits on stage hover for easier clicking */
.orbit-hero-stage:hover .orbit-track {
    animation-play-state: paused;
}

.orbit-hero-stage:hover .orbit-service>* {
    animation-play-state: paused;
}

/* ── Responsive ─────────────────────────────────────────── */

/* Hide orbit rings at tablet/medium widths where they look awkward */
@media (max-width: 1100px) {
    .orbit-ring {
        display: none;
    }
}

@media (max-width: 768px) {
    .orbit-hero .h2-hero-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .orbit-hero-stage {
        width: 180px;
        height: 180px;
    }

    .orbit-avatar {
        width: 140px;
        height: 140px;
    }

    .orbit-center-glow {
        width: 200px;
        height: 200px;
    }

    /* Hide orbit tracks too on mobile */
    .orbit-track {
        display: none;
    }
}