@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=IBM+Plex+Mono:wght@300;400;500&display=swap');

:root {
    --bg-deep:       #040c18;
    --bg-card:       #071525;
    --bg-card-hover: #0c1e35;
    --accent-cyan:   #00e5ff;
    --accent-amber:  #ffb347;
    --accent-green:  #39ff14;
    --text-primary:  #e8f4fd;
    --text-muted:    #7a9bb5;
    --border-subtle: rgba(0, 229, 255, 0.15);
    --glow-cyan:     0 0 20px rgba(0, 229, 255, 0.4);
    --glow-sm:       0 0 8px rgba(0, 229, 255, 0.25);
}

/* ── Global Reset ── */
html, body {
    background: var(--bg-deep) !important;
    color: var(--text-primary) !important;
    font-family: 'IBM Plex Mono', monospace !important;
    overflow-x: hidden;
}

/* ── Grid Background ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* ── Floating Social Sidebar ── */
.social-sidebar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.social-sidebar::before,
.social-sidebar::after {
    content: '';
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent-cyan));
}

.social-sidebar::after {
    background: linear-gradient(to top, transparent, var(--accent-cyan));
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    background: var(--bg-card);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-cyan);
    opacity: 0;
    transition: opacity 0.3s;
}

.social-icon-link:hover::before { opacity: 0.12; }
.social-icon-link:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-sm);
    transform: translateX(3px);
}

.social-icon-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0.7) invert(1);
    position: relative;
    z-index: 1;
    transition: filter 0.3s;
}

.social-icon-link:hover img { filter: brightness(1) invert(1); }

/* ── Sections ── */
.nc-section {
    position: relative;
    z-index: 1;
    padding: 80px 60px;
}

@media (max-width: 768px) {
    .nc-section { padding: 48px 20px; }
    .social-sidebar { display: none; }
    .nc-divider { margin: 0 20px; }
}

/* ── Section Label ── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 12px;
}

.section-label::before {
    content: '//';
    opacity: 0.5;
}

/* ── Section Heading ── */
.section-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 40px;
}

.section-heading span {
    color: var(--accent-cyan);
}

@media (max-width: 768px) {
    .section-heading {
        font-size: clamp(1.5rem, 7.5vw, 2.6rem);
        margin-bottom: 28px;
        overflow-wrap: break-word;
    }
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero-section {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.hero-section > div:first-child {
    width: 100%;
    min-width: 0;
}

/* Radial glow behind hero text */
.hero-section::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,229,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--accent-cyan);
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 0.2s forwards;
}

.hero-name {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 9vw, 7rem);
    line-height: 0.95;
    color: var(--text-primary);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeSlideUp 0.7s ease 0.4s forwards;
}

.hero-name .accent { color: var(--accent-cyan); }

.hero-tagline {
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-muted);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeSlideUp 0.7s ease 0.6s forwards;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    opacity: 0;
    animation: fadeSlideUp 0.7s ease 0.8s forwards;
}

.badge-tech {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    padding: 6px 14px;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    background: rgba(0,229,255,0.04);
    color: var(--accent-cyan);
    letter-spacing: 0.1em;
    transition: all 0.25s;
}

.badge-tech:hover {
    background: rgba(0,229,255,0.1);
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-sm);
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeIn 1s ease 1.4s both;
}

.scroll-hint::after {
    content: '';
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent-cyan), transparent);
    animation: scrollPulse 2s ease infinite;
}

/* Decorative terminal block */
.hero-terminal {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    animation: fadeSlideLeft 0.8s ease 1s forwards;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow-sm);
}

.terminal-bar {
    background: rgba(0,229,255,0.06);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-subtle);
}

