/*
   99ads Home V5 - "The Creator Island" - ULTIMATE STABLE V7.5
   - Refined Logo Ribbon (Slower, Higher Contrast, Normalized Size)
   - Two-Row Infinite Logo Ribbon
   - Modern Fade-Out Mask
   - Optimized showcase layout
*/

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
    --v5-bg-main: #f0f2f5;
    --v5-island-bg: #ffffff;
    --v5-red: #e63946;
    --v5-red-hover: #cf323e;
    --v5-red-glow: rgba(230, 57, 70, 0.15);
    --v5-purple: #6366f1;
    --v5-purple-glow: rgba(99, 102, 241, 0.1);
    --v5-text-main: #0f172a;
    --v5-text-sub: #64748b;
    --v5-border: #f1f5f9;
    --v5-glass-border: rgba(255, 255, 255, 0.5);
    --v5-radius-island: 54px;
    --v5-radius-card: 28px;
    --v5-ambient-red: rgba(230, 57, 70, 0.12);
    --v5-ambient-red-strong: rgba(230, 57, 70, 0.18);
    --v5-ambient-purple: rgba(99, 102, 241, 0.12);
}

.v5-wrapper {
    background:
        radial-gradient(circle at top right, rgba(230, 57, 70, 0.12), transparent 22%),
        radial-gradient(circle at 10% 45%, rgba(99, 102, 241, 0.08), transparent 20%),
        linear-gradient(180deg, #eef1f6 0%, #f4f6fb 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--v5-text-main);
    padding: 30px 20px 80px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.v5-wrapper::before,
.v5-wrapper::after {
    content: "";
    position: fixed;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
    animation: v5-ambient-float 22s ease-in-out infinite alternate;
}

.v5-wrapper::before {
    top: -140px;
    right: -160px;
    background: radial-gradient(circle, var(--v5-ambient-red-strong) 0%, rgba(230, 57, 70, 0.04) 56%, transparent 72%);
}

.v5-wrapper::after {
    bottom: 10%;
    left: -180px;
    background: radial-gradient(circle, var(--v5-ambient-purple) 0%, rgba(99, 102, 241, 0.04) 58%, transparent 74%);
    animation-duration: 26s;
}

.v5-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.03;
    pointer-events: none;
    z-index: 10000;
}

/* Atmospheric Blooms */
.v5-bloom {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
    animation: v5-bloom-drift 18s ease-in-out infinite alternate;
}
.v5-bloom-1 {
    top: -120px;
    right: -120px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.22) 0%, rgba(230, 57, 70, 0.08) 48%, transparent 72%);
}
.v5-bloom-2 {
    bottom: 18%;
    left: -120px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.16) 0%, rgba(99, 102, 241, 0.06) 48%, transparent 72%);
    animation-duration: 24s;
}

@keyframes v5-bloom-drift {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        transform: translate3d(24px, -18px, 0) scale(1.08);
    }
}

@keyframes v5-ambient-float {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(28px, -24px, 0);
    }
}

.v5-island {
    max-width: 1400px;
    margin: 0 auto;
    background:
        radial-gradient(circle at top right, rgba(230, 57, 70, 0.06), transparent 18%),
        radial-gradient(circle at 18% 62%, rgba(99, 102, 241, 0.04), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(253, 253, 255, 0.96));
    border-radius: var(--v5-radius-island);
    box-shadow: 0 50px 140px rgba(15, 23, 42, 0.08);
    position: relative;
    border: 1.5px solid #ffffff;
    overflow: visible !important;
    isolation: isolate;
}

.v5-island::before,
.v5-island::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: -1;
}

.v5-island::before {
    width: 420px;
    height: 420px;
    top: 220px;
    right: -120px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.14) 0%, rgba(230, 57, 70, 0.04) 50%, transparent 74%);
    filter: blur(70px);
    opacity: 0.9;
}

.v5-island::after {
    width: 360px;
    height: 360px;
    bottom: 180px;
    left: -110px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.03) 52%, transparent 74%);
    filter: blur(72px);
    opacity: 0.8;
}

