:root {
    --bg-color: #05050a;
    --text-main: #f0f0f5;
    --text-muted: #8a8a99;
    --accent-1: #4A00E0;
    /* Deep Purple */
    --accent-2: #8E2DE2;
    /* Violet */
    --accent-3: #00e5ff;
    /* Cyan */
    --border-color: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(15, 15, 25, 0.6);
    --font-main: 'Outfit', sans-serif;
    --font-brand: 'Centive', 'Outfit', sans-serif;
}

@font-face {
    font-family: 'Centive';
    src: url('font/Centive.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.muted {
    color: var(--text-muted);
}

/* Noise overlay for texture */
#noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

.security-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: radial-gradient(circle at top, rgba(74, 0, 224, 0.24), transparent 55%),
        radial-gradient(circle at bottom, rgba(0, 229, 255, 0.12), transparent 60%),
        rgba(5, 5, 10, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.security-overlay.hidden {
    display: none;
}

.security-card {
    width: min(860px, 100%);
    border: 1px solid rgba(0, 229, 255, 0.16);
    border-radius: 18px;
    padding: 1.6rem;
    background: rgba(12, 12, 22, 0.72);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.security-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.1rem;
}

.security-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.security-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    object-fit: contain;
    background: transparent;
}

.security-name {
    font-weight: 900;
    letter-spacing: 0.5px;
}

.security-kicker {
    color: var(--text-muted);
    font-weight: 800;
    font-size: 0.9rem;
}

.security-meta {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.95rem;
}

.security-title {
    font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 0.6rem;
}

.security-desc {
    color: var(--text-muted);
    margin-bottom: 1.4rem;
    max-width: 70ch;
}

.security-status {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.18);
    margin-bottom: 1.1rem;
}

.security-spinner {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid rgba(0, 229, 255, 0.25);
    border-top-color: rgba(0, 229, 255, 0.95);
    animation: securitySpin 0.9s linear infinite;
}

.security-status-text {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 800;
}

.security-ready .security-spinner {
    animation: none;
    border-color: rgba(0, 229, 255, 0.7);
    background: rgba(0, 229, 255, 0.15);
}

.security-ready .security-status-text {
    color: rgba(0, 229, 255, 0.95);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.4rem;
}

.security-item {
    display: flex;
    gap: 0.8rem;
    padding: 0.9rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.security-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 0.25rem;
    background: rgba(0, 229, 255, 0.8);
    box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.1);
}

.security-item-title {
    font-weight: 900;
}

.security-item-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.security-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.2rem;
}

.security-actions.is-verifying #security-continue {
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
}

@keyframes securitySpin {
    to {
        transform: rotate(360deg);
    }
}

.security-remember {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-weight: 700;
}

.security-remember input {
    width: 16px;
    height: 16px;
    accent-color: var(--accent-3);
}

.security-foot {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .security-overlay {
        padding: 1.2rem;
    }

    .security-card {
        padding: 1.25rem;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .security-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.btn:focus-visible,
.nav-links a:focus-visible,
.dropdown-link:focus-visible,
button:focus-visible {
    outline: 2px solid rgba(0, 229, 255, 0.6);
    outline-offset: 3px;
}

.btn:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 229, 255, 0.25);
    background: rgba(0, 229, 255, 0.06);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    border-color: transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
}

.btn-ghost {
    background: transparent;
    border-color: rgba(0, 229, 255, 0.25);
    color: var(--accent-3);
}

.btn-ghost:hover {
    background: rgba(0, 229, 255, 0.08);
}

