/**
 * Omazy CSS Framework
 * Comprehensive styling system with --omazy prefix
 * Based on design guidelines from docs/design-guideline.md
 */

/* ========================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ======================================== */

:root {
    /* Brand Colors */
    --omazy-primary: #3B58FF;
    --omazy-primary-light: #19D6F0;
    --omazy-primary-dark: #2A3FD9;
    --omazy-primary-20: rgba(59, 88, 255, 0.2);
    --omazy-primary-15: rgba(59, 88, 255, 0.15);
    --omazy-primary-08: rgba(59, 88, 255, 0.08);
    
    /* Background Colors */
    --omazy-bg-deep: #050424;
    --omazy-bg-surface: #0A0E45;
    --omazy-bg-card: rgba(10, 14, 69, 0.6);
    
    /* Text Colors */
    --omazy-text-primary: #FFFFFF;
    --omazy-text-secondary: #A8B6FF;
    --omazy-text-muted: rgba(168, 182, 255, 0.6);
    
    /* Border Colors */
    --omazy-border-subtle: rgba(168, 182, 255, 0.1);
    --omazy-border-medium: rgba(168, 182, 255, 0.2);
    --omazy-border-strong: rgba(59, 88, 255, 0.3);
    
    /* Gradients */
    --omazy-gradient-action: linear-gradient(135deg, #3B58FF 0%, #19D6F0 100%);
    --omazy-gradient-ambient: radial-gradient(circle, rgba(59, 88, 255, 0.15) 0%, rgba(5, 4, 36, 0) 70%);
    --omazy-gradient-hero: linear-gradient(180deg, rgba(5, 4, 36, 0) 0%, rgba(5, 4, 36, 0.3) 100%);
    --omazy-gradient-card: linear-gradient(135deg, rgba(59, 88, 255, 0.1) 0%, rgba(25, 214, 240, 0.05) 100%);
    
    /* Typography */
    --omazy-font-main: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --omazy-font-display: "Inter", "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    --omazy-font-mono: "JetBrains Mono", "Fira Code", "Consolas", monospace;
    
    /* Font Sizes */
    --omazy-text-xs: 0.75rem;
    --omazy-text-sm: 0.875rem;
    --omazy-text-base: 1rem;
    --omazy-text-lg: 1.125rem;
    --omazy-text-xl: 1.25rem;
    --omazy-text-2xl: 1.5rem;
    --omazy-text-3xl: 1.875rem;
    --omazy-text-4xl: 2.25rem;
    --omazy-text-5xl: 3rem;
    --omazy-text-6xl: 3.75rem;
    --omazy-text-7xl: 4.5rem;
    --omazy-text-8xl: 5.375rem; /* 86px */
    
    /* Line Heights */
    --omazy-leading-tight: 1.1;
    --omazy-leading-snug: 1.25;
    --omazy-leading-normal: 1.5;
    --omazy-leading-relaxed: 1.625;
    
    /* Letter Spacing */
    --omazy-tracking-tight: -3.8px;
    --omazy-tracking-snug: -1.5px;
    --omazy-tracking-normal: -0.5px;
    --omazy-tracking-wide: 0.2px;
    
    /* Spacing */
    --omazy-space-1: 0.25rem;
    --omazy-space-2: 0.5rem;
    --omazy-space-3: 0.75rem;
    --omazy-space-4: 1rem;
    --omazy-space-5: 1.25rem;
    --omazy-space-6: 1.5rem;
    --omazy-space-8: 2rem;
    --omazy-space-10: 2.5rem;
    --omazy-space-12: 3rem;
    --omazy-space-16: 4rem;
    --omazy-space-20: 5rem;
    --omazy-space-24: 6rem;
    --omazy-space-32: 8rem;
    
    /* Border Radius */
    --omazy-radius-sm: 8px;
    --omazy-radius-md: 12px;
    --omazy-radius-lg: 16px;
    --omazy-radius-xl: 24px;
    --omazy-radius-full: 9999px;
    
    /* Shadows */
    --omazy-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --omazy-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.2);
    --omazy-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.3);
    --omazy-shadow-glow: 0 0 15px rgba(25, 214, 240, 0.4);
    --omazy-shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
    
    /* Transitions */
    --omazy-transition-fast: 150ms ease;
    --omazy-transition-base: 250ms ease;
    --omazy-transition-slow: 350ms ease;
    --omazy-transition-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Z-Index Scale */
    --omazy-z-base: 0;
    --omazy-z-dropdown: 100;
    --omazy-z-sticky: 200;
    --omazy-z-nav: 500;
    --omazy-z-modal: 1000;
    --omazy-z-tooltip: 1100;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--omazy-font-main);
    font-size: var(--omazy-text-base);
    line-height: var(--omazy-leading-normal);
    color: var(--omazy-text-primary);
    background-color: var(--omazy-bg-deep);
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--omazy-transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

