/* =========================================
   PERKPINES - LAVENDER MIND THEME
   v3.5 (Brand Story + Light Industry Marquee)
   ========================================= */

:root {
    --bg-color: #F5F3FF;
    --card-bg: #2E003E;
    --card-border: #4B0082;
    --text-primary: #2E003E;
    --font-main: 'Outfit', sans-serif;
    --font-mono: 'Space Grotesk', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #F5F3FF; /* Start with the soft lavender-blue */
    color: #2E003E;
    font-family: var(--font-main);
    overflow-x: hidden;
    overflow-y: hidden; /* Locked until game reveal */
    width: 100%;
    line-height: 1.6;
    font-size: 1.15rem; /* Increased body text size */
    -webkit-font-smoothing: antialiased;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* --- PAGE CONTENT WRAPPER --- */
#page-content {
    position: relative;
    z-index: 10;
    width: 100%;
    margin-bottom: 0;
    will-change: transform;
}


/* --- HEADER --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(1rem, 3vw, 2rem) clamp(1.5rem, 5vw, 4rem);
    z-index: 100;
    opacity: 0; /* Hidden until game reveal */
    pointer-events: none;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.logo-mark {
    height: 2rem;
    width: auto;
    filter: invert(0.1);
    transition: filter 0.8s ease; /* Smooth filter transition */
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.nav-item {
    text-decoration: none;
    color: inherit; /* Use currentColor/body color */
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.6;
    transition: opacity 0.3s, color 0.4s ease;
}

.nav-item:hover {
    opacity: 1;
}

/* --- GAME CONTAINER --- */
.game-container {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.game-instruction {
    margin-bottom: 2rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    color: var(--text-primary);
    opacity: 0.8; /* Subtle hint */
    pointer-events: none;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

/* --- 3x3 GRID --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: clamp(0.8rem, 2vw, 1.5rem);
    width: min(92vw, 600px);
    aspect-ratio: 1;
    perspective: 1000px;
    margin: 0 auto;
}

/* --- CARD STYLES --- */
.card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    cursor: pointer;
    transform: translateZ(0);
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
}

.card.flipped {
    transform: rotateY(180deg);
}

.card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.card:hover .card-face {
    box-shadow: 0 20px 40px rgba(46, 0, 62, 0.25);
}

/* Front Face - The "Mystery" Side */
.card-front {
    background: linear-gradient(135deg, #2E003E 0%, #1a0024 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Add a subtle pattern or shine to the front */
.card-front::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    opacity: 0.6;
}

.card-front::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Back Face - The "Reveal" Side */
.card-back {
    background: #ffffff;
    color: #2E003E;
    transform: rotateY(180deg);
    font-family: var(--font-main);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    border: 1px solid rgba(46, 0, 62, 0.1);
}

.card-back.empty {
    background: #F9FAFB;
    background-image: radial-gradient(#E5E7EB 1px, transparent 1px);
    background-size: 10px 10px;
}

/* --- FINALE REVEAL --- */
.finale-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(245, 243, 255, 0.98);
    opacity: 0;
    pointer-events: none;
    z-index: 50;
    overflow: hidden;
}

.ambient-text-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    width: 200%;
    pointer-events: none;
    z-index: -2;
    opacity: 0;
}

.ambient-text {
    font-size: 15vw;
    font-weight: 900;
    color: rgba(46, 0, 62, 0.03);
    white-space: nowrap;
    text-transform: uppercase;
    font-family: var(--font-main);
    animation: scrollAmbient 30s linear infinite;
}

@keyframes scrollAmbient {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ripple-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(46, 0, 62, 0.08);
    /* Faint dark border */
    background: radial-gradient(circle, rgba(255, 193, 7, 0.03) 0%, transparent 60%);
    width: 200px;
    height: 200px;
}

.finale-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-20px);
}

.finale-logo {
    width: min(70vw, 250px);
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(46, 0, 62, 0.2));
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.finale-tagline {
    font-family: var(--font-mono);
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000;
    margin-top: 2rem;
    perspective: 400px;
}

