/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
    min-height: 100vh;
    padding-top: var(--nav-h);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ─── GRID BACKGROUND ─── */
.grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 30%, transparent 80%);
    pointer-events: none;
}

/* ─── NOISE OVERLAY ─── */
.noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.35;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* ─── GLOWING ORBS ─── */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    animation: orbFloat 10s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(180, 75, 255, 0.18) 0%, transparent 70%);
    top: -100px;
    right: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.12) 0%, transparent 70%);
    top: 40%;
    left: -80px;
    animation-delay: -4s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.1) 0%, transparent 70%);
    bottom: 20%;
    right: 15%;
    animation-delay: -7s;
}

@keyframes orbFloat {

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

    33% {
        transform: translateY(-30px) scale(1.05);
    }

    66% {
        transform: translateY(20px) scale(0.97);
    }
}

/* ─── MAIN HERO CONTENT ─── */
.hero-inner {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    padding: clamp(40px, 7vh, 90px) var(--pad) clamp(40px, 5vh, 60px);
    position: relative;
    z-index: 2;
}

.hero-left {
    padding-right: clamp(20px, 4vw, 60px);
}

/* ─── EYEBROW ─── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(0, 245, 212, 0.07);
    border: 1px solid rgba(0, 245, 212, 0.2);
    padding: 7px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeUp 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulse 1.8s ease-in-out infinite;
    box-shadow: 0 0 8px var(--cyan);
}

/* ─── HEADLINE ─── */
.headline {
    font-family: var(--display);
    font-size: clamp(60px, 7.5vw, 110px);
    line-height: 0.92;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 28px;
    overflow: hidden;
}

.headline-line {
    display: block;
    animation: lineReveal 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.headline-line:nth-child(1) {
    animation-delay: 0.4s;
}

.headline-line:nth-child(2) {
    animation-delay: 0.55s;
}

.headline-line:nth-child(3) {
    animation-delay: 0.7s;
}

@keyframes lineReveal {
    from {
        transform: translateY(110%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hl-accent {
    color: var(--cyan);
    position: relative;
}

.hl-outline {
    -webkit-text-stroke: 1.5px rgba(180, 75, 255, 0.7);
    color: transparent;
}

/* ─── ANIMATED WORD CYCLE ─── */
.word-cycle-wrap {
    display: inline-block;
    position: relative;
    height: 1em;
    overflow: hidden;
    vertical-align: bottom;
}

.word-cycle {
    display: flex;
    flex-direction: column;
    animation: wordScroll 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.word-cycle span {
    display: block;
    line-height: 1;
    height: 1em;
}

.wc1 {
    color: var(--cyan);
}

.wc2 {
    color: var(--purple);
}

.wc3 {
    color: var(--amber);
}

@keyframes wordScroll {

    0%,
    20% {
        transform: translateY(0);
    }

    33%,
    53% {
        transform: translateY(-1em);
    }

    66%,
    86% {
        transform: translateY(-2em);
    }

    100% {
        transform: translateY(-3em);
    }
}

/* ─── SUBTEXT ─── */
.sub {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--dim);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeUp 0.8s 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.sub strong {
    color: var(--white);
    font-weight: 500;
}

/* ─── CTA BUTTONS ─── */
.cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 52px;
    animation: fadeUp 0.8s 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body);
    font-weight: 600;
    font-size: 15px;
    color: var(--black);
    background: var(--cyan);
    border: none;
    padding: 14px 30px;
    border-radius: var(--r2);
    cursor: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 30px rgba(0, 245, 212, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 245, 212, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary svg {
    transition: transform 0.3s;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body);
    font-weight: 500;
    font-size: 15px;
    color: var(--dim);
    background: transparent;
    border: 1px solid var(--border2);
    padding: 14px 28px;
    border-radius: var(--r2);
    cursor: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-ghost:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
    background: var(--s3);
    transform: translateY(-2px);
}

.play-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(180, 75, 255, 0.15);
    border: 1px solid rgba(180, 75, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-ghost:hover .play-icon {
    background: rgba(180, 75, 255, 0.3);
    box-shadow: 0 0 16px rgba(180, 75, 255, 0.4);
}

/* ─── STATS ROW ─── */
.stats {
    display: flex;
    gap: 32px;
    animation: fadeUp 0.8s 1.15s cubic-bezier(0.16, 1, 0.3, 1) both;
    padding: clamp(40px, 7vh, 90px) var(--pad) clamp(40px, 5vh, 60px);
    justify-content: space-between;
}

.stat-item {
    position: relative;
}

.stat-item+.stat-item::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: var(--border2);
}

.stat-num {
    font-family: var(--display);
    font-size: 116px;
    letter-spacing: 0.02em;
    line-height: 1;
    color: var(--white);
}

.stat-num em {
    font-style: normal;
    font-size: 92px;
    color: var(--cyan);
}

.stat-label {
    font-size: 12px;
    font-family: var(--mono);
    letter-spacing: 0.1em;
    color: var(--dim2);
    text-transform: uppercase;
    margin-top: 4px;
}

/* ─── RIGHT PANEL ─── */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeUp 0.9s 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    margin-top: -120px;
}

/* ─── CENTRAL VISUAL ─── */
.visual-wrap {
    position: relative;
    width: min(480px, 100%);
    aspect-ratio: 1;
}

/* Rotating ring */
.ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid transparent;
    animation: spin linear infinite;
}

.ring-1 {
    border-top-color: rgba(0, 245, 212, 0.5);
    border-right-color: rgba(0, 245, 212, 0.2);
    animation-duration: 12s;
}

.ring-2 {
    inset: 30px;
    border-bottom-color: rgba(180, 75, 255, 0.5);
    border-left-color: rgba(180, 75, 255, 0.2);
    animation-duration: 8s;
    animation-direction: reverse;
}

.ring-3 {
    inset: 60px;
    border-top-color: rgba(255, 184, 0, 0.4);
    border-right-color: rgba(255, 184, 0, 0.15);
    animation-duration: 16s;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Center orb */
.center-orb {
    position: absolute;
    inset: 90px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%,
            rgba(0, 245, 212, 0.15),
            rgba(180, 75, 255, 0.1),
            rgba(5, 5, 7, 0.9));
    border: 1px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 245, 212, 0.06), inset 0 0 40px rgba(180, 75, 255, 0.05);
}

.center-icon {
    font-family: var(--display);
    font-size: 52px;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3) drop-shadow(0 0 12px rgba(0, 245, 212, 0.6));
    }
}

