/* --- Brand Variables (Global) --- */
:root {
    --forma-void: #030304;
    --forma-surface: #0F1115;
    --forma-white: #FFFFFF;
    --forma-muted: #94A3B8;
    --forma-orange: #F7931A;
    --forma-gold: #FFD600;
    --forma-gradient: linear-gradient(to right, #EA580C, #F7931A);
    --forma-orange-rgb: 247, 147, 26;
    --forma-gold-rgb: 255, 214, 0;
}

/* ======== RESET & BASE ======== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--forma-void);
    color: var(--forma-white);
    direction: rtl;
    overflow-x: hidden;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; }

/* ======== HEADER ======== */
.nexus-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    direction: ltr;
    box-sizing: border-box;
    background: linear-gradient(to bottom, rgba(3, 3, 4, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), padding 0.3s ease, background 0.3s ease;
}
.nexus-header.scrolled {
    background: rgba(3, 3, 4, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.header-logo { display: flex; align-items: center; z-index: 10001; }
.header-logo img { height: 45px; width: auto; display: block; transition: height 0.3s ease; }
.menu-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10001;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}
.menu-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--forma-white);
    transition: color 0.3s;
}
.hamburger-lines {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.line {
    width: 100%;
    height: 2px;
    background-color: var(--forma-white);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 2px;
}
.menu-open .line:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); background-color: var(--forma-orange); }
.menu-open .line:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.menu-open .line:nth-child(3) { transform: rotate(-45deg) translate(5px, -7px); background-color: var(--forma-orange); }
.menu-open .menu-text { color: var(--forma-orange); }

/* ======== FULLSCREEN MENU ======== */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--forma-void);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    clip-path: circle(0% at 95% 5%);
    direction: ltr;
}
.menu-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(var(--forma-orange-rgb), 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.nav-links { list-style: none; padding: 0; margin: 0; text-align: center; position: relative; z-index: 2; }
.nav-item { margin: 15px 0; overflow: hidden; }
.nav-link {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--forma-white);
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s ease;
    transform: translateY(100%);
}
.nav-link:hover {
    color: var(--forma-orange);
    transform: translateX(10px);
    font-style: italic;
}
.menu-footer {
    position: absolute;
    bottom: 50px;
    display: flex;
    gap: 40px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    opacity: 0;
}
.menu-footer a { color: inherit; text-decoration: none; transition: color 0.3s; }
.menu-footer a:hover { color: var(--forma-orange); }

/* ======== SHARED UTILITIES ======== */
.text-gradient {
    background: var(--forma-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ======== SECTION 1: HERO ======== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--forma-void);
    overflow: hidden;
    padding: 120px 60px 80px;
}
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    pointer-events: none;
}
.hero-aurora-blob {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(var(--forma-orange-rgb), 0.1) 0%, transparent 60%);
    filter: blur(120px);
    pointer-events: none;
    animation: auroraFloat 12s ease-in-out infinite alternate;
}
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    direction: ltr;
}
.hero-text-col { direction: ltr; }
.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: var(--forma-muted);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}
.hero-subtitle .typed-cursor { color: var(--forma-orange); }
.hero-cta-wrapper { display: flex; gap: 20px; flex-wrap: wrap; }
.btn-forma-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--forma-void);
    background: var(--forma-gradient);
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px -5px rgba(var(--forma-orange-rgb), 0.5);
}
.btn-forma-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px -5px rgba(var(--forma-orange-rgb), 0.7);
}
.btn-forma-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--forma-white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-forma-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--forma-orange);
    border-color: rgba(var(--forma-orange-rgb), 0.4);
}