.omazy-h1 {
    font-family: var(--omazy-font-display);
    font-size: var(--omazy-text-8xl);
    font-weight: 800;
    line-height: var(--omazy-leading-tight);
    letter-spacing: var(--omazy-tracking-tight);
    color: var(--omazy-text-primary);
}

.omazy-h2 {
    font-family: var(--omazy-font-display);
    font-size: var(--omazy-text-5xl);
    font-weight: 700;
    line-height: var(--omazy-leading-snug);
    letter-spacing: var(--omazy-tracking-snug);
    color: var(--omazy-text-primary);
}

.omazy-h3 {
    font-family: var(--omazy-font-display);
    font-size: var(--omazy-text-2xl);
    font-weight: 600;
    line-height: var(--omazy-leading-snug);
    letter-spacing: var(--omazy-tracking-normal);
    color: var(--omazy-text-primary);
}

.omazy-h4 {
    font-family: var(--omazy-font-main);
    font-size: var(--omazy-text-xl);
    font-weight: 600;
    line-height: var(--omazy-leading-snug);
    color: var(--omazy-text-primary);
}

.omazy-body-large {
    font-family: var(--omazy-font-main);
    font-size: var(--omazy-text-lg);
    line-height: var(--omazy-leading-relaxed);
    color: var(--omazy-text-secondary);
}

.omazy-body {
    font-family: var(--omazy-font-main);
    font-size: var(--omazy-text-base);
    line-height: var(--omazy-leading-relaxed);
    color: var(--omazy-text-secondary);
}

.omazy-body-small {
    font-family: var(--omazy-font-main);
    font-size: var(--omazy-text-sm);
    line-height: var(--omazy-leading-normal);
    color: var(--omazy-text-muted);
}

.omazy-text-gradient {
    background: var(--omazy-gradient-action);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   LAYOUT COMPONENTS
   ======================================== */

.omazy-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--omazy-space-6);
}

.omazy-container-narrow {
    max-width: 960px;
}

.omazy-section {
    padding: var(--omazy-space-24) 0;
    position: relative;
}

.omazy-section-sm {
    padding: var(--omazy-space-16) 0;
}

.omazy-grid {
    display: grid;
    gap: var(--omazy-space-8);
}

.omazy-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.omazy-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.omazy-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.omazy-flex {
    display: flex;
}

.omazy-flex-col {
    flex-direction: column;
}

.omazy-items-center {
    align-items: center;
}

.omazy-justify-center {
    justify-content: center;
}

.omazy-justify-between {
    justify-content: space-between;
}

.omazy-gap-4 {
    gap: var(--omazy-space-4);
}

.omazy-gap-6 {
    gap: var(--omazy-space-6);
}

.omazy-gap-8 {
    gap: var(--omazy-space-8);
}

/* ========================================
   NAVIGATION
   ======================================== */

.omazy-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--omazy-z-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: linear-gradient(180deg, rgba(5, 4, 36, 0.8) 0%, rgba(5, 4, 36, 0.4) 100%);
    border-bottom: 1px solid var(--omazy-border-subtle);
}

