/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./app/sxtools.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';

@theme {
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

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

:root {
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #111111;
    --bg-card: #0d0d0d;
    --bg-card-hover: #1a1a1a;
    --border-primary: #2a2a2a;
    --border-secondary: #333333;
    --border-hover: #555555;
    --text-primary: #f0f0f0;
    --text-secondary: #cccccc;
    --text-tertiary: #999999;
    --text-muted: #777777;
}

html {
    scroll-behavior: smooth;
    background: var(--bg-primary);
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::-moz-selection {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

::selection {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-secondary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-hover); }

a { text-decoration: none; color: inherit; }

.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-bar.scrolled {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-primary);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
    transition: opacity 0.2s;
}

.nav-brand:hover { opacity: 0.8; }

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

.nav-links a {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-radius: 0.5rem;
    transition: all 0.15s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.nav-links form button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-radius: 0.5rem;
    transition: all 0.15s ease;
    font-family: var(--font-sans);
}

.nav-links form button:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.nav-links .nav-usage {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
}

.nav-links .nav-topup {
    font-size: 0.75rem;
    color: #34d399;
    padding: 0.5rem 0.75rem;
}

.nav-links .nav-logout {
    display: inline-block;
}

.nav-links .nav-logout button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-radius: 0.5rem;
    transition: all 0.15s ease;
    font-family: var(--font-sans);
}

.nav-links .nav-logout button:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.nav-lang {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0.5rem 0.75rem;
    font-family: var(--font-mono);
    border: 1px solid var(--border-primary);
    border-radius: 0.5rem;
    transition: all 0.15s ease;
}

.nav-lang:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
}

.nav-menu-label {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: 1px solid var(--border-primary);
    border-radius: 0.5rem;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.25s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 1.5rem 4rem;
}

.grid-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: pulse-slow 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-glow-1 {
    top: 30%; left: 20%;
    width: 500px; height: 500px;
    background: rgba(255, 255, 255, 0.015);
}

.hero-glow-2 {
    bottom: 30%; right: 20%;
    width: 400px; height: 400px;
    background: rgba(255, 255, 255, 0.01);
    animation-delay: 2s;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    text-align: center;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #a1a1a1 50%, #666666 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

.hero-subtitle {
    color: var(--text-primary);
    font-weight: 700;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-tertiary);
    max-width: 42rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

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

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

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

.section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-tertiary);
    max-width: 40rem;
    margin: 0 auto;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.card-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

.tools-grid {
    display: grid;
    gap: 1rem;
}

.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: block;
}

.tool-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.tool-card.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.tool-number {
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-mono);
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.tool-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.tool-desc {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.form-input {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-family: var(--font-mono);
    color: var(--text-primary);
    transition: all 0.2s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--border-hover);
}

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

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

.tool-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tool-option {
    position: relative;
}

.tool-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.tool-option label {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border-primary);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tool-option label:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.tool-option input[type="radio"]:checked + label {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.04);
}

.btn-submit {
    width: 100%;
    padding: 0.875rem;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--bg-primary);
    background: var(--text-primary);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-submit:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.output-section {
    margin-top: 2rem;
}

.output-label {
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-mono);
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.output-column-label {
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-mono);
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.output-image {
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid var(--border-primary);
    background: var(--bg-primary);
}

.output-json {
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 0.5rem;
    padding: 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    overflow: auto;
    max-height: 24rem;
}

.error-box {
    padding: 1rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
    border-radius: 0.5rem;
    color: #ef4444;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

@keyframes pulse-slow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.fade-up {
    opacity: 0;
    animation: fadeUp 0.7s ease-out forwards;
}

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

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }
.delay-9 { animation-delay: 0.9s; }
.delay-10 { animation-delay: 1.0s; }
.delay-11 { animation-delay: 1.1s; }

@media (max-width: 1024px) {
    .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
}