/* Hero Visual */
.hero-visual-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-wireframe-container {
    position: relative;
    width: 380px;
    height: 380px;
}
.wireframe-rotating {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(var(--forma-orange-rgb), 0.2);
    border-radius: 12px;
    animation: wireframeSpin 15s linear infinite;
    background:
        linear-gradient(135deg, transparent 40%, rgba(var(--forma-orange-rgb), 0.05) 50%, transparent 60%);
}
.wireframe-rotating::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px dashed rgba(var(--forma-orange-rgb), 0.15);
    border-radius: 8px;
    animation: wireframeSpin 20s linear infinite reverse;
}
.wireframe-rotating::after {
    content: '';
    position: absolute;
    inset: 45px;
    border: 1px solid rgba(var(--forma-orange-rgb), 0.1);
    border-radius: 6px;
    animation: wireframeSpin 25s linear infinite;
}
.glass-data-card {
    position: absolute;
    background: rgba(15, 17, 21, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: floatCard 6s ease-in-out infinite;
}
.glass-data-card:hover {
    border-color: rgba(var(--forma-orange-rgb), 0.5);
    box-shadow: 0 0 20px -5px rgba(var(--forma-orange-rgb), 0.3);
}
.data-card-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--forma-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.data-card-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--forma-gold);
}
.glass-card-1 { top: 20px; right: -30px; animation-delay: 0s; }
.glass-card-2 { bottom: 60px; right: -50px; animation-delay: -2s; }
.glass-card-3 { top: 50%; left: -40px; transform: translateY(-50%); animation-delay: -4s; }

/* ======== SECTION 2: THE DEAL ======== */
.deal-section {
    position: relative;
    padding: 120px 60px;
    background-color: var(--forma-void);
}
.deal-section-header {
    max-width: 1100px;
    margin: 0 auto 70px;
    text-align: center;
}
.deal-heading {
    font-size: 2.8rem;
    font-weight: 800;
    direction: ltr;
}
.deal-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    direction: ltr;
}
.deal-card {
    border-radius: 20px;
    padding: 45px;
    position: relative;
    overflow: hidden;
}
.deal-card-problem {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.deal-card-opportunity {
    background: var(--forma-surface);
    border: 1px solid rgba(var(--forma-orange-rgb), 0.35);
    box-shadow: 0 0 30px -10px rgba(var(--forma-orange-rgb), 0.2);
}
.deal-card-header {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.deal-card-problem .deal-card-header {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}
.deal-card-opportunity .deal-card-header {
    color: var(--forma-gold);
    background: rgba(var(--forma-gold-rgb), 0.1);
    border: 1px solid rgba(var(--forma-gold-rgb), 0.2);
}
.deal-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--forma-white);
}
.deal-card-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--forma-muted);
    direction: rtl;
}

/* ======== SECTION 3: MARKET & DATA ======== */
.market-section {
    position: relative;
    padding: 120px 60px;
    background-color: var(--forma-void);
}
.market-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.market-heading {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 70px;
    direction: ltr;
}
.market-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    direction: ltr;
}
.market-stat-card {
    background: var(--forma-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.market-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--forma-orange-rgb), 0.04), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}
.market-stat-card:hover::before { left: 100%; }
.market-stat-card:hover {
    border-color: rgba(var(--forma-orange-rgb), 0.4);
    box-shadow: 0 0 25px -8px rgba(var(--forma-orange-rgb), 0.2);
}
.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--forma-white);
    line-height: 1;
    display: inline;
}
.stat-unit {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--forma-orange);
    margin-right: 4px;
}
.stat-label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--forma-white);
    margin-top: 16px;
}
.stat-sublabel {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--forma-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 8px;
}

/* ======== SECTION 4: VALUE PROPOSITION ======== */
.value-section {
    position: relative;
    padding: 120px 60px;
    background-color: var(--forma-void);
}
.value-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.value-heading {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 70px;
    direction: ltr;
}
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    direction: ltr;
}
.value-card {
    background: var(--forma-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s ease;
}
.value-card:hover {
    border-color: rgba(var(--forma-orange-rgb), 0.3);
    transform: translateY(-6px);
    box-shadow: 0 0 30px -10px rgba(var(--forma-orange-rgb), 0.15);
}
.value-icon-node {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(234, 88, 12, 0.15);
    border: 1px solid rgba(234, 88, 12, 0.35);
    border-radius: 12px;
    margin-bottom: 24px;
    color: var(--forma-orange);
}
.value-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--forma-white);
}
.value-card-text {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--forma-muted);
}

