/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #0a0a0a;
    --color-bg-elevated: #141414;
    --color-bg-subtle: #1a1a1a;
    --color-text: #e8e8e8;
    --color-text-muted: #a0a0a0;
    --color-accent: #ffffff;
    --color-highlight: #F9A833;
    --color-border: #2a2a2a;
    
    --color-highlight-subtle: rgba(249, 168, 51, 0.1);
    --color-highlight-faint: rgba(249, 168, 51, 0.03);
    --color-highlight-glow: rgba(249, 168, 51, 0.3);
    --color-highlight-glow-strong: rgba(249, 168, 51, 0.5);
    --color-highlight-glow-soft: rgba(249, 168, 51, 0.15);
    
    --color-glass: rgba(20, 20, 20, 0.6);
    --color-glass-dark: rgba(20, 20, 20, 0.8);
    --color-glass-overlay: rgba(20, 20, 20, 0.3);
    --color-nav-bg: rgba(10, 10, 10, 0.9);
    --color-shadow-black: rgba(0, 0, 0, 0.5);
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    --font-mono: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', 'Courier New', monospace;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--color-highlight-faint) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--color-highlight-faint) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/noise.svg');
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

nav, section, footer {
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: background 0.3s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: linear-gradient(90deg, var(--color-highlight), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-highlight), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo:hover::after {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

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

.cta-nav {
    padding: 0.6rem 1.5rem;
    background: var(--color-accent);
    color: var(--color-bg) !important;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.3s ease;
}

.cta-nav:hover {
    transform: translateY(-2px);
    background: var(--color-highlight);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    border: 2px solid var(--color-highlight);
    border-radius: 50%;
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 35%;
    left: 5%;
    width: 200px;
    height: 180px;
    background-image: url('assets/images/triangle.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.12;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-30px) rotate(15deg); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    padding: var(--spacing-xl) 0;
}

.hero-content {
    max-width: 600px;
    position: relative;
    padding-left: 40px;
}

.hero-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--color-highlight), transparent);
    opacity: 0.5;
}

.hero-image {
    position: relative;
    border-radius: 8px;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    filter: drop-shadow(0 0 5px var(--color-shadow-black));
    animation: heroImageZoom 1s ease-out forwards;
}

@keyframes heroImageZoom {
    from {
        transform: scale(1.3);
    }
    to {
        transform: scale(1.4);
    }
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--color-highlight);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-accent);
    color: var(--color-bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.cta-button.filled {
    background: var(--color-highlight);
    color: var(--color-bg);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--color-highlight-glow);
    background: var(--color-highlight);
}

.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cta-button.success {
    background: var(--color-highlight);
}

.cheap-button {
    opacity: 0.7;
}

.cheap-button:hover {
    opacity: 1;
    background: var(--color-accent);
    box-shadow: 0 0 0 0;
}

/* Section Styles */
.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
}

.section-header h2::before {
    content: '';
    display: block;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-highlight), transparent);
    margin: 0 auto var(--spacing-sm) auto;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
}

/* Problem Section */
.problem-section {
    background: var(--color-bg-elevated);
}

.content-block {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg) auto;
}

.lead-text {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-muted);
}

.lead-text.emphasis {
    color: var(--color-accent);
    font-weight: 500;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.problem-card {
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-highlight), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-highlight);
}

.problem-card:hover::after {
    transform: translateX(0);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-accent);
}

.problem-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Solution Section */
.solution-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: var(--spacing-md);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, opacity 0.6s ease !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px transparent;
}

.flow-step:hover {
    transform: scale(1.05);
    border-color: var(--color-highlight);
    box-shadow: 0 20px 50px var(--color-highlight-glow-soft);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-highlight);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-mono);
    text-shadow: 0 0 20px var(--color-highlight-glow);
    transition: text-shadow 0.3s ease;
}

.flow-step:hover .step-number {
    text-shadow: 0 0 30px var(--color-highlight-glow-strong);
}

.flow-step h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-accent);
}

.flow-step p {
    color: var(--color-text-muted);
    line-height: 1.8;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--color-highlight);
    flex-shrink: 0;
}

.core-principle {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-highlight-faint), transparent);
    border: 2px solid var(--color-highlight);
    border-radius: 8px;
    margin-bottom: var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.core-principle::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--color-highlight-subtle) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.principle-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--spacing-sm);
    color: var(--color-accent);
    position: relative;
    z-index: 1;
}

.principle-text {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--color-text-muted);
}

.judgment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.judgment-item {
    padding: var(--spacing-md);
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.judgment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--color-highlight);
    transition: height 0.4s ease;
}

