﻿/* ===== RESET + VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #020202;
    --bg-card: #0a0a0a;
    --text: #ffffff;
    --text-dim: rgba(255,255,255,0.7);
    --text-ultra: rgba(255,255,255,0.2);
    --cyan: #00f3ff;
    --magenta: #ff00ff;
    --lime: #ccff00;
    --border-dim: rgba(255,255,255,0.07);
    --border-glow: rgba(0,243,255,0.3);
    --font: 'Inter', system-ui, sans-serif;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.5;
    cursor: none; /* custom cursor for larger screens, falls back to auto */
}
section, header, footer, .container, .header-container {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Fix for any absolutely positioned elements that might overflow */
.cyber-grid, .hero-image-container, .hero-grid-floor, .cta-gradient, .scroller-background {
    max-width: 100vw;
    overflow: hidden;
}
a, button {
    cursor: none;
}

/* custom cursor – hidden on touch devices via media */
.custom-cursor, .custom-cursor-outer {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    display: none;
}

@media (min-width: 1024px) {
    .custom-cursor, .custom-cursor-outer {
        display: block;
    }
}

.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--cyan);
    transform: translate(-50%, -50%);
    transition: width 0.1s, height 0.1s;
}

.custom-cursor-outer {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,0,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.15s;
}

/* cyber grid background */
.cyber-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

    .cyber-grid::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(to right, var(--cyan) 1px, transparent 1px), linear-gradient(to bottom, var(--cyan) 1px, transparent 1px);
        background-size: 60px 60px;
        opacity: 0.15;
        transform: perspective(600px) rotateX(60deg) scale(2.5);
        transform-origin: center bottom;
        animation: drift 10s linear infinite;
    }

@keyframes drift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 80px;
    }
}

.cyber-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 60%, rgba(0,243,255,0.08) 0%, transparent 60%);
}

/* ===== REUSABLE CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ===== HEADER (fully responsive) ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(2,2,2,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-dim);
    padding: 0.8rem 5%;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--cyan);
    transform: skewX(-12deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: black;
    font-size: 1.3rem;
}

.logo-text {
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(1rem, 4vw, 1.5rem);
    background: linear-gradient(to right, #fff, rgba(255,255,255,0.6));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration:none;
}

.nav-menu {
    display: none; /* hidden on mobile */
    gap: 2.2rem;
}

@media (min-width: 900px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
}

    .nav-link:hover {
        color: var(--cyan);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 0%;
        height: 1px;
        background: var(--cyan);
        transition: width 0.2s;
        box-shadow: 0 0 8px var(--cyan);
    }

    .nav-link:hover::after {
        width: 100%;
    }

/* mobile menu simulated with a simple upgrade pill (no hidden complexity) */
.upgrade-btn {
    background: transparent;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    padding: 0.5rem 1.2rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    transition: 0.2s;
    white-space: nowrap;
}

    .upgrade-btn:hover {
        background: var(--cyan);
        color: black;
    }

/* ===== HERO (mobile first) ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7rem 5% 5rem;
    background: var(--bg);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.45em;
    color: var(--cyan);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.2rem, 10vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.highlight-cyan {
    color: var(--cyan);
    text-shadow: 0 0 15px var(--cyan);
}

.highlight-magenta {
    color: var(--magenta);
}

.highlight-lime {
    color: var(--lime);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 600px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.btn-primary {
    background: var(--cyan);
    border: none;
    padding: 1.2rem 2.5rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    color: black;
    transition: 0.2s;
}

    .btn-primary:hover {
        box-shadow: 0 0 40px var(--cyan);
    }

.hero-image-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.3;
}

@media (min-width: 1000px) {
    .hero-image-container {
        opacity: 0.6;
        width: 50%;
        left: auto;
        right: 0;
    }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;
    filter: brightness(0.5) contrast(1.5);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg) 20%, transparent 80%);
}

.hero-grid-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30vh;
    background-image: linear-gradient(to right, var(--cyan) 1px, transparent 1px), linear-gradient(to bottom, var(--cyan) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(300px) rotateX(70deg);
    transform-origin: bottom;
    opacity: 0.2;
    pointer-events: none;
}

/* ===== ABOUT / PHILOSOPHY (responsive grid) ===== */
.about {
    padding: 6rem 5%;
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.section-title {
    font-size: clamp(2.2rem, 8vw, 4rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 2rem;
}

.section-title-light {
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 300;
    line-height: 1;
}

.about-text-large {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 1.8rem;
}

.about-text-small {
    color: rgba(255,255,255,0.45);
    margin-bottom: 2.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-dim);
    transition: background 0.2s;
}

    .feature-item:hover {
        background: rgba(255,255,255,0.07);
    }

.feature-icon.cyan {
    color: var(--cyan);
}

.feature-icon.magenta {
    color: var(--magenta);
}

.feature-icon.lime {
    color: var(--lime);
}

.feature-title {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-ultra);
}

