:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --accent-1: #00ff88;
    --accent-2: #00ccff;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --border: #1a1a1a;
}

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

body {
    font-family: 'Space Mono', monospace;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-1);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease, border-color 0.2s;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 8px;
    height: 8px;
    background: var(--accent-2);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease;
}

/* Grain Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9997;
}

/* Grid Background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Nav */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.site-nav .brand {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    text-decoration: none;
}

.site-nav .brand .brand-accent {
    color: var(--accent-1);
}

.site-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav .nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.site-nav .nav-links a:hover {
    color: var(--accent-1);
}

.site-nav .nav-cta {
    padding: 10px 18px;
    border: 1px solid var(--accent-1);
    color: var(--accent-1) !important;
}

.site-nav .nav-cta:hover {
    background: var(--accent-1);
    color: var(--bg-primary) !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 40px 80px;
}

.hero-content-wrapper {
    width: 100%;
    max-width: 1400px;
    text-align: center;
}

.glitch-wrapper {
    position: relative;
}

.hero h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(60px, 12vw, 180px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
    position: relative;
    display: block;
    overflow: visible;
}

.hero h1 span {
    display: block;
}

.hero h1 .first-name {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    display: block;
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

.hero h1 .last-name {
    color: var(--text-primary);
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
    display: block;
    line-height: 1.2;
    padding-bottom: 0.15em;
}

.alias {
    font-family: 'Space Mono', monospace;
    font-size: clamp(14px, 2vw, 18px);
    color: var(--accent-2);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.7;
}

.hero h2 {
    font-family: 'Space Mono', monospace;
    font-size: clamp(16px, 3vw, 24px);
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 30px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero h2::before {
    content: '> ';
    color: var(--accent-1);
}

.hero-lede {
    max-width: 720px;
    margin: 0 auto 40px;
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.7;
    color: var(--text-secondary);
}

.hero-lede a {
    color: var(--accent-1);
    text-decoration: none;
    border-bottom: 1px dashed rgba(0, 255, 136, 0.4);
    transition: all 0.3s ease;
}

.hero-lede a:hover {
    color: var(--accent-2);
    border-bottom-color: var(--accent-2);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

/* Tech marquee */
.tech-marquee {
    margin: 60px 0;
    overflow: hidden;
    position: relative;
}

.tech-track {
    display: flex;
    gap: 30px;
    animation: marquee 30s linear infinite;
    align-items: center;
    padding: 16px 0;
}

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

.tech-item {
    background: var(--bg-secondary);
    padding: 16px 32px;
    border: 1px solid var(--border);
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    flex-shrink: 0;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-1), transparent);
    transition: left 0.5s;
}

.tech-item:hover::before {
    left: 100%;
}

.tech-item:hover {
    border-color: var(--accent-1);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 24px 60px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    border: 2px solid var(--accent-1);
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.cta-button.secondary {
    border-color: var(--accent-2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--accent-1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.cta-button.secondary::before {
    background: var(--accent-2);
}

.cta-button:hover {
    color: var(--bg-primary);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
}

.cta-button.secondary:hover {
    box-shadow: 0 0 40px rgba(0, 204, 255, 0.5);
}

.cta-button:hover::before {
    width: 120%;
    height: 120%;
}

/* Section Styling */
.section {
    min-height: 100vh;
    padding: 120px 40px;
    position: relative;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--border);
}

.section-number {
    position: absolute;
    top: 60px;
    left: 40px;
    font-family: 'Unbounded', sans-serif;
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-1), transparent);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-text p {
    margin-bottom: 30px;
}

.about-text p:first-child::first-letter {
    font-size: 80px;
    line-height: 1;
    float: left;
    margin-right: 10px;
    color: var(--accent-1);
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
}

.about-text a {
    color: var(--accent-1);
    text-decoration: none;
    border-bottom: 1px dashed rgba(0, 255, 136, 0.4);
    transition: all 0.3s ease;
}

.about-text a:hover {
    color: var(--accent-2);
    border-bottom-color: var(--accent-2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.stat-item {
    border: 1px solid var(--border);
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--accent-1);
    transition: height 0.3s ease;
}

.stat-item:hover::before {
    height: 100%;
}

.stat-item:hover {
    border-color: var(--accent-1);
    transform: translateX(10px);
}

.stat-number {
    font-family: 'Unbounded', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--accent-2);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

/* Tools Section (flagship) */
.tools-hero {
    border: 1px solid var(--border);
    padding: 60px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.04), rgba(0, 204, 255, 0.04));
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.tools-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
}

.tools-hero-domain {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    color: var(--accent-2);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
}

.tools-hero h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.tools-hero h3 a {
    color: var(--text-primary);
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.3s ease;
}

.tools-hero h3 a:hover {
    opacity: 0.8;
}

.tools-hero p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: clamp(15px, 1.6vw, 17px);
    max-width: 800px;
    margin-bottom: 30px;
}

.tools-hero p a {
    color: var(--accent-1);
    text-decoration: none;
    border-bottom: 1px dashed rgba(0, 255, 136, 0.4);
    transition: all 0.3s ease;
}

.tools-hero p a:hover {
    color: var(--accent-2);
    border-bottom-color: var(--accent-2);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 20px;
    margin-top: 40px;
}