/* ======== SECTION 5: PRODUCT ENGINE ======== */
.product-section {
    position: relative;
    padding: 120px 60px;
    background-color: var(--forma-void);
}
.product-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.product-heading {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 60px;
    direction: ltr;
}
.terminal-window {
    background: #0A0A0C;
    border: 1px solid rgba(var(--forma-orange-rgb), 0.2);
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    direction: ltr;
    box-shadow: 0 0 60px -20px rgba(var(--forma-orange-rgb), 0.15);
}
.terminal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.terminal-dots { display: flex; gap: 8px; }
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.terminal-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--forma-muted);
    letter-spacing: 1px;
}
.terminal-body { padding: 30px; display: flex; flex-direction: column; gap: 24px; }
.terminal-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
}
.panel-label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--forma-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Blueprint Analyzer */
.blueprint-scan-area {
    position: relative;
    height: 120px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}
.blueprint-placeholder {
    position: absolute;
    inset: 15px;
    border: 1px dashed rgba(var(--forma-orange-rgb), 0.15);
    border-radius: 4px;
    background:
        linear-gradient(rgba(var(--forma-orange-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--forma-orange-rgb), 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}
.scan-laser {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--forma-orange), transparent);
    box-shadow: 0 0 12px 2px rgba(var(--forma-orange-rgb), 0.4);
    animation: laserScan 3s ease-in-out infinite;
}
.panel-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--forma-muted);
}

/* Compliance Checklist */
.compliance-list { list-style: none; padding: 0; margin: 0; }
.compliance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
}
.compliance-item:last-child { border-bottom: none; }
.check-key { color: var(--forma-muted); }
.check-status { font-weight: 600; }
.status-pass { color: var(--forma-gold); }
.status-checking { color: var(--forma-orange); animation: blinkCheck 1.2s step-end infinite; }
.status-pending { color: rgba(255, 255, 255, 0.25); }

/* Terminal Console */
.terminal-console {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid var(--forma-orange);
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
}
.console-prompt { color: var(--forma-orange); font-weight: 700; }
#typed-console { color: var(--forma-muted); }
#typed-console .typed-cursor { color: var(--forma-orange); }

/* ======== SECTION 6: VISION & IMPACT ======== */
.vision-section {
    position: relative;
    padding: 180px 60px;
    background-color: var(--forma-void);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vision-radial-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(var(--forma-orange-rgb), 0.08) 0%, transparent 55%);
    filter: blur(80px);
    pointer-events: none;
}
.vision-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.vision-glass-panel {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 70px 60px;
}
.vision-quote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--forma-white);
    direction: ltr;
}
.vision-attribution {
    display: block;
    margin-top: 30px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--forma-orange);
    letter-spacing: 3px;
}

/* ======== SECTION 7: GENESIS BLOCK (FOOTER) ======== */
.genesis-footer {
    background-color: var(--forma-surface);
    color: var(--forma-white);
    padding: 80px 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 10;
}
.genesis-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
    padding-bottom: 60px;
}

/* Profile Module */
.genesis-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.profile-image-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.4s ease;
}
.profile-image-wrapper:hover { border-color: rgba(var(--forma-orange-rgb), 0.5); }
.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}
.profile-image-wrapper:hover .profile-image { filter: grayscale(0%); }
.profile-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--forma-muted);
    text-transform: uppercase;
}