.about-image-container {
    position: relative;
    aspect-ratio: 1/1;
}

.image-frame {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0,243,255,0.15);
}

.frame-1 {
    transform: translate(1rem,1rem);
}

.frame-2 {
    border-color: rgba(255,0,255,0.15);
    transform: translate(-0.8rem,-0.8rem);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.8);
}

.image-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--cyan);
    color: black;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

/* ===== HORIZONTAL SCROLLER (fully responsive) ===== */
.scroller-section {
    min-height: 70vh;
    height: auto;
    display: flex;
    align-items: center;
    background: var(--bg);
    overflow: hidden; /* Keep this to hide any overflow */
    position: relative;
    padding: 2rem 0;
    width: 100%;
    max-width: 100vw; /* Ensure section doesn't exceed viewport */
}

@media (min-width: 768px) {
    .scroller-section {
        min-height: 100vh;
        height: 100vh;
        padding: 0;
    }
}

.scroller-track {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0 3rem 5%; /* Move padding from container to track */
    width: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--cyan) var(--bg-card);
    max-width: 100vw; /* Ensure track doesn't exceed viewport */
}

    .scroller-track::-webkit-scrollbar {
        height: 4px;
    }

    .scroller-track::-webkit-scrollbar-track {
        background: var(--bg-card);
    }

    .scroller-track::-webkit-scrollbar-thumb {
        background: var(--cyan);
        border-radius: 4px;
    }

.scroller-container {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding-right: 5%; /* Add padding at the end for last item */
}


@media (min-width: 768px) {
    .scroller-container {
        gap: 2rem;
        padding-right: 5%;
    }
}

.scroller-pod {
    scroll-snap-align: center;
    position: relative;
    width: min(260px, 65vw);
    aspect-ratio: 9/14;
    flex-shrink: 0;
}


@media (min-width: 480px) {
    .scroller-pod {
        width: min(280px, 60vw);
    }
}

@media (max-width: 768px) {
    .scroller-pod {
        scroll-snap-align: start;
        margin-right: 1rem;
    }

    .scroller-container {
        padding-right: 8%; /* More padding on mobile for last item */
    }

    /* Remove or comment out this part if it's causing issues */
    /* .scroller-track::after {
        content: '';
        position: sticky;
        right: 0;
        top: 0;
        width: 40px;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0,0,0,0.5));
        pointer-events: none;
        z-index: 15;
    } */
}

.pod-frame {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(0,243,255,0.3);
    border-radius: 24px;
    z-index: 5;
    pointer-events: none;
    transition: 0.3s;
}

@media (min-width: 768px) {
    .pod-frame {
        border-radius: 32px;
    }
}

.scroller-pod:hover .pod-frame {
    border-color: var(--cyan);
    box-shadow: 0 0 25px var(--cyan);
}

.pod-scanline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0,243,255,0.2);
    animation: scan 6s linear infinite;
    z-index: 10;
}

@media (max-width: 768px) {
    .pod-scanline::before {
        animation-duration: 8s;
    }
}

@keyframes scan {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(1000%);
    }
}

.pod-content {
    position: absolute;
    inset: 0.5rem;
    border-radius: 20px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .pod-content {
        inset: 0.8rem;
        border-radius: 28px;
    }
}

.pod-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.7);
    transition: 0.5s;
}

.scroller-pod:hover .pod-image,
.scroller-pod:active .pod-image {
    filter: grayscale(0) brightness(1);
    transform: scale(1.05);
}

.pod-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1rem;
    z-index: 10;
    opacity: 0;
    transition: 0.3s;
}

