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

:root {
    --bg-primary: #07070d;
    --bg-secondary: #0d0d1a;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(99, 102, 241, 0.3);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent-indigo: #6366f1;
    --accent-purple: #8b5cf6;
    --accent-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --gradient-main: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
    --gradient-glow: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.15), transparent 70%);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.4);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--accent-indigo);
    color: #fff;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-indigo);
    border-radius: 999px;
}

/* ── Container ── */
.container {
    width: min(1200px, 92%);
    margin: 0 auto;
    padding: 0 1rem;
}

/* ── Typography ── */
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img, .icon img  {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 10px;
    border-radius: 15px;
}

.icon img  {
    width: 70px;
    height: 70px;    
}

.icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-indigo);
    background: rgba(99, 102, 241, 0.12);
    padding: 0.35rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(99, 102, 241, 0.15);
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin-top: 0.75rem;
}

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    background: rgba(7, 7, 13, 0.72);
    backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(7, 7, 13, 0.88);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav-logo svg {
    width: 32px;
    height: 32px;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: var(--transition);
    border-radius: 999px;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-main);
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem !important;
    transition: var(--transition);
    box-shadow: 0 2px 16px rgba(99, 102, 241, 0.3);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 28px rgba(99, 102, 241, 0.45);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 999px;
    transition: var(--transition);
}

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

/* ── Hero ── */
.hero {
    position: relative;
    padding: 160px 0 120px;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: var(--gradient-glow);
    pointer-events: none;
    opacity: 0.6;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content .tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    background: rgba(6, 182, 212, 0.1);
    padding: 0.35rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(6, 182, 212, 0.15);
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 999px;
    background: var(--gradient-main);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 32px rgba(99, 102, 241, 0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* ── Hero Visual ── */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-graphic {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1/1;
    border-radius: var(--radius-lg);
    background: radial-gradient(ellipse at 30% 30%, rgba(99, 102, 241, 0.15), transparent 70%);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero-graphic .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-graphic .orb-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-indigo);
    top: -20%;
    right: -10%;
}

.hero-graphic .orb-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-purple);
    bottom: -10%;
    left: -10%;
}

.hero-graphic .orb-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-cyan);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