.scroll-hint {
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    z-index: 200;
    pointer-events: none;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
}

.arrow-down {
    width: 2px;
    height: 40px;
    background: var(--text-primary);
    animation: scrollDraw 2s infinite;
}

@keyframes scrollDraw {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* --- BRAND STORY NEW SECTION --- */
#brand-story-new {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #2E003E;
    padding: 6rem 2rem;
    position: relative;
    z-index: 20;
}

#brand-story-new .container {
    max-width: 1200px;
    width: 100%;
}

.story-headline {
    font-family: var(--font-main);
    font-size: clamp(2.2rem, 8vw, 5.5rem); /* Slightly smaller start for mobile */
    font-weight: 700;
    line-height: 1.1; /* Tighter for mobile impact */
}

.story-word {
    display: inline-block;
    opacity: 0.1;
    /* Starting state for scrub animation */
    /* Let GSAP handle the transition */
}


/* --- SERVICES LIST FLOW --- */
.services-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.services-header .section-title {
    text-align: left;
    margin-bottom: 1rem;
    font-size: clamp(3rem, 6vw, 5rem);
    color: currentColor; /* Inherit animated color */
    font-family: var(--font-main);
    font-weight: 800;
}

.section-desc {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    max-width: 600px;
    opacity: 0.7;
    margin-bottom: 0;
}

.services-list {
    border-top: none;
    margin-top: 1rem;
}

.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    /* Add horizontal padding if needed */
    border-bottom: none;
    cursor: pointer;
    position: relative;
}

.service-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2rem;
    right: -2rem;
    bottom: 0;
    background: #F5F3FF;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-row:hover::before {
    opacity: 1;
}

.service-number {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    opacity: 0.5;
    width: 10%;
    transition: opacity 0.3s ease;
}

.service-name {
    font-family: var(--font-main);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    width: 40%;
    margin: 0;
    transition: transform 0.3s ease;
}

.service-detail {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    width: 40%;
    opacity: 0.6;
    margin: 0;
    transition: opacity 0.3s ease;
}

.service-arrow {
    font-size: 2rem;
    width: 10%;
    text-align: right;
    transition: transform 0.3s ease;
}

.service-row:hover .service-name {
    transform: translateX(20px);
}

.service-row:hover .service-arrow {
    transform: translate(10px, -10px);
}

.service-row:hover .service-number,
.service-row:hover .service-detail {
    opacity: 1;
}

@media (max-width: 900px) {
    .service-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 2rem 0;
    }

    .service-number,
    .service-name,
    .service-detail,
    .service-arrow {
        width: 100%;
        text-align: left;
    }

    .service-arrow {
        display: none;
    }
}


/* --- THE SEARCH ENDS SECTION --- */
#search-ends-new {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent; /* Smooth canvas handled by JS */
    color: #ffffff;
    position: relative;
    z-index: 25;
    /* Above services, blends into footer */
    overflow: hidden;
}

.search-text-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-line-mask {
    overflow: hidden;
    padding-bottom: 2rem;
    /* Give room for descenders/transform */
}

.search-ends-text {
    font-family: var(--font-main);
    font-size: clamp(2rem, 8vw, 6rem); /* Safer lower bound for mobile */
    font-weight: 800;
    line-height: 1; /* Slightly more room */
    text-transform: uppercase;
    margin: 0;
    transform: translateY(120%);
    /* Start hidden */
}
/* ============================================
   INDUSTRIES — PHYSICS BUBBLE SIMULATION
   ============================================ */
#industries-new {
    background: transparent;
    position: relative;
    z-index: 20;
    min-height: 100vh; /* Minimum height */
    overflow: visible; /* Allow bubbles to bleed out */
    user-select: none;
    padding: 10vh 0; /* Add padding instead of margins for overlap */
}

/* ---- Center title ---- */
.ind-title-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; /* Bubbles now repellent and in front */
    text-align: center;
    pointer-events: none;
    width: 90%; /* Allow internal wrapping */
    max-width: 1200px;
}