@media (max-width: 768px) {
    .hero { padding: 5rem 1rem 3rem; }
    .hero-title { font-size: clamp(2rem, 12vw, 3rem); }
    .hero-description { font-size: 1rem; }
    .output-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .categories-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .nav-container { padding: 0 1rem; }
    .nav-brand { font-size: 1rem; }
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #0a0a0a;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-primary);
        padding: 0.375rem 0;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.25s ease;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links .nav-menu-label {
        display: none;
    }
    .nav-links a, .nav-links form, .nav-links span {
        display: block;
        width: 100%;
        text-align: left;
        padding: 0.875rem 1.5rem !important;
        font-size: 0.9375rem !important;
        font-weight: 500;
        text-transform: none;
        letter-spacing: 0;
        border-radius: 0;
        color: var(--text-secondary) !important;
        font-family: var(--font-sans) !important;
        border: none;
        border-bottom: 1px solid var(--border-primary);
    }
    .nav-links a:hover, .nav-links form button:hover {
        background: rgba(255, 255, 255, 0.06);
        color: var(--text-primary) !important;
    }
    .nav-links form button {
        display: block;
        width: 100%;
        text-align: left;
        padding: 0.875rem 1.5rem !important;
        font-size: 0.9375rem !important;
        font-weight: 500;
        text-transform: none;
        letter-spacing: 0;
        color: var(--text-secondary) !important;
        border: none;
        border-bottom: 1px solid var(--border-primary);
        border-radius: 0;
        font-family: var(--font-sans) !important;
    }
    .nav-links a:last-of-type, .nav-links form:last-of-type {
        border-bottom: none !important;
    }
    .nav-links span.nav-usage {
        color: var(--text-muted) !important;
        font-weight: 400;
        font-size: 0.8125rem !important;
        border-top: none;
        border-bottom: none;
        margin-top: 0;
    }
    .nav-links .nav-logout {
        display: none !important;
    }
    .nav-links .nav-logout button {
        display: none !important;
    }
    .container { padding: 0 1rem; }
    .hero { padding: 5rem 1rem 3rem; }
    .hero-title { 
        font-size: clamp(1.8rem, 14vw, 2.5rem) !important; 
        letter-spacing: -0.02em;
        margin-bottom: 1rem;
    }
    .hero-description { font-size: 0.875rem; margin-bottom: 1.5rem; }
    .hero-glow-1 { width: 200px; height: 200px; top: 20%; left: 10%; }
    .hero-glow-2 { width: 150px; height: 150px; bottom: 20%; right: 10%; }
    .section-title { font-size: clamp(1.25rem, 6vw, 1.75rem); }
    .section-subtitle { font-size: 0.875rem; }
    .section-header { margin-bottom: 2rem; }
    .categories-section { padding: 3rem 0; }
    .cat-card { padding: 1rem; }
    .cat-number { font-size: 0.6875rem; margin-bottom: 0.5rem; }
    .cat-name { font-size: 0.875rem; }
    .cat-desc { font-size: 0.75rem; }
    .card { padding: 1rem; }
    .card-label { font-size: 0.6875rem; }
    .card-value { font-size: 0.8125rem; }
    .tool-option label { padding: 0.5rem 0.75rem; font-size: 0.6875rem; }
    .form-input { padding: 0.75rem; font-size: 16px; }
    .btn-submit { padding: 0.875rem; font-size: 0.8125rem; }
    .output-grid { grid-template-columns: 1fr; }
    .output-label { font-size: 0.6875rem; }
    .error-box { padding: 0.75rem; font-size: 0.8125rem; }
    .back-link { font-size: 0.6875rem; }
    .dropzone { padding: 1.5rem; }
    .tool-name { font-size: 0.875rem; }
    .tool-desc { font-size: 0.8125rem; }
    #extraParams .form-group { margin-bottom: 1rem; }
    div[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
    .dash-grid { grid-template-columns: 1fr !important; }
    table { font-size: 0.75rem !important; }
    table th, table td { padding: 0.4rem 0.5rem !important; }
}

@media (max-width: 480px) {
    .hero { min-height: 90vh; padding: 4rem 0.75rem 2rem; }
    .container { padding: 0 0.75rem; }
    .nav-container { padding: 0 0.75rem; }
    .nav-links a { padding: 0.35rem 0.5rem; font-size: 0.6875rem; }
    .nav-links form button { padding: 0.35rem 0.5rem; font-size: 0.6875rem !important; }
    .nav-links span { display: none; }
    .hero-title { 
        font-size: clamp(1.5rem, 12vw, 2rem) !important; 
    }    .hero-description { font-size: 0.8125rem; }
    .hero-content { max-width: 100%; }
    .categories-grid { gap: 0.75rem; }
    .tools-grid { gap: 0.75rem; }
    .tool-card { padding: 1rem; }
    .card { padding: 0.875rem; }
    .tool-options { gap: 0.375rem; }
    .tool-option label { padding: 0.4rem 0.6rem; font-size: 0.625rem; }
    .form-group { margin-bottom: 1rem; }
    .form-label { margin-bottom: 0.5rem; font-size: 0.6875rem; }
    .form-input { padding: 0.625rem 0.75rem; }
    .btn-submit { padding: 0.75rem; font-size: 0.75rem; }
    .output-section { margin-top: 1.5rem; }
    .output-json { font-size: 0.6875rem; padding: 0.75rem; max-height: 16rem; }
    .output-image { max-height: 200px; }
    table th, table td { padding: 0.3rem 0.4rem !important; font-size: 0.6875rem !important; }
    .error-box { padding: 0.625rem; font-size: 0.75rem; margin-bottom: 1rem; }
}

.categories-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 960px;
    margin: 0 auto;
}