.omazy-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 var(--omazy-space-6);
    max-width: 1280px;
    margin: 0 auto;
}

.omazy-nav-logo {
    display: flex;
    align-items: center;
    gap: var(--omazy-space-3);
    font-family: var(--omazy-font-main);
    font-weight: 700;
    font-size: var(--omazy-text-xl);
    letter-spacing: -0.01em;
    transition: opacity var(--omazy-transition-fast);
}

.omazy-nav-logo-text {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    line-height: 1;
}

.omazy-nav-logo-omazy {
    color: #7ef9ff;
    text-shadow:
        0 0 8px rgba(126, 249, 255, 0.65),
        0 0 18px rgba(25, 214, 240, 0.45),
        0 0 32px rgba(59, 88, 255, 0.25);
    animation: omazy-neon-pulse 5s ease-in-out infinite;
}

.omazy-nav-logo-ai {
    background: linear-gradient(120deg, #ff7cf0 0%, #7ef9ff 25%, #7a8dff 50%, #b8ff6a 75%, #ffb86b 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 14px rgba(168, 182, 255, 0.28));
    animation: omazy-logo-spectrum 12s linear infinite;
}

.omazy-nav-logo:hover {
    opacity: 0.85;
}

.omazy-nav-logo img {
    width: 32px;
    height: 32px;
}

.omazy-nav-links {
    display: flex;
    align-items: center;
    gap: var(--omazy-space-8);
}

.omazy-nav-link {
    font-size: var(--omazy-text-sm);
    font-weight: 500;
    color: var(--omazy-text-secondary);
    transition: color var(--omazy-transition-fast);
    position: relative;
}

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

.omazy-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--omazy-gradient-action);
    transition: width var(--omazy-transition-base);
}

.omazy-nav-link:hover::after {
    width: 100%;
}

.omazy-nav-mobile-btn {
    display: none;
    background: none;
    border: 1px solid var(--omazy-border-subtle);
    border-radius: var(--omazy-radius-sm);
    color: var(--omazy-text-primary);
    font-size: var(--omazy-text-lg);
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    transition: all var(--omazy-transition-fast);
}

.omazy-nav-mobile-btn:hover {
    background: var(--omazy-primary-08);
    border-color: var(--omazy-primary-20);
}

/* Mobile menu open state */
.omazy-nav-links.omazy-nav-mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(5, 4, 36, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--omazy-space-6);
    gap: var(--omazy-space-2);
    border-bottom: 1px solid var(--omazy-border-subtle);
    z-index: var(--omazy-z-sticky);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.omazy-nav-links.omazy-nav-mobile-open .omazy-nav-link {
    padding: var(--omazy-space-3) var(--omazy-space-4);
    border-radius: var(--omazy-radius-sm);
    font-size: var(--omazy-text-base);
}

.omazy-nav-links.omazy-nav-mobile-open .omazy-nav-link:hover {
    background: var(--omazy-primary-08);
}

/* ========================================
   BUTTONS
   ======================================== */

.omazy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--omazy-space-2);
    padding: var(--omazy-space-3) var(--omazy-space-6);
    font-family: var(--omazy-font-main);
    font-size: var(--omazy-text-sm);
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: var(--omazy-radius-sm);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    will-change: transform;
}

.omazy-btn:active {
    transform: scale(0.97) !important;
}

.omazy-btn-primary {
    background: var(--omazy-gradient-action);
    color: var(--omazy-text-primary);
    box-shadow: 0 0 20px rgba(59, 88, 255, 0.25);
}

.omazy-btn-primary:hover {
    box-shadow: 0 0 35px rgba(25, 214, 240, 0.4);
    transform: translateY(-2px);
}

.omazy-btn-secondary {
    background: transparent;
    color: var(--omazy-text-primary);
    border: 1px solid var(--omazy-border-medium);
    box-shadow: inset 0 0 0 0 var(--omazy-primary-08);
    transition: all var(--omazy-transition-base), box-shadow var(--omazy-transition-base);
}

