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

/* Ensure the HTML 'hidden' attribute always wins over component styles */
[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Unbounded', system-ui, -apple-system, sans-serif;
    background-color: #000000;
    color: #fafafa;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Default link styling (prevents iOS/desktop default blue/purple look)
   Component links (buttons/cards/nav/footer) override this later. */
a {
    color: #60a5fa;
    text-decoration: underline;
    text-decoration-color: rgba(96, 165, 250, 0.45);
    text-underline-offset: 3px;
    -webkit-tap-highlight-color: transparent;
}

a:hover {
    color: #93c5fd;
    text-decoration-color: rgba(147, 197, 253, 0.55);
}

a:visited {
    color: #a78bfa;
    text-decoration-color: rgba(167, 139, 250, 0.45);
}

a:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.85);
    outline-offset: 3px;
    border-radius: 10px;
}

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

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: calc(1rem + env(safe-area-inset-left));
    padding-right: calc(1rem + env(safe-area-inset-right));
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
}

#header.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #171717;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    gap: 0.75rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #ea580c 0%, #9333ea 100%);
    color: white;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-desktop a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-desktop a:hover {
    color: white;
}

@media (min-width: 768px) {
    .header-content {
        height: 5rem;
    }
    
    .nav-desktop {
        display: flex;
    }
}

/* Mobile menu toggle */
.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid #262626;
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    cursor: pointer;
    flex: 0 0 auto;
}

.nav-toggle:hover {
    border-color: #404040;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 80;
}

.nav-mobile {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: flex;
    justify-content: flex-end;
}

.nav-mobile-panel {
    width: min(420px, 92vw);
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    border-left: 1px solid #171717;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 0.25rem 0.75rem;
    border-bottom: 1px solid #171717;
}

.nav-mobile-title {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid #262626;
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    cursor: pointer;
}

.nav-close:hover {
    border-color: #404040;
}

.nav-mobile a:not(.nav-mobile-cta) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid #171717;
    background: rgba(0, 0, 0, 0.35);
    text-decoration: none;
    color: #ffffff;
}

.nav-mobile a:not(.nav-mobile-cta):hover {
    border-color: #404040;
}

.nav-mobile a:not(.nav-mobile-cta)::after {
    content: "→";
    opacity: 0.65;
}

.nav-mobile .nav-mobile-cta {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.nav-mobile .nav-mobile-cta::after {
    content: none;
}

/* Divider inside mobile menu */
.nav-divider {
    height: 1px;
    background: #171717;
    margin: 0.25rem 0.25rem;
}

/* Header CTA: shorter text on small screens */
.btn-text-short { display: none; }
@media (max-width: 420px) {
    .btn-text-long { display: none; }
    .btn-text-short { display: inline; }
    .btn-sm {
        height: 2.25rem;
        padding: 0 0.9rem;
        font-size: 0.8125rem;
    }


    /* Mobile header fit: prevent CTA from clipping */
    .header-content {
        gap: 0.5rem;
    }

    .logo-text {
        font-size: 1.125rem;
    }

    .logo-icon {
        width: 2.25rem;
        height: 2.25rem;
    }

}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 9999px;
    white-space: nowrap;
}

/* Ensure button text stays white even for visited links
   (prevents default a:visited purple from overriding). */
a.btn,
a.btn:visited,
a.btn:hover,
a.btn:active,
a.btn:focus-visible {
    color: #ffffff;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(90deg, #ea580c 0%, #9333ea 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #f97316 0%, #a855f7 100%);
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
}

.btn-sm {
    height: 2.5rem;
    padding: 0 1.5rem;
    font-size: 0.875rem;
}

.btn-lg {
    height: 3rem;
    padding: 0 1.5rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .btn-lg {
        height: 3.5rem;
        padding: 0 2rem;
        font-size: 1rem;
    }
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

/* Main Content */
.main-content {
    min-height: 100vh;
    background-color: #000000;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background-color: #000000;
    padding: 6rem 0 5rem;
}

@media (min-width: 768px) {
    .hero {
        padding: 8rem 0 8rem;
    }
}

/* Hero Background Effects */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, #1a1a1a 1px, transparent 1px),
        linear-gradient(to bottom, #1a1a1a 1px, transparent 1px);
    background-size: 4rem 4rem;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 60%, transparent 100%);
}

.hero-gradient-1 {
    position: absolute;
    left: 20%;
    top: 10%;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.4) 0%, rgba(236, 72, 153, 0.3) 50%, rgba(147, 51, 234, 0.4) 100%);
    filter: blur(80px);
    pointer-events: none;
}