/* --- THE HEADER --- */
.v5-header {
    position: sticky !important;
    top: 24px !important;
    margin: 0 24px !important;
    z-index: 9999 !important;
    display: grid !important;
    grid-template-columns: 240px 1fr 240px !important;
    align-items: center !important;
    padding: 0 32px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid var(--v5-glass-border) !important;
    border-radius: 100px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03) !important;
    height: 72px !important;
}

.v5-header-left {
    display: flex !important;
    justify-content: flex-start !important;
}
.v5-header-center {
    display: flex !important;
    justify-content: center !important;
}
.v5-header-right {
    display: flex !important;
    justify-content: flex-end !important;
}

.v5-logo {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.05em !important;
    color: var(--v5-text-main) !important;
    text-decoration: none !important;
}
.v5-logo span {
    color: var(--v5-red) !important;
}

.v5-nav {
    display: flex !important;
    gap: 12px !important;
    background: rgba(241, 245, 249, 0.6) !important;
    padding: 6px !important;
    border-radius: 100px !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
}
.v5-nav-link {
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    color: var(--v5-text-sub) !important;
    text-decoration: none !important;
    padding: 8px 18px !important;
    border-radius: 100px !important;
    transition: all 0.2s ease !important;
}
.v5-nav-link:hover {
    background: #fff !important;
    color: var(--v5-text-main) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
}

.v5-btn-primary {
    background: var(--v5-red) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 24px !important;
    border-radius: 100px !important;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    box-shadow: 0 8px 16px var(--v5-red-glow) !important;
    border: none !important;
    white-space: nowrap !important;
}