.omazy-btn-secondary:hover {
    background: var(--omazy-primary-08);
    border-color: var(--omazy-primary-20);
    transform: translateY(-1px);
}

.omazy-btn-lg {
    padding: var(--omazy-space-4) var(--omazy-space-8);
    font-size: var(--omazy-text-base);
    border-radius: var(--omazy-radius-md);
}

/* ========================================
   CARDS
   ======================================== */

.omazy-card {
    background: var(--omazy-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--omazy-border-subtle);
    border-radius: var(--omazy-radius-lg);
    padding: var(--omazy-space-8);
    transition: all var(--omazy-transition-base);
    position: relative;
    overflow: hidden;
}

.omazy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 88, 255, 0.4), transparent);
    opacity: 0;
    transition: opacity var(--omazy-transition-base);
}

.omazy-card:hover {
    border-color: var(--omazy-border-medium);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(59, 88, 255, 0.1);
    transform: translateY(-4px);
}

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

.omazy-card-featured {
    background: var(--omazy-gradient-card);
    border-color: var(--omazy-primary-20);
}

.omazy-card-featured::before {
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(25, 214, 240, 0.5), transparent);
}

.omazy-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--omazy-primary-08);
    border: 1px solid var(--omazy-primary-20);
    border-radius: var(--omazy-radius-md);
    color: var(--omazy-primary-light);
    font-size: var(--omazy-text-xl);
    margin-bottom: var(--omazy-space-6);
    transition: all var(--omazy-transition-base);
}

.omazy-card:hover .omazy-card-icon {
    background: var(--omazy-primary-15);
    border-color: var(--omazy-primary-20);
    box-shadow: 0 0 16px rgba(25, 214, 240, 0.2);
}

/* ========================================
   FORMS
   ======================================== */

.omazy-input {
    width: 100%;
    padding: var(--omazy-space-3) var(--omazy-space-4);
    background: rgba(10, 14, 69, 0.5);
    border: 1px solid var(--omazy-border-medium);
    border-radius: var(--omazy-radius-sm);
    color: var(--omazy-text-primary);
    font-family: var(--omazy-font-main);
    font-size: var(--omazy-text-base);
    line-height: 1.5;
    transition: all var(--omazy-transition-fast);
    appearance: none;
    -webkit-appearance: none;
}

.omazy-input:hover {
    border-color: var(--omazy-border-strong);
}

.omazy-input:focus {
    outline: none;
    border-color: var(--omazy-primary-light);
    background: rgba(10, 14, 69, 0.8);
    box-shadow: 0 0 0 3px rgba(25, 214, 240, 0.12);
}

.omazy-input::placeholder {
    color: var(--omazy-text-muted);
}

select.omazy-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23A8B6FF' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--omazy-space-4) center;
    padding-right: var(--omazy-space-10);
    cursor: pointer;
}

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

.omazy-label {
    display: block;
    font-size: var(--omazy-text-sm);
    font-weight: 500;
    color: var(--omazy-text-secondary);
    margin-bottom: var(--omazy-space-2);
    letter-spacing: 0.01em;
}

.omazy-form-group {
    margin-bottom: var(--omazy-space-5);
}

/* ========================================
   ANIMATIONS
   ======================================== */

/* Fade In Up */
@keyframes omazy-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In */
@keyframes omazy-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scale In */
@keyframes omazy-scale-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slide In Left */
@keyframes omazy-slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In Right */
@keyframes omazy-slide-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Gradient Shift */
@keyframes omazy-gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Float */
@keyframes omazy-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pulse Glow */
@keyframes omazy-pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 88, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(25, 214, 240, 0.5);
    }
}

@keyframes omazy-neon-pulse {
    0%, 100% {
        color: #7ef9ff;
        text-shadow:
            0 0 8px rgba(126, 249, 255, 0.65),
            0 0 18px rgba(25, 214, 240, 0.45),
            0 0 32px rgba(59, 88, 255, 0.25);
    }
    50% {
        color: #b4ffff;
        text-shadow:
            0 0 10px rgba(180, 255, 255, 0.95),
            0 0 24px rgba(25, 214, 240, 0.7),
            0 0 44px rgba(59, 88, 255, 0.4);
    }
}

