/* ==========================================================================
   MATCHA.COM.DE ULTRA HIGH-END DESIGN SYSTEM FOR NYXUS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-code: 'JetBrains Mono', monospace;

    /* Matcha Ultra-Dark Palette */
    --bg-body: #030305;
    --bg-nav: rgba(5, 5, 8, 0.85);
    --bg-card: rgba(12, 11, 18, 0.65);
    --bg-card-hover: rgba(20, 18, 30, 0.85);

    --border-subtle: rgba(255, 255, 255, 0.07);
    --border-glow: rgba(216, 96, 163, 0.4);

    --primary-pink: #d860a3;
    --primary-gradient: linear-gradient(135deg, #d860a3 0%, #a8427f 100%);
    --pink-glow: rgba(216, 96, 163, 0.35);

    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    position: relative;
    background: radial-gradient(circle at 50% 0%, rgba(216, 96, 163, 0.14) 0%, rgba(3, 3, 5, 1) 55%);
    min-height: 100vh;
}

/* Ambient Radial Glow Overlays */
.ambient-glow-top {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 700px;
    background: radial-gradient(ellipse at center, rgba(216, 96, 163, 0.18) 0%, rgba(139, 92, 246, 0.08) 45%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

/* Navbar */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 6%;
    background: var(--bg-nav);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-subtle);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.04em;
    color: #fff;
    text-decoration: none;
}

.brand-mark {
    width: 38px;
    height: 38px;
    background: var(--primary-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 0 25px var(--pink-glow);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: #fff;
}

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

.status-badge-online {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 700;
    color: #34d399;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 12px #10b981;
    animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.8); }
}

.btn-nav-discord {
    padding: 0.55rem 1.35rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-nav-discord:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1250px;
    margin: 0 auto;
    padding: 8rem 2rem 5rem;
    text-align: center;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.4rem;
    background: rgba(216, 96, 163, 0.12);
    border: 1px solid rgba(216, 96, 163, 0.35);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 2rem;
    box-shadow: 0 0 30px rgba(216, 96, 163, 0.2);
}

.hero-main-title {
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #ffffff 40%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub-text {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 780px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.btn-matcha-primary {
    padding: 1.05rem 2.5rem;
    background: var(--primary-gradient);
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 30px var(--pink-glow);
    transition: all 0.2s ease;
}

.btn-matcha-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(216, 96, 163, 0.6);
}

.btn-matcha-glass {
    padding: 1.05rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(12px);
    transition: all 0.2s ease;
}

.btn-matcha-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

/* 3D Floating Menu Preview Frame */
.hero-preview-frame {
    max-width: 1100px;
    margin: 4.5rem auto 0;
    position: relative;
}

.preview-glow-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(216, 96, 163, 0.25) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.preview-screenshot-card {
    position: relative;
    z-index: 10;
    background: #08070d;
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 60px rgba(216, 96, 163, 0.2);
    overflow: hidden;
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.5s ease;
}

.preview-screenshot-card:hover {
    transform: perspective(1000px) rotateX(0deg);
}

.preview-screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Stats Counter Bar */
.matcha-stats-grid {
    max-width: 1100px;
    margin: 6rem auto;
    padding: 2rem 3rem;
    background: rgba(12, 10, 18, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-cell h3 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
}

.stat-cell p {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Interactive Nyxus Menu Simulator Section */
.simulator-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 7rem auto;
    padding: 0 1.5rem;
}

.section-title-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-head h2 {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 0.6rem;
}

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

/* NYXUS MENU EXACT MATCH */
.nyxus-menu-window {
    background: #0b0910;
    border: 1px solid rgba(45, 36, 60, 0.9);
    border-radius: 14px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 50px rgba(216, 96, 163, 0.15);
    overflow: hidden;
    color: #e2e8f0;
    font-size: 0.85rem;
}

.nyxus-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.75rem;
    background: #060508;
    border-bottom: 1px solid rgba(35, 28, 48, 0.8);
}

.nyxus-brand-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.nyxus-brand-badge span {
    color: var(--primary-pink);
}

.nyxus-tabs {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nyxus-tab {
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-pill);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.15s ease;
}

.nyxus-tab:hover {
    color: #fff;
}

.nyxus-tab.active {
    background: var(--primary-pink);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 0 18px rgba(216, 96, 163, 0.5);
}

.nyxus-build-tag {
    font-size: 0.78rem;
    color: var(--text-dim);
    font-family: var(--font-code);
}

.nyxus-body {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 1.25rem;
    padding: 1.25rem;
    min-height: 500px;
    background: #0b0910;
}