/* --- HERO & ARC --- */
.v5-hero {
    padding: 100px 40px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 6%, rgba(230, 57, 70, 0.06), transparent 24%),
        radial-gradient(circle at 74% 22%, rgba(99, 102, 241, 0.06), transparent 20%);
}
.v5-hero-title {
    font-family: "Cabinet Grotesk", sans-serif !important;
    font-size: clamp(3rem, 7vw, 4.8rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.9;
    margin-bottom: 24px;
}
.v5-hero-title span {
    background: linear-gradient(to right, var(--v5-purple), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.v5-video-arc-container {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
    padding-bottom: 120px;
    z-index: 2;
}
.v5-video-arc-container::before {
    content: "";
    position: absolute;
    left: 14%;
    right: 14%;
    top: 12%;
    bottom: 12%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, rgba(230, 57, 70, 0.03) 36%, transparent 70%);
    filter: blur(24px);
    pointer-events: none;
}
.v5-video-arc {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
    perspective: 1200px;
    animation: v5-fade-up 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes v5-fade-up {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.v5-video-card {
    width: 200px;
    height: 350px;
    background: #fff;
    border-radius: 22px;
    border: 8px solid #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    transition: all 0.5s ease;
    overflow: hidden !important;
    position: relative;
    flex-shrink: 0;
}
.v5-video-card:nth-child(1) {
    transform: translateY(75px) rotate(-11deg);
    opacity: 0.7;
}
.v5-video-card:nth-child(2) {
    transform: translateY(25px) rotate(-5.5deg);
    opacity: 0.95;
}
.v5-video-card:nth-child(3) {
    transform: translateY(0) rotate(0deg) scale(1.05);
    z-index: 10;
    width: 220px;
    height: 390px;
    box-shadow: 0 35px 75px rgba(0, 0, 0, 0.2);
}
.v5-video-card:nth-child(4) {
    transform: translateY(25px) rotate(5.5deg);
    opacity: 0.95;
}
.v5-video-card:nth-child(5) {
    transform: translateY(75px) rotate(11deg);
    opacity: 0.7;
}
.v5-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* THE FLOATING NOTES */
.v5-floating-note {
    position: absolute !important;
    font-family: "Comic Sans MS", cursive;
    font-size: 0.85rem;
    color: var(--v5-text-sub);
    pointer-events: none;
    z-index: 100;
}
.v5-note-right {
    top: -10px;
    right: 10%;
    transform: rotate(5deg);
}
.v5-note-left {
    top: 20px;
    left: 10%;
    transform: rotate(-8deg);
}
.v5-floating-note svg {
    position: absolute;
    width: 32px;
    height: 32px;
}
.v5-note-right svg {
    left: -40px;
    top: 15px;
    transform: scaleX(-1) rotate(15deg);
}
.v5-note-left svg {
    right: -40px;
    top: 15px;
    transform: rotate(15deg);
}

/* --- LOGO RIBBON: Faded Ends & Refinement --- */
.v5-logo-wall {
    padding: 80px 0;
    overflow: hidden;
    background: #fafbfc;
    border-top: 1px solid var(--v5-border);
    border-bottom: 1px solid var(--v5-border);
    position: relative;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 15%,
        black 85%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 15%,
        black 85%,
        transparent
    );
}

.v5-logo-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
}

.v5-logo-track {
    display: flex;
    width: max-content;
    animation: v5-scroll 80s linear infinite; /* Slowed down from 40s */
    gap: 100px;
    align-items: center;
    padding: 0 40px;
}

.v5-logo-track-reverse {
    animation-direction: reverse;
}

@keyframes v5-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.v5-logo-track img {
    height: 38px; /* Slightly larger and normalized */
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(1) brightness(0.2) contrast(1.2); /* Much higher contrast, darker logos */
    opacity: 0.8;
    transition: all 0.4s ease;
}
.v5-logo-track img:hover {
    filter: grayscale(0) brightness(1) contrast(1);
    opacity: 1;
    transform: scale(1.1);
}

/* --- PERFORMANCE SCENE --- */
.v5-proof-section {
    padding: 120px 60px 90px;
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(99, 102, 241, 0.08), transparent 32%),
        linear-gradient(180deg, #f7f8fc 0%, #f3f5fb 100%);
    overflow: hidden;
}
.v5-proof-section::before {
    content: "";
    position: absolute;
    left: 60px;
    right: 60px;
    top: 42px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.3), transparent);
    pointer-events: none;
}
.v5-proof-shell {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
}
.v5-proof-header {
    max-width: 780px;
    margin: 0 auto 40px;
    text-align: center;
}
.v5-proof-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(99, 102, 241, 0.14);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
    color: var(--v5-purple);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.v5-proof-title {
    font-family: "Cabinet Grotesk", sans-serif !important;
    font-weight: 900;
    font-size: clamp(2.4rem, 4.8vw, 3.15rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}
.v5-proof-intro {
    color: var(--v5-text-sub);
    font-size: 1.04rem;
    line-height: 1.75;
    max-width: 42rem;
    margin: 0 auto;
}
.v5-proof-grid {
    display: block;
}
.v5-proof-scene {
    position: relative;
    padding: 34px;
    border-radius: 38px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.84));
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}
.v5-proof-canvas {
    position: relative;
    min-height: 520px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top left, rgba(99, 102, 241, 0.16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(230, 57, 70, 0.1), transparent 24%),
        linear-gradient(180deg, #f2f3fb 0%, #eef2f9 100%);
    overflow: hidden;
}
.v5-proof-frame {
    position: absolute;
    width: 220px;
    height: 320px;
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(214, 223, 246, 0.65));
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}
.v5-proof-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.08) 100%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 42%);
}
.v5-proof-frame video,
.v5-proof-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.v5-proof-frame-left {
    left: 72px;
    bottom: 92px;
    transform: rotate(-9deg);
}
.v5-proof-frame-center {
    left: 50%;
    top: 64px;
    width: 250px;
    height: 360px;
    transform: translateX(-50%);
}
.v5-proof-frame-right {
    right: 84px;
    bottom: 82px;
    transform: rotate(8deg);
}
.v5-proof-frame-label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 1;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.v5-proof-callout {
    position: absolute;
    z-index: 2;
    min-width: 180px;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}