@keyframes omazy-logo-spectrum {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animation Classes */
.omazy-animate-fade-in {
    animation: omazy-fade-in 0.6s ease forwards;
}

.omazy-animate-fade-in-up {
    animation: omazy-fade-in-up 0.6s ease forwards;
}

.omazy-animate-scale-in {
    animation: omazy-scale-in 0.6s ease forwards;
}

.omazy-animate-slide-left {
    animation: omazy-slide-in-left 0.6s ease forwards;
}

.omazy-animate-slide-right {
    animation: omazy-slide-in-right 0.6s ease forwards;
}

/* Animation Delays */
.omazy-delay-1 { animation-delay: 0.1s; }
.omazy-delay-2 { animation-delay: 0.2s; }
.omazy-delay-3 { animation-delay: 0.3s; }
.omazy-delay-4 { animation-delay: 0.4s; }
.omazy-delay-5 { animation-delay: 0.5s; }

/* Initial States for Scroll Animations */
.omazy-scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.omazy-scroll-animate.omazy-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   HERO SECTION
   ======================================== */

.omazy-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: var(--omazy-space-16);
    position: relative;
    overflow: hidden;
}

.omazy-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.omazy-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.omazy-hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--omazy-primary);
    top: -200px;
    right: -100px;
    animation: omazy-float 6s ease-in-out infinite;
}

.omazy-hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--omazy-primary-light);
    bottom: -100px;
    left: -100px;
    animation: omazy-float 8s ease-in-out infinite;
    animation-delay: -2s;
}

.omazy-hero-content {
    max-width: 800px;
}

.omazy-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--omazy-space-2);
    padding: var(--omazy-space-2) var(--omazy-space-4);
    background: var(--omazy-primary-08);
    border: 1px solid var(--omazy-primary-20);
    border-radius: var(--omazy-radius-full);
    font-size: var(--omazy-text-sm);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--omazy-primary-light);
    margin-bottom: var(--omazy-space-6);
    box-shadow: 0 0 20px rgba(59, 88, 255, 0.15);
}

.omazy-hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--omazy-primary-light);
    border-radius: 50%;
    animation: omazy-pulse-glow 2s ease-in-out infinite;
}

.omazy-hero-cta {
    display: flex;
    gap: var(--omazy-space-4);
    margin-top: var(--omazy-space-8);
}

/* ========================================
   FOOTER
   ======================================== */

.omazy-footer {
    background: rgba(5, 4, 36, 0.8);
    border-top: 1px solid var(--omazy-border-subtle);
    padding: var(--omazy-space-16) 0 var(--omazy-space-8);
}

.omazy-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--omazy-space-12);
    margin-bottom: var(--omazy-space-12);
}

.omazy-footer-brand {
    max-width: 300px;
}

.omazy-footer-logo {
    display: flex;
    align-items: center;
    gap: var(--omazy-space-3);
    font-family: var(--omazy-font-main);
    font-weight: 700;
    font-size: var(--omazy-text-xl);
    letter-spacing: -0.01em;
    margin-bottom: var(--omazy-space-4);
    transition: opacity var(--omazy-transition-fast);
}

.omazy-footer-logo:hover {
    opacity: 0.8;
}

.omazy-footer-description {
    color: var(--omazy-text-muted);
    font-size: var(--omazy-text-sm);
    line-height: var(--omazy-leading-relaxed);
}

.omazy-footer-title {
    font-size: var(--omazy-text-sm);
    font-weight: 600;
    color: var(--omazy-text-primary);
    margin-bottom: var(--omazy-space-4);
    text-transform: uppercase;
    letter-spacing: var(--omazy-tracking-wide);
}

.omazy-footer-links {
    list-style: none;
}

.omazy-footer-links li {
    margin-bottom: var(--omazy-space-3);
}