.ind-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: inherit; /* Adaptive */
    border: 1px solid currentColor;
    opacity: 0.4;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
    display: block;
}

.ind-heading {
    font-family: var(--font-main);
    font-size: clamp(2.2rem, 9vw, 7.5rem); /* Scaled down for mobile width */
    font-weight: 900;
    color: inherit;
    margin: 0 0 1rem 0;
    line-height: 0.95;
    letter-spacing: -0.04em;
    display: flex;
    gap: 0.01em;
    justify-content: center;
    flex-wrap: wrap;
}

/* Each character animated individually — GSAP controls opacity & transform */
.ind-h-char {
    display: inline-block;
    transform-origin: 50% 100%;
    will-change: transform, opacity;
}

.ind-sub {
    font-size: clamp(1.2rem, 2.2vw, 1.7rem); /* Maximized */
    color: inherit;
    line-height: 1.5;
    margin: 0;
    opacity: 0;
    max-width: 750px;
    margin-inline: auto;
    font-weight: 500;
}

/* ---- Physics Field ---- */
#ind-physics-field {
    position: absolute;
    inset: 0;
    z-index: 50; /* Brought to front */
}

/* ---- Single Bubble ---- */
.ind-bubble {
    position: absolute;
    cursor: grab;
    transform-origin: center;
    /* JS sets width, height, left, top via transform */
}

.ind-bubble:active { cursor: grabbing; }

.ind-bubble-sphere {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 0 1.5px rgba(255,255,255,0.1),
        0 0 35px var(--bc1, rgba(142,45,226,0.5)),
        0 0 70px var(--bc1, rgba(142,45,226,0.3)),
        inset 0 -8px 25px rgba(0,0,0,0.6),
        inset 0 4px 15px rgba(255,255,255,0.2);
    transition: box-shadow 0.35s ease;
}

.ind-bubble:hover .ind-bubble-sphere,
.ind-bubble.dragging .ind-bubble-sphere {
    box-shadow:
        0 0 0 2.5px rgba(255,255,255,0.45),
        0 0 45px var(--bc1, rgba(142,45,226,0.8)),
        0 0 100px var(--bc1, rgba(142,45,226,0.4)),
        inset 0 -6px 20px rgba(0,0,0,0.35),
        inset 0 3px 12px rgba(255,255,255,0.25);
}

.ind-bubble-sphere img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: saturate(1.05) brightness(0.95); /* Improved visibility */
    transition: filter 0.4s ease;
    pointer-events: none;
}

.ind-bubble:hover .ind-bubble-sphere img { filter: saturate(1.4) brightness(0.95); }

.ind-bubble-glass {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    backdrop-filter: blur(1px); /* Reduced blur for clarity */
    background:
        radial-gradient(circle at 30% 27%, rgba(255,255,255,0.45) 0%, transparent 40%),
        radial-gradient(circle at 68% 72%, rgba(255,255,255,0.08) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, transparent 50%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Label */
.ind-bubble-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3; /* Above glass */
    white-space: nowrap;
    font-family: var(--font-mono);
    font-size: 0.95rem; /* Significantly larger */
    font-weight: 800; /* Bolder */
    letter-spacing: 0.12em;
    color: #fff;
    text-shadow: 0 0 15px rgba(0,0,0,0.9), 0 2px 4px rgba(0,0,0,1);
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0.85; /* More visible by default */
    transition: all 0.4s ease;
}

.ind-bubble:hover .ind-bubble-label { 
    opacity: 1;
    letter-spacing: 0.18em;
}

/* Ripple on collision */
.ind-bubble.collide .ind-bubble-sphere {
    animation: bubble-collide 0.25s ease;
}
@keyframes bubble-collide {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    #industries-new { height: auto; min-height: 100vh; padding-bottom: 4rem; }
    .ind-heading { font-size: clamp(2rem, 8vw, 4rem); }
}

/* ============================================
   OUR SERVICES SECTION
   ============================================ */
#services-new {
    background: transparent;
    color: #2E003E;
    padding: 0;
    position: relative;
    z-index: 20;
    width: 100%;
}