.v5-proof-callout strong {
    display: block;
    margin-bottom: 4px;
    font-family: "Cabinet Grotesk", sans-serif !important;
    font-size: clamp(1.7rem, 2.6vw, 2.5rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}
.v5-proof-callout span {
    color: var(--v5-text-sub);
    font-size: 0.9rem;
    line-height: 1.5;
}
.v5-proof-callout-a {
    top: 58px;
    left: 54px;
}
.v5-proof-callout-b {
    right: 58px;
    top: 110px;
}
.v5-proof-callout-c {
    left: 50%;
    bottom: 46px;
    transform: translateX(-50%);
}
.v5-proof-captionrow {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.v5-proof-captionrow span {
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.14);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--v5-text-main);
}
.v5-proof-quote-inline {
    margin: 20px 0 0;
    font-family: "Cabinet Grotesk", sans-serif !important;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: rgba(15, 23, 42, 0.88);
}

/* --- PROCESS SCENE --- */
.v5-bento-section {
    padding: 96px 60px 140px;
    background:
        radial-gradient(circle at top left, rgba(99, 102, 241, 0.05), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
    position: relative;
    overflow: hidden;
}
.v5-bento-section::before {
    content: "";
    position: absolute;
    left: 60px;
    right: 60px;
    top: 0;
    height: 1px;
    border-radius: 0;
    border: 0;
    background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.26), transparent);
    pointer-events: none;
}
.v5-bento-shell {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
}
.v5-bento-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto 36px;
    max-width: 780px;
}
.v5-bento-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(99, 102, 241, 0.14);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
    color: var(--v5-purple);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.v5-bento-title {
    font-family: "Cabinet Grotesk", sans-serif !important;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 3.2rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}