.center-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--dim2);
    text-transform: uppercase;
}

/* Orbiting dots */
.orbit {
    position: absolute;
    inset: 0;
    animation: spin linear infinite;
}

.orbit-1 {
    animation-duration: 7s;
}

.orbit-2 {
    animation-duration: 11s;
    animation-direction: reverse;
}

.orbit-3 {
    animation-duration: 5s;
}

.orbit-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.od-cyan {
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
    margin-top: -220px;
}

.od-purple {
    background: var(--purple);
    box-shadow: 0 0 12px var(--purple);
    margin-top: -155px;
}

.od-amber {
    background: var(--amber);
    box-shadow: 0 0 12px var(--amber);
    margin-top: -185px;
}

/* ─── FLOATING CARDS ─── */
.float-card {
    position: absolute;
    background: rgba(17, 17, 22, 0.92);
    border: 1px solid var(--border2);
    border-radius: var(--r2);
    backdrop-filter: blur(16px);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    animation: cardFloat ease-in-out infinite;
    white-space: nowrap;
}

.fc-1 {
    top: 6%;
    left: -14%;
    animation-duration: 5s;
    animation-delay: 0s;
}

.fc-2 {
    bottom: 12%;
    left: -10%;
    animation-duration: 6.5s;
    animation-delay: -2s;
}

.fc-3 {
    top: 15%;
    right: -12%;
    animation-duration: 4.5s;
    animation-delay: -1s;
}

.fc-4 {
    bottom: 18%;
    right: -8%;
    animation-duration: 7s;
    animation-delay: -3.5s;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.fc-icon {
    width: 34px;
    height: 34px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.fc-icon-cyan {
    background: rgba(0, 245, 212, 0.12);
}

.fc-icon-purple {
    background: rgba(180, 75, 255, 0.12);
}

.fc-icon-amber {
    background: rgba(255, 184, 0, 0.12);
}

.fc-icon-red {
    background: rgba(255, 77, 109, 0.12);
}

/* .fc-info {} */

.fc-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.fc-sub {
    font-size: 11px;
    font-family: var(--mono);
    color: var(--dim2);
}

.fc-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--mono);
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 100px;
}