.omazy-footer-links a {
    color: var(--omazy-text-muted);
    font-size: var(--omazy-text-sm);
    transition: color var(--omazy-transition-fast);
}

.omazy-footer-links a:hover {
    color: var(--omazy-primary-light);
}

.omazy-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--omazy-space-8);
    border-top: 1px solid var(--omazy-border-subtle);
}

.omazy-footer-copyright {
    color: var(--omazy-text-muted);
    font-size: var(--omazy-text-sm);
}

.omazy-social-links {
    display: flex;
    gap: var(--omazy-space-4);
}

.omazy-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--omazy-primary-08);
    border: 1px solid var(--omazy-border-subtle);
    border-radius: var(--omazy-radius-full);
    color: var(--omazy-text-secondary);
    transition: all var(--omazy-transition-base);
    font-size: var(--omazy-text-sm);
}

.omazy-social-link:hover {
    background: var(--omazy-primary-20);
    border-color: var(--omazy-border-strong);
    color: var(--omazy-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(59, 88, 255, 0.25);
}

/* Display font utility — for big numeric stats */
.omazy-font-display {
    font-family: var(--omazy-font-display);
}

/* Mono font utility — for code, config snippets */
.omazy-font-mono {
    font-family: var(--omazy-font-mono);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.omazy-text-center { text-align: center; }
.omazy-text-left { text-align: left; }
.omazy-text-right { text-align: right; }

.omazy-mb-1 { margin-bottom: var(--omazy-space-1); }
.omazy-mb-2 { margin-bottom: var(--omazy-space-2); }
.omazy-mb-4 { margin-bottom: var(--omazy-space-4); }
.omazy-mb-6 { margin-bottom: var(--omazy-space-6); }
.omazy-mb-8 { margin-bottom: var(--omazy-space-8); }
.omazy-mb-12 { margin-bottom: var(--omazy-space-12); }

.omazy-mt-4 { margin-top: var(--omazy-space-4); }
.omazy-mt-6 { margin-top: var(--omazy-space-6); }
.omazy-mt-8 { margin-top: var(--omazy-space-8); }
.omazy-mt-12 { margin-top: var(--omazy-space-12); }

.omazy-hidden { display: none; }
.omazy-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .omazy-h1 {
        font-size: var(--omazy-text-6xl);
        letter-spacing: -2px;
    }
    
    .omazy-h2 {
        font-size: var(--omazy-text-4xl);
    }
    
    .omazy-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .omazy-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--omazy-space-8);
    }
}

@media (max-width: 768px) {
    :root {
        --omazy-text-8xl: 3rem;
        --omazy-text-6xl: 2.5rem;
        --omazy-text-5xl: 2rem;
    }
    
    .omazy-h1 {
        font-size: var(--omazy-text-5xl);
        letter-spacing: -1.5px;
    }
    
    .omazy-nav-links {
        display: none;
    }
    
    .omazy-nav-mobile-btn {
        display: inline-flex;
    }

    .omazy-nav-logo {
        font-size: 1.1rem;
    }
    
    .omazy-grid-2,
    .omazy-grid-3,
    .omazy-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .omazy-hero-cta {
        flex-direction: column;
    }
    
    .omazy-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .omazy-footer-bottom {
        flex-direction: column;
        gap: var(--omazy-space-4);
        text-align: center;
    }
    
    .omazy-section {
        padding: var(--omazy-space-16) 0;
    }
}

@media (max-width: 480px) {
    .omazy-container {
        padding: 0 var(--omazy-space-4);
    }
    
    .omazy-card {
        padding: var(--omazy-space-6);
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .omazy-nav-logo-omazy,
    .omazy-nav-logo-ai {
        animation: none !important;
    }
}

/* Focus visible styles */
:focus-visible {
    outline: 2px solid var(--omazy-primary-light);
    outline-offset: 2px;
}

/* Skip to main content link */
.omazy-skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--omazy-primary);
    color: var(--omazy-text-primary);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.omazy-skip-link:focus {
    top: 0;
}