.scroller-pod:hover .pod-overlay,
.scroller-pod:active .pod-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .scroller-pod:active .pod-overlay {
        opacity: 1;
    }
}

.pod-unit {
    font-size: 0.65rem;
    color: var(--cyan);
    letter-spacing: 0.2em;
}

.pod-name {
    font-size: 1.2rem;
    font-weight: 800;
}

@media (min-width: 768px) {
    .pod-name {
        font-size: 1.5rem;
    }
}

.pod-swipe {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: var(--cyan);
    opacity: 0.7;
    white-space: nowrap;
    background: rgba(0,0,0,0.5);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

@media (min-width: 768px) {
    .pod-swipe {
        bottom: -2.5rem;
        background: transparent;
        padding: 0;
        backdrop-filter: none;
    }
}

@media (min-width: 1024px) {
    .pod-swipe span {
        display: inline;
    }
}

.scroller-header {
    position: absolute;
    top: 1rem;
    left: 5%;
    z-index: 20;
}

@media (min-width: 768px) {
    .scroller-header {
        top: 2rem;
    }
}

.scroller-subtitle {
    color: var(--cyan);
    font-size: 0.7rem;
    letter-spacing: 0.4em;
}

.scroller-background {
    position: absolute;
    bottom: 10%;
    right: 5%;
    z-index: 0;
    opacity: 0.2;
    font-size: 4vw;
    font-weight: 900;
    color: rgba(255,255,255,0.1);
    pointer-events: none;
    display: none;
}

@media (min-width: 768px) {
    .scroller-background {
        display: block;
    }
}

.scroller-text-bg {
    font-size: clamp(2rem, 8vw, 6rem);
    white-space: nowrap;
}

.scroller-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    margin-bottom: 1rem;
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
    .scroller-pod {
        scroll-snap-align: start;
        margin-right: 1rem;
    }

    .scroller-container {
        padding: 0 4%;
        gap: 1rem;
    }

    .scroller-track::after {
        content: '';
        position: sticky;
        right: 0;
        top: 0;
        width: 40px;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0,0,0,0.5));
        pointer-events: none;
        z-index: 15;
    }
}

/* Landscape mode adjustments */
@media (max-width: 900px) and (orientation: landscape) {
    .scroller-section {
        min-height: 80vh;
    }

    .scroller-pod {
        width: min(220px, 40vw);
    }

    .pod-swipe {
        bottom: -1.8rem;
        font-size: 0.6rem;
    }
}

/* ===== PROGRAMS GRID (mobile → columns) ===== */
.programs {
    padding: 6rem 5%;
    background: black;
}

.programs-grid {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.program-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2.5rem 2rem;
    position: relative;
    transition: 0.2s;
    backdrop-filter: blur(4px);
}

    .program-card:hover {
        border-color: rgba(0,243,255,0.4);
    }

.program-id {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.program-icon {
    margin-bottom: 1.5rem;
}

.program-desc {
    color: #ddd;
}

/* ===== TRANSFORMATIONS ===== */
.transformations-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 700px) {
    .transformations-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.transformations-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.transformation-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.transformation-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.image-label {
    position: absolute;
    top: 0.5rem;
    font-size: 0.65rem;
    background: rgba(0,0,0,0.7);
    padding: 0.2rem 0.5rem;
}

.after-label {
    background: var(--cyan);
    color: black;
    right: 0.5rem;
}

/* ===== TARGET GRID, STEPS, PRICING ===== */
.target-grid, .steps-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.target-card, .step-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-dim);
    padding: 2rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
}

.pricing-card {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--cyan);
    padding: 3rem 2rem;
    text-align: center;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 900;
}

.cta {
    padding: 6rem 5%;
    text-align: center;
    position: relative;
}

.cta-title {
    font-size: clamp(3rem, 12vw, 6rem);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
}

.cta-highlight {
    color: var(--cyan);
    margin:auto;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-btn {
    background: white;
    color: black;
    border: none;
    padding: 1.5rem 3rem;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--cyan);
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
    animation: pulse 1.5s infinite;
}