.nyxus-sidebar {
    background: rgba(14, 11, 20, 0.9);
    border: 1px solid rgba(30, 24, 42, 0.9);
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.sidebar-group {
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.sidebar-group:hover {
    background: rgba(216, 96, 163, 0.08);
}

.sidebar-group.active {
    background: rgba(216, 96, 163, 0.18);
    border: 1px solid rgba(216, 96, 163, 0.35);
}

.sidebar-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: #fff;
}

.sidebar-subtitle {
    font-size: 0.74rem;
    color: var(--text-dim);
}

.nyxus-card {
    background: #110d1a;
    border: 1px solid rgba(32, 25, 46, 0.9);
    border-radius: 8px;
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.nyxus-card-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #f1f5f9;
    border-bottom: 1px solid rgba(30, 24, 42, 0.8);
    padding-bottom: 0.6rem;
    margin-bottom: 0.2rem;
}

.control-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
    user-select: none;
    color: #e2e8f0;
}

.checkbox-custom {
    width: 17px;
    height: 17px;
    border: 1px solid rgba(216, 96, 163, 0.5);
    border-radius: 3px;
    background: rgba(14, 11, 20, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.checkbox-custom.checked {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    box-shadow: 0 0 10px rgba(216, 96, 163, 0.5);
}

.checkbox-custom.checked::after {
    content: "✓";
    font-size: 11px;
    color: #fff;
    font-weight: 800;
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.slider-input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 3px;
    background: #201a2e;
    outline: none;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-pink);
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary-pink);
}

.dropdown-select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: rgba(16, 13, 24, 0.95);
    border: 1px solid rgba(40, 32, 56, 0.9);
    border-radius: 4px;
    color: #e2e8f0;
    font-size: 0.82rem;
    outline: none;
    cursor: pointer;
}

.esp-preview-box {
    width: 100%;
    height: 340px;
    background: #060508;
    border: 1px solid rgba(216, 96, 163, 0.3);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#espCanvas {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   EXACT 1-TO-1 NYXUS / SLEBERT IN-GAME MENU REPLICA STYLES
   ========================================================================== */

.nyxus-menu-window-exact {
    width: 900px;
    margin: 0 auto;
    background: #0d0b12;
    border: 1px solid rgba(216, 96, 163, 0.4);
    border-radius: 8px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 40px rgba(216, 96, 163, 0.15);
    overflow: hidden;
    color: #a0a0b0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    user-select: none;
}

.nyxus-topbar-exact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    background: #07060a;
    border-bottom: 1px solid #1a1626;
}

.topbar-brand-exact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    color: #ffffff;
}

.topbar-brand-badge-exact {
    background: #d860a3;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 4px;
}

.topbar-tabs-exact {
    display: flex;
    align-items: center;
    gap: 4px;
}

.topbar-tab-exact {
    padding: 4px 14px;
    border-radius: 12px;
    color: #7a7a8a;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.topbar-tab-exact:hover {
    color: #ffffff;
}

.topbar-tab-exact.active {
    background: #d860a3;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 0 12px rgba(216, 96, 163, 0.4);
}

.topbar-build-exact {
    font-size: 11px;
    color: #5a5a6a;
    font-family: 'JetBrains Mono', monospace;
}

/* Menu Body Layout: Sidebar (160px) + Aimbot Main (340px) + Prediction & FOV (340px) */
.nyxus-body-exact {
    display: grid;
    grid-template-columns: 160px 1fr 1fr;
    gap: 12px;
    padding: 12px;
    background: #0d0b12;
    min-height: 520px;
}