.hero-gradient-2 {
    position: absolute;
    right: 15%;
    top: 20%;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(99, 102, 241, 0.3) 50%, rgba(147, 51, 234, 0.4) 100%);
    filter: blur(80px);
    pointer-events: none;
}

.hero-gradient-3 {
    position: absolute;
    left: 10%;
    bottom: 10%;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.4) 0%, rgba(217, 70, 239, 0.3) 50%, rgba(236, 72, 153, 0.4) 100%);
    filter: blur(80px);
    pointer-events: none;
}

@media (min-width: 768px) {
    .hero-gradient-1 {
        width: 37.5rem;
        height: 37.5rem;
    }
    
    .hero-gradient-2 {
        width: 31.25rem;
        height: 31.25rem;
    }
    
    .hero-gradient-3 {
        width: 28rem;
        height: 28rem;
    }
}

.hero-line-top {
    position: absolute;
    left: 50%;
    top: 0;
    width: 50rem;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent 0%, rgba(249, 115, 22, 0.5) 50%, transparent 100%);
}

.hero-line-left {
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 50rem;
    transform: translateY(-50%);
    background: linear-gradient(180deg, transparent 0%, rgba(147, 51, 234, 0.3) 50%, transparent 100%);
}

.hero-line-right {
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 50rem;
    transform: translateY(-50%);
    background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.3) 50%, transparent 100%);
}

.hero-container {
    position: relative;
}

.hero-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #a3a3a3;
    background-color: rgba(23, 23, 23, 0.5);
    border: 1px solid #262626;
    border-radius: 9999px;
}

