:root {
    --bg: #050505;
    --green: #ccff00;
    --green-dim: rgba(204, 255, 0, 0.08);
    --white: #ffffff;
    --gray: #909090;
    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    --glass: rgba(255, 255, 255, 0.02);
    --border: rgba(255, 255, 255, 0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--white); font-family: var(--font-body); overflow: hidden; height: 100vh; width: 100vw; }

/* Nav */
nav { display: flex; justify-content: space-between; align-items: center; padding: 25px 50px; position: fixed; width: 100%; z-index: 100; }
.logo { font-family: var(--font-display); font-size: 1.1rem; text-transform: lowercase; font-weight: 800; letter-spacing: -0.5px; }
.green-accent { color: var(--green); }
.nav-links { display: flex; gap: 30px; background: var(--glass); padding: 8px 25px; border-radius: 100px; border: 1px solid var(--border); backdrop-filter: blur(20px); }
.nav-links a { color: var(--white); text-decoration: none; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; opacity: 0.4; transition: 0.3s; }
.nav-links a:hover { opacity: 1; color: var(--green); }
.status-pill { display: flex; align-items: center; gap: 8px; background: rgba(204, 255, 0, 0.03); border: 1px solid rgba(204, 255, 0, 0.1); padding: 8px 15px; border-radius: 100px; font-size: 0.55rem; font-weight: 800; }
.status-dot { width: 5px; height: 5px; background: var(--green); border-radius: 50%; box-shadow: 0 0 8px var(--green); 
 /* Ensure these are in your current nav block */
    position: fixed; 
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease;
    z-index: 1000;

}

/* Hero */
.hero { height: 100vh; width: 100%; display: flex; align-items: center; justify-content: center; position: relative; padding: 0 5%; }
.bg-kinetic { position: absolute; font-family: var(--font-display); font-size: 18vw; color: transparent; -webkit-text-stroke: 1px rgba(204, 255, 0, 0.02); white-space: nowrap; z-index: 1; pointer-events: none; right: 0; font-weight: 900; }

.hero-container { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    width: 100%; 
    max-width: 1300px;
    z-index: 10; 
    align-items: center;
    gap: 50px;
}

/* Left side */
.hero-left { display: flex; flex-direction: column; gap: 20px; }
.kicker { display: flex; align-items: center; gap: 10px; color: var(--green); font-weight: 800; font-size: 9px; letter-spacing: 3px; }
.kicker .line { width: 20px; height: 2px; background: var(--green); }
.main-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 5.5rem); line-height: 0.85; text-transform: uppercase; }
.main-title .outline { display: block; color: transparent; -webkit-text-stroke: 1px var(--white); }
.description { color: var(--gray); font-size: 0.9rem; max-width: 480px; line-height: 1.7; border-left: 1px solid var(--green); padding-left: 20px; margin-bottom: 5px; }

/* HUD Stats (Integrated into left column) */
.hud-container { display: flex; flex-direction: column; gap: 10px; }
.hud-item { background: var(--glass); border: 1px solid var(--border); padding: 10px 18px; backdrop-filter: blur(20px); display: flex; align-items: center; gap: 15px; border-radius: 4px; width: fit-content; min-width: 240px; }
.hud-num { font-family: var(--font-display); color: var(--green); font-size: 1.1rem; font-weight: 800; }
.hud-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); }
.hud-label b { color: var(--white); display: block; margin-bottom: 2px; font-size: 0.7rem;}

/* Gallery (Right side - Scaled down for safety) */
.hero-right { display: flex; justify-content: flex-end; align-items: center; }
.gallery-wrapper { position: relative; perspective: 1000px; }
.gallery-stack { position: relative; width: 480px; height: 270px; z-index: 5; } /* Scaled to fit screen better */
.gallery-card { position: absolute; inset: 0; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); background: #000; box-shadow: 0 20px 50px rgba(0,0,0,0.7); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }

/* Timer bar */
.stack-timer { position: absolute; bottom: -15px; left: 0; width: 100%; height: 2px; background: rgba(255,255,255,0.05); overflow: hidden; }
.timer-bar { height: 100%; width: 0%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.render-glow { position: absolute; width: 100%; height: 100%; background: var(--green); filter: blur(100px); opacity: 0.06; z-index: 1; top: 0; left: 0; }

@media (max-width: 1000px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-right { display: none; }
}

/* About Page Specifics */
.about-hero {
    min-height: 100vh;
    padding: 120px 5% 50px;
    display: flex;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.portrait-frame {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 4px;
    background: var(--glass);
    overflow: hidden;
    border: 1px solid var(--border);
}

.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.5s;
}

.portrait-frame:hover .portrait-img {
    opacity: 1;
    transform: scale(1.05);
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 4rem);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.bio-text {
    color: var(--gray);
    line-height: 1.8;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

/* Skill Bars */
.skill-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.skill-label {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.skill-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
}

.skill-bar .fill {
    height: 100%;
    background: var(--green);
    box-shadow: 0 0 10px var(--green);
}

/* Social HUD */
.social-hud {
    display: flex;
    gap: 20px;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--green);
    transition: 0.3s;
}

.social-link:hover {
    color: var(--green);
    padding-left: 5px;
}

.nav-links a.active {
    opacity: 1;
    color: var(--green);
}

/* About Page Layout */
.about-hero {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
}

.portrait-frame {
    position: relative;
    width: 420px;
    height: 520px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--glass);
}

.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.frame-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--green-dim), transparent);
    pointer-events: none;
}

/* About Title */
.about-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 6rem);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.about-title .outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--white);
}

.about-title .solid-green {
    color: var(--green);
}

.bio-text {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 550px;
}

/* Info Cards HUD */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.info-card {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 15px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    font-size: 1.2rem;
    color: var(--green);
}

.info-details {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gray);
}

.info-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-display);
}

/* Background Animation Elements */
.bg-animation {
    position: fixed;
    inset: 0;
    z-index: 0; /* Behind everything */
    pointer-events: none;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: -10%; /* Slightly larger to allow for movement */
    background-image: 
        linear-gradient(rgba(204, 255, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(204, 255, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.ambient-glow {
    position: absolute;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--green-dim) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.6;
}

#glow1 { top: -10%; left: -10%; }
#glow2 { bottom: -10%; right: -10%; }

/* Pricing Page Layout */
.pricing-hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-header {
    margin-bottom: 50px;
}

.pricing-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 6rem);
    text-transform: uppercase;
    line-height: 1;
}

.pricing-title .outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--white);
}

.pricing-title .solid-green {
    color: var(--green);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pricing-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.pricing-card:hover {
    border-color: var(--green);
    background: rgba(204, 255, 0, 0.02);
    transform: translateY(-10px);
}

/* Schematic Visuals */
.card-visual-wrap {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
    border: 1px dashed rgba(255,255,255,0.1);
}

.schematic {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--green);
    background: rgba(204, 255, 0, 0.03);
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.05);
    gap: 5px;
}

.thumbnail-rect {
    width: 280px;
    height: 157px; /* 16:9 ratio scaled */
}

.icon-square {
    width: 150px;
    height: 150px;
}

.dim-text {
    font-size: 0.6rem;
    color: var(--gray);
    letter-spacing: 1px;
}

.solid-label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--white);
}

/* Card Content */
.card-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.card-info p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.price-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg);
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.amount {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--green);
}

.currency-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Schematic Opening Glow & Scanline */
.schematic {
    position: relative;
    overflow: hidden;
    animation: schematicGlow 4s infinite alternate;
}

.schematic::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        transparent,
        rgba(204, 255, 0, 0.05),
        transparent
    );
    animation: scanline 6s linear infinite;
}

@keyframes schematicGlow {
    0% { border-color: rgba(204, 255, 0, 0.3); box-shadow: 0 0 10px rgba(204, 255, 0, 0.05); }
    100% { border-color: rgba(204, 255, 0, 1); box-shadow: 0 0 20px rgba(204, 255, 0, 0.2); }
}

@keyframes scanline {
    0% { top: -100%; }
    100% { top: 100%; }
}