/* Sidebar */
.nyxus-sidebar-exact {
    background: #121019;
    border: 1px solid #1e1929;
    border-radius: 6px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-item-exact {
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.sidebar-item-exact:hover {
    background: rgba(216, 96, 163, 0.08);
}

.sidebar-item-exact.active {
    background: #251c33;
    border: 1px solid rgba(216, 96, 163, 0.3);
}

.sidebar-item-exact .item-title {
    font-weight: 700;
    font-size: 12px;
    color: #ffffff;
}

.sidebar-item-exact.inactive .item-title {
    color: #6a6a7a;
    font-weight: 500;
}

.sidebar-item-exact .item-sub {
    font-size: 10px;
    color: #4a4a5a;
}

/* Cards */
.nyxus-card-exact {
    background: #121019;
    border: 1px solid #1e1929;
    border-radius: 6px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nyxus-card-title-exact {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

/* Checkboxes */
.ctrl-row-exact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.chk-label-exact {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #b0b0c0;
}

.chk-box-exact {
    width: 14px;
    height: 14px;
    border: 1px solid rgba(216, 96, 163, 0.6);
    border-radius: 3px;
    background: #121019;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.chk-box-exact.checked {
    background: #d860a3;
    border-color: #d860a3;
    box-shadow: 0 0 8px rgba(216, 96, 163, 0.5);
}

.chk-box-exact.checked::after {
    content: "✓";
    font-size: 10px;
    color: #ffffff;
    font-weight: 900;
}

/* Sliders */
.slider-container-exact {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-left: 22px;
}

.slider-info-exact {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #7a7a8a;
}

.slider-track-exact {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #241e33;
    outline: none;
}

.slider-track-exact::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #d860a3;
    cursor: pointer;
    box-shadow: 0 0 8px #d860a3;
}

/* Dropdowns */
.dropdown-exact {
    margin-left: 22px;
    width: calc(100% - 22px);
    height: 26px;
    padding: 0 8px;
    background: #181424;
    border: 1px solid #262036;
    border-radius: 4px;
    color: #a0a0b0;
    font-size: 11px;
    outline: none;
    cursor: pointer;
}

/* Feature Grid */
.features-grid-wrapper {
    max-width: 1250px;
    margin: 8rem auto;
    padding: 0 1.5rem;
}

.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.matcha-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2.2rem;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.matcha-feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(216, 96, 163, 0.15);
}

.card-icon-badge {
    width: 52px;
    height: 52px;
    background: rgba(216, 96, 163, 0.12);
    border: 1px solid rgba(216, 96, 163, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
}

.matcha-feature-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.matcha-feature-card p {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Pricing Grid */
.pricing-section-wrapper {
    max-width: 1200px;
    margin: 8rem auto;
    padding: 0 1.5rem;
}

.pricing-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--border-glow);
    background: linear-gradient(180deg, rgba(25, 18, 35, 0.85) 0%, rgba(10, 8, 16, 0.95) 100%);
    box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 40px rgba(216, 96, 163, 0.2);
}

.featured-pill {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.35rem 1.1rem;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 15px var(--pink-glow);
}

.plan-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.plan-cost {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.plan-cost span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-feature-list {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.plan-feature-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-feature-list li::before {
    content: "✓";
    color: var(--primary-pink);
    font-weight: 900;
}

/* Toast Container */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    padding: 0.9rem 1.4rem;
    background: rgba(18, 15, 24, 0.95);
    border: 1px solid var(--primary-pink);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(0,0,0,0.7);
    animation: slideIn 0.25s ease forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer */
footer {
    border-top: 1px solid var(--border-subtle);
    padding: 5rem 2rem 3rem;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.92rem;
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
}

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

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE SYSTEM
   ========================================================================== */

@media (max-width: 900px) {
    .nav-bar {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        display: none;
    }

    .hero-wrapper {
        padding: 6.5rem 1.25rem 3.5rem;
    }

    .hero-main-title {
        font-size: 2.6rem;
        letter-spacing: -0.03em;
    }

    .hero-sub-text {
        font-size: 1.05rem;
        padding: 0 0.5rem;
    }

    .preview-screenshot-card {
        transform: none !important;
        border-radius: var(--radius-md);
    }

    .cards-grid-3 {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .matcha-feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 600px) {
    .nav-bar {
        padding: 0.85rem 1rem;
    }

    .brand-logo span {
        font-size: 1.2rem;
    }

    .btn-nav-discord {
        padding: 0.45rem 0.95rem;
        font-size: 0.8rem;
    }

    .hero-wrapper {
        padding: 5.5rem 1rem 3rem;
    }

    .hero-main-title {
        font-size: 2.1rem;
        line-height: 1.15;
    }

    .hero-sub-text {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 0.85rem;
    }

    .btn-matcha-primary,
    .btn-matcha-glass {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .showcase-section,
    .features-grid-wrapper,
    .pricing-section-wrapper {
        margin: 4rem auto;
        padding: 0 1rem;
    }

    .section-head h2,
    .section-title-head h2 {
        font-size: 1.8rem;
    }

    .section-head p,
    .section-title-head p {
        font-size: 0.9rem;
    }

    .pricing-card {
        padding: 1.75rem 1.25rem;
        border-radius: var(--radius-md);
    }

    .plan-title {
        font-size: 1.3rem;
    }

    .plan-cost {
        font-size: 2.6rem;
    }

    .plan-feature-list li {
        font-size: 0.88rem;
    }

    footer {
        padding: 3rem 1rem;
        font-size: 0.82rem;
    }

    footer a {
        display: inline-block;
        margin: 0.3rem 0.5rem;
    }
}