@media (min-width: 640px) {
    .hero-badge {
        margin-bottom: 1.5rem;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

.hero-title {
    margin-bottom: 1rem;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: white;
}

@media (min-width: 640px) {
    .hero-title {
        margin-bottom: 1.5rem;
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.gradient-text {
    background: linear-gradient(90deg, #f97316 0%, #9333ea 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #d4d4d4;
}

@media (min-width: 640px) {
    .hero-subtitle {
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-description {
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #a3a3a3;
}

@media (min-width: 640px) {
    .hero-description {
        margin-bottom: 3rem;
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.desktop-break {
    display: none;
}

@media (min-width: 640px) {
    .desktop-break {
        display: block;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-cta .btn {
    width: 100%;
}

@media (min-width: 640px) {
    .hero-cta .btn {
        width: auto;
    }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 5rem;
    }
}

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

.stat-card {
    padding: 1.25rem;
    text-align: center;
    background-color: rgba(23, 23, 23, 0.5);
    border: 1px solid #262626;
    border-radius: 0.75rem;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #404040;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

@media (min-width: 640px) {
    .stat-card {
        padding: 1.5rem;
    }
}

.stat-icon {
    margin: 0 auto 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    color: #a3a3a3;
}

@media (min-width: 640px) {
    .stat-icon {
        margin-bottom: 0.75rem;
        width: 2rem;
        height: 2rem;
    }
}

.stat-label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #737373;
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 0.875rem;
    }
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
}

@media (min-width: 640px) {
    .stat-value {
        font-size: 2.25rem;
    }
}

/* Features Section */
.features {
    background-color: #000000;
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .features {
        padding: 6rem 0;
    }
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #737373;
}

@media (min-width: 640px) {
    .section-badge {
        font-size: 0.875rem;
    }
}

.badge-icon {
    color: #ea580c;
}

.section-title {
    margin-bottom: 1rem;
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: white;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1rem;
    color: #a3a3a3;
}

@media (min-width: 640px) {
    .section-description {
        font-size: 1.125rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .features-grid {
        margin-top: 3rem;
        margin-bottom: 4rem;
    }
}

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

.feature-card {
    position: relative;
    overflow: hidden;
    background-color: rgba(23, 23, 23, 0.5);
    border: 1px solid #262626;
    border-radius: 1rem;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

/* Make feature cards clickable without default link styling */
.feature-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.feature-card--link:hover,
.feature-card--link:visited {
    color: inherit;
}

.feature-card:hover {
    border-color: #404040;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

.feature-gradient {
    position: absolute;
    left: 0;
    top: 0;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
}

@media (min-width: 640px) {
    .feature-gradient {
        width: 10rem;
        height: 10rem;
    }
}

.gradient-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.3) 0%, rgba(236, 72, 153, 0.2) 50%, transparent 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(99, 102, 241, 0.2) 50%, transparent 100%);
}

.gradient-purple {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3) 0%, rgba(217, 70, 239, 0.2) 50%, transparent 100%);
}

.feature-content {
    position: relative;
    padding: 1.5rem;
}

@media (min-width: 640px) {
    .feature-content {
        padding: 2rem;
    }
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    background-color: #262626;
    border-radius: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #ea580c 0%, #9333ea 100%);
}

@media (min-width: 640px) {
    .feature-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
}

.feature-title {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

@media (min-width: 640px) {
    .feature-title {
        margin-bottom: 0.75rem;
        font-size: 1.25rem;
    }
}

.feature-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #a3a3a3;
}

@media (min-width: 640px) {
    .feature-description {
        font-size: 1rem;
    }
}

/* Technologies */
.technologies {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .technologies {
        gap: 0.75rem;
    }
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #d4d4d4;
    background-color: rgba(23, 23, 23, 0.5);
    border: 1px solid #262626;
    border-radius: 9999px;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background-color: #262626;
    border-color: rgba(234, 88, 12, 0.5);
    color: white;
}

@media (min-width: 640px) {
    .tech-badge {
        gap: 0.5rem;
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* Servers Section */
.servers {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .servers {
        padding: 6rem 0;
    }
}

.servers .section-header {
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .servers .section-header {
        margin-bottom: 4rem;
    }
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.server-card {
    background-color: rgba(23, 23, 23, 0.5);
    border: 1px solid #262626;
    border-radius: 0.75rem;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    width: 100%;
}

/* Make server cards clickable without default link styling */
.server-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.server-card--link:hover,
.server-card--link:visited {
    color: inherit;
}

.server-card:hover {
    border-color: #404040;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

.server-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.5rem;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .server-header {
        padding: 2rem;
    }
}

.server-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

@media (min-width: 640px) {
    .server-info {
        gap: 0.75rem;
    }
}

.server-flag {
    font-size: 1.875rem;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .server-flag {
        font-size: 2.25rem;
    }
}

.server-info > div {
    flex: 1;
    min-width: 0;
}

.server-country {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 640px) {
    .server-country {
        font-size: 1.25rem;
    }
}

.server-city {
    font-size: 0.75rem;
    color: #a3a3a3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 640px) {
    .server-city {
        font-size: 0.875rem;
    }
}

.server-status {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.125rem 0.5rem;
    font-size: 0.625rem;
    font-weight: 500;
    color: #4ade80;
    background-color: rgba(20, 83, 45, 0.5);
    border-radius: 9999px;
    flex-shrink: 0;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .server-status {
        gap: 0.25rem;
        padding: 0.25rem 0.75rem;
        font-size: 0.75rem;
    }
}

.status-dot {
    width: 0.25rem;
    height: 0.25rem;
    background-color: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .status-dot {
        width: 0.375rem;
        height: 0.375rem;
    }
}

.server-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem 1.25rem;
    border-top: 1px solid #262626;
}

@media (min-width: 640px) {
    .server-stats {
        gap: 0.75rem;
        padding: 1rem 1.5rem 1.5rem;
    }
}

.server-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
}

@media (min-width: 640px) {
    .server-stat {
        font-size: 0.875rem;
    }
}

.server-stat .stat-label {
    margin-bottom: 0;
    font-size: inherit;
    text-transform: none;
    letter-spacing: normal;
    color: #737373;
}

.server-stat .stat-value {
    font-size: inherit;
    font-weight: 600;
    color: white;
}

/* SEO Content Section */
.seo-content {
    background-color: #000000;
    padding: 4rem 0;
}

.seo-content-wrapper {
    max-width: 56rem;
    margin: 0 auto;
}

.seo-title {
    margin-bottom: 1.5rem;
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
}

.seo-text {
    color: #a3a3a3;
    line-height: 1.6;
}

.seo-text p {
    margin-bottom: 1.5rem;
}

.seo-subtitle {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.seo-link {
    color: #ea580c;
    text-decoration: underline;
    transition: color 0.2s;
}

.seo-link:hover {
    color: #f97316;
}

.seo-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.seo-list li {
    margin-bottom: 0.5rem;
}

.keywords-box {
    margin-top: 2rem;
    padding: 2rem;
    background-color: rgba(23, 23, 23, 0.5);
    border: 1px solid #262626;
    border-radius: 1rem;
    backdrop-filter: blur(16px);
}

.keywords-title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.keyword {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #d4d4d4;
    background-color: #171717;
    border: 1px solid #262626;
    border-radius: 9999px;
}

/* FAQ Section */
.faq {
    background-color: #000000;
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .faq {
        padding: 6rem 0;
    }
}

.faq .section-header {
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .faq .section-header {
        margin-bottom: 4rem;
    }
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: rgba(23, 23, 23, 0.5);
    border: 1px solid #262626;
    border-radius: 1rem;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: #404040;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

.faq-item.active {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.5rem;
    text-align: left;
    font-family: 'Unbounded', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

@media (min-width: 640px) {
    .faq-question {
        padding: 1.5rem;
        font-size: 1.125rem;
    }
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    font-family: 'Unbounded', system-ui, -apple-system, sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #a3a3a3;
}

/* Keep links inside FAQ readable and prevent default visited purple */
.faq-answer-content a {
    color: #93c5fd;
    text-decoration-color: rgba(147, 197, 253, 0.55);
}

.faq-answer-content a:visited {
    color: #93c5fd;
}

@media (min-width: 640px) {
    .faq-answer-content {
        font-size: 1rem;
    }
}

/* CTA Section */
.cta {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 50%, #0a0a0a 100%);
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .cta {
        padding: 6rem 0;
    }
}

.cta-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    margin-bottom: 1rem;
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .cta-title {
        margin-bottom: 1.5rem;
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-description {
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #a3a3a3;
}

@media (min-width: 640px) {
    .cta-description {
        margin-bottom: 2.5rem;
        font-size: 1.125rem;
    }
}

.cta-content .btn {
    width: 100%;
}

@media (min-width: 640px) {
    .cta-content .btn {
        width: auto;
    }
}

/* Footer */
.footer {
    background-color: #000000;
    border-top: 1px solid #171717;
    padding: 2rem 0;
}

@media (min-width: 640px) {
    .footer {
        padding: 3rem 0;
    }
}

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

@media (min-width: 640px) {
    .footer-grid {
        gap: 3rem;
        margin-bottom: 3rem;
    }
}

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

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .footer-logo {
        margin-bottom: 1rem;
    }
}

.footer-logo .logo-icon {
    width: 2.25rem;
    height: 2.25rem;
}

@media (min-width: 640px) {
    .footer-logo .logo-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.footer-logo .logo-text {
    font-size: 1.125rem;
}

@media (min-width: 640px) {
    .footer-logo .logo-text {
        font-size: 1.25rem;
    }
}

.footer-description {
    font-size: 0.75rem;
    line-height: 1.6;
    color: #a3a3a3;
}

@media (min-width: 640px) {
    .footer-description {
        font-size: 0.875rem;
    }
}

.footer-note {
    margin-top: 0.5rem;
    font-size: 0.625rem;
    color: #525252;
}

@media (min-width: 640px) {
    .footer-note {
        margin-top: 0.75rem;
        font-size: 0.75rem;
    }
}

.footer-title {
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

@media (min-width: 640px) {
    .footer-title {
        margin-bottom: 1rem;
        font-size: 0.875rem;
    }
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
}

@media (min-width: 640px) {
    .footer-links {
        gap: 0.75rem;
    }
}

.footer-links a {
    font-size: 0.75rem;
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

@media (min-width: 640px) {
    .footer-links a {
        font-size: 0.875rem;
    }
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #171717;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        padding-top: 2rem;
    }
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #525252;
}

@media (min-width: 640px) {
    .footer-bottom p {
        font-size: 0.875rem;
    }
}


/* ==========================
   Multi-page layout additions
   ========================== */

.hero--compact {
    padding-bottom: 4rem;
}

.btn-ghost {
    background: transparent;
    color: #ffffff;
    border: 1px solid #262626;
}

.btn-ghost:hover {
    border-color: #404040;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.06);
}

.quick-steps {
    margin-top: 1.25rem;
    display: grid;
    gap: 0.75rem;
}

.quick-step {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.9rem 1rem;
    border: 1px solid #171717;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 1rem;
}

.qs-num {
    display: inline-flex;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: linear-gradient(90deg, #ea580c 0%, #9333ea 100%);
    color: #fff;
    flex: 0 0 auto;
}

.stats-grid--mini {
    margin-top: 1.25rem;
}

.stat-card--link {
    text-decoration: none;
    color: inherit;
}

.stat-card--link:hover {
    border-color: #404040;
}

.stat-hint {
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: #a3a3a3;
}

.page-hero {
    padding: 7rem 0 2.5rem;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(147, 51, 234, 0.22), rgba(0,0,0,0) 65%);
    border-bottom: 1px solid #171717;
}

.page-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-top: 0.75rem;
}

@media (min-width: 768px) {
    .page-title { font-size: 2.75rem; }
}

.page-subtitle {
    margin-top: 0.75rem;
    color: #d4d4d4;
    max-width: 56rem;
}

.page-cta {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: #a3a3a3;
}

.breadcrumbs a {
    color: #a3a3a3;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #ffffff;
}

.page-section {
    padding: 2.5rem 0;
}

.page-section--muted {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid #171717;
    border-bottom: 1px solid #171717;
}

.section-header--left {
    text-align: left;
    align-items: flex-start;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: 1.6fr 0.8fr;
        gap: 2rem;
        align-items: start;
    }
}

.content-article {
    background: rgba(0,0,0,0.35);
    border: 1px solid #171717;
    border-radius: 1.25rem;
    padding: 1.5rem;
}

.content-article--single {
    max-width: 58rem;
}

.content-article h2 {
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 800;
}

.content-article h2:first-child { margin-top: 0; }

.content-article h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.content-article p {
    color: #e5e5e5;
    margin: 0.6rem 0;
}

/* Inline links inside articles */
.content-article a {
    color: #93c5fd;
    text-decoration: underline;
    text-decoration-color: rgba(147, 197, 253, 0.55);
    text-underline-offset: 3px;
}

.content-article a:hover {
    color: #bfdbfe;
    text-decoration-color: rgba(191, 219, 254, 0.6);
}

.link-list {
    list-style: none;
    margin: 0.9rem 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.link-list li { margin: 0; }

.link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1rem;
    border-radius: 1.1rem;
    border: 1px solid #171717;
    background: rgba(0,0,0,0.35);
    color: #ffffff;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.link-list a::after {
    content: "→";
    opacity: 0.65;
    margin-left: 0.75rem;
    flex: 0 0 auto;
}

.link-list a:hover {
    border-color: #404040;
    transform: translateY(-1px);
}

.checklist {
    margin: 0.75rem 0 0.75rem 1.1rem;
}

.checklist li {
    margin: 0.4rem 0;
}

.steps {
    margin: 0.75rem 0 0.75rem 1.1rem;
}

.steps li { margin: 0.4rem 0; }

.callout {
    margin: 1rem 0;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid #262626;
    background: rgba(255,255,255,0.03);
    color: #e5e5e5;
}

.content-aside {
    position: sticky;
    top: 6.25rem;
}

.aside-card {
    background: rgba(0,0,0,0.35);
    border: 1px solid #171717;
    border-radius: 1.25rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.aside-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.aside-links {
    list-style: none;
    padding-left: 0;
}

.aside-links li { margin: 0.45rem 0; }

.aside-links a {
    color: #d4d4d4;
    text-decoration: none;
}

.aside-links a:hover { color: #ffffff; }

.aside-steps { margin-left: 1.1rem; }

.content-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.25rem;
}

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

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

.content-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid #171717;
    border-radius: 1.25rem;
    padding: 1.25rem;
    background: rgba(0,0,0,0.35);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.content-card:hover {
    border-color: #404040;
    transform: translateY(-2px);
}

.content-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.content-card p { color: #d4d4d4; }

.mini-faq {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

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

.mini-faq-item {
    border: 1px solid #171717;
    border-radius: 1.25rem;
    padding: 1.25rem;
    background: rgba(0,0,0,0.35);
}

.mini-faq-item h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.mini-faq-item p { color: #d4d4d4; }

.faq-list--accordion .faq-item {
    border: 1px solid #171717;
    border-radius: 1.25rem;
    overflow: hidden;
    background: rgba(0,0,0,0.35);
    margin-bottom: 0.75rem;
}

.faq-list--accordion .faq-question {
    width: 100%;
    text-align: left;
    padding: 1rem 1.1rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.faq-list--accordion .faq-answer {
    display: none;
    padding: 0 1.1rem 1rem;
    color: #d4d4d4;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-row {
    border: 1px solid #171717;
    border-radius: 1.25rem;
    padding: 1.1rem;
    background: rgba(0,0,0,0.35);
    margin: 0.75rem 0;
}



@media (max-width: 360px) {
    .btn-sm {
        padding: 0 0.75rem;
        font-size: 0.78rem;
    }

    .logo-text {
        font-size: 1.02rem;
    }
}