.tool-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
    padding: 28px;
    text-decoration: none;
    color: var(--text-primary);
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.tool-card:hover {
    border-color: var(--accent-1);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.1);
}

.tool-card h4 {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.tool-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.tool-card-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--accent-1);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tool-card:hover .tool-card-arrow {
    opacity: 1;
    transform: translate(4px, -4px);
}

/* Experience Section */
.experience-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 60px;
    position: relative;
    margin-bottom: 40px;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    transition: all 0.3s ease;
}

.experience-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: var(--accent-1);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.experience-card:hover {
    border-color: var(--accent-1);
    transform: scale(1.02);
}

.experience-card:hover::after {
    opacity: 1;
}

.experience-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.company {
    color: var(--accent-2);
    font-size: 20px;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.experience-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

/* Experience Summary */
.experience-summary {
    margin-top: 40px;
    border: 1px solid var(--border);
    padding: 50px;
    position: relative;
}

.experience-summary::before {
    content: 'AND MORE';
    position: absolute;
    top: -12px;
    left: 50px;
    background: var(--bg-primary);
    padding: 0 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-1);
}

.exp-highlight {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.exp-number {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}

.exp-detail h4 {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.exp-detail p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.exp-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.exp-chip {
    padding: 10px 20px;
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.exp-chip::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-1);
    transition: width 0.3s ease;
}

.exp-chip:hover {
    color: var(--text-primary);
    border-color: var(--accent-1);
}

.exp-chip:hover::before {
    width: 100%;
}

@media (max-width: 968px) {
    .exp-highlight {
        flex-direction: column;
        text-align: center;
    }

    .experience-summary {
        padding: 40px 24px;
    }

    .exp-chips {
        justify-content: center;
    }
}

/* App Portfolio */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
    gap: 40px;
    margin-top: 60px;
}

.app-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.app-card:hover {
    border-color: var(--accent-1);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.1);
}

.app-card-header {
    padding: 40px 40px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.app-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.app-meta h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.app-meta .app-tagline {
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.app-card-body {
    padding: 24px 40px;
}

.app-card-body p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 40px;
}

.app-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid var(--border);
    color: var(--accent-2);
    transition: all 0.3s;
}

.app-card:hover .app-tag {
    border-color: rgba(0, 204, 255, 0.3);
}

.app-card-footer {
    padding: 24px 40px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--accent-1);
    font-weight: 700;
}

.app-rating svg {
    width: 16px;
    height: 16px;
}

.app-downloads {
    font-size: 13px;
    color: var(--text-secondary);
}

.app-store-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-1);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.app-store-link:hover {
    color: var(--text-primary);
    gap: 14px;
}

.app-store-link svg {
    width: 16px;
    height: 16px;
}

/* Coming Soon Card */
.app-card.coming-soon {
    border-style: dashed;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.coming-soon-inner {
    text-align: center;
    padding: 40px;
}

.coming-soon-inner .coming-icon {
    width: 64px;
    height: 64px;
    border: 2px dashed var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-secondary);
    font-size: 28px;
    transition: all 0.3s;
}

.app-card.coming-soon:hover .coming-icon {
    border-color: var(--accent-1);
    color: var(--accent-1);
}

.coming-soon-inner h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.coming-soon-inner p {
    color: var(--text-secondary);
    font-size: 14px;
}

@media (max-width: 968px) {
    .apps-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-link {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 40px;
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.contact-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent-1);
    transition: height 0.4s ease;
    z-index: 0;
}

.contact-link:hover::before {
    height: 100%;
}

.contact-link:hover {
    border-color: var(--accent-1);
    color: var(--bg-primary);
}

.contact-link svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1;
}

.contact-link span {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    padding: 60px 40px;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 14px;
    letter-spacing: 0.1em;
}

.footer p {
    margin-bottom: 12px;
}

.footer a {
    color: var(--accent-1);
    text-decoration: none;
    border-bottom: 1px dashed rgba(0, 255, 136, 0.4);
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--accent-2);
    border-bottom-color: var(--accent-2);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item {
        padding: 24px;
    }

    .stat-number {
        font-size: 32px;
    }

    .section {
        padding: 80px 20px;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .section-number {
        font-size: 80px;
    }

    .experience-card {
        padding: 30px;
        clip-path: none;
    }

    .experience-card h3 {
        font-size: 24px;
    }

    .company {
        font-size: 16px;
    }

    .tools-hero {
        padding: 36px 24px;
        clip-path: none;
    }

    /* Nav mobile */
    .site-nav {
        padding: 14px 20px;
    }

    .site-nav .nav-links {
        gap: 14px;
    }

    .site-nav .nav-links a:not(.nav-cta) {
        display: none;
    }

    /* App cards mobile */
    .app-card-header {
        padding: 24px 24px 0;
    }

    .app-card-body {
        padding: 20px 24px;
    }

    .app-tags {
        padding: 0 24px;
    }

    .app-card-footer {
        padding: 20px 24px 24px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .app-meta h3 {
        font-size: 18px;
    }

    /* Contact grid */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 14px;
    }

    body {
        cursor: auto;
    }

    .cursor, .cursor-follower {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .app-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .tech-item {
        padding: 12px 20px;
        font-size: 12px;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