.t-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.t-dot:nth-child(1) { background: #ff5f57; }
.t-dot:nth-child(2) { background: #febc2e; }
.t-dot:nth-child(3) { background: #28c840; }

.terminal-title {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-left: 6px;
    letter-spacing: 0.1em;
}

.terminal-body {
    padding: 18px 20px;
    font-size: 0.75rem;
    line-height: 1.9;
    color: var(--text-muted);
}

.t-prompt { color: var(--accent-cyan); }
.t-cmd    { color: var(--text-primary); }
.t-out    { color: var(--accent-green); font-size: 0.7rem; }
.t-cursor {
    display: inline-block;
    width: 8px; height: 14px;
    background: var(--accent-cyan);
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}

@media (max-width: 1100px) { .hero-terminal { display: none; } }

/* Hero — Phone */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100svh;
        padding: 90px 22px 70px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .hero-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.12em;
        white-space: normal;
        overflow-wrap: break-word;
        margin-bottom: 14px;
    }

    .hero-name {
        font-size: clamp(2.4rem, 13vw, 4rem);
        line-height: 1.0;
        word-break: break-word;
        overflow-wrap: break-word;
        margin-bottom: 18px;
    }

    .hero-tagline {
        font-size: 0.82rem;
        max-width: 100%;
        line-height: 1.65;
        margin-bottom: 28px;
    }

    .hero-badges { gap: 7px; }

    .badge-tech {
        font-size: 0.66rem;
        padding: 5px 10px;
        letter-spacing: 0.06em;
    }

    .scroll-hint { display: none; }
}

/* Extra-small phones (SE, Galaxy A series) */
@media (max-width: 390px) {
    .hero-section {
        padding: 80px 18px 60px;
    }

    .hero-eyebrow {
        font-size: 0.6rem;
        letter-spacing: 0.08em;
    }

    .hero-name {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .hero-tagline {
        font-size: 0.78rem;
    }
}

/* ══════════════════════════════
   DIVIDER
══════════════════════════════ */
.nc-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-cyan), transparent);
    opacity: 0.25;
    margin: 0 60px;
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

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

.about-photo-wrapper {
    position: relative;
}

.about-photo-wrapper::before {
    content: '';
    position: absolute;
    top: -8px; left: -8px;
    right: 8px; bottom: 8px;
    border: 1px solid var(--accent-cyan);
    border-radius: 10px;
    opacity: 0.3;
}

.about-photo-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(to bottom, transparent 60%, rgba(4,12,24,0.9));
}

.about-photo {
    width: 100%;
    border-radius: 8px;
    display: block;
    filter: grayscale(20%) contrast(1.05);
}

.about-paragraphs p {
    color: var(--text-muted);
    line-height: 1.85;
    font-size: 0.88rem;
    margin-bottom: 18px;
}

.about-paragraphs p:first-child::first-letter {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-cyan);
    float: left;
    line-height: 0.8;
    margin-right: 8px;
    margin-top: 6px;
}

.resume-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.resume-cta:hover {
    background: rgba(0,229,255,0.08);
    box-shadow: var(--glow-cyan);
    color: var(--accent-cyan);
    text-decoration: none;
    transform: translateY(-2px);
}

.resume-cta::before { content: '↓'; }

/* About — Phone */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-photo-wrapper {
        max-width: 260px;
        margin: 0 auto;
    }

    .about-paragraphs p {
        font-size: 0.83rem;
    }

    .about-paragraphs p:first-child::first-letter {
        font-size: 1.8rem;
        margin-top: 4px;
    }

    .resume-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ══════════════════════════════
   CERTIFICATES
══════════════════════════════ */
.certs-track {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.cert-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 24px 20px;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--accent-cyan), var(--accent-amber));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.cert-card:hover {
    border-color: rgba(0,229,255,0.35);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5), var(--glow-sm);
    background: var(--bg-card-hover);
}

.cert-card:hover::before { transform: scaleX(1); }

.cert-card img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    border-radius: 6px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
    transition: transform 0.35s;
}

.cert-card:hover img { transform: scale(1.03); }