/* Override any global .container constraints inside services */
#services-new .container {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.services-header {
    padding: 6rem 5vw 3rem 5vw;
    border-bottom: none; /* Removed line */
}

.services-header .section-title {
    font-family: var(--font-main);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    color: inherit; /* Inherit animated color */
    margin: 0;
    line-height: 1;
    letter-spacing: -0.03em;
}

.services-list {
    width: 100%;
}

.service-row {
    display: grid;
    grid-template-columns: 5vw 1fr 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 2.4rem 5vw;
    border-bottom: none; /* Removed line for cleaner canvas */
    transition: background 0.3s ease;
    cursor: pointer;
}

.service-row:hover {
    background: rgba(74, 0, 224, 0.06);
    border-radius: 8px; /* Nicer rounded hover indicator */
}

.service-number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(46,0,62,0.35);
    letter-spacing: 0.12em;
}

.service-name {
    font-family: var(--font-main);
    font-size: clamp(1.4rem, 2.8vw, 2.5rem);
    font-weight: 800;
    color: inherit; /* Inherit animated color */
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.service-detail {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    color: rgba(46,0,62,0.5);
    line-height: 1.6;
    margin: 0;
    max-width: 340px;
}

.service-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(46,0,62,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #4A00E0;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    justify-self: end;
}

.service-row:hover .service-arrow {
    background: #4A00E0;
    color: #fff;
    border-color: #4A00E0;
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .service-row {
        grid-template-columns: 3.5rem 1fr auto;
        grid-template-rows: auto auto;
    }
    .service-detail {
        grid-column: 2;
        grid-row: 2;
        max-width: none;
    }
    .service-arrow { grid-column: 3; grid-row: 1; }
}

@media (max-width: 500px) {
    .service-row {
        grid-template-columns: 3rem 1fr auto;
        gap: 1rem;
        padding: 1.8rem 1.2rem;
    }
}

/* ---- Connect Section --- */

#connect-new {
    background: transparent; /* Smooth canvas */
    color: #ffffff;
    padding: 8rem 2rem;
    position: relative;
    z-index: 20;
}

.connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.connect-title,
.socials-header {
    font-family: var(--font-main);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: inherit; /* adaptive */
}

.connect-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid currentColor; /* adaptive border */
    opacity: 0.8;
    padding: 1rem 0;
    font-size: 1.2rem;
    font-family: var(--font-main);
    color: inherit; /* adaptive text */
    outline: none;
    transition: border-color 0.3s ease, opacity 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: currentColor;
    opacity: 0.4;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #ffffff;
}

.submit-btn {
    align-self: flex-start;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.contact-email-wrapper {
    margin-top: 1rem;
}

.contact-email {
    font-family: var(--font-main);
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: inherit;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: inline-block;
    position: relative;
}

.contact-email:hover {
    opacity: 1;
    transform: translateX(5px);
}

.contact-email::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

/* --- Global Mobile Refinements --- */
@media (max-width: 480px) {
    .main-header {
        padding: 1.2rem 1rem;
    }
    .logo-text { font-size: 0.9rem; }
    .main-nav { gap: 1rem; }
    .nav-item { font-size: 0.75rem; }
    
    .card-grid { gap: 0.6rem; }
    .card-back { font-size: 2.5rem; }
    
    .connect-title { font-size: 2rem; }
    .submit-btn { width: 100%; justify-content: center; }
}

.contact-email:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.submit-btn:hover {
    transform: scale(1.05);
    background: #E0B0FF;
}

.social-icons-row {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin-top: 1rem;
}

.social-icon-link {
    color: inherit;
    opacity: 0.5;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    display: inline-block;
}

.social-icon-link svg {
    width: 2.5rem;
    height: 2.5rem;
}

.social-icon-link:hover {
    opacity: 1;
    transform: translateY(-8px) scale(1.1);
    color: #E0B0FF; /* Soft lavender purple highlight */
}

.simple-footer {
    background: #000000;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    padding: 2rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .connect-grid {
        grid-template-columns: 1fr;
    }
}