.v5-bento-intro {
    max-width: 40rem;
    margin: 0 auto;
    color: var(--v5-text-sub);
    font-size: 1.05rem;
    line-height: 1.75;
}
.v5-process-scene {
    position: relative;
    min-height: 0;
    padding: 38px;
    border-radius: 38px;
    background:
        radial-gradient(circle at top right, rgba(99, 102, 241, 0.12), transparent 28%),
        radial-gradient(circle at bottom left, rgba(230, 57, 70, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 253, 0.92));
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}
.v5-process-console {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 18px 45px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(14px);
}
.v5-process-console::before {
    content: "";
    position: absolute;
    inset: -50px;
    border-radius: 40px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 44%);
    filter: blur(50px);
    opacity: 0.7;
    pointer-events: none;
}
.v5-process-console-top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    opacity: 0;
    transform: translateY(10px);
    animation: v5-process-loop-fade 10s ease-in-out infinite;
}
.v5-process-console-status,
.v5-process-console-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}
.v5-process-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #4ade80;
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0.08);
    animation: v5-process-pulse 1.8s ease-in-out infinite;
}
.v5-process-console-label,
.v5-process-meta-code {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.v5-process-console-label {
    color: rgba(15, 23, 42, 0.78);
}
.v5-process-meta-code {
    color: rgba(100, 116, 139, 0.72);
}
.v5-process-meta-pill {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.18);
    color: rgba(74, 222, 128, 0.8);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.v5-process-console-body {
    position: relative;
    z-index: 1;
    padding: 22px;
    display: grid;
    gap: 18px;
}
.v5-process-panel {
    border-radius: 20px;
    padding: 16px 18px;
    border: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(255, 255, 255, 0.76);
    opacity: 0;
    transform: translateY(12px);
    animation: v5-process-loop-fade 10s ease-in-out infinite;
}
.v5-process-panel-inquiry { animation-delay: 0.4s; }
.v5-process-panel-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.v5-process-panel p {
    margin: 0;
    color: var(--v5-text-sub);
    line-height: 1.65;
    font-size: 0.92rem;
}
.v5-process-panel-inquiry .v5-process-panel-kicker {
    color: rgba(196, 181, 253, 0.74);
}
.v5-process-panel-intent {
    border-color: rgba(99, 102, 241, 0.22);
    background: rgba(99, 102, 241, 0.06);
    animation-delay: 2.4s;
}
.v5-process-panel-intent .v5-process-panel-kicker {
    color: rgba(196, 181, 253, 0.82);
}
.v5-process-progress {
    padding: 0 4px;
    opacity: 0;
    transform: translateY(12px);
    animation: v5-process-loop-fade 10s ease-in-out infinite;
    animation-delay: 1.3s;
}
.v5-process-progress-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 10px;
    font-size: 0.72rem;
    color: rgba(100, 116, 139, 0.78);
}
.v5-process-progress-track {
    height: 6px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.18);
    overflow: hidden;
}
.v5-process-progress-bar {
    height: 100%;
    width: 76%;
    border-radius: 999px;
    background: linear-gradient(90deg, #8b5cf6 0%, #6366f1 100%);
    transform-origin: 0 50%;
    transform: scaleX(0.18);
    animation: v5-process-load-loop 10s ease-in-out infinite;
}
.v5-process-dispatch-head {
    opacity: 0;
    transform: translateY(12px);
    animation: v5-process-loop-fade 10s ease-in-out infinite;
    animation-delay: 4.1s;
}
.v5-process-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.v5-process-action-card {
    padding: 14px 12px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(255, 255, 255, 0.78);
    transform: translateY(12px);
    opacity: 0;
    animation: v5-process-card-loop 10s ease-in-out infinite;
}
.v5-process-action-card-a { animation-delay: 4.9s; border-color: rgba(74, 222, 128, 0.18); background: rgba(74, 222, 128, 0.05); }
.v5-process-action-card-b { animation-delay: 5.2s; border-color: rgba(96, 165, 250, 0.16); background: rgba(96, 165, 250, 0.05); }
.v5-process-action-card-c { animation-delay: 5.5s; border-color: rgba(139, 92, 246, 0.16); background: rgba(139, 92, 246, 0.05); }
.v5-process-action-card-d { animation-delay: 5.8s; border-color: rgba(244, 114, 182, 0.16); background: rgba(244, 114, 182, 0.05); }
.v5-process-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.06);
    color: rgba(15, 23, 42, 0.84);
    font-family: "Cabinet Grotesk", sans-serif !important;
    font-size: 0.96rem;
    font-weight: 900;
}
.v5-process-action-title {
    margin-bottom: 4px;
    color: rgba(15, 23, 42, 0.84);
    font-size: 0.78rem;
    font-weight: 700;
}
.v5-process-action-copy {
    color: rgba(100, 116, 139, 0.86);
    font-size: 0.7rem;
    line-height: 1.5;
}
.v5-process-metrics-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0 22px 22px;
    opacity: 0;
    transform: translateY(12px);
    animation: v5-process-loop-fade 10s ease-in-out infinite;
    animation-delay: 7.2s;
}
.v5-process-metric-box {
    padding: 14px 12px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.12);
    background: rgba(255, 255, 255, 0.66);
}
.v5-process-metric-box strong {
    display: block;
    margin-bottom: 4px;
    font-family: "Cabinet Grotesk", sans-serif !important;
    font-size: 1.3rem;
    line-height: 1;
    letter-spacing: -0.04em;
}
.v5-process-metric-box:nth-child(1) strong { color: #4ade80; }
.v5-process-metric-box:nth-child(2) strong { color: #8b5cf6; }
.v5-process-metric-box:nth-child(3) strong { color: #60a5fa; }
.v5-process-metric-box span {
    color: rgba(100, 116, 139, 0.72);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.v5-process-console-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 0 22px 22px;
    opacity: 0;
    transform: translateY(12px);
    animation: v5-process-loop-fade 10s ease-in-out infinite;
    animation-delay: 8.2s;
}
.v5-process-console-statusline {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(100, 116, 139, 0.78);
    font-size: 0.74rem;
    line-height: 1.4;
}
.v5-process-endcap {
    margin-top: 22px;
    max-width: 360px;
    margin-left: auto;
    padding: 18px 20px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(30, 41, 59, 0.94));
    color: #fff;
    font-family: "Cabinet Grotesk", sans-serif !important;
    font-size: 1.22rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}
@keyframes v5-process-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.86); opacity: 0.7; }
}
@keyframes v5-process-loop-fade {
    0%, 10% {
        opacity: 0;
        transform: translateY(12px);
    }
    16%, 82% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(8px);
    }
}
@keyframes v5-process-card-loop {
    0%, 8% {
        opacity: 0;
        transform: translateY(12px);
    }
    16%, 84% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(8px);
    }
}
@keyframes v5-process-load-loop {
    0%, 18% {
        transform: scaleX(0.18);
        opacity: 0.75;
    }
    32%, 78% {
        transform: scaleX(1);
        opacity: 1;
    }
    100% {
        transform: scaleX(0.35);
        opacity: 0.82;
    }
}
.v5-card-tag {
    color: var(--v5-purple);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    display: block;
}
.v5-card-title {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.05;
    position: relative;
}
.v5-card-text {
    color: var(--v5-text-sub);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 34rem;
    position: relative;
}