.btn-row {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.copy-area {
    margin-top: 1.2rem;
}

.copy-status {
    min-height: 1.2rem;
    margin-top: 0.6rem;
    color: var(--accent-3);
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.copy-status.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    background: rgba(5, 5, 10, 0.8);
    transition: all 0.3s ease;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-item.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 520px;
    background: rgba(5, 5, 10, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.2rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    display: none;
}

.nav-item.has-dropdown:hover .dropdown-panel {
    display: block;
}

.nav-item.has-dropdown.open .dropdown-panel {
    display: block;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.dropdown-title {
    font-weight: 800;
    letter-spacing: 0.4px;
    color: var(--text-main);
    margin-bottom: 0.6rem;
}

.dropdown-link {
    display: block;
    text-decoration: none;
    color: var(--text-muted);
    padding: 0.45rem 0.5rem;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.dropdown-link:hover {
    color: var(--text-main);
    background: rgba(0, 229, 255, 0.06);
    border-color: rgba(0, 229, 255, 0.15);
}

.dropdown-link:focus-visible {
    outline: 2px solid rgba(0, 229, 255, 0.6);
    outline-offset: 3px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.holo-text {
    font-family: var(--font-brand);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    background-image: linear-gradient(90deg,
            rgba(0, 229, 255, 0.95),
            rgba(142, 45, 226, 0.9),
            rgba(255, 255, 255, 0.95),
            rgba(74, 0, 224, 0.95),
            rgba(0, 229, 255, 0.95));
    background-size: 320% 100%;
    animation: hologramShift 7.5s ease-in-out infinite;
    text-shadow: 0 0 16px rgba(0, 229, 255, 0.12);
}

.holo-text::after {
    content: '';
    position: absolute;
    inset: -8px -14px;
    pointer-events: none;
    border-radius: 14px;
    background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.12) 48%, rgba(0, 229, 255, 0.18) 56%, transparent 70%);
    transform: skewX(-12deg);
    mix-blend-mode: screen;
    opacity: 0.55;
    animation: hologramShimmer 2.6s ease-in-out infinite;
}

.logo {
    font-family: var(--font-brand);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.logo.holo-text {
    display: inline-flex;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-brand);
}

@keyframes hologramShift {
    0% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    50% {
        background-position: 100% 50%;
        filter: hue-rotate(18deg);
    }
    100% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
}

@keyframes hologramShimmer {
    0% {
        opacity: 0.15;
        transform: translateX(-18%) skewX(-12deg);
    }
    40% {
        opacity: 0.65;
    }
    100% {
        opacity: 0.15;
        transform: translateX(18%) skewX(-12deg);
    }
}

.site-logo {
    height: 78px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-3);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-3);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
}

.kicker {
    color: var(--accent-3);
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 52ch;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1rem;
}

.stat-k {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.9rem;
}

.stat-v {
    margin-top: 0.25rem;
    font-weight: 800;
    color: var(--text-main);
}

.card-panel {
    background: rgba(15, 15, 25, 0.7);
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: 18px;
    padding: 1.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.card-panel-title {
    font-weight: 900;
    letter-spacing: 0.6px;
    margin-bottom: 1rem;
}

.card-panel-list {
    display: grid;
    gap: 0.7rem;
}

.card-panel-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-main);
}

.card-panel-item span {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(0, 229, 255, 0.12);
    border: 1px solid rgba(0, 229, 255, 0.18);
    color: var(--accent-3);
    font-weight: 900;
}

.card-panel-note {
    margin-top: 1rem;
    color: var(--text-muted);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glitch-text {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: none;
    background: linear-gradient(90deg, #fff, var(--accent-3));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tech-stack-ticker {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    font-size: 0.9rem;
    color: var(--accent-3);
    letter-spacing: 1px;
    font-weight: 600;
}

.tech-dot {
    width: 4px;
    height: 4px;
    background-color: var(--accent-2);
    border-radius: 50%;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 10px 20px rgba(74, 0, 224, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 229, 255, 0.4);
    background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
}

.cta-button.outline {
    background: transparent;
    border: 1px solid var(--accent-3);
    box-shadow: none;
    color: var(--accent-3);
}

.cta-button.outline:hover {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s infinite alternate;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-1) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-3) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 100px) scale(1.2);
    }
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.section {
    padding: 5rem 0;
}

.section-muted {
    background: linear-gradient(135deg, rgba(15, 15, 25, 0.65), rgba(0, 0, 0, 0.6));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-head {
    margin-bottom: 2rem;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 80ch;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.surface {
    background: rgba(15, 15, 25, 0.62);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.6rem;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.surface-lg {
    padding: 2rem;
}

.surface-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--accent-3);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.4px;
}

.surface-h {
    margin-top: 0.9rem;
    font-size: 1.25rem;
    font-weight: 900;
}

.surface-actions {
    margin-top: 1rem;
}

.link {
    color: var(--accent-3);
    text-decoration: none;
    font-weight: 800;
}

.link:hover {
    text-decoration: underline;
}

.list {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    gap: 0.6rem;
}

.list li {
    color: var(--text-main);
}

.pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.pill {
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--text-main);
    background: rgba(0, 229, 255, 0.06);
    font-weight: 800;
}

.steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.step {
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.2rem;
}

.step-no {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.18);
    color: var(--accent-3);
    font-weight: 900;
}

.step-title {
    font-weight: 900;
}

.step-text {
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.cta-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 22px;
    border: 1px solid rgba(0, 229, 255, 0.18);
    background: linear-gradient(135deg, rgba(74, 0, 224, 0.12), rgba(0, 229, 255, 0.06));
}

.cta-title {
    font-size: 2rem;
    font-weight: 900;
}

.contact-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 22px;
    border: 1px solid var(--border-color);
    background: rgba(15, 15, 25, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.page-hero {
    padding-top: 120px;
}

.page-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
}