.cert-name {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Certificates — Phone */
@media (max-width: 768px) {
    .certs-track { gap: 16px; }

    .cert-card {
        width: calc(50% - 8px);
        padding: 16px 12px;
    }

    .cert-card img { height: 110px; }

    .cert-name { font-size: 0.65rem; }
}

@media (max-width: 400px) {
    .cert-card { width: 100%; }
}

/* ══════════════════════════════
   RESUME
══════════════════════════════ */
.resume-embed-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.resume-toolbar {
    padding: 14px 20px;
    background: rgba(0,229,255,0.04);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.resume-toolbar-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.resume-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 0.1em;
    transition: all 0.25s;
}

.resume-download-btn:hover {
    background: rgba(0,229,255,0.08);
    box-shadow: var(--glow-sm);
    color: var(--accent-cyan);
    text-decoration: none;
}

.resume-embed-wrapper embed {
    display: block;
    width: 100%;
    height: 1000px;
    border: none;
}

/* Resume — Phone */
.resume-mobile-cta {
    display: none;
}

@media (max-width: 768px) {
    .resume-embed-wrapper embed { display: none; }

    .resume-toolbar-label { font-size: 0.62rem; }

    .resume-mobile-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 52px 24px;
        text-align: center;
    }

    .resume-mobile-cta p {
        font-size: 0.8rem;
        color: var(--text-muted);
        max-width: 280px;
        line-height: 1.6;
        margin: 0;
    }

    .resume-mobile-cta a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 32px;
        background: rgba(0,229,255,0.08);
        border: 1px solid var(--accent-cyan);
        color: var(--accent-cyan);
        font-family: 'IBM Plex Mono', monospace;
        font-size: 0.82rem;
        letter-spacing: 0.1em;
        text-decoration: none;
        border-radius: 6px;
        transition: all 0.25s;
    }

    .resume-mobile-cta a:hover {
        background: rgba(0,229,255,0.15);
        box-shadow: var(--glow-cyan);
    }
}

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideLeft {
    from { opacity: 0; transform: translateY(-50%) translateX(30px); }
    to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}

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

/* ── Scroll-triggered reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════
   MOBILE SOCIAL BAR
   (shown only on phones)
══════════════════════════════ */
.mobile-social-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-social-bar {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-top: 36px;
        opacity: 0;
        animation: fadeSlideUp 0.7s ease 1s forwards;
    }

    .mobile-social-bar .social-icon-link {
        width: 46px;
        height: 46px;
        border-radius: 10px;
    }

    .mobile-social-bar .social-icon-link img {
        width: 22px;
        height: 22px;
    }
}

/* ══════════════════════════════
   BODY OFFSET (for fixed nav)
══════════════════════════════ */
body {
    padding-top: 64px !important;
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.nc-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: rgba(4, 12, 24, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.nc-nav.scrolled {
    background: rgba(4, 12, 24, 0.97);
    border-bottom-color: rgba(0, 229, 255, 0.18);
}

/* Logo */
.nc-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nc-nav-logo:hover { text-decoration: none; }

.nav-logo-mark {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(0, 229, 255, 0.6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: #00e5ff;
    background: rgba(0, 229, 255, 0.06);
    transition: all 0.25s;
    flex-shrink: 0;
}

.nc-nav-logo:hover .nav-logo-mark {
    background: rgba(0, 229, 255, 0.12);
    box-shadow: 0 0 14px rgba(0, 229, 255, 0.3);
}

.nav-logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #e8f4fd;
    letter-spacing: 0.04em;
    transition: color 0.25s;
}

.nav-logo-text span {
    color: #00e5ff;
}

.nc-nav-logo:hover .nav-logo-text { color: #fff; }

/* Nav links */
.nc-nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nc-nav-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #7a9bb5;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.25s;
    text-transform: uppercase;
}

.nc-nav-links a:hover {
    color: #00e5ff;
    border-color: rgba(0, 229, 255, 0.2);
    background: rgba(0, 229, 255, 0.05);
    text-decoration: none;
}

.nc-nav-links a.active {
    color: #00e5ff;
    border-color: rgba(0, 229, 255, 0.25);
    background: rgba(0, 229, 255, 0.07);
}

.nc-nav-links .nav-index { color: #7a9bb5; }

/* Contact CTA button */
.nc-nav-links .nav-cta {
    color: #7a9bb5;
    border-color: rgba(0, 229, 255, 0.2);
    background: transparent;
    margin-left: 6px;
}

.nc-nav-links .nav-cta:hover {
    background: rgba(0, 229, 255, 0.12);
    box-shadow: 0 0 14px rgba(0, 229, 255, 0.2);
}

/* Hamburger button (mobile only) */
.nc-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 7px;
    cursor: pointer;
    padding: 8px;
    transition: border-color 0.25s, background 0.25s;
}

.nc-hamburger:hover {
    border-color: rgba(0, 229, 255, 0.5);
    background: rgba(0, 229, 255, 0.06);
}

.nc-hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #7a9bb5;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nc-hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
    background: #00e5ff;
}
.nc-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nc-hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
    background: #00e5ff;
}

/* Mobile drawer */
.nc-mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(4, 12, 24, 0.98);
    border-bottom: 1px solid rgba(0, 229, 255, 0.12);
    padding: 12px 20px 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateY(-8px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nc-mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
}