/* --- CLIENT SIGNAL --- */
.v5-showcase {
    padding: 118px 60px 108px;
    background: #f8fafc;
}
.v5-showcase .v5-sec-header {
    max-width: 760px;
    margin-left: auto !important;
    margin-right: auto !important;
}
.v5-showcase .v5-sec-header p {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}
.v5-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.v5-showcase-item {
    background: #fff;
    border-radius: 24px;
    padding: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
}
.v5-showcase-item:hover { transform: translateY(-8px) scale(1.015); }

/* --- SECTION REVEAL --- */
.v5-proof-section,
.v5-bento-section,
.v5-showcase,
.v5-faq-section,
.v5-footer-cta {
    view-timeline-name: --v5-section;
    view-timeline-axis: block;
}
.v5-proof-header,
    .v5-proof-scene,
    .v5-bento-header,
    .v5-process-scene,
    .v5-faq-shell,
    .v5-showcase-grid,
    .v5-footer-cta .v5-container {
    animation: v5-section-reveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
    animation-timeline: view(--v5-section);
    animation-range: entry 15% cover 34%;
    will-change: transform, opacity;
}
@keyframes v5-section-reveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (prefers-reduced-motion: reduce) {
    .v5-wrapper::before,
    .v5-wrapper::after,
    .v5-bloom {
        animation: none;
    }
    .v5-proof-header,
    .v5-proof-scene,
    .v5-bento-header,
    .v5-process-scene,
    .v5-faq-shell,
    .v5-showcase-grid,
    .v5-footer-cta .v5-container {
        animation: none;
    }
}
.v5-showcase-media {
    aspect-ratio: 4/5;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    position: relative;
}
.v5-showcase-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v5-showcase-info {
    padding: 20px 10px 10px;
}
.v5-showcase-brand {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--v5-text-main);
    margin-bottom: 4px;
}
.v5-showcase-cat {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--v5-text-sub);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- FAQ --- */
.v5-faq-section {
    padding: 96px 60px 28px;
    background:
        radial-gradient(circle at top left, rgba(99, 102, 241, 0.05), transparent 26%),
        linear-gradient(180deg, #f8fafc 0%, #f6f8fc 100%);
}
.v5-faq-shell {
    max-width: 1100px;
    margin: 0 auto;
}
.v5-faq-header {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}
.v5-faq-title {
    font-family: "Cabinet Grotesk", sans-serif !important;
    font-weight: 900;
    font-size: clamp(2.4rem, 4.8vw, 3.15rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    margin-bottom: 18px;
}
.v5-faq-intro {
    max-width: 40rem;
    margin: 0 auto;
    color: var(--v5-text-sub);
    font-size: 1.02rem;
    line-height: 1.75;
}
.v5-faq-list {
    display: grid;
    gap: 12px;
}
.v5-faq-item {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.v5-faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(99, 102, 241, 0.18);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.06);
}
.v5-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 56px 22px 24px;
    position: relative;
    font-family: "Cabinet Grotesk", sans-serif !important;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
}
.v5-faq-item summary::-webkit-details-marker {
    display: none;
}
.v5-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--v5-red);
    transition: transform 0.25s ease;
}
.v5-faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}
.v5-faq-item p {
    margin: 0;
    padding: 0 24px 22px;
    max-width: 48rem;
    color: var(--v5-text-sub);
    font-size: 0.98rem;
    line-height: 1.8;
}