.cat-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.cat-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.cat-number {
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-mono);
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.cat-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.cat-desc {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.cat-count {
    font-size: 0.6875rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
}

@media (max-width: 640px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

.back-link {
    display: inline-block;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    transition: color 0.15s;
}
.back-link:hover {
    color: var(--text-secondary);
}

.dropzone {
    border: 1px dashed var(--border-primary);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.dropzone:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.03);
}
.dropzone input[type="file"] { display: none; }
#filePreview img, #urlPreviewImage {
    max-height: 200px;
    border-radius: 0.375rem;
    margin: 0 auto;
    display: block;
}
.output-image-wrap {
    border: 1px solid var(--border-primary);
    border-radius: 0.5rem;
    background: var(--bg-primary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.output-image {
    max-width: 100%;
    max-height: 300px;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
}
.output-json {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    overflow: auto;
    max-height: 24rem;
    padding: 1rem;
    white-space: pre-wrap;
    word-break: break-word;
    margin: 0;
}
#urlPreview {
    display: none;
    margin-bottom: 1.5rem;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--border-primary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border: 1px solid var(--border-primary);
    border-radius: 100px;
    font-size: 0.6875rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.stats-bar {
    padding: 4rem 0;
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    background: var(--bg-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.features-section {
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-primary);
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.feature-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

.steps-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.step-number {
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.step-icon {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

.cta-section {
    padding: 6rem 0;
}

.cta-card {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 1rem;
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .stat-value { font-size: 1.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .features-section { padding: 4rem 0; }
    .steps-grid { grid-template-columns: 1fr; max-width: 400px; }
    .steps-section { padding: 4rem 0; }
    .cta-section { padding: 4rem 0; }
    .cta-card { padding: 2rem 1.5rem; }
    .feature-card { padding: 1.5rem; }
}

@media (max-width: 480px) {
    .stats-bar { padding: 3rem 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-value { font-size: 1.25rem; }
    .stat-label { font-size: 0.625rem; }
    .hero-badge { font-size: 0.625rem; padding: 0.375rem 0.875rem; }
    .section-badge { font-size: 0.625rem; padding: 0.25rem 0.75rem; }
}

/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
/* ip specific overrides */
.hero-title{font-size:2.8rem;line-height:1.05}
@media(max-width:700px){.hero-title{font-size:1.9rem}}

.footer-grid{grid-template-columns:1.4fr 1fr 1fr 1fr}
@media(max-width:700px){.footer-grid{grid-template-columns:1fr 1fr !important}}
@media(max-width:480px){.footer-grid{grid-template-columns:1fr !important}}