.hero-graphic .code-preview {
    position: relative;
    z-index: 2;
    background: rgba(7, 7, 13, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    width: 100%;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.75rem;
    line-height: 1.8;
    color: var(--text-secondary);
    box-shadow: var(--shadow-card);
}

.hero-graphic .code-preview .line {
    display: flex;
    gap: 1rem;
}

.hero-graphic .code-preview .line .num {
    color: var(--text-muted);
    user-select: none;
    min-width: 1.5rem;
}

.hero-graphic .code-preview .line .code .kw {
    color: var(--accent-purple);
}
.hero-graphic .code-preview .line .code .fn {
    color: var(--accent-cyan);
}
.hero-graphic .code-preview .line .code .str {
    color: #34d399;
}
.hero-graphic .code-preview .line .code .cmt {
    color: var(--text-muted);
    font-style: italic;
}
.hero-graphic .code-preview .line .code .type {
    color: var(--accent-indigo);
}

/* ── Floating badges ── */
.float-badge {
    position: absolute;
    z-index: 3;
    background: rgba(7, 7, 13, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    box-shadow: var(--shadow-card);
    animation: float 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.float-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    animation: pulse-dot 2s ease-in-out infinite;
}

.float-badge.b1 {
    top: 8%;
    right: -5%;
    animation-delay: 0s;
}
.float-badge.b2 {
    bottom: 15%;
    left: -8%;
    animation-delay: 2s;
}
.float-badge.b3 {
    top: 50%;
    right: -10%;
    animation-delay: 4s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

/* ── Stats Bar ── */
.stats {
    padding: 2rem 0 4rem;
    border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stats-grid .stat h3 {
    font-size: 2.4rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-grid .stat p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* ── Section: Products ── */
.section-products {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.section-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

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

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem 2rem 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 0% 0%, rgba(99, 102, 241, 0.06), transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.product-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 18px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.1);

    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 25px;
    margin-right: 0;
}

.product-card .badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.15);
    color: var(--accent-indigo);
    border: 1px solid rgba(99, 102, 241, 0.1);
    margin-bottom: 0.75rem;
}

.product-card .badge.soon {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.1);
}

.product-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.product-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-card .product-link {
    color: var(--accent-indigo);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.product-card .product-link:hover {
    gap: 0.8rem;
    color: var(--accent-purple);
}

.product-card.featured {
    border-color: rgba(99, 102, 241, 0.25);
    background: rgba(99, 102, 241, 0.04);
}

/* ── Section: Platform ── */
.section-platform {
    padding: 100px 0;
    background: var(--bg-primary);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.platform-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: var(--transition);
    text-align: center;
}

.platform-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

.platform-item .emoji {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.platform-item h4 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.platform-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ── Section: About ── */
.section-about {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

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

.about-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

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

.about-visual .stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.about-visual .stat-box:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: var(--bg-card-hover);
}

.about-visual .stat-box .number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-visual .stat-box .label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* ── CTA Section ── */
.section-cta {
    padding: 80px 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.section-cta h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto 2rem;
}

/* ── Footer ── */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 3rem 0 2rem;
}

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

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 300px;
    margin-top: 0.75rem;
    line-height: 1.7;
}

.footer-col h5 {
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

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

.footer-col ul a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

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

.hero-demo{
    position:relative;
    background:#0d1117;
    border-radius:20px;
    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 25px 80px rgba(0,0,0,.45),
        0 0 0 1px rgba(255,255,255,.04);

    transform:perspective(1400px) rotateY(-8deg);
    transition:.35s;
}

.hero-demo:hover{
    transform:
        perspective(1400px)
        rotateY(0deg)
        translateY(-6px);
}

.window-bar{
    display:flex;
    align-items:center;
    gap:8px;

    padding:14px 18px;

    background: linear-gradient(135deg, #8d9eb6, #4872ad, #245fb1);

    border-bottom:1px solid rgba(255,255,255,.08);
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
}

.red{
    background:#ff5f56;
}

.yellow{
    background:#ffbd2e;
}

.green{
    background:#27c93f;
}

.window-title{
    margin-left:18px;

    color:#fff;

    font-size:15px;
}

.hero-gif{
    display:block;

    width:100%;
    height:auto;
}

.hero-demo::before{
    content:"";

    position:absolute;

    inset:-60px;

    background:
        radial-gradient(
            rgba(37,99,235,.28),
            transparent 70%
        );

    z-index:-1;

    filter:blur(50px);
}

.live-badge{
    position:absolute;

    top:58px;
    right:18px;

    background:#16a34a;

    color:white;

    padding:6px 12px;

    border-radius:999px;

    font-size:12px;

    font-weight:600;

    z-index:10;
}

/* Product dropdown */

.dropdown {
    position: relative;
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 220px;

    background: #151523;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 14px;

    padding: 10px 0;

    backdrop-filter: blur(16px);

    background:
        linear-gradient(
            135deg,
            rgba(21,21,35,0.98),
            rgba(30,30,48,0.98)
        );

    box-shadow:
        0 20px 50px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.04);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: .25s ease;

    z-index: 1000;
}

.dropdown-menu li {
    list-style: none;
}


.dropdown-menu a {
    display: block;

    padding: 12px 20px;

    color: #f8fafc;

    text-decoration: none;

    font-size: 0.9rem;

    transition: 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(99,102,241,0.15);

    color: white;
}


/* Show dropdown on hover */

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-hero-icon {
    width: 140px;
    height: 140px;

    margin: 0 auto 1.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(99, 102, 241, 0.12);

    border: 1px solid rgba(99, 102, 241, 0.15);

    border-radius: 28px;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.3);

    overflow: hidden;
}

.product-hero-icon img {
    width: 110px;
    height: 110px;

    object-fit: contain;
    border-radius: 20px;
}

.hero.small .hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero.small .hero-buttons {
    justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .float-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(7, 7, 13, 0.96);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border-subtle);
        transform: translateY(-120%);
        transition: var(--transition);
        opacity: 0;
        pointer-events: none;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-hamburger {
        display: flex;
    }

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

    .stats-grid .stat h3 {
        font-size: 1.8rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-graphic .code-preview {
        font-size: 0.65rem;
        padding: 1rem;
    }

    .section-products,
    .section-platform,
    .section-about {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

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

    .about-visual {
        grid-template-columns: 1fr;
    }
}