.v5-footer-cta {
    padding: 108px 40px 92px;
    text-align: center;
}
.v5-footer-cta-panel {
    max-width: 920px;
    margin: 0 auto;
    padding: 48px 32px 56px;
    border-radius: 40px;
    background:
        radial-gradient(circle at top center, rgba(230, 57, 70, 0.06), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.84));
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
}
.v5-footer-cta-panel::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    pointer-events: none;
}
.v5-footer-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(99, 102, 241, 0.14);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
    color: var(--v5-purple);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.v5-footer-cta-title {
    font-family: "Cabinet Grotesk", sans-serif !important;
    font-weight: 900;
    font-size: clamp(3rem, 5vw, 4.1rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin-bottom: 22px;
}
.v5-footer-cta-copy {
    max-width: 44rem;
    margin: 0 auto 34px;
    color: var(--v5-text-sub);
    font-size: 1.12rem;
    line-height: 1.8;
}
.v5-footer-cta-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
.v5-footer-cta-primary,
.v5-footer-cta-secondary {
    min-width: 220px;
    padding: 19px 34px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.v5-footer-cta-primary:hover,
.v5-footer-cta-secondary:hover {
    transform: translateY(-2px);
}
.v5-footer-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: var(--v5-text-main);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}
.v5-footer-cta-secondary:hover {
    border-color: rgba(99, 102, 241, 0.22);
    box-shadow: 0 16px 34px rgba(99, 102, 241, 0.08);
}

.v5-footer {
    padding: 0 20px 36px;
}
.v5-footer-shell {
    max-width: 1400px;
    margin: 0 auto;
    padding: 28px 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(24, 24, 34, 0.98));
    color: rgba(226, 232, 240, 0.78);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
}
.v5-footer-brand {
    max-width: 34rem;
}
.v5-footer-logo {
    display: inline-block;
    margin-bottom: 10px;
    font-family: "Cabinet Grotesk", sans-serif !important;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #fff;
}
.v5-footer-logo span {
    color: var(--v5-red);
}
.v5-footer-copy {
    margin: 0;
    color: rgba(226, 232, 240, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
}
.v5-footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(226, 232, 240, 0.34);
}

@media (max-width: 1024px) {
    .v5-header {
        grid-template-columns: 1fr auto !important;
        margin: 12px !important;
        height: 60px !important;
        padding: 0 16px !important;
    }
    .v5-header-center {
        display: none !important;
    }
    .v5-wrapper::before,
    .v5-wrapper::after {
        width: 360px;
        height: 360px;
    }
    .v5-video-arc {
        flex-wrap: wrap;
        transform: none !important;
        padding: 20px 0;
        perspective: none;
    }
    .v5-video-card {
        width: 46%;
        height: 320px;
        transform: none !important;
        margin: 0 !important;
        opacity: 1 !important;
        border: 4px solid #fff;
    }
    .v5-floating-note {
        display: none;
    }
    .v5-proof-section {
        padding: 110px 32px;
    }
    .v5-proof-section::before {
        left: 32px;
        right: 32px;
        top: 0;
    }
    .v5-proof-scene,
    .v5-process-scene { padding: 30px; }
    .v5-bento-section {
        padding: 110px 32px;
    }
    .v5-bento-section::before {
        left: 32px;
        right: 32px;
        top: 0;
    }
    .v5-bento-header {
        margin-bottom: 56px;
    }
    .v5-proof-canvas {
        min-height: 460px;
    }
    .v5-proof-frame-center {
        width: 220px;
        height: 330px;
    }
    .v5-process-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .v5-faq-section {
        padding: 92px 32px 12px;
    }
    .v5-footer-cta-panel {
        padding: 42px 28px 48px;
    }
    .v5-footer-shell {
        padding: 24px 24px;
    }
}

