/* =============================================
   AI CAMP - Pure CSS Stylesheet
   No build process required
   ============================================= */

/* CSS Variables */
:root {
    /* Colors - Dark Theme */
    --primary: #FF2B2B;
    --primary-light: #ff5252;
    --primary-glow: rgba(255, 43, 43, 0.2);
    --primary-foreground: #ffffff;
    
    --background: #0a0a0f;
    --background-elevated: #111118;
    --background-card: #16161d;
    
    --foreground: #f0f0f5;
    --foreground-muted: #9b9ba8;
    --foreground-subtle: #6b6b78;
    
    --border: #2a2a35;
    --border-light: #1f1f28;
    
    --success: #22c55e;
    --destructive: #ef4444;
    
    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'Space Grotesk', monospace;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 8rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

.text-primary {
    color: var(--primary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(255, 107, 53, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Navigation */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    background: rgba(10, 10, 15, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-normal);
}

#nav.scrolled {
    background: rgba(10, 10, 15, 0.8);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--foreground);
    text-decoration: none;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--foreground-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #f0f0f5;
    transition: all var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--background);
    padding: 2rem 1.5rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    z-index: 99;
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--foreground-muted);
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

/* Desktop nav display */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Sections */
.section {
    padding: var(--section-padding) 0;
}

.bg-elevated {
    background-color: var(--background-elevated);
}

.section-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--foreground-muted);
    max-width: 700px;
}

.section-subtitle-sm {
    font-size: 1.125rem;
    color: var(--foreground-muted);
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, var(--primary-glow), transparent),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(255, 107, 53, 0.08), transparent);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black, transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--background-card);
    border: 1px solid var(--border);
    border-radius: 9999px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--foreground-muted);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 7vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--foreground-muted);
    max-width: 700px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--foreground-subtle);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Animations */
.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-delay-1 {
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.1s forwards;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.animate-fade-in-delay-3 {
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.3s forwards;
}

.animate-fade-in-delay-4 {
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards Grid (Problem Section) */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card {
    position: relative;
    padding: 2rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.card:hover .card-accent {
    opacity: 1;
}

.card-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-glow);
    border-radius: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-text {
    font-size: 0.9375rem;
    color: var(--foreground-muted);
}

/* Diagram (Solution Section) */
.diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}

.diagram-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.diagram-circle {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-card);
    border: 2px solid var(--border);
    border-radius: 50%;
    font-size: 2rem;
    transition: all var(--transition-normal);
}

.diagram-circle:hover {
    border-color: var(--primary);
}

.diagram-center {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    box-shadow: 0 0 60px var(--primary-glow);
}

.diagram-label {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--foreground-muted);
}

.diagram-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--primary), var(--border));
}

@media (max-width: 768px) {
    .diagram {
        flex-direction: column;
    }
    
    .diagram-line {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, var(--border), var(--primary), var(--border));
    }
}

/* Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pillar {
    padding: 1.75rem;
    background: var(--background-card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    transition: border-color var(--transition-normal);
}

.pillar:hover {
    border-color: var(--primary);
}

.pillar-number {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.pillar-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.pillar-text {
    font-size: 0.875rem;
    color: var(--foreground-muted);
}

/* Journey Section */
.journey-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .journey-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.journey-line {
    display: none;
}

@media (min-width: 1024px) {
    .journey-line {
        display: block;
        position: absolute;
        top: 50px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, var(--border), var(--primary) 50%, var(--border));
        z-index: 0;
    }
}

.journey-step {
    position: relative;
    z-index: 10;
    text-align: center;
}

.journey-number {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    transition: all var(--transition-normal);
}

.journey-step:hover .journey-number {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    transform: scale(1.1);
}

.journey-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.journey-text {
    font-size: 0.875rem;
    color: var(--foreground-muted);
    padding: 0 0.5rem;
}

/* Timeline (Program Section) */
.timeline {
    margin-top: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    transition: all var(--transition-normal);
}

@media (min-width: 768px) {
    .timeline-item {
        grid-template-columns: 100px 1fr;
        gap: 2rem;
    }
}

.timeline-item:hover {
    background: linear-gradient(90deg, var(--primary-glow), transparent);
    margin: 0 -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-week {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
}

.timeline-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-text {
    font-size: 0.9375rem;
    color: var(--foreground-muted);
    margin-bottom: 0.75rem;
}

/* Tags */
.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    border: 1px solid;
}

.tag-module {
    border-color: var(--primary);
    color: var(--primary);
}

.tag-workshop {
    border-color: var(--primary);
    color: var(--primary);
}

.tag-bootcamp {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--primary-foreground);
}

/* Metrics (ROI Section) */
.metrics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.metric-card {
    text-align: center;
    padding: 3rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 1rem;
    transition: all var(--transition-normal);
}

.metric-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.metric-value {
    font-family: var(--font-display);
    font-size: 3.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.metric-label {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--foreground-muted);
}

/* Deliverables */
.deliverables-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .deliverables-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.deliverable {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
}

.deliverable-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--primary-foreground);
}

.deliverable p {
    font-size: 0.9375rem;
    color: var(--foreground-muted);
}

/* Audience Section */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

@media (min-width: 1024px) {
    .audience-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.audience-intro {
    font-size: 1.125rem;
    color: var(--foreground-muted);
    margin-bottom: 2rem;
}

.requirements-list {
    list-style: none;
}

.requirements-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--foreground-muted);
}

.requirements-list .arrow {
    color: var(--primary);
    font-weight: 600;
}

.audience-right {
    background: var(--background-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2.5rem;
}

.not-required-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.not-required-list {
    list-style: none;
}

.not-required-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--foreground-muted);
    font-size: 0.9375rem;
}

.not-required-list .x-mark {
    color: var(--foreground-subtle);
}

/* Testimonial Section */
.testimonial {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 7.5rem;
    font-family: serif;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.625rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--foreground-muted);
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .testimonial-stats {
        gap: 6rem;
    }
}

.testimonial-stat {
    text-align: center;
}

.testimonial-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.testimonial-stat-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--foreground-subtle);
}

/* CTA Section */
.cta-section {
    position: relative;
    text-align: center;
    padding: 10rem 0;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 100%, var(--primary-glow), transparent);
    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--foreground-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group .required {
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--foreground);
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--destructive);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.error-message {
    display: block;
    font-size: 0.875rem;
    color: var(--destructive);
    margin-top: 0.25rem;
}

.form-error {
    text-align: center;
    margin-bottom: 1rem;
}

.btn-text,
.arrow-icon {
    display: inline-flex;
    align-items: center;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form Success */
.form-success {
    display: none;
    max-width: 500px;
    margin: 2.5rem auto;
    padding: 2rem;
    background: var(--background-card);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.form-success.visible {
    display: block;
}

.success-icon {
    color: var(--success);
    margin-bottom: 1rem;
}

.form-success h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--foreground-muted);
}

.cta-pdf {
    margin-top: 2rem;
}

/* Footer */
.footer {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .footer-right {
        text-align: right;
    }
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.125rem;
}

.footer-tagline {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--foreground-subtle);
    margin-top: 0.5rem;
}

.footer-contact {
    font-size: 0.875rem;
    color: var(--foreground-muted);
    margin-bottom: 0.25rem;
}

.footer-email {
    font-size: 0.875rem;
    color: var(--primary);
    text-decoration: none;
}

/* Extra small mobile screens */
@media (max-width: 400px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
}

.footer-email:hover {
    text-decoration: underline;
}