/* animations */
.fade-in-up {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* responsive fixes */
img {
    max-width: 100%;
    display: block;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

/* spacings */
section {
    position: relative;
    z-index: 2;
}

.user-info, .steps, .pricing, .cta {
    border-top: 1px solid rgba(255,255,255,0.03);
}
.steps {
    margin-top: 60px;
    padding: 4rem 5%;
}

@media (max-width: 768px) {
    .steps {
        margin-top: 40px;
        padding: 3rem 5%;
    }
}
.pricing {
    margin-top: 60px;
    padding: 4rem 5%;
}

@media (max-width: 768px) {
    .pricing {
        margin-top: 40px;
        padding: 3rem 5%;
    }
}

/* Keep the existing border-top but add margin before it */
.pricing {
    border-top: 1px solid rgba(255,255,255,0.03);
}

/* Add spacing between steps and pricing if needed */
.steps + .pricing {
    margin-top: 80px;
}

@media (max-width: 768px) {
    .steps + .pricing {
        margin-top: 60px;
    }
}
/* === ADDITIONAL RESPONSIVE TWEAKS === */

/* Small phone adjustments (<=480px) */
@media (max-width: 480px) {
    .hero-title {
        line-height: 1.1;
    }

    .hero-buttons {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    .about-grid {
        gap: 2rem;
    }

    .feature-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }

    .cta-actions {
        width: 100%;
    }

    .cta-btn {
        width: 100%;
    }
}

/* Tablet landscape / small desktop refinement */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-content {
        max-width: 600px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .about-grid {
        gap: 2rem;
    }
}

/* Large desktop refinement */
@media (min-width: 1440px) {
    .container, .header-container, .about-grid {
        max-width: 1440px;
    }

    .hero-content {
        max-width: 800px;
    }

    .hero-title {
        font-size: 5rem;
    }

    .section-title {
        font-size: 4rem;
    }

    .section-title-light {
        font-size: 3.5rem;
    }
}

/* Fix for missing program underline style in programs section */
.program-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.3s ease;
}

.program-card:hover .program-underline {
    width: 100%;
}

/* Fix for missing glow effect in program cards */
.program-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.program-card:hover .program-glow {
    opacity: 0.1;
    background: radial-gradient(circle at center, currentColor 0%, transparent 70%);
}

/* Fix for missing pulse animation */
@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Fix for missing accent line */
.accent-line {
    width: 80px;
    height: 2px;
    background: var(--cyan);
    margin: 1rem 0;
}

/* Fix for transformations section missing elements */
.transformations-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--cyan);
}

.transformations-disclaimer {
    font-size: 0.7rem;
    max-width: 400px;
    color: var(--text-dim);
}

.transformation-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.transformation-name {
    color: var(--cyan);
}

.transformation-duration {
    color: var(--text-ultra);
}

.image-before, .image-after {
    position: relative;
}

/* Fix for user info / target section header */
.user-info-header {
    margin-bottom: 3rem;
}

.user-info-description {
    max-width: 600px;
    color: var(--text-dim);
    margin-top: 1rem;
}

.target-code {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.target-text, .step-desc, .pricing-desc {
    color: var(--text-dim);
    line-height: 1.6;
}

.step-title {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: var(--lime);
}

.pricing-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.pricing-availability {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--magenta);
    margin: 1rem 0;
}

.pricing-btn {
    background: transparent;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    transition: 0.2s;
    margin-top: 1rem;
}

    .pricing-btn:hover {
        background: var(--cyan);
        color: black;
    }

/* CTA section refinements */
.cta-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,243,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin: 2rem auto;
    max-width: 600px;
}

.cta-background-text {
    position: absolute;
    bottom: 5%;
    left: 5%;
    font-size: clamp(1rem, 5vw, 2rem);
    font-weight: 800;
    color: rgba(255,255,255,0.02);
    white-space: nowrap;
    pointer-events: none;
}

/* Fix for lucide icons sizing */
.feature-icon svg, .program-icon svg, .pod-swipe svg {
    width: 1.2em;
    height: 1.2em;
}

.program-icon svg {
    width: 40px;
    height: 40px;
}

.pod-swipe svg {
    width: 14px;
    height: 14px;
}

/* Ensure custom cursor falls back correctly on touch */
@media (max-width: 1023px) {
    body, a, button {
        cursor: auto;
    }
}

/* Fix for any potential missing margins/paddings */
.section-title-light, .section-title {
    word-break: break-word;
}

img {
    max-width: 100%;
    height: auto;
}