:root {
    --bg: #050505;
    --green: #ccff00;
    --green-dim: rgba(204, 255, 0, 0.08);
    --white: #ffffff;
    --gray: #909090;
    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    --glass: rgba(255, 255, 255, 0.02);
    --border: rgba(255, 255, 255, 0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--white); font-family: var(--font-body); overflow: hidden; height: 100vh; width: 100vw; }

/* Allow scrolling on Pricing and About if content is long */
body.pricing-page, body.about-page {
    overflow-y: auto;
    height: auto;
}

/* Nav */
nav 
{ display: flex; justify-content: space-between; align-items: center; padding: 25px 50px; position: fixed; width: 100%; z-index: 100; }
.logo { font-family: var(--font-display); font-size: 1.1rem; text-transform: lowercase; font-weight: 800; letter-spacing: -0.5px; }
.green-accent { color: var(--green); }

.nav-links { display: flex; gap: 30px; background: var(--glass); padding: 8px 25px; border-radius: 100px; border: 1px solid var(--border); backdrop-filter: blur(20px); }
.nav-links a { color: var(--white); text-decoration: none; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; opacity: 0.4; transition: 0.3s; }
.nav-links a:hover { opacity: 1; color: var(--green); }
.status-pill {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: row !important; /* Forces Left-to-Right */
    gap: 12px !important;           /* Forces physical gap between dot and text */
    
    background: rgba(204, 255, 0, 0.03);
    border: 1px solid rgba(204, 255, 0, 0.1);
    padding: 8px 18px;
    border-radius: 100px;
    position: relative;
    z-index: 1001;
}

.status-dot {
    position: relative !important;  /* CHANGED: This stops it from floating on the O */
    left: auto !important;          /* Resets any previous alignment */
    top: auto !important;           /* Resets any previous alignment */
    
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;                 /* Prevents text from squishing the dot */
    box-shadow: 0 0 10px var(--green);
}

.status-pill span {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
}
/* Hero */
.hero { height: 100vh; width: 100%; display: flex; align-items: center; justify-content: center; position: relative; padding: 0 5%; }
.bg-kinetic { position: absolute; font-family: var(--font-display); font-size: 18vw; color: transparent; -webkit-text-stroke: 1px rgba(204, 255, 0, 0.02); white-space: nowrap; z-index: 1; pointer-events: none; right: 0; font-weight: 900; }

.hero-container { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    width: 100%; 
    max-width: 1300px;
    z-index: 10; 
    align-items: center;
    gap: 50px;
}

/* Left side */
.hero-left { display: flex; flex-direction: column; gap: 20px; }
.kicker { display: flex; align-items: center; gap: 10px; color: var(--green); font-weight: 800; font-size: 9px; letter-spacing: 3px; }
.kicker .line { width: 20px; height: 2px; background: var(--green); }
.main-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 5.5rem); line-height: 0.85; text-transform: uppercase; }
.main-title .outline { display: block; color: transparent; -webkit-text-stroke: 1px var(--white); }
.description { color: var(--gray); font-size: 0.9rem; max-width: 480px; line-height: 1.7; border-left: 1px solid var(--green); padding-left: 20px; margin-bottom: 5px; }

/* HUD Stats (Integrated into left column) */
.hud-container { display: flex; flex-direction: column; gap: 10px; }
.hud-item { background: var(--glass); border: 1px solid var(--border); padding: 10px 18px; backdrop-filter: blur(20px); display: flex; align-items: center; gap: 15px; border-radius: 4px; width: fit-content; min-width: 240px; }
.hud-num { font-family: var(--font-display); color: var(--green); font-size: 1.1rem; font-weight: 800; }
.hud-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); }
.hud-label b { color: var(--white); display: block; margin-bottom: 2px; font-size: 0.7rem;}

/* Gallery (Right side - Scaled down for safety) */
.hero-right { display: flex; justify-content: flex-end; align-items: center; }
.gallery-wrapper { position: relative; perspective: 1000px; }
.gallery-stack { position: relative; width: 480px; height: 270px; z-index: 5; } /* Scaled to fit screen better */
.gallery-card { position: absolute; inset: 0; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); background: #000; box-shadow: 0 20px 50px rgba(0,0,0,0.7); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }

/* Timer bar */
.stack-timer { position: absolute; bottom: -15px; left: 0; width: 100%; height: 2px; background: rgba(255,255,255,0.05); overflow: hidden; }
.timer-bar { height: 100%; width: 0%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.render-glow { position: absolute; width: 100%; height: 100%; background: var(--green); filter: blur(100px); opacity: 0.06; z-index: 1; top: 0; left: 0; }

@media (max-width: 1000px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-right { display: none; }
}

/* About Page Specifics */
.about-hero { min-height: 100vh; padding: 120px 5% 50px; display: flex; align-items: center; }
.about-visual { display: flex; justify-content: center; }
.portrait-frame { position: relative; width: 400px; height: 500px; border-radius: 4px; background: var(--glass); overflow: hidden; border: 1px solid var(--border); }
.portrait-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: 0.5s; }
.portrait-frame:hover .portrait-img { opacity: 1; transform: scale(1.05); }
.about-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 4rem); text-transform: uppercase; margin-bottom: 25px; }
.bio-text { color: var(--gray); line-height: 1.8; font-size: 0.95rem; display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }

/* Info Cards HUD */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
.info-card { background: var(--glass); border: 1px solid var(--border); padding: 15px 20px; border-radius: 4px; display: flex; align-items: center; gap: 15px; }
.info-icon { font-size: 1.2rem; color: var(--green); }
.info-details { display: flex; flex-direction: column; }
.info-label { font-size: 0.55rem; font-weight: 800; letter-spacing: 2px; color: var(--gray); }
.info-value { font-size: 0.85rem; font-weight: 700; color: var(--white); font-family: var(--font-display); }

/* Background Animation */
.bg-animation { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.grid-overlay { position: absolute; inset: -10%; background-image: linear-gradient(rgba(204, 255, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(204, 255, 0, 0.03) 1px, transparent 1px); background-size: 60px 60px; z-index: 1; }
.ambient-glow { position: absolute; width: 50vw; height: 50vw; background: radial-gradient(circle, var(--green-dim) 0%, transparent 70%); border-radius: 50%; filter: blur(100px); z-index: 0; opacity: 0.6; }
#glow1 { top: -10%; left: -10%; }
#glow2 { bottom: -10%; right: -10%; }

/* --- FINAL PRICING FIX --- */
.pricing-page {
    overflow-y: auto !important;
    height: auto !important;
}

.pricing-page .hero {
    height: auto; /* Allow the section to grow with content */
    min-height: 100vh;
    padding: 140px 5% 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Force the container to be a column, not a 2-column grid */
.pricing-page .hero-container {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important; 
    align-items: flex-start;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
}

.pricing-page .pricing-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr; /* Side by side cards */
    gap: 30px;
    width: 100%;
    position: relative;
    z-index: 50;
}

/* Ensure cards are visible by default */
.pricing-card {
    opacity: 1;
    visibility: visible;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 35px;
    display: flex;
    flex-direction: column;
}

/* Responsive: Stack cards on top of each other on smaller screens */
@media (max-width: 1000px) {
    .pricing-page .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* --- TOS SECTION STYLES --- */
.tos-container {
    width: 100%;
    margin-top: 40px;
    padding-top: 60px;
    border-top: 1px solid var(--border);
    z-index: 20;
}

.tos-header {
    margin-bottom: 40px;
}

.tos-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.tos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.tos-item {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: 4px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.tos-number {
    font-family: var(--font-display);
    color: var(--green);
    font-weight: 900;
    font-size: 1.2rem;
    opacity: 0.8;
}

.tos-item p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--gray);
}

.tos-item b {
    color: var(--white);
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

@media (max-width: 900px) {
    .tos-grid { grid-template-columns: 1fr; }
}

/* --- CONTACT PAGE STACKED LAYOUT --- */
.contact-page .contact-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 8% 50px;
}

.contact-page .hero-container {
    display: grid !important;
    grid-template-columns: 1fr 420px !important; /* Strictly defined right column */
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 0.85;
    text-transform: uppercase;
    font-weight: 900;
}

.contact-title .outline {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--white);
}

.contact-title .solid-green {
    display: block;
    color: var(--green);
}

/* Force cards to stack and center */
.contact-grid {
    display: flex;
    flex-direction: column; /* This puts one under the other */
    gap: 20px;
    width: 100%;
}

.contact-card {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 25px 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    position: relative;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%; /* Ensures cards fill the 420px width */
}

.card-side-glow {
    position: absolute;
    left: 0;
    top: 25%;
    height: 50%;
    width: 3px;
    background: var(--green);
    box-shadow: 0 0 15px var(--green);
    transition: 0.3s;
}

.card-icon-frame {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.contact-card:hover {
    background: rgba(204, 255, 0, 0.05);
    border-color: var(--green);
    transform: translateX(10px);
}

.contact-card:hover .card-side-glow {
    top: 0;
    height: 100%;
}

.card-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 2px;
}

.card-value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 800;
}