.page-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: 0.4px;
}

.page-subtitle {
    margin-top: 0.6rem;
    color: var(--text-muted);
    max-width: 80ch;
}

.hero-kicker {
    color: var(--accent-3);
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.hero-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    width: 100%;
    align-items: start;
}

.hero-panel {
    position: sticky;
    top: 110px;
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.metric {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 0.9rem;
}

.metric-value {
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: 0.2px;
}

.metric-label {
    margin-top: 0.3rem;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.92rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    display: flex;
    flex-direction: column;
    background: rgba(15, 15, 25, 0.62);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.6rem;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.28);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

.pricing-card.featured {
    border-color: rgba(0, 229, 255, 0.35);
    box-shadow: 0 18px 60px rgba(0, 229, 255, 0.08);
}

.pricing-top {
    margin-bottom: 1rem;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--accent-3);
    font-weight: 900;
    font-size: 0.8rem;
    margin-bottom: 0.7rem;
}

.pricing-name {
    font-size: 1.4rem;
    font-weight: 900;
}

.pricing-tag {
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.pricing-features {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    gap: 0.6rem;
}

.pricing-features li {
    color: var(--text-main);
}

.pricing-actions {
    margin-top: auto;
    padding-top: 1.2rem;
}

.table-wrap {
    overflow: auto;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: rgba(15, 15, 25, 0.55);
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 760px;
}

.compare-table th,
.compare-table td {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: top;
}

.compare-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(74, 0, 224, 0.18), rgba(0, 229, 255, 0.08));
    font-weight: 900;
    text-align: left;
}

.compare-table td {
    color: var(--text-main);
}

.compare-table td:first-child {
    color: var(--text-muted);
    font-weight: 800;
    width: 40%;
}

.compare-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.compare-table .compare-group td {
    background: rgba(0, 229, 255, 0.05);
    color: var(--text-main);
    font-weight: 900;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, var(--text-muted));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Expertise / Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card:hover::before {
    transform: translateX(100%);
}

.card-icon {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-3);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Services */
.services-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.services-text {
    flex: 1;
}

.services-text .section-title {
    text-align: left;
}

.services-text p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '>';
    color: var(--accent-3);
    font-weight: 800;
    margin-right: 1rem;
}

.services-visual {
    flex: 1;
    perspective: 1000px;
}

.code-block {
    background: #0f111a;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.code-block:hover {
    transform: rotateY(0) rotateX(0);
}

.code-header {
    background: #1a1c23;
    padding: 10px 15px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
}

.code-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background-color: #ff5f56;
}

.dot.yellow {
    background-color: #ffbd2e;
}

.dot.green {
    background-color: #27c93f;
}

.code-block pre {
    padding: 20px;
    overflow-x: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.keyword {
    color: #c678dd;
}

.class-name {
    color: #e5c07b;
}

.method {
    color: #61afef;
}

.variable {
    color: #e06c75;
}

.string {
    color: #98c379;
}

/* Contact */
.contact-box {
    background: linear-gradient(135deg, rgba(74, 0, 224, 0.1), rgba(0, 229, 255, 0.05));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 5rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.contact-box p {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 1px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Systems Panel */
.systems-section {
    background: linear-gradient(135deg, rgba(15, 15, 25, 0.8), rgba(0, 0, 0, 0.9));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.systems-container {
    display: flex;
    justify-content: center;
}

.system-panel {
    background: var(--card-bg);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 12px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.system-header {
    background: rgba(0, 229, 255, 0.1);
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--accent-3);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.system-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#sys-input,
#sys-output {
    width: 100%;
    background: rgba(5, 5, 10, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-main);
    font-family: monospace;
    font-size: 0.9rem;
    resize: vertical;
    min-height: 120px;
    outline: none;
    transition: border-color 0.3s ease;
}

#sys-input:focus,
#sys-output:focus {
    border-color: var(--accent-3);
}

.system-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.sys-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.sys-btn:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--accent-3);
    color: var(--accent-3);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .services-container {
        flex-direction: column;
    }

    .services-visual {
        width: 100%;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 10, 0.95);
        padding: 2rem;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .dropdown-panel {
        position: static;
        min-width: auto;
        margin-top: 0.8rem;
        padding: 1rem;
        display: none;
    }

    .nav-item.has-dropdown:hover .dropdown-panel {
        display: none;
    }

    .nav-item.has-dropdown.open .dropdown-panel {
        display: block;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .stat-row {
        grid-template-columns: 1fr;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .split-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .cta-panel,
    .contact-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-split {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        position: static;
    }

    .metrics-row {
        grid-template-columns: 1fr;
    }
}