:root {
    --primary: #4F46E5;
    --primary-hover: #4338CA;
    --secondary: #8B5CF6;
    --background: #0F172A;
    --surface: rgba(30, 41, 59, 0.7);
    --surface-border: rgba(255, 255, 255, 0.1);
    --text: #F8FAFC;
    --muted: #94A3B8;
    --glass-blur: blur(12px);
    --font-main: 'Inter', sans-serif;
}

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

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

body {
    font-family: var(--font-main);
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

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

.grid {
    display: grid;
    gap: 2rem;
}

.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 10s infinite ease-in-out alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(79,70,229,0.4) 0%, rgba(0,0,0,0) 70%);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(139,92,246,0.3) 0%, rgba(0,0,0,0) 70%);
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 5%) scale(1.1); }
}

.glass-card {
    background: var(--surface);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--surface-border);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Header */
.header {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--surface-border);
}

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

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text);
    text-transform: lowercase;
}

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

.nav-link {
    color: var(--text);
    font-weight: 500;
}

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

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--surface-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.w-100 {
    width: 100%;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--muted);
    font-size: 1.1rem;
}

/* Hero */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(79, 70, 229, 0.1);
    color: #818cf8;
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.headline {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.highlight {
    background: linear-gradient(135deg, #a78bfa, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    word-break: break-all;
}

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

.hero-ctas {
    display: flex;
    gap: 1rem;
}

.domain-display {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
}

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

.domain-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    word-break: break-all;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
}

.connection-lines {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.line {
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

.node {
    padding: 0.25rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--surface-border);
    border-radius: 1rem;
    font-size: 0.875rem;
}

/* Opportunity */
.opportunity .section-card {
    text-align: center;
    padding: 4rem 2rem;
}

.opportunity h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.opportunity p {
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    font-size: 1.1rem;
}

.microcopy {
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Services */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-card {
    text-align: center;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--muted);
}

/* Benefits */
.benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border-radius: 50%;
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* Agency */
.agency-card {
    padding: 4rem;
}

.agency-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.agency-content p {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.quote-box {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.quote-box blockquote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.quote-box cite {
    color: var(--muted);
}

.specialists {
    font-weight: 600;
    color: var(--primary);
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-list {
    list-style: none;
    margin: 2rem 0;
}

.contact-list li {
    margin-bottom: 0.75rem;
    color: var(--muted);
}

.contact-list li strong {
    color: var(--text);
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-list li:first-child strong {
    margin-top: 0;
}

.services-list-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--surface-border);
    color: var(--muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-form p {
    color: var(--muted);
    margin-bottom: 2rem;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--surface-border);
    padding: 4rem 0 2rem 0;
    background: rgba(15, 23, 42, 0.5);
}

.footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.footer-slogan {
    font-weight: 500;
    color: var(--text) !important;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--text);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--surface-border);
    color: var(--muted);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content, .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .headline {
        font-size: 2.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .agency-card {
        padding: 2rem;
    }
    
    .nav {
        display: none;
    }
}
