/* ==================== CSS Variables ==================== */
:root {
    --background: 220 20% 4%;
    --foreground: 0 0% 98%;
    --card: 220 20% 8%;
    --card-foreground: 0 0% 98%;
    --primary: 350 85% 55%;
    --primary-foreground: 0 0% 100%;
    --secondary: 168 70% 45%;
    --secondary-foreground: 0 0% 100%;
    --muted: 220 15% 15%;
    --muted-foreground: 220 10% 60%;
    --accent: 168 70% 45%;
    --border: 220 15% 18%;
    --destructive: 0 84% 60%;
    --radius: 0.75rem;

    --gradient-ruby: linear-gradient(135deg, hsl(350 85% 55%) 0%, hsl(330 80% 45%) 50%, hsl(280 70% 40%) 100%);
    --gradient-teal: linear-gradient(135deg, hsl(168 70% 45%) 0%, hsl(180 60% 35%) 100%);
    --shadow-ruby: 0 20px 60px -15px hsl(350 85% 55% / 0.3);
    --shadow-teal: 0 20px 60px -15px hsl(168 70% 45% / 0.3);
}

/* ==================== Reset & Base ==================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: hsl(var(--primary) / 0.3);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== Utilities ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gradient-text {
    background: var(--gradient-ruby);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-teal {
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: hsl(var(--card) / 0.5);
    backdrop-filter: blur(24px);
    border: 1px solid hsl(var(--border) / 0.5);
    border-radius: var(--radius);
}

.glow-ruby {
    box-shadow: var(--shadow-ruby);
}

.glow-teal {
    box-shadow: var(--shadow-teal);
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: inherit;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero {
    background: var(--gradient-ruby);
    color: hsl(var(--primary-foreground));
    box-shadow: 0 10px 30px -10px hsl(var(--primary) / 0.5);
    border: 1px solid hsl(var(--primary) / 0.2);
}

.btn-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px hsl(var(--primary) / 0.5);
}

.btn-glass {
    background: hsl(var(--card) / 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid hsl(var(--border) / 0.5);
    color: hsl(var(--foreground));
}

.btn-glass:hover {
    background: hsl(var(--card) / 0.5);
    border-color: hsl(var(--border));
}

.btn-teal {
    background: var(--gradient-teal);
    color: hsl(var(--secondary-foreground));
    box-shadow: 0 10px 30px -10px hsl(var(--secondary) / 0.5);
}

.btn-teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px hsl(var(--secondary) / 0.5);
}

.btn-ghost {
    background: transparent;
    color: hsl(var(--muted-foreground));
}

.btn-ghost:hover {
    background: hsl(var(--muted) / 0.5);
    color: hsl(var(--foreground));
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
}

/* ==================== Navigation ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: hsl(var(--background) / 0.8);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: var(--gradient-ruby);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: hsl(var(--primary-foreground));
    box-shadow: 0 4px 15px -3px hsl(var(--primary) / 0.4);
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: hsl(var(--foreground));
    background: hsl(var(--muted) / 0.5);
}

.nav-cta {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .nav-cta {
        display: flex;
    }
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    color: hsl(var(--foreground));
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid hsl(var(--border) / 0.5);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu .nav-link {
    display: block;
    padding: 0.75rem 1rem;
}

.mobile-menu-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0 1rem;
}

.mobile-menu-buttons .btn {
    flex: 1;
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
    padding-bottom: 6rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-orb-1 {
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: hsl(var(--primary) / 0.2);
    animation: pulse-slow 4s ease-in-out infinite;
}

.hero-orb-2 {
    bottom: 25%;
    right: 25%;
    width: 20rem;
    height: 20rem;
    background: hsl(var(--secondary) / 0.2);
    animation: pulse-slow 4s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50rem;
    height: 25rem;
    background: radial-gradient(ellipse at center top, hsl(var(--primary) / 0.1), transparent 70%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(hsl(var(--muted-foreground)) 1px, transparent 1px),
        linear-gradient(90deg, hsl(var(--muted-foreground)) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: hsl(var(--muted) / 0.5);
    border: 1px solid hsl(var(--border) / 0.5);
    margin-bottom: 2rem;
    animation: fade-in 0.6s ease-out forwards;
}

.hero-badge i {
    color: hsl(var(--primary));
}

.hero-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fade-in 0.6s ease-out forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: hsl(var(--muted-foreground));
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    animation: fade-in 0.6s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-subtitle strong {
    color: hsl(var(--foreground));
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    animation: fade-in 0.6s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-terminal {
    max-width: 42rem;
    margin: 0 auto;
    animation: fade-in 0.6s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.terminal-window {
    background: hsl(var(--muted));
    border-radius: 0.5rem;
    overflow: hidden;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: hsl(var(--muted) / 0.5);
    border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.terminal-dots {
    display: flex;
    gap: 0.5rem;
}

.terminal-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.terminal-dot.red {
    background: hsl(var(--destructive) / 0.8);
}

.terminal-dot.yellow {
    background: hsl(45 100% 50% / 0.8);
}

.terminal-dot.green {
    background: hsl(120 60% 50% / 0.8);
}

.terminal-title {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    margin-left: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-body {
    padding: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    overflow-x: auto;
}

.terminal-line {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.terminal-prompt {
    color: hsl(var(--secondary));
}

.terminal-command {
    color: hsl(var(--foreground));
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.terminal-command-line {
    color: hsl(var(--foreground));

    overflow-wrap: anywhere;
}

.terminal-output {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

.terminal-arrow {
    color: hsl(var(--primary));
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    animation: fade-in 0.6s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

@media (min-width: 480px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-value {
    font-size: clamp(1.5rem, 4vw, 1.875rem);
    font-weight: 700;
}

.stat-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-top: 0.25rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid hsl(var(--muted-foreground) / 0.3);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.5rem;
    background: hsl(var(--muted-foreground) / 0.5);
    border-radius: 9999px;
}

/* ==================== Features Section ==================== */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: hsl(var(--primary) / 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon.primary {
    background: hsl(var(--primary) / 0.1);
    color: hsl(var(--primary));
}

.feature-icon.secondary {
    background: hsl(var(--secondary) / 0.1);
    color: hsl(var(--secondary));
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* ==================== Setup Section ==================== */
.section-alt {
    background: linear-gradient(180deg, transparent, hsl(var(--muted) / 0.2), transparent);
}

.setup-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.setup-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.setup-tab.active {
    background: var(--gradient-teal);
    color: hsl(var(--secondary-foreground));
}

.code-block {
    max-width: 56rem;
    margin: 0 auto;
}

.code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: hsl(var(--muted) / 0.5);
    border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.code-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.code-desc {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.code-body {
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    overflow-x: hidden;
}

.code-line {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.code-comment {
    color: hsl(var(--muted-foreground) / 0.5);
}

.vps-providers {
    margin-top: 3rem;
    text-align: center;
}

.vps-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.vps-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.vps-item {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: hsl(var(--muted) / 0.5);
    border: 1px solid hsl(var(--border) / 0.5);
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    transition: all 0.2s ease;
}

.vps-item:hover {
    color: hsl(var(--foreground));
    border-color: hsl(var(--border));
}

/* ==================== Portfolio Section ==================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-card {
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    border-color: hsl(var(--primary) / 0.3);
}

.portfolio-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--background)), transparent);
}

.portfolio-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    background: hsl(var(--primary) / 0.9);
    color: hsl(var(--primary-foreground));
    border-radius: 9999px;
    z-index: 1;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-desc {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsl(var(--foreground));
    transition: color 0.2s ease;
}

.portfolio-link:hover {
    color: hsl(var(--primary));
}

/* ==================== Services Section ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: hsl(var(--primary) / 0.3);
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-desc {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 0.5rem;
}

.service-features li i {
    width: 1rem;
    height: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsl(var(--foreground));
    transition: all 0.2s ease;
}

.service-link:hover {
    color: hsl(var(--primary));
}

.service-link i {
    transition: transform 0.2s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ==================== Contact Section ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-info>p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.contact-item-value {
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-item a:hover .contact-item-value {
    color: hsl(var(--primary));
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: hsl(var(--muted));
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--muted-foreground));
    transition: all 0.2s ease;
}

.social-link:hover {
    color: hsl(var(--foreground));
    background: hsl(var(--muted) / 0.8);
}

.contact-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-family: inherit;
    background: hsl(var(--muted) / 0.5);
    border: 1px solid hsl(var(--border) / 0.5);
    border-radius: 0.5rem;
    color: hsl(var(--foreground));
    transition: border-color 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: hsl(var(--muted-foreground));
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
}

.form-textarea {
    resize: none;
    min-height: 8rem;
}

/* ==================== Footer ==================== */
.footer {
    border-top: 1px solid hsl(var(--border) / 0.5);
    background: hsl(var(--muted) / 0.2);
}

.footer-content {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    grid-column: span 2;
}

@media (min-width: 1024px) {
    .footer-brand {
        grid-column: span 1;
    }
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    max-width: 20rem;
    margin-bottom: 1rem;
}

.footer-copyright {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

.footer-links h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: hsl(var(--foreground));
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid hsl(var(--border) / 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-made {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.footer-made i {
    color: hsl(var(--primary));
}

.footer-legal {
    display: flex;
    gap: 1rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: hsl(var(--foreground));
}

/* ==================== Animations ==================== */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-slow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ==================== Background Orbs ==================== */
.section-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.bg-orb-1 {
    top: 50%;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: hsl(var(--primary) / 0.05);
}

.bg-orb-2 {
    top: 25%;
    right: 0;
    width: 20rem;
    height: 20rem;
    background: hsl(var(--secondary) / 0.05);
}