.card-hint {
    margin-left: auto;
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 900;
    color: var(--green);
    opacity: 0.4;
}

/* Ensure no elements leak out on smaller screens */
@media (max-width: 1100px) {
    .contact-page .hero-container {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 40px;
    }
    .contact-left { display: flex; flex-direction: column; align-items: center; }
    .contact-grid { align-items: center; max-width: 500px; margin: 0 auto; }
}

/* --- WORKS PAGE STYLES --- */
.works-page { overflow-y: auto; height: auto; }
.works-hero { padding: 120px 0 80px; }
.works-container { width: 100%; display: flex; flex-direction: column; gap: 80px; }

.works-section { width: 100%; }
.section-header { padding: 0 8%; margin-bottom: 30px; }
.works-label { font-family: var(--font-display); font-size: 2.5rem; text-transform: uppercase; line-height: 1; }

.reel-viewport {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    padding: 40px 0;
    position: relative;
    touch-action: pan-y;
}

.reel-viewport:active { cursor: grabbing; }

.reel {
    display: inline-flex; /* Keeps items in a single horizontal line */
    gap: 30px;
    will-change: transform;
}

.work-card {
    flex-shrink: 0;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    user-select: none;
}

.work-card.thumb { width: 500px; height: 281px; }
.work-card.icon { width: 280px; height: 280px; }

.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* Crucial so the browser doesn't try to drag the 'file' */
}

.work-card:hover {
    border-color: var(--green);
    transform: translateY(-10px);
}

.work-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}


/* TEMPORARY TEST - DELETE LATER */
.work-card {
    border: 5px solid #000000 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* TEMPORARY TEST - DELETE LATER */
.contact-card {
    border: 5px solid #000000 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* TEMPORARY TEST - DELETE LATER */
.pricing-card {
    border: 5px solid #000000 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* --- SMART NAVBAR FIX --- */

/* This class will be added by JavaScript when you scroll */
.nav-hidden {
    transform: translateY(-100%); /* Slides the bar up out of view */
    opacity: 0;
    pointer-events: none; /* Prevents clicking invisible links */
}

/* --- ABOUT PAGE (NO PICTURE LAYOUT) --- */
.about-page .hero-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* Centers the content */
    text-align: center;
    max-width: 900px !important; /* Narrower container for better readability */
    margin: 0 auto;
    grid-template-columns: none !important;
}

.about-page .about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-page .kicker {
    justify-content: center;
}

.about-page .bio-text {
    border-left: none; /* Remove left line since it's centered now */
    padding-left: 0;
    max-width: 700px;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.about-page .info-grid {
    width: 100%;
    justify-content: center;
}

.about-page .info-card {
    text-align: left; /* Keep text inside cards aligned left */
}

/* --- EXTRA PAGE SPACE FIX --- */
.pricing-page .hero-container {
    /* Adds a massive amount of empty space below the TOS */
    padding-bottom: 40vh !important; 
}

/* Ensure the background animation extends to the new space */
.pricing-page .bg-animation {
    height: 200%; /* Makes sure glows don't cut off */
}

/* Make sure the page is scrollable to see the space */
body.pricing-page {
    overflow-y: auto !important;
    height: auto !important;
}