:root {
    --vl-bg-primary: #FAFAFA;
    --vl-bg-secondary: #FFFFFF;
    --vl-brand-electric: #FF3366;
    --vl-brand-purple: #7000FF;
    --vl-brand-cyan: #00E5FF;
    --vl-brand-yellow: #FFD500;
    --vl-text-dark: #0B0A10;
    --vl-text-light: #F4F4F5;
    --vl-text-muted: #66666E;
    --vl-font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--vl-font-main);
    background-color: var(--vl-bg-primary);
    color: var(--vl-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Top Navigation */
.vl-top-navigation {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.vl-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 4vw;
    max-width: 1400px;
    margin: 0 auto;
}

.vl-brand-mark {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--vl-brand-purple);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vl-link-cluster {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.vl-nav-item {
    text-decoration: none;
    color: var(--vl-text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.vl-nav-item:hover {
    color: var(--vl-brand-electric);
}

.vl-action-trigger-sm {
    background: var(--vl-brand-purple);
    color: var(--vl-text-light);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.vl-action-trigger-sm:hover {
    background: var(--vl-text-dark);
    transform: translateY(-2px);
}

/* Hero Zone */
.vl-hero-zone {
    position: relative;
    padding: 12vh 4vw 8vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.vl-abstract-shape-alpha {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--vl-brand-cyan) 0%, transparent 70%);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
}

.vl-abstract-shape-beta {
    position: absolute;
    bottom: -20%;
    right: 10%;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, var(--vl-brand-electric) 0%, transparent 70%);
    opacity: 0.1;
    z-index: -1;
    border-radius: 50%;
}

.vl-massive-headline {
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.vl-text-highlight {
    color: var(--vl-brand-electric);
}

.vl-hero-subtext {
    font-size: 1.25rem;
    color: var(--vl-text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.vl-action-trigger-lg {
    display: inline-block;
    background: var(--vl-text-dark);
    color: var(--vl-text-light);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.vl-action-trigger-lg:hover {
    background: var(--vl-brand-electric);
    box-shadow: 0 10px 25px rgba(255, 51, 102, 0.3);
    transform: translateY(-3px);
}

.vl-hero-visual-anchor img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Agency Story */
.vl-agency-story-block {
    padding: 10vh 4vw;
    background: var(--vl-bg-secondary);
}

.vl-story-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vl-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.vl-body-copy {
    font-size: 1.1rem;
    color: var(--vl-text-muted);
    margin-bottom: 1.5rem;
}

.vl-inline-link {
    color: var(--vl-brand-purple);
    text-decoration: none;
    font-weight: 800;
    border-bottom: 2px solid var(--vl-brand-yellow);
}

.vl-data-counter {
    font-weight: 800;
    color: var(--vl-brand-electric);
    font-size: 1.5rem;
}

.vl-story-visual img {
    border-radius: 20px;
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}

.vl-story-visual img:hover {
    transform: rotate(0deg);
}

/* Growth Systems */
.vl-growth-systems-hub {
    background: var(--vl-text-dark);
    color: var(--vl-text-light);
    padding: 12vh 4vw;
}

.vl-hub-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.vl-section-title-light {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--vl-text-light);
}

.vl-body-copy-light {
    font-size: 1.1rem;
    color: #A0A0A5;
}

.vl-deep-dive-process {
    max-width: 1000px;
    margin: 0 auto 5rem;
    background: rgba(255,255,255,0.03);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.vl-micro-title {
    font-size: 1.5rem;
    color: var(--vl-brand-cyan);
    margin-bottom: 1rem;
}

.vl-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.vl-step-module {
    position: relative;
}

.vl-step-digit {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.1);
    position: absolute;
    top: -20px;
    left: -10px;
    z-index: 0;
}

.vl-step-name {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.vl-step-desc {
    color: #A0A0A5;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.vl-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.vl-solution-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.vl-solution-card:hover {
    transform: translateY(-5px);
    border-color: var(--vl-brand-electric);
}

.vl-card-img {
    height: 200px;
    border-bottom: 3px solid var(--vl-brand-purple);
}

.vl-card-title {
    font-size: 1.3rem;
    padding: 1.5rem 1.5rem 0.5rem;
}

.vl-card-copy {
    padding: 0 1.5rem 1.5rem;
    color: #A0A0A5;
    font-size: 0.95rem;
}

/* Feedback Arena */
.vl-client-feedback-arena {
    padding: 10vh 4vw;
    background: var(--vl-bg-primary);
}

.vl-feedback-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.vl-roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.vl-endorsement-box {
    background: var(--vl-bg-secondary);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
}

.vl-endorsement-box::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: var(--vl-brand-yellow);
    opacity: 0.3;
    font-family: serif;
}

.vl-quote-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--vl-text-muted);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.vl-quote-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vl-author-headshot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--vl-brand-electric);
}

.vl-author-name {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
}

.vl-author-role {
    display: block;
    font-size: 0.85rem;
    color: var(--vl-text-muted);
}

/* Contact Form */
.vl-reach-out-zone {
    padding: 8vh 4vw 12vh;
    background: var(--vl-bg-secondary);
}

.vl-contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--vl-bg-primary);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
}

.vl-micro-detail {
    margin-top: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--vl-brand-purple);
    padding: 0.5rem 1rem;
    background: rgba(112, 0, 255, 0.1);
    display: inline-block;
    border-radius: 8px;
}

.vl-inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vl-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vl-input-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--vl-text-dark);
}

.vl-text-field, .vl-text-area {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E0E0E5;
    border-radius: 10px;
    background: var(--vl-bg-secondary);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.vl-text-field:focus, .vl-text-area:focus {
    outline: none;
    border-color: var(--vl-brand-electric);
}

.vl-submit-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.vl-site-footer {
    background: #050508;
    color: var(--vl-text-light);
    padding: 6vh 4vw 2vh;
}

.vl-footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.vl-brand-mark-light {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.vl-footer-disclaimer {
    font-size: 0.8rem;
    color: #666;
    max-width: 300px;
}

.vl-footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--vl-brand-cyan);
}

.vl-footer-contact p {
    color: #A0A0A5;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.vl-footer-link {
    display: block;
    color: #A0A0A5;
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.vl-footer-link:hover {
    color: var(--vl-brand-electric);
}

.vl-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #666;
    font-size: 0.85rem;
}

/* Simple Page Constraints (Privacy/Terms) */
.vl-simple-page {
    padding: 15vh 4vw;
    max-width: 800px;
    margin: 0 auto;
}
.vl-simple-page h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}
.vl-simple-page p {
    margin-bottom: 1rem;
    color: var(--vl-text-muted);
}

/* Responsive Layouts */
@media (max-width: 950px) {
    .vl-hero-zone,
    .vl-story-grid,
    .vl-contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vl-contact-container {
        padding: 2rem;
    }
    
    .vl-process-steps {
        grid-template-columns: 1fr;
    }
    
    .vl-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vl-massive-headline {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .vl-link-cluster {
        display: none; /* Hide for mobile simplicity in this demo */
    }
}