/* ==========================================================================
   EDWARD.COM.MX - DESIGN SYSTEM & STYLESHEET
   Aesthetic: Dark Futuristic / High-Tech Minimalist / Kinetic Atmosphere
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Design Tokens
   -------------------------------------------------------------------------- */
:root {
    --bg-pure-black: #000000;
    --bg-dark: #050505;
    --bg-card: rgba(18, 18, 22, 0.65);
    --bg-card-hover: rgba(28, 28, 35, 0.85);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-active: rgba(255, 102, 0, 0.4);
    
    /* Branding Colors */
    --brand-orange: #FF6000;
    --brand-orange-glow: rgba(255, 96, 0, 0.35);
    --brand-orange-hover: #ff771a;
    --brand-gray: #CBD5E1;
    --brand-gray-dim: #94A3B8;
    --text-pure-white: #FFFFFF;
    --text-muted: #64748B;
    --status-green: #10B981;
    --status-green-glow: rgba(16, 185, 129, 0.4);

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Transitions & Elevation */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
}

/* --------------------------------------------------------------------------
   2. Reset & Global Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    color-scheme: dark;
    background-color: var(--bg-pure-black);
}

body {
    background-color: var(--bg-pure-black);
    color: var(--brand-gray);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--brand-orange);
    color: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------------------
   3. Ambient Lights & Grid Background
   -------------------------------------------------------------------------- */
.bg-grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

.ambient-glow {
    position: fixed;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
}

.glow-top {
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, var(--brand-orange) 0%, rgba(255, 96, 0, 0) 70%);
}

.glow-bottom {
    bottom: -250px;
    right: -100px;
    background: radial-gradient(circle, #3b82f6 0%, rgba(59, 130, 246, 0) 70%);
    opacity: 0.15;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* --------------------------------------------------------------------------
   4. Navbar Header
   -------------------------------------------------------------------------- */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background-color var(--transition-smooth), border-color var(--transition-smooth), backdrop-filter var(--transition-smooth);
}

.navbar-wrapper.scrolled {
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

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

/* Specific Logo requirements */
.brand-logo {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    user-select: none;
}

.brand-text.text-gray {
    color: var(--brand-gray);
    transition: var(--transition-fast);
}

.brand-text.text-orange {
    color: var(--brand-orange);
    text-shadow: 0 0 20px var(--brand-orange-glow);
    transition: var(--transition-fast);
}

.brand-logo:hover .brand-text.text-orange {
    color: var(--brand-orange-hover);
    text-shadow: 0 0 28px rgba(255, 102, 0, 0.7);
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--brand-gray-dim);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-orange);
    transition: width var(--transition-fast);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-pure-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 500;
    color: #34d399;
}

.status-dot {
    width: 7px;
    height: 7px;
    background-color: var(--status-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--status-green);
    animation: pulse-dot 2s infinite;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--brand-gray);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* --------------------------------------------------------------------------
   5. Buttons & Badges
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.65rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
    font-family: var(--font-sans);
}

.btn-primary-sm {
    padding: 0.45rem 1.15rem;
    font-size: 0.85rem;
    background: var(--brand-orange);
    color: #ffffff;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px var(--brand-orange-glow);
}

.btn-primary-sm:hover {
    background: var(--brand-orange-hover);
    box-shadow: 0 6px 20px rgba(255, 96, 0, 0.5);
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--brand-orange);
    color: #ffffff;
    box-shadow: 0 0 25px var(--brand-orange-glow);
}

.btn-primary:hover {
    background: var(--brand-orange-hover);
    box-shadow: 0 0 35px rgba(255, 96, 0, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--brand-gray);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.09);
    color: var(--text-pure-white);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn .icon {
    width: 18px;
    height: 18px;
}

.terminal-prefix {
    font-family: var(--font-mono);
    color: var(--brand-orange);
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION (Forehead Level with Navbar on Initial Load)
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: 80px;
    background-color: var(--bg-pure-black);
    overflow: hidden;
}