@media (max-width: 720px) {
    .v5-proof-section {
        padding: 90px 20px;
    }
    .v5-proof-section::before {
        left: 20px;
        right: 20px;
        top: 0;
    }
    .v5-proof-header { margin-bottom: 28px; }
    .v5-proof-title {
        font-size: clamp(2.15rem, 10vw, 2.75rem);
    }
    .v5-proof-intro {
        font-size: 0.98rem;
    }
    .v5-proof-scene,
    .v5-process-scene {
        padding: 22px;
        border-radius: 28px;
    }
    .v5-proof-canvas {
        min-height: 520px;
    }
    .v5-proof-frame {
        width: 160px;
        height: 230px;
        border-radius: 22px;
    }
    .v5-proof-frame-left {
        left: 12px;
        bottom: 94px;
    }
    .v5-proof-frame-center {
        top: 82px;
        width: 180px;
        height: 260px;
    }
    .v5-proof-frame-right {
        right: 12px;
        bottom: 86px;
    }
    .v5-proof-callout {
        min-width: 132px;
        padding: 14px 16px;
    }
    .v5-proof-callout-a {
        top: 18px;
        left: 18px;
    }
    .v5-proof-callout-b {
        top: auto;
        right: 18px;
        bottom: 190px;
    }
    .v5-proof-callout-c {
        bottom: 22px;
    }
    .v5-proof-captionrow {
        gap: 10px;
    }
    .v5-proof-captionrow span {
        width: 100%;
        text-align: center;
    }
    .v5-proof-quote-inline {
        font-size: 1.12rem;
    }
    .v5-bento-section {
        padding: 90px 20px;
    }
    .v5-bento-section::before {
        left: 20px;
        right: 20px;
        top: 0;
    }
    .v5-bento-title {
        font-size: clamp(2.2rem, 10vw, 2.8rem);
    }
    .v5-bento-intro {
        font-size: 0.98rem;
    }
    .v5-bento-header {
        margin-bottom: 36px;
    }
    .v5-process-endcap {
        max-width: none;
        margin-left: 0;
        font-size: 1.05rem;
    }
    .v5-process-console-top,
    .v5-process-console-body,
    .v5-process-metrics-row {
        padding-left: 16px;
        padding-right: 16px;
    }
    .v5-process-console-foot {
        padding-left: 16px;
        padding-right: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
    .v5-process-console-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .v5-process-actions,
    .v5-process-metrics-row {
        grid-template-columns: 1fr;
    }
    .v5-faq-section {
        padding: 90px 20px 0;
    }
    .v5-faq-title {
        font-size: clamp(2.15rem, 10vw, 2.8rem);
    }
    .v5-faq-item summary {
        font-size: 1.12rem;
        padding: 18px 48px 18px 18px;
    }
    .v5-faq-item p {
        padding: 0 18px 18px;
        font-size: 0.94rem;
    }
    .v5-footer-cta {
        padding: 96px 20px 76px;
    }
    .v5-footer-cta-panel {
        padding: 34px 20px 40px;
        border-radius: 28px;
    }
    .v5-footer-cta-panel::before {
        inset: 12px;
        border-radius: 20px;
    }
    .v5-footer-cta-title {
        font-size: clamp(2.3rem, 10vw, 3rem);
    }
    .v5-footer-cta-copy {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .v5-footer-cta-primary,
    .v5-footer-cta-secondary {
        width: 100%;
        min-width: 0;
    }
    .v5-footer {
        padding: 0 12px 20px;
    }
    .v5-footer-shell {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 18px;
        border-radius: 22px;
    }
    .v5-footer-meta {
        align-items: flex-start;
    }
}

