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

:root {
    --bg: #060B14;
    --bg-card: #0A1420;
    --border: rgba(255,255,255,0.07);
    --border-hover-cyan: rgba(0, 212, 255, 0.35);
    --border-hover-violet: rgba(108, 92, 231, 0.4);
    --accent: #00D4FF;
    --accent2: #6C5CE7;
    --text-primary: #E8F4FF;
    --text-secondary: rgba(200, 220, 240, 0.55);
    --text-muted: rgba(200, 220, 240, 0.3);
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Ambient background glow */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 212, 255, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 85% 85%, rgba(108, 92, 231, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Dot grid */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
    z-index: 0;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    background: rgba(6, 11, 20, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-mark {
    width: 28px;
    height: 28px;
    background: var(--accent);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

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

.nav-cta {
    font-family: var(--font-mono) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    color: var(--accent) !important;
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 8px 16px;
    border-radius: 4px;
    letter-spacing: 0.08em !important;
    transition: background 0.2s, border-color 0.2s !important;
}

.nav-cta:hover {
    background: rgba(0, 212, 255, 0.08) !important;
    border-color: rgba(0, 212, 255, 0.6) !important;
}

/* ─── LANGUAGE SWITCH ─── */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-links .lang-switch a {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    transition: color 0.2s;
}

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

.nav-links .lang-switch a.is-active {
    color: var(--accent);
}

.lang-sep {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(200, 220, 240, 0.18);
    user-select: none;
}

/* ─── SECTIONS ─── */
section {
    position: relative;
    z-index: 1;
}

/* ─── HERO ─── */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 48px 0;
    gap: 8px;
}

.hero-upper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-lower {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.15s;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--accent);
    opacity: 0.45;
}

h1.hero-title {
    font-family: var(--font-display);
    font-size: clamp(72px, 11vw, 130px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.035em;
    color: var(--text-primary);
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.35s;
}

.hero-title .outline {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 212, 255, 0.55);
}

.hero-sub {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 440px;
    margin: -32px auto 52px;
    line-height: 1.75;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.55s;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.75s;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #020810;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.3) 50%, transparent 80%);
    transform: translateX(-100%);
    transition: transform 0.55s ease;
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-primary:hover {
    box-shadow: 0 0 36px rgba(0, 212, 255, 0.45), 0 8px 24px rgba(0,0,0,0.4);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    padding: 14px 22px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.22);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding-bottom: 44px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.4s;
}

.scroll-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.scroll-bar {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ─── ABOUT ─── */
#about {
    padding: 80px 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::after {
    content: '';
    flex: 0 0 36px;
    height: 1px;
    background: var(--accent);
    opacity: 0.35;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
}

.about-headline {
    font-family: var(--font-display);
    font-size: clamp(34px, 3.8vw, 50px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.stat {
    background: var(--bg);
    padding: 48px 36px;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    height: 64px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.stat-num--infinity {
    transform: translateY(6px);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-body {
    color: var(--text-secondary);
    font-size: 15.5px;
    font-weight: 300;
    line-height: 1.85;
}

.about-body p + p {
    margin-top: 18px;
}

/* ─── DIVIDER ─── */
.section-divider {
    max-width: 1100px;
    margin: 0 auto;
    height: 1px;
    background: var(--border);
    position: relative;
    z-index: 1;
}

/* ─── TEAM ─── */
#team {
    padding: 80px 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-header {
    margin-bottom: 56px;
    max-width: 620px;
}

.team-headline {
    font-family: var(--font-display);
    font-size: clamp(34px, 3.8vw, 50px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.team-intro {
    color: var(--text-secondary);
    font-size: 15.5px;
    font-weight: 300;
    line-height: 1.85;
    margin-top: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.team-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.team-card:only-child {
    max-width: 420px;
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 60% at 50% 0%, var(--card-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}

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

.team-card:nth-child(odd) {
    --card-glow: rgba(0, 212, 255, 0.07);
}

.team-card:nth-child(odd):hover {
    border-color: var(--border-hover-cyan);
}

.team-card:nth-child(even) {
    --card-glow: rgba(108, 92, 231, 0.08);
}

.team-card:nth-child(even):hover {
    border-color: var(--border-hover-violet);
}

.team-avatar {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card:nth-child(odd) .team-avatar {
    background: rgba(0, 212, 255, 0.07);
    border: 1px solid rgba(0, 212, 255, 0.18);
    color: var(--accent);
}

.team-card:nth-child(even) .team-avatar {
    background: rgba(108, 92, 231, 0.09);
    border: 1px solid rgba(108, 92, 231, 0.18);
    color: #9B8EFF;
}

.team-name {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.1;
}

.team-role {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 9px;
}

.team-bio {
    font-size: 14.5px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    flex: 1;
}

.team-links {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.team-link {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.2s;
}

.team-card:nth-child(odd) .team-link:hover {
    color: var(--accent);
}

.team-card:nth-child(even) .team-link:hover {
    color: #9B8EFF;
}

/* ─── PRODUCTS ─── */
#products {
    padding: 80px 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
}

.products-headline {
    font-family: var(--font-display);
    font-size: clamp(34px, 3.8vw, 50px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.products-count {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    padding-bottom: 8px;
    letter-spacing: 0.05em;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.product-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 40px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 60% at 50% 0%, var(--card-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}

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

.product-card-1 {
    --card-glow: rgba(0, 212, 255, 0.07);
}

.product-card-1:hover {
    border-color: var(--border-hover-cyan);
}

.product-card-2 {
    --card-glow: rgba(108, 92, 231, 0.08);
}

.product-card-2:hover {
    border-color: var(--border-hover-violet);
}

.product-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.product-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.product-icon-1 {
    background: #ffffff;
    border: 1px solid rgba(0, 212, 255, 0.18);
    overflow: hidden;
    padding: 6px;
}

.product-icon-1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-icon-2 {
    background: rgba(108, 92, 231, 0.09);
    border: 1px solid rgba(108, 92, 231, 0.18);
    overflow: hidden;
    padding: 6px;
}

.product-icon-2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-tag {
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 20px;
}

.product-tag-1 {
    background: rgba(0, 212, 255, 0.07);
    color: var(--accent);
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.product-tag-2 {
    background: rgba(108, 92, 231, 0.07);
    color: #9B8EFF;
    border: 1px solid rgba(108, 92, 231, 0.15);
}

.product-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}

.product-domain {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
    letter-spacing: 0.04em;
}

.product-description {
    font-size: 14.5px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    flex: 1;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.product-link {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-link-1 { color: var(--accent); }
.product-link-2 { color: #9B8EFF; }

.link-arrow {
    transition: transform 0.2s;
}

.product-card:hover .link-arrow {
    transform: translate(3px, -3px);
}

.live-badge {
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: 0.12em;
    padding: 3px 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

.live-badge-1 {
    background: rgba(0, 212, 255, 0.07);
    color: var(--accent);
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.live-badge-1::before {
    background: var(--accent);
    box-shadow: 0 0 6px rgba(0, 212, 255, 0.8);
}

.live-badge-2 {
    background: rgba(108, 92, 231, 0.07);
    color: #9B8EFF;
    border: 1px solid rgba(108, 92, 231, 0.15);
}

.live-badge-2::before {
    background: #9B8EFF;
    box-shadow: 0 0 6px rgba(108, 92, 231, 0.8);
}

/* ─── CONTACT ─── */
#contact {
    padding: 80px 48px 130px;
    position: relative;
    z-index: 1;
}

.contact-inner {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-inner::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 320px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.055) 0%, transparent 70%);
    pointer-events: none;
}

.contact-label {
    justify-content: center;
}

.contact-headline {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
    line-height: 1.05;
}

.contact-sub {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 380px;
    margin: 0 auto 44px;
    line-height: 1.75;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 15px;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 212, 255, 0.28);
    padding-bottom: 3px;
    transition: border-color 0.2s, color 0.2s;
    letter-spacing: 0.03em;
}

.contact-email:hover {
    border-color: var(--accent);
    color: #33DCFF;
}

/* ─── FOOTER ─── */
footer {
    padding: 28px 48px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.footer-logo-mark {
    width: 22px;
    height: 22px;
    background: var(--accent);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    opacity: 0.6;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: var(--text-secondary);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.footer-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.25; transform: scaleY(1); transform-origin: top; }
    50%       { opacity: 1;    transform: scaleY(1.15); transform-origin: top; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ─── HAMBURGER ─── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 6px;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-secondary);
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(4.7px, 4.7px);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(4.7px, -4.7px);
}

/* ─── TABLET ─── */
@media (max-width: 1024px) {
    nav {
        padding: 18px 32px;
    }

    .nav-links {
        gap: 26px;
    }

    #hero {
        padding: 64px 48px 0;
        gap: 28px;
    }

    h1.hero-title {
        font-size: clamp(60px, 9vw, 110px);
    }

    #about {
        padding: 80px 40px;
    }

    #team {
        padding: 80px 40px;
    }

    #products {
        padding: 80px 40px;
    }

    .contact-inner {
        padding: 60px 48px;
    }

    footer {
        padding: 24px 32px;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }
}

@media (max-width: 860px) {
    .products-grid {
        gap: 14px;
    }

    .product-card {
        padding: 28px;
    }

    .team-grid {
        gap: 14px;
    }

    .team-card {
        padding: 30px 28px;
    }
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
    nav {
        padding: 16px 20px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(6, 11, 20, 0.98);
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        z-index: 99;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        background: rgba(6, 11, 20, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 20px;
        color: var(--text-primary);
        letter-spacing: 0.04em;
        padding: 12px 0;
    }

    .nav-cta {
        font-size: 14px !important;
        padding: 14px 32px !important;
        border-radius: 6px !important;
    }

    .lang-switch {
        gap: 12px;
    }

    .nav-links .lang-switch a {
        font-size: 15px;
        padding: 8px 6px;
    }

    .lang-sep {
        font-size: 15px;
    }

    #hero {
        padding: 56px 24px 0;
        min-height: 100vh;
        gap: 24px;
    }

    .scroll-label {
        display: block;
    }

    h1.hero-title {
        font-size: clamp(68px, 18vw, 88px);
        margin-bottom: 24px;
    }

    .hero-sub {
        font-size: 16px;
        margin-top: -20px;
        margin-bottom: 36px;
    }

    #about {
        padding: 56px 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    #team {
        padding: 56px 24px;
    }

    .team-header {
        margin-bottom: 28px;
    }

    .team-intro {
        margin-top: 16px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .team-card {
        padding: 28px 24px;
    }

    .team-card:only-child {
        max-width: none;
    }

    #products {
        padding: 56px 24px 60px;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 28px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-card {
        padding: 28px 24px;
    }

    #contact {
        padding: 40px 24px 56px;
    }

    .contact-inner {
        padding: 48px 28px;
    }

    .contact-email {
        display: inline-flex;
        padding: 12px 4px;
    }

    .footer-logo {
        padding: 11px 0;
    }

    footer {
        padding: 24px 20px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .section-divider {
        margin: 0 24px;
    }
}

/* ─── SMALL PHONE ─── */
@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .btn-primary,
    .btn-ghost {
        justify-content: center;
        width: 100%;
        min-height: 52px;
    }


    .hero-sub {
        margin-top: -20px;
        margin-bottom: 28px;
    }
}

/* ─── MINIMUM PHONE ─── */
@media (max-width: 420px) {
    h1.hero-title {
        font-size: clamp(62px, 17vw, 80px);
    }

    .hero-title .outline {
        -webkit-text-stroke-width: 1px;
    }

    .hero-eyebrow {
        letter-spacing: 0.12em;
        gap: 10px;
    }

    .hero-eyebrow::before,
    .hero-eyebrow::after {
        width: 14px;
    }
}

/* ─── TOUCH: suppress hover lift ─── */
@media (hover: none) {
    .product-card:hover {
        transform: none;
    }

    .team-card:hover {
        transform: none;
    }
}