/* Full Width Image Container */
.hero-image-fullwidth-wrapper {
    position: relative;
    width: 100%;
    max-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: var(--bg-pure-black);
    overflow: hidden;
    padding-top: 0;
    margin-top: 0;
}

.hero-fullwidth-image {
    width: 100%;
    max-width: 100vw;
    height: auto;
    max-height: 82vh;
    display: block;
    object-fit: contain;
    object-position: center top;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 auto;
    transform: translateY(-20px);

    /* Máscara oscura ampliada 50% para mayor iluminación y suavidad */
    -webkit-mask-image: radial-gradient(
        ellipse 70% 66% at 50% 38%,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.98) 40%,
        rgba(0, 0, 0, 0.65) 66%,
        rgba(0, 0, 0, 0.2) 86%,
        rgba(0, 0, 0, 0) 100%
    );
    mask-image: radial-gradient(
        ellipse 70% 66% at 50% 38%,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.98) 40%,
        rgba(0, 0, 0, 0.65) 66%,
        rgba(0, 0, 0, 0.2) 86%,
        rgba(0, 0, 0, 0) 100%
    );
}

.hero-spotlight-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        ellipse 66% 62% at 50% 38%,
        transparent 0%,
        rgba(0, 0, 0, 0.12) 42%,
        rgba(0, 0, 0, 0.55) 75%,
        var(--bg-pure-black) 98%
    );
    z-index: 3;
}

.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 60%, var(--bg-pure-black) 100%);
    pointer-events: none;
    z-index: 4;
}

.hero-content-container {
    position: relative;
    z-index: 5;
    margin-top: -60px;
    width: 100%;
}

/* Hero Content Styling */
.hero-content {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    color: var(--brand-gray);
    margin-bottom: 1.25rem;
    backdrop-filter: blur(10px);
}

.code-tag {
    font-family: var(--font-mono);
    color: var(--brand-orange);
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-pure-white);
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.highlight-orange {
    color: var(--brand-orange);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 35px var(--brand-orange-glow);
}

.hero-description {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    color: var(--brand-gray-dim);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 2.25rem;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 1.25rem 2rem;
    background: rgba(18, 18, 22, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-number {
    font-family: var(--font-mono);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-pure-white);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-divider {
    width: 1px;
    height: 35px;
    background: var(--border-subtle);
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0.6;
    transition: var(--transition-fast);
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid var(--brand-gray-dim);
    border-radius: 12px;
    display: block;
    position: relative;
}

.wheel {
    width: 3px;
    height: 6px;
    background: var(--brand-orange);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll-wheel 1.8s infinite;
}

@keyframes scroll-wheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

/* --------------------------------------------------------------------------
   7. Common Section Styles & Headers
   -------------------------------------------------------------------------- */
.section {
    padding: 6.5rem 0;
    position: relative;
    z-index: 2;
}

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

.section-subtitle {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--brand-orange);
    letter-spacing: 0.1em;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--text-pure-white);
    letter-spacing: -0.02em;
}

/* Cards & Glassmorphism */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-active);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 96, 0, 0.08);
}

/* --------------------------------------------------------------------------
   8. About Section
   -------------------------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}

.about-card {
    display: flex;
    flex-direction: column;
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-pure-white);
    margin-bottom: 0.85rem;
}

.card-text {
    color: var(--brand-gray-dim);
    font-size: 0.98rem;
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   9. Tech Stack Section
   -------------------------------------------------------------------------- */
.stack-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.75rem;
}

.stack-category {
    display: flex;
    flex-direction: column;
}

.category-header {
    margin-bottom: 1.5rem;
}

.category-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--brand-orange);
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.category-header h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--text-pure-white);
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.95rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    color: var(--brand-gray);
    font-family: var(--font-mono);
    transition: var(--transition-fast);
}