.nc-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nc-mobile-menu a {
    display: block;
    padding: 12px 16px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: #7a9bb5;
    text-decoration: none;
    border-radius: 7px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    text-transform: uppercase;
    transition: all 0.2s;
    text-align: center;
}

.nc-mobile-menu a:hover {
    color: #00e5ff;
    border-color: rgba(0, 229, 255, 0.4);
    background: rgba(0, 229, 255, 0.05);
    text-decoration: none;
}

.nc-mobile-menu a.active {
    color: #00e5ff;
    border-color: rgba(0, 229, 255, 0.5);
    background: rgba(0, 229, 255, 0.08);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
}

.nc-mobile-menu .nav-cta {
    margin-top: 4px;
}

@media (max-width: 768px) {
    .nc-nav {
        padding: 0 18px;
    }

    .nc-nav-links {
        display: none;
    }

    .nc-hamburger {
        display: flex;
    }

    .nc-mobile-menu {
        display: block;
    }
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.nc-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    padding: 32px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    background: rgba(4, 12, 24, 0.6);
}

.nc-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,229,255,0.3), transparent);
}

.footer-copy {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    color: #7a9bb5;
    letter-spacing: 0.06em;
    margin: 0;
}

.footer-copy span {
    color: #00e5ff;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    color: #7a9bb5;
    text-decoration: none;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: all 0.2s;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: #00e5ff;
    border-color: rgba(0, 229, 255, 0.2);
    background: rgba(0, 229, 255, 0.05);
    text-decoration: none;
}

.footer-divider {
    width: 1px;
    height: 14px;
    background: rgba(0, 229, 255, 0.15);
}

@media (max-width: 768px) {
    .nc-footer {
        padding: 24px 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
}

/* ══════════════════════════════
   CONTACT PAGE
══════════════════════════════ */
.contact-section {
    min-height: calc(100vh - 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
    max-width: 1000px;
}

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

/* ── Info panel (left) ── */
.contact-info-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-info-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s;
}

.contact-info-link:hover {
    border-color: rgba(0, 229, 255, 0.35);
    background: var(--bg-card-hover);
    box-shadow: var(--glow-sm);
    transform: translateX(4px);
    text-decoration: none;
}

.contact-info-link-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(0, 229, 255, 0.07);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    color: var(--accent-cyan);
}

.contact-info-link-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-info-link-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-info-link-value {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-primary);
}

/* ── Form card (right) ── */
.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
}

.contact-form-header {
    padding: 14px 24px;
    background: rgba(0, 229, 255, 0.04);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-header-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-subtle);
}

.form-header-dot:nth-child(1) { background: #ff5f57; }
.form-header-dot:nth-child(2) { background: #febc2e; }
.form-header-dot:nth-child(3) { background: #28c840; }

.form-header-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    margin-left: 6px;
}

.contact-form-body {
    padding: 28px 24px;
}

/* Two-col name row */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 480px) {
    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

.nc-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.nc-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nc-input,
.nc-textarea {
    background: rgba(4, 12, 24, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: 7px;
    padding: 11px 14px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.82rem;
    color: var(--text-primary);
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    -webkit-appearance: none;
}

.nc-input::placeholder,
.nc-textarea::placeholder {
    color: rgba(122, 155, 181, 0.4);
}

.nc-input:focus,
.nc-textarea:focus {
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.08);
}

.nc-textarea {
    resize: vertical;
    min-height: 130px;
}

/* Response messages */
.nc-response {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 7px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}

.nc-response-success {
    background: rgba(57, 255, 20, 0.06);
    border: 1px solid rgba(57, 255, 20, 0.25);
    color: #39ff14;
}

.nc-response-error {
    background: rgba(255, 95, 87, 0.06);
    border: 1px solid rgba(255, 95, 87, 0.25);
    color: #ff5f57;
}

/* Submit button */
.nc-submit {
    width: 100%;
    padding: 13px;
    background: rgba(0, 229, 255, 0.07);
    border: 1px solid rgba(0, 229, 255, 0.4);
    border-radius: 7px;
    color: var(--accent-cyan);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 4px;
}

.nc-submit:hover {
    background: rgba(0, 229, 255, 0.13);
    box-shadow: var(--glow-cyan);
    transform: translateY(-1px);
}

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