.badge-green {
    color: var(--cyan);
    background: rgba(0, 245, 212, 0.1);
}

.badge-purple {
    color: var(--purple);
    background: rgba(180, 75, 255, 0.1);
}

.fc-sparkline {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 22px;
}

.fc-sparkline span {
    width: 4px;
    border-radius: 2px;
    background: var(--cyan);
    opacity: 0.7;
    animation: sparkAnim 1.5s ease-in-out infinite;
}

.fc-sparkline span:nth-child(1) {
    height: 60%;
    animation-delay: 0s;
}

.fc-sparkline span:nth-child(2) {
    height: 100%;
    animation-delay: 0.15s;
}

.fc-sparkline span:nth-child(3) {
    height: 45%;
    animation-delay: 0.3s;
}

.fc-sparkline span:nth-child(4) {
    height: 80%;
    animation-delay: 0.45s;
}

.fc-sparkline span:nth-child(5) {
    height: 65%;
    animation-delay: 0.6s;
}

@keyframes sparkAnim {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}


/* ─── SERVICES TICKER ─── */
.ticker-wrap {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 16px 0;
    background: linear-gradient(90deg, var(--black) 0%, transparent 8%, transparent 92%, var(--black) 100%);
    animation: fadeUp 0.8s 1.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ticker {
    display: flex;
    gap: 0;
    animation: ticker 30s linear infinite;
    width: max-content;
}

.ticker:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.tick-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dim2);
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s;
}

.tick-item:hover {
    color: var(--white);
}

.tick-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}

.td-cyan {
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
}

.td-purple {
    background: var(--purple);
    box-shadow: 0 0 8px var(--purple);
}

.td-amber {
    background: var(--amber);
    box-shadow: 0 0 8px var(--amber);
}

.td-red {
    background: var(--red);
    box-shadow: 0 0 8px var(--red);
}

/* ─── TRUSTED BY ─── */
.trusted-strip {
    position: relative;
    z-index: 2;
    padding: 28px var(--pad);
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeUp 0.8s 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
    overflow-x: auto;
    scrollbar-width: none;
}

.trusted-strip::-webkit-scrollbar {
    display: none;
}

.trusted-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--dim2);
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.trusted-divider {
    width: 1px;
    height: 24px;
    background: var(--border2);
    flex-shrink: 0;
}

.logo-list {
    display: flex;
    align-items: center;
    gap: 36px;
}

.logo-item {
    font-family: var(--display);
    font-size: 18px;
    letter-spacing: 0.1em;
    color: var(--dim2);
    transition: color 0.25s, filter 0.25s;
    cursor: none;
    white-space: nowrap;
}

.logo-item:hover {
    color: var(--white);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

/* ─── UTILS ─── */
@keyframes fadeUp {
    from {
        transform: translateY(28px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 50px;
    }

    .hero-left {
        padding-right: 0;
    }

    .hero-right {
        order: 1;
        margin-top: 0px;
    }

    .visual-wrap {
        width: min(360px, 90vw);
    }

    .fc-1 {
        top: -8%;
        left: 2%;
    }

    .fc-2 {
        bottom: 16%;
        left: 2%;
    }

    .fc-3 {
        /* top: -8%; */
        right: 2%;
    }

    .fc-4 {
        bottom: -6%;
        right: 2%;
    }

    .nav-links {
        display: none;
    }

    .headline {
        font-size: clamp(50px, 12vw, 80px);
    }

    .stats {
        gap: 20px;
    }
     .stat-num{
        font-size: 36px;
    }
    .stat-num em{
        font-size: 22px;
    }
}

/* ─── SCANLINE EFFECT ─── */
.scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px);
    pointer-events: none;
    z-index: 1;
}

/* ─── GLOW ACCENT LINE ─── */
.accent-line {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0.4;
    animation: accentPulse 3s ease-in-out infinite;
}

@keyframes accentPulse {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.6;
    }
}