.tech-pill .dot {
    width: 5px;
    height: 5px;
    background-color: var(--brand-orange);
    border-radius: 50%;
}

.tech-pill:hover {
    background: rgba(255, 96, 0, 0.1);
    border-color: var(--brand-orange);
    color: var(--text-pure-white);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   10. Projects Section
   -------------------------------------------------------------------------- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2rem;
}

.project-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-badge {
    align-self: flex-start;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 96, 0, 0.1);
    border: 1px solid rgba(255, 96, 0, 0.3);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--brand-orange);
    margin-bottom: 1.2rem;
}

.project-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-pure-white);
    margin-bottom: 0.75rem;
}

.project-description {
    color: var(--brand-gray-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.project-tags span {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--brand-gray);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

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

.project-metric {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #34d399;
}

.project-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-orange);
}

.project-link:hover {
    color: var(--brand-orange-hover);
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   11. Interactive Terminal Section
   -------------------------------------------------------------------------- */
.terminal-window {
    background: #090a0f;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 25px rgba(255, 96, 0, 0.05);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    font-family: var(--font-mono);
}

.terminal-header {
    background: #12141c;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-dots .dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.terminal-dots .red { background-color: #ef4444; }
.terminal-dots .yellow { background-color: #eab308; }
.terminal-dots .green { background-color: #22c55e; }

.terminal-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.terminal-action-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--brand-gray-dim);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.terminal-action-btn:hover {
    color: var(--text-pure-white);
    border-color: var(--brand-orange);
}

.terminal-body {
    padding: 1.5rem;
    min-height: 220px;
    max-height: 380px;
    overflow-y: auto;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #e2e8f0;
}

.terminal-line {
    margin-bottom: 0.35rem;
    word-break: break-word;
}

.cmd-highlight {
    color: var(--brand-orange);
    font-weight: 600;
}

.terminal-input-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    background: #0d0f17;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal-prompt {
    color: #38bdf8;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

#terminal-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

#terminal-input::placeholder {
    color: #475569;
}

/* --------------------------------------------------------------------------
   12. Contact Section
   -------------------------------------------------------------------------- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    padding: 3rem;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-pure-white);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--brand-gray-dim);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-direct-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item .icon {
    font-size: 1.35rem;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.contact-item span,
.contact-item a {
    font-size: 0.95rem;
    color: var(--brand-gray);
}

.contact-email {
    transition: var(--transition-fast);
}

.contact-email:hover {
    color: var(--brand-orange);
}

.social-links {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.social-btn {
    padding: 0.5rem 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--brand-gray);
}

.social-btn:hover {
    background: rgba(255, 96, 0, 0.1);
    border-color: var(--brand-orange);
    color: var(--text-pure-white);
    transform: translateY(-2px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--brand-gray-dim);
}

.form-group input,
.form-group textarea {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.1rem;
    color: var(--text-pure-white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 15px var(--brand-orange-glow);
}

.form-feedback {
    font-size: 0.9rem;
    min-height: 24px;
    text-align: center;
    font-weight: 500;
}

.form-feedback.success {
    color: var(--status-green);
}

.form-feedback.error {
    color: #ef4444;
}

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.footer {
    background: #020202;
    border-top: 1px solid var(--border-subtle);
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand .brand-text {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* --------------------------------------------------------------------------
   14. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border-subtle);
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
    }

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

    .status-pill {
        display: none;
    }

    .hero-image-fullwidth-wrapper {
        height: auto;
        min-height: auto;
        max-height: none;
        padding-top: 0;
        margin-top: 0;
    }

    .hero-fullwidth-image {
        width: 100%;
        max-width: 100vw;
        height: auto;
        max-height: 70vh;
        transform: translateY(-15px);
    }

    .hero-content-container {
        margin-top: -30px;
    }

    .hero-metrics {
        flex-direction: column;
        gap: 1.25rem;
        width: 100%;
    }

    .metric-divider {
        width: 60px;
        height: 1px;
    }

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