.judgment-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-highlight);
}

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

.judgment-item h4 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-highlight);
}

.judgment-item p {
    color: var(--color-text-muted);
}

/* Difference Section */
.difference-section {
    background: var(--color-bg-elevated);
}

.comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto var(--spacing-lg) auto;
}

.comparison-column {
    padding: var(--spacing-md);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comparison-column h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
    position: relative;
}

.comparison-column.traditional h3 {
    color: var(--color-text-muted);
}

.comparison-column.axiom h3 {
    color: var(--color-highlight);
}

.comparison-column.axiom h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--color-highlight);
    margin: var(--spacing-sm) auto 0 auto;
}

.comparison-list {
    list-style: none;
    width: 100%;
    margin-bottom: var(--spacing-md);
}

.comparison-list li {
    padding: var(--spacing-sm) 0;
    padding-left: 20px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-muted);
    position: relative;
    transition: padding-left 0.3s ease;
}

.comparison-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-text-muted);
}

.comparison-column.axiom .comparison-list li {
    color: var(--color-text);
}

.comparison-column.axiom .comparison-list li::before {
    content: '→';
    color: var(--color-highlight);
}

.comparison-column.axiom .comparison-list li:hover {
    padding-left: 25px;
}

.comparison-divider {
    width: 2px;
    background: var(--color-border);
}

.principle-block {
    text-align: center;
    padding: var(--spacing-lg);
}

.principle-statement {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    line-height: 1.6;
    color: var(--color-text);
    position: relative;
    padding-left: 30px;
}

.principle-statement::before {
    content: '"';
    position: absolute;
    left: -10px;
    top: -20px;
    font-size: 4rem;
    color: var(--color-highlight);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.principle-statement .emphasis {
    color: var(--color-highlight);
    font-weight: 600;
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.category-card {
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border: 1px solid var(--color-highlight-subtle);
    border-radius: 8px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px transparent;
    transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, opacity 0.6s ease !important;
}


.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-highlight);
    box-shadow: 0 20px 50px var(--color-highlight-glow-soft);
}

.category-card:hover::before {
    opacity: 1;
}

.category-image {
    width: calc(100% + var(--spacing-md) * 2);
    height: 200px;
    margin: calc(var(--spacing-md) * -1) calc(var(--spacing-md) * -1) 0 calc(var(--spacing-md) * -1);
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    position: relative;
    background: var(--color-bg-subtle);
}

.category-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--color-glass-overlay));
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-image::after {
    opacity: 0.5;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.category-card:hover .category-image img {
    transform: scale(1.08);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    color: var(--color-accent);
}

.category-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: var(--spacing-md);
}

.category-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    color: var(--color-highlight);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid var(--color-highlight);
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.category-button:hover {
    background: var(--color-highlight);
    color: var(--color-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--color-highlight-glow);
}

/* Contact Section */
.contact-section {
    background: var(--color-bg-elevated);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--spacing-md);
}

.contact-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.success-message {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-highlight);
    border-radius: 8px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md) auto;
    background: var(--color-highlight);
    color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    box-shadow: 0 0 30px var(--color-highlight-glow);
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-message h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--color-highlight);
    margin-bottom: var(--spacing-sm);
}

.success-message p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-text-muted);
    line-height: 1.6;
}

.form-group {
    text-align: left;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: var(--color-text);
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-highlight);
    background: var(--color-glass-dark);
    box-shadow: 0 0 0 3px var(--color-highlight-subtle);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.footer {
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: var(--spacing-lg) 0 var(--spacing-md) 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-highlight), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    align-items: start;
}

.footer-brand {
    max-width: 400px;
}

.footer-tagline {
    color: var(--color-text-muted);
    margin-top: var(--spacing-xs);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-info h4,
.footer-links h4 {
    font-size: 1rem;
    color: var(--color-highlight);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-info p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

.footer-info a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: var(--color-highlight);
}

.footer-small {
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .hero-image img {
        animation: none;
        transform: scale(1);
    }

    .solution-flow {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .comparison {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .comparison-divider {
        display: none;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-content {
        flex-direction: column;
        height: auto;
        padding: 1rem 0;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .hero-image {
        order: -1;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .footer-brand {
        max-width: 100%;
    }
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0 0 0;
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--color-border);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 168, 51, 0.1), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-highlight);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-mono);
    text-shadow: 0 0 20px var(--color-highlight-glow);
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Fade-in animations */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--color-highlight);
    color: var(--color-bg);
}

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--color-highlight);
    outline-offset: 4px;
}