/* Contact Grid */
.genesis-contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}
.genesis-contact-grid .footer-contact-item { text-align: center; }
.footer-contact-item { margin-bottom: 0; }
.footer-contact-label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 2px;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.footer-contact-value {
    color: var(--forma-white);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-contact-value:hover { color: var(--forma-orange); }

/* WhatsApp CTA */
.genesis-cta-wrapper { width: 100%; max-width: 600px; }
.genesis-whatsapp-btn {
    display: block;
    width: 100%;
    padding: 20px 40px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--forma-void);
    background: var(--forma-gradient);
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px -5px rgba(var(--forma-orange-rgb), 0.4);
}
.genesis-whatsapp-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 35px -5px rgba(var(--forma-orange-rgb), 0.6);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 25px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'JetBrains Mono', monospace;
}
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--forma-white); }

/* ======== KEYFRAMES ======== */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}
@keyframes auroraFloat {
    0% { transform: translateX(-50%) translate(0, 0) scale(1); }
    33% { transform: translateX(-50%) translate(40px, -20px) scale(1.08); }
    66% { transform: translateX(-50%) translate(-30px, 30px) scale(0.95); }
    100% { transform: translateX(-50%) translate(15px, 10px) scale(1.03); }
}
@keyframes wireframeSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes laserScan {
    0% { top: 0; }
    50% { top: calc(100% - 2px); }
    100% { top: 0; }
}
@keyframes blinkCheck {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ======== RESPONSIVE: MOBILE (max-width: 768px) ======== */
@media (max-width: 768px) {
    .nexus-header { padding: 15px 20px; }
    .header-logo img { height: 32px; }
    .menu-text { display: none; }
    .nav-link { font-size: 2rem; }
    .menu-footer { flex-direction: column; gap: 15px; text-align: center; bottom: 30px; }

    .hero-section { padding: 120px 24px 60px; min-height: auto; }
    .hero-content-wrapper { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1rem; margin: 0 auto 30px; }
    .hero-cta-wrapper { justify-content: center; }
    .hero-visual-col { display: none; }

    .deal-section { padding: 80px 24px; }
    .deal-heading { font-size: 2rem; }
    .deal-section-header { margin-bottom: 40px; }
    .deal-container { grid-template-columns: 1fr; gap: 24px; }
    .deal-card { padding: 30px 24px; }
    .deal-card-title { font-size: 1.4rem; }

    .market-section { padding: 80px 24px; }
    .market-heading { font-size: 2rem; margin-bottom: 40px; }
    .market-grid { grid-template-columns: 1fr; gap: 20px; }
    .market-stat-card { padding: 35px 20px; }
    .stat-number { font-size: 3.2rem; }

    .value-section { padding: 80px 24px; }
    .value-heading { font-size: 2rem; margin-bottom: 40px; }
    .value-grid { grid-template-columns: 1fr; gap: 16px; }
    .value-card { padding: 28px 20px; }
    .value-card-title { font-size: 1rem; }

    .product-section { padding: 80px 24px; }
    .product-heading { font-size: 2rem; margin-bottom: 40px; }
    .terminal-body { padding: 16px; }
    .blueprint-scan-area { height: 80px; }

    .vision-section { padding: 100px 24px; }
    .vision-glass-panel { padding: 40px 28px; }
    .vision-quote { font-size: 1.25rem; }

    .genesis-footer { padding: 60px 24px 0; }
    .genesis-contact-grid { flex-direction: column; gap: 24px; }
    .genesis-whatsapp-btn { font-size: 0.95rem; padding: 16px 24px; }
    .footer-bottom { flex-direction: column; gap: 12px; }
}

/* ======== RESPONSIVE: TABLET (769px - 1024px) ======== */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-section { padding: 120px 40px 80px; }
    .hero-title { font-size: 3.5rem; }
    .hero-wireframe-container { width: 280px; height: 280px; }

    .deal-container { gap: 24px; }
    .deal-card { padding: 35px; }

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

    .vision-glass-panel { padding: 50px 40px; }
    .vision-quote { font-size: 1.5rem; }
}