:root {
    --ink: #071018;
    --ink-soft: #11202a;
    --paper: #f4f7f5;
    --white: #ffffff;
    --cyan: #00d7e8;
    --cyan-dark: #007f8d;
    --yellow: #f4c430;
    --green: #1fc77e;
    --coral: #ff6657;
    --line-dark: rgba(255, 255, 255, 0.14);
    --line-light: #cfdbd8;
    --muted-dark: #9bb0ba;
    --muted-light: #53666d;
    --display: "Archivo Black", sans-serif;
    --body: "Manrope", sans-serif;
    --header-height: 78px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 9999;
    padding: 10px 14px;
    color: var(--ink);
    background: var(--yellow);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.shell {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.section {
    padding: 112px 0;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-height);
    color: var(--white);
    background: rgba(7, 16, 24, 0.76);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
    background: rgba(7, 16, 24, 0.96);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.22);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--white);
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 180ms ease;
}

.brand:hover {
    transform: translateY(-1px);
}

.brand-logo-normal {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.brand-badge-glow {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(7, 16, 24, 0.95), rgba(0, 215, 232, 0.1));
    border: 1px solid rgba(0, 215, 232, 0.4);
    box-shadow: 0 0 15px rgba(0, 215, 232, 0.25), inset 0 0 12px rgba(244, 196, 48, 0.15);
    overflow: visible;
}

.brand-badge-glow img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(0, 215, 232, 0.5));
}

.brand-pulse-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #1fc77e;
    box-shadow: 0 0 8px #1fc77e;
    border: 2px solid #071018;
    animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.brand-copy {
    display: grid;
    line-height: 1.1;
}

.brand-copy strong {
    font-family: var(--display);
    font-size: 20px;
    letter-spacing: 0.02em;
}

.brand-copy strong em {
    font-style: normal;
    background: linear-gradient(90deg, var(--cyan), #ffffff, var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 12px rgba(0, 215, 232, 0.3);
}

.brand-copy small {
    margin-top: 3px;
    color: var(--cyan);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}

.brand-copy small i {
    font-size: 8px;
    color: var(--yellow);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.main-nav a,
.text-link {
    position: relative;
    color: #dce7eb;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.text-link:hover {
    color: var(--cyan);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: transparent;
    border: 1px solid var(--line-dark);
    cursor: pointer;
    font-size: 18px;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    color: var(--ink);
    background: var(--yellow);
    border: 1px solid var(--yellow);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 200ms ease, background 200ms ease, border-color 200ms ease, box-shadow 200ms ease, color 200ms ease;
}

.button:hover,
.button:focus-visible {
    background: #ffd84e;
    border-color: #ffd84e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 196, 48, 0.35);
}

.button-cyber {
    background: linear-gradient(135deg, #f4c430 0%, #ffaa00 100%);
    border-color: rgba(244, 196, 48, 0.8);
    box-shadow: 0 0 16px rgba(244, 196, 48, 0.25);
}

.button-cyber:hover {
    box-shadow: 0 0 24px rgba(244, 196, 48, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.button-cyber-glow {
    background: linear-gradient(135deg, #ffd700 0%, #f4a100 100%);
    color: #060e15;
    border: 1px solid rgba(255, 235, 120, 0.9);
    box-shadow: 0 0 28px rgba(244, 196, 48, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    letter-spacing: 0.03em;
    font-size: 14px;
    padding: 0 28px;
    min-height: 54px;
}

.button-cyber-glow:hover {
    background: linear-gradient(135deg, #ffe033 0%, #ffb81a 100%);
    box-shadow: 0 0 40px rgba(244, 196, 48, 0.7), 0 6px 25px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px) scale(1.02);
}

.button-ghost-cyber {
    color: #ffffff;
    background: rgba(7, 24, 38, 0.5);
    border: 1px solid rgba(0, 215, 232, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(0, 215, 232, 0.15);
    min-height: 54px;
    padding: 0 24px;
}

.button-ghost-cyber:hover {
    color: var(--cyan);
    background: rgba(0, 215, 232, 0.12);
    border-color: rgba(0, 215, 232, 0.9);
    box-shadow: 0 0 30px rgba(0, 215, 232, 0.4);
    transform: translateY(-2px);
}

.button-small {
    min-height: 40px;
    padding-inline: 16px;
    font-size: 12px;
}

.button-ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.26);
}

.button-ghost:hover,
.button-ghost:focus-visible {
    color: var(--ink);
    background: var(--white);
    border-color: var(--white);
}

.button-dark {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
    color: var(--ink);
    background: var(--cyan);
    border-color: var(--cyan);
}

.button-light {
    color: var(--ink);
    background: var(--white);
    border-color: var(--white);
}

/* ==========================================================================
   HERO FUTURISTA CON INTELIGENCIA ARTIFICIAL CUÁNTICA
   ========================================================================== */
.hero {
    min-height: calc(100svh - 42px);
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    background: #050c13;
    isolation: isolate;
    overflow: hidden;
}

.hero-futuristic {
    background: radial-gradient(circle at 75% 45%, rgba(0, 215, 232, 0.09) 0%, transparent 60%),
                radial-gradient(circle at 20% 25%, rgba(244, 196, 48, 0.07) 0%, transparent 50%),
                linear-gradient(180deg, #04090e 0%, #071018 60%, #050b12 100%);
}

.hero-video-background {
    position: absolute;
    inset: 0;
    z-index: -5;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.12) contrast(1.08);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(3, 9, 14, 0.94) 0%, rgba(3, 9, 14, 0.78) 42%, rgba(3, 9, 14, 0.38) 72%, rgba(3, 9, 14, 0.58) 100%),
        linear-gradient(180deg, rgba(3, 9, 14, 0.3) 0%, rgba(3, 9, 14, 0.12) 55%, rgba(3, 9, 14, 0.72) 100%);
}

/* Luces de Aurora Cuántica Ambiental */
.hero-aurora-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: -2;
    opacity: 0.55;
    animation: pulseAurora 9s ease-in-out infinite alternate;
}

.glow-cyan {
    top: 15%;
    right: 5%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0, 215, 232, 0.45) 0%, rgba(0, 110, 255, 0.1) 70%, transparent 100%);
}

.glow-gold {
    top: 5%;
    left: 10%;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(244, 196, 48, 0.3) 0%, rgba(255, 120, 0, 0.08) 65%, transparent 100%);
    animation-delay: -3s;
}

.glow-blue {
    bottom: 5%;
    right: 35%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.25) 0%, transparent 70%);
    animation-delay: -5s;
}

@keyframes pulseAurora {
    0% { transform: scale(0.9) translate(0, 0); opacity: 0.45; }
    50% { transform: scale(1.1) translate(-20px, 15px); opacity: 0.65; }
    100% { transform: scale(0.95) translate(15px, -10px); opacity: 0.5; }
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.14;
    background-image: 
        linear-gradient(rgba(0, 215, 232, 0.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 215, 232, 0.25) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at 60% 50%, black 30%, transparent 80%);
}

.hero-cyber-lines {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 215, 232, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--yellow), transparent);
    box-shadow: 0 0 15px var(--cyan);
}

.hero-inner {
    padding-top: calc(var(--header-height) + 45px);
    padding-bottom: 95px;
    position: relative;
    z-index: 2;
}

/* Layout de 2 Columnas Futurista */
.hero-layout-futuristic {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
    gap: 48px;
    align-items: center;
}

.hero-copy {
    width: 100%;
}

/* Píldora de Estado Cuántico */
.hero-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    margin-bottom: 24px;
    background: rgba(0, 215, 232, 0.08);
    border: 1px solid rgba(0, 215, 232, 0.35);
    border-radius: 100px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 20px rgba(0, 215, 232, 0.18), inset 0 0 12px rgba(0, 215, 232, 0.08);
    position: relative;
}

.status-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1fc77e;
    box-shadow: 0 0 10px #1fc77e;
    position: relative;
}

.status-radar-ping {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid #1fc77e;
    animation: radarPing 2s infinite cubic-bezier(0, 0, 0.2, 1);
}

@keyframes radarPing {
    0% { transform: translateY(-50%) scale(0.6); opacity: 1; }
    100% { transform: translateY(-50%) scale(2.2); opacity: 0; }
}

.status-text {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #e0f8ff;
    text-transform: uppercase;
    font-family: var(--body);
}

/* Título Hero */
.hero-title-futuristic {
    margin: 0;
    font-family: var(--display);
    font-size: 76px;
    line-height: 0.94;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-shadow: 0 0 35px rgba(255, 255, 255, 0.12);
}

.hero-gradient-text {
    background: linear-gradient(120deg, #00d7e8 0%, #ffffff 35%, #ffd700 70%, #ff9d00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 215, 232, 0.4);
    display: inline-block;
}

.hero-statement {
    margin: 20px 0 20px;
    color: #dce8eb;
    font-family: var(--display);
    font-size: 27px;
    line-height: 1.22;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-description {
    max-width: 540px;
    margin: 0;
    color: #a4bcc8;
    font-size: 16px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 34px;
    color: #a6c0cb;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

.hero-proof i {
    color: var(--cyan);
}

/* ==========================================================================
   SHOWCASE HOLOGRÁFICO 3D (REDI7 IA 4x2)
   ========================================================================== */
.hero-visual-showcase {
    position: relative;
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hologram-stage {
    position: relative;
    width: 100%;
    max-width: 620px;
    transform-style: preserve-3d;
    padding: 20px 0;
}

/* Anillos Orbitales de Energía */
.hologram-orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%) rotateX(68deg);
    pointer-events: none;
    z-index: 0;
}

.ring-1 {
    width: 118%;
    height: 118%;
    border: 1.5px dashed rgba(0, 215, 232, 0.45);
    box-shadow: 0 0 25px rgba(0, 215, 232, 0.25), inset 0 0 25px rgba(0, 215, 232, 0.15);
    animation: spinOrbit 24s linear infinite;
}

.ring-2 {
    width: 132%;
    height: 132%;
    border: 1px solid rgba(244, 196, 48, 0.3);
    box-shadow: 0 0 35px rgba(244, 196, 48, 0.2);
    animation: spinOrbitReverse 32s linear infinite;
}

@keyframes spinOrbit {
    from { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(0deg); }
    to { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(360deg); }
}

@keyframes spinOrbitReverse {
    from { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(360deg); }
    to { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(0deg); }
}

.hologram-aura-glow {
    position: absolute;
    inset: 10%;
    background: radial-gradient(circle, rgba(0, 215, 232, 0.35) 0%, rgba(244, 196, 48, 0.15) 45%, transparent 75%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
    animation: pulseAura 5s ease-in-out infinite alternate;
}

@keyframes pulseAura {
    0% { transform: scale(0.92); opacity: 0.6; }
    100% { transform: scale(1.08); opacity: 1; }
}

/* Tarjeta Holográfica 3D Principal */
.hologram-card-3d {
    position: relative;
    z-index: 1;
    padding: 0;
    background: transparent;
    transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 300ms ease;
    overflow: visible;
}

.hologram-card-3d:hover {
    transform: translateY(-6px) scale(1.02);
}

.hologram-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1230 / 1278;
    object-fit: contain;
    border-radius: 0;
    display: block;
    filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 24px rgba(0, 215, 232, 0.24));
}

/* Efecto de Escáner Láser */
.hologram-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 215, 232, 0.8), #ffffff, rgba(244, 196, 48, 0.8), transparent);
    box-shadow: 0 0 18px rgba(0, 215, 232, 0.9), 0 0 35px #00d7e8;
    z-index: 4;
    pointer-events: none;
    animation: scanAnimation 4.5s ease-in-out infinite;
}

@keyframes scanAnimation {
    0% { top: 0%; opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Esquinas HUD Tecnológicas */
.hologram-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2.5px solid var(--cyan);
    z-index: 5;
    pointer-events: none;
}

.corner-tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.corner-tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; border-color: var(--yellow); }
.corner-bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; border-color: var(--yellow); }
.corner-br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

/* Reflejo Vidrio */
.hologram-reflection {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
    z-index: 3;
}

/* Badges Holográficos Flotantes */
.hologram-telemetry-badge {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(6, 17, 27, 0.88);
    border: 1px solid rgba(0, 215, 232, 0.45);
    border-radius: 12px;
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 215, 232, 0.25);
    animation: floatBadge 4.5s ease-in-out infinite alternate;
}

.badge-top {
    top: -12px;
    right: -14px;
    border-color: rgba(0, 215, 232, 0.6);
}

.badge-bottom {
    bottom: -15px;
    left: -14px;
    border-color: rgba(244, 196, 48, 0.55);
    animation-delay: -2.2s;
}

@keyframes floatBadge {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(0.8deg); }
}

.badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 215, 232, 0.25), rgba(7, 16, 24, 0.9));
    border: 1px solid rgba(0, 215, 232, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 14px;
    box-shadow: 0 0 12px rgba(0, 215, 232, 0.3);
}

.badge-bottom .badge-icon {
    background: linear-gradient(135deg, rgba(244, 196, 48, 0.25), rgba(7, 16, 24, 0.9));
    border-color: rgba(244, 196, 48, 0.5);
    color: var(--yellow);
    box-shadow: 0 0 12px rgba(244, 196, 48, 0.3);
}

.badge-info {
    display: grid;
    line-height: 1.2;
}

.badge-title {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #9cb4c2;
    text-transform: uppercase;
}

.badge-metric {
    font-size: 12.5px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}

.text-green {
    color: #1fc77e;
    font-size: 7px;
    box-shadow: 0 0 6px #1fc77e;
}

/* Píldora Lateral Cuántica */
.hologram-telemetry-pill {
    position: absolute;
    top: 50%;
    left: -24px;
    transform: translateY(-50%);
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: rgba(7, 16, 24, 0.92);
    border: 1px solid rgba(0, 215, 232, 0.5);
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 215, 232, 0.25);
}

.pill-wave {
    width: 3px;
    height: 12px;
    background: var(--cyan);
    border-radius: 2px;
    animation: wavePulse 1.2s ease-in-out infinite;
}

.pill-wave:nth-child(2) { animation-delay: 0.2s; height: 18px; background: #ffffff; }
.pill-wave:nth-child(3) { animation-delay: 0.4s; height: 10px; background: var(--yellow); }

@keyframes wavePulse {
    0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

.pill-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #c9e8f5;
    margin-left: 4px;
}

    text-transform: uppercase;
}

.hero-proof i {
    margin-right: 7px;
    color: var(--green);
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b9c8ce;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-cue i {
    color: var(--cyan);
    animation: cue 1.6s ease-in-out infinite;
}

.signal-strip {
    min-height: 42px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--ink);
    background: var(--yellow);
}

.signal-track {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 28px;
    padding-inline: 24px;
    white-space: nowrap;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.signal-track i {
    width: 4px;
    height: 4px;
    background: var(--ink);
    transform: rotate(45deg);
}

.ecosystem {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(rgba(7, 16, 24, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 16, 24, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 12% 18%, rgba(0, 215, 232, 0.12), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(244, 196, 48, 0.13), transparent 25%),
        #eef3f2;
    background-size: 48px 48px, 48px 48px, auto, auto, auto;
}

.ecosystem::before {
    content: "REDI7 / INTELLIGENCE SYSTEM";
    position: absolute;
    top: 92px;
    right: -34px;
    z-index: -1;
    color: rgba(7, 16, 24, 0.035);
    font-family: var(--display);
    font-size: 78px;
    line-height: 1;
    white-space: nowrap;
}

.ecosystem-orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(0, 127, 141, 0.16);
    border-radius: 50%;
    pointer-events: none;
}

.ecosystem-orbit-one {
    width: 420px;
    height: 420px;
    top: -245px;
    left: -120px;
}

.ecosystem-orbit-two {
    width: 260px;
    height: 260px;
    right: -105px;
    bottom: -130px;
    border-color: rgba(244, 196, 48, 0.3);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.7fr);
    gap: 90px;
    align-items: end;
    margin-bottom: 68px;
}

.section-heading h2,
.services-heading h2,
.platform-copy h2,
.academy-copy h2 {
    margin: 0;
    font-family: var(--display);
    font-size: 46px;
    line-height: 1.08;
}

.section-heading > p,
.services-heading > p,
.platform-copy > p,
.academy-copy > p {
    margin: 0;
    color: var(--muted-light);
    font-size: 15px;
    line-height: 1.8;
}

.ecosystem-heading {
    position: relative;
    align-items: center;
}

.ecosystem-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -34px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan-dark), rgba(7, 16, 24, 0.12) 38%, transparent);
}

.heading-accent {
    position: relative;
    color: var(--cyan-dark);
    white-space: nowrap;
}

.heading-accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 5px;
    background: var(--yellow);
    transform: skewX(-18deg);
    opacity: 0.85;
}

.ecosystem-intro {
    padding-left: 24px;
    border-left: 2px solid var(--cyan-dark);
}

.ecosystem-intro-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    color: var(--cyan-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.ecosystem-intro p {
    margin: 0;
    color: var(--muted-light);
    font-size: 14px;
    line-height: 1.75;
}

.ecosystem-intro a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--ink);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.ecosystem-intro a i {
    color: var(--cyan-dark);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.value-block {
    position: relative;
    min-height: 470px;
    padding: 26px 28px 76px;
    display: flex;
    flex-direction: column;
    background-color: #071018;
    background-position: center;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(7, 16, 24, 0.07);
    overflow: hidden;
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.value-block:nth-child(1) {
    background-image: linear-gradient(to bottom, rgba(3, 10, 16, 0.08) 20%, rgba(3, 10, 16, 0.48) 52%, rgba(3, 10, 16, 0.96) 100%), url("assets/Análisis de trading con IA.jpg");
}

.value-block:nth-child(2) {
    background-image: linear-gradient(to bottom, rgba(3, 10, 16, 0.08) 20%, rgba(3, 10, 16, 0.48) 52%, rgba(3, 10, 16, 0.96) 100%), url("assets/Automatización.jpg");
}

.value-block:nth-child(3) {
    background-image: linear-gradient(to bottom, rgba(3, 10, 16, 0.08) 20%, rgba(3, 10, 16, 0.48) 52%, rgba(3, 10, 16, 0.96) 100%), url("assets/Gestión.jpg");
}

.value-block::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan-dark), var(--cyan));
}

.value-block:nth-child(2)::before {
    background: linear-gradient(90deg, #d39d00, var(--yellow));
}

.value-block:nth-child(3)::before {
    background: linear-gradient(90deg, #e54a3c, var(--coral));
}

.value-block:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 127, 141, 0.34);
    box-shadow: 0 28px 70px rgba(7, 16, 24, 0.14);
}

.value-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px;
}

.value-number {
    color: var(--white);
    font-family: var(--display);
    font-size: 12px;
}

.value-status {
    padding: 4px 8px;
    color: var(--cyan-dark);
    background: rgba(0, 127, 141, 0.08);
    border-radius: 3px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.value-kicker {
    margin: auto 0 8px !important;
    color: var(--cyan) !important;
    font-size: 9px !important;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.value-block h3 {
    margin: 0 0 13px;
    color: var(--white);
    font-family: var(--display);
    font-size: 21px;
    line-height: 1.2;
}

.value-block > p:not(.value-kicker) {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.7;
}

.value-capabilities {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 25px;
    display: flex;
    gap: 7px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.value-capabilities span {
    padding: 4px 7px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.services {
    color: var(--white);
    background: var(--ink);
}

.section-kicker,
.services-heading {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.section-kicker {
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--line-dark);
}

.section-index {
    margin: 0 0 20px;
    color: var(--muted-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.services-heading {
    align-items: end;
    margin-bottom: 32px;
}

.services-heading h2 {
    max-width: 730px;
}

.services-heading > p {
    max-width: 350px;
    color: var(--muted-dark);
}

.services-focus {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 22px;
    border-block: 1px solid var(--line-dark);
}

.services-focus span {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    color: #c7d6db;
    border-right: 1px solid var(--line-dark);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.services-focus span:last-child {
    border-right: 0;
}

.services-focus i {
    color: var(--cyan);
    font-size: 14px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.service-card {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    color: var(--white);
    background: var(--ink-soft);
    border: 1px solid var(--line-dark);
    border-radius: 6px;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
    background-color: #142731;
    border-color: rgba(0, 215, 232, 0.65);
    transform: translateY(-4px);
}

.service-featured {
    grid-column: span 2;
    background-color: #0b3037;
    background-image: linear-gradient(90deg, rgba(3, 10, 16, 0.96) 0%, rgba(3, 10, 16, 0.84) 38%, rgba(3, 10, 16, 0.34) 72%, rgba(3, 10, 16, 0.18) 100%), linear-gradient(0deg, rgba(3, 10, 16, 0.9) 0%, transparent 62%), url("assets/anlaizador con ii.jpg");
    background-position: center;
    background-size: cover;
    border-color: rgba(0, 215, 232, 0.6);
}

.service-featured > div:nth-child(2) {
    max-width: 58%;
}

.service-telegram-copier {
    background-color: #03111f;
    background-image: linear-gradient(to bottom, rgba(3, 10, 16, 0.18) 0%, rgba(3, 10, 16, 0.5) 42%, rgba(3, 10, 16, 0.97) 78%, #030a10 100%), url("assets/copiadordetelegram.png");
    background-position: center;
    background-size: cover;
    border-color: rgba(0, 215, 232, 0.42);
}

.service-telegram-copier:hover {
    background-color: #03111f;
}

.service-trader-signals {
    background-color: #030a10;
    background-image: linear-gradient(to bottom, rgba(3, 10, 16, 0.08) 0%, rgba(3, 10, 16, 0.44) 42%, rgba(3, 10, 16, 0.97) 76%, #030a10 100%), url("assets/trader señales.webp");
    background-position: center;
    background-size: cover;
    border-color: rgba(0, 215, 232, 0.36);
}

.service-trader-signals:hover {
    background-color: #030a10;
}

.service-trailing-stop,
.service-gold-voltage,
.service-forex-voltage,
.service-trader-management {
    background-color: #030a10;
    background-position: center;
    background-size: cover;
}

.service-trailing-stop {
    background-image: linear-gradient(to bottom, rgba(3, 10, 16, 0.08) 0%, rgba(3, 10, 16, 0.42) 40%, rgba(3, 10, 16, 0.96) 76%, #030a10 100%), url("assets/trailingstop.jpg");
    background-position: center 38%;
}

.service-gold-voltage {
    background-image: linear-gradient(to bottom, rgba(3, 10, 16, 0.08) 0%, rgba(3, 10, 16, 0.48) 40%, rgba(3, 10, 16, 0.97) 76%, #030a10 100%), url("assets/goldvoltaje.jpg");
    border-color: rgba(244, 196, 48, 0.38);
}

.service-forex-voltage {
    background-image: linear-gradient(to bottom, rgba(3, 10, 16, 0.08) 0%, rgba(3, 10, 16, 0.48) 40%, rgba(3, 10, 16, 0.97) 76%, #030a10 100%), url("assets/forexvoltaje.jpg");
}

.service-trader-management {
    background-image: linear-gradient(90deg, rgba(3, 10, 16, 0.96) 0%, rgba(3, 10, 16, 0.76) 48%, rgba(3, 10, 16, 0.24) 100%), linear-gradient(to top, rgba(3, 10, 16, 0.94) 0%, transparent 68%), url("assets/tradergestion.jpg");
    background-position: center;
    border-color: rgba(255, 102, 87, 0.36);
}

.service-trailing-stop:hover,
.service-gold-voltage:hover,
.service-forex-voltage:hover,
.service-trader-management:hover {
    background-color: #030a10;
}

.service-telegram-copier > div:nth-child(2),
.service-trader-signals > div:nth-child(2),
.service-trailing-stop > div:nth-child(2),
.service-gold-voltage > div:nth-child(2),
.service-forex-voltage > div:nth-child(2) {
    margin-top: auto;
    padding-top: 110px;
}

.service-card:last-child {
    grid-column: span 2;
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-top span {
    color: #6f858f;
    font-family: var(--display);
    font-size: 12px;
}

.service-top i {
    color: var(--cyan);
    font-size: 25px;
}

.service-card:nth-child(5) .service-top i {
    color: var(--yellow);
}

.service-card:nth-child(7) .service-top i {
    color: var(--coral);
}

.service-tag {
    margin: 0 0 10px;
    color: var(--cyan);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-card h3 {
    margin: 0 0 13px;
    font-family: var(--display);
    font-size: 22px;
    line-height: 1.17;
}

.service-card p:not(.service-tag) {
    margin: 0;
    color: var(--muted-dark);
    font-size: 13px;
    line-height: 1.7;
}

.service-points {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}

.service-points span {
    padding: 5px 8px;
    color: #c6d7dc;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 3px;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-card > a {
    width: fit-content;
    margin-top: 28px;
    color: #dce9ed;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.service-card > a i {
    margin-left: 6px;
    color: var(--cyan);
    transition: transform 180ms ease;
}

.service-card > a:hover i {
    transform: translateX(4px);
}

.platform {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.platform::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 34%;
    height: 100%;
    background: var(--yellow);
}

.platform-layout {
    position: relative;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 62px;
    align-items: center;
}

.platform-copy h2 {
    margin-bottom: 22px;
}

.platform-copy > p {
    margin-bottom: 30px;
}

.dashboard-window {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: #09131c;
    border: 1px solid #273945;
    border-radius: 8px;
    box-shadow: 0 34px 80px rgba(7, 16, 24, 0.28);
}

.window-bar {
    height: 35px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 13px;
    background: #111f29;
    border-bottom: 1px solid #263943;
}

.window-bar > span {
    width: 7px;
    height: 7px;
    background: #5a6c75;
    border-radius: 50%;
}

.window-bar > span:first-child {
    background: var(--coral);
}

.window-bar small {
    margin-left: auto;
    color: #81949c;
    font-size: 8px;
}

.dashboard-screenshot {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.dashboard-body {
    min-height: 440px;
    display: grid;
    grid-template-columns: 64px 1fr;
}

.dashboard-body aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding-top: 18px;
    border-right: 1px solid #20313b;
}

.dashboard-body aside img {
    width: 36px;
    height: 36px;
    margin-bottom: 13px;
    object-fit: contain;
}

.dashboard-body aside i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: #637780;
    font-size: 12px;
}

.dashboard-body aside i.active {
    color: var(--cyan);
    background: rgba(0, 215, 232, 0.12);
    border-left: 2px solid var(--cyan);
}

.dashboard-main {
    padding: 30px;
}

.dashboard-welcome {
    display: grid;
    margin-bottom: 25px;
}

.dashboard-welcome small {
    color: #728891;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.dashboard-welcome strong {
    color: var(--white);
    font-family: var(--display);
    font-size: 24px;
}

.dashboard-welcome span {
    color: var(--muted-dark);
    font-size: 10px;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.metric-row > div {
    min-height: 92px;
    display: grid;
    align-content: center;
    gap: 3px;
    padding: 14px;
    background: #10212b;
    border: 1px solid #233944;
    border-radius: 5px;
}

.metric-row i {
    margin-bottom: 6px;
    color: var(--cyan);
    font-size: 14px;
}

.metric-row span {
    color: #738791;
    font-size: 8px;
}

.metric-row strong {
    color: #d8e6e9;
    font-size: 10px;
}

.chart-panel {
    margin-top: 12px;
    padding: 19px;
    background: #0d1b24;
    border: 1px solid #203640;
    border-radius: 5px;
}

.chart-title {
    display: flex;
    justify-content: space-between;
    color: #dce8eb;
    font-size: 9px;
}

.chart-title small {
    color: #6c818a;
    font-size: 8px;
}

.bars {
    height: 145px;
    display: flex;
    align-items: end;
    gap: 12px;
    margin-top: 18px;
    border-bottom: 1px solid #2a3d46;
}

.bars i {
    width: 100%;
    height: var(--h);
    background: var(--cyan);
    border-radius: 2px 2px 0 0;
    opacity: 0.75;
}

.bars i:nth-child(even) {
    background: var(--yellow);
}

.platform-features {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 70px;
    border-top: 1px solid var(--line-light);
}

.platform-feature {
    display: flex;
    gap: 15px;
    padding: 28px 24px 0;
    border-right: 1px solid var(--line-light);
}

.platform-feature:last-child {
    border-right: 0;
}

.platform-feature > i {
    margin-top: 5px;
    color: var(--cyan-dark);
    font-size: 17px;
}

.platform-feature h3 {
    margin: 0 0 7px;
    font-size: 14px;
}

.platform-feature p {
    margin: 0;
    color: var(--muted-light);
    font-size: 11px;
}

.academy {
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    color: var(--white);
    background: var(--ink);
    overflow: hidden;
}

.academy-photo {
    position: absolute;
    inset: 0;
    background-image: url("assets/academy.webp");
    background-position: center;
    background-size: cover;
}

.academy::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 16, 24, 0.99) 0%, rgba(7, 16, 24, 0.91) 42%, rgba(7, 16, 24, 0.28) 100%);
}

.academy-inner {
    position: relative;
    z-index: 2;
}

.academy-copy {
    width: 52%;
    padding: 110px 0;
}

.academy-copy h2 {
    margin-bottom: 22px;
}

.academy-copy > p {
    color: #b8c9ce;
}

.academy-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 34px;
}

.academy-points span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #dbe7ea;
    font-size: 11px;
    font-weight: 700;
}

.academy-points i {
    color: var(--yellow);
}

.home-testimonials {
    color: var(--white);
    background: var(--ink);
}

.home-testimonials-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 44px;
}

.home-testimonials-heading h2 {
    max-width: 760px;
    margin: 0;
    font-family: var(--display);
    font-size: 44px;
    line-height: 1.08;
}

.home-testimonials-intro strong {
    display: block;
    margin-bottom: 10px;
    color: var(--cyan);
    font-family: var(--display);
    font-size: 16px;
}

.home-testimonials-intro p {
    margin: 0;
    color: var(--muted-dark);
    font-size: 13px;
    line-height: 1.7;
}

.home-testimonials-video {
    position: relative;
    width: min(100%, 860px);
    display: block;
    aspect-ratio: 3 / 2;
    margin-inline: auto;
    color: #fff;
    background: #06131e;
    border: 1px solid rgba(0, 215, 232, 0.28);
    border-radius: 8px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.home-testimonials-video img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 600ms ease;
}

.home-testimonials-video-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 7, 17, 0.72), transparent 42%);
    pointer-events: none;
}

.home-testimonials-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    color: #021018;
    background: rgba(100, 245, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    box-shadow: 0 0 0 12px rgba(0, 215, 232, 0.1), 0 12px 35px rgba(0, 0, 0, 0.35);
    font-size: 22px;
    transform: translate(-50%, -50%);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.home-testimonials-play i {
    margin-left: 4px;
}

.home-testimonials-video-label {
    position: absolute;
    left: 24px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    background: rgba(2, 7, 17, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.home-testimonials-video:hover {
    border-color: rgba(0, 215, 232, 0.72);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.home-testimonials-video:hover img {
    transform: scale(1.025);
}

.home-testimonials-video:hover .home-testimonials-play {
    box-shadow: 0 0 0 16px rgba(0, 215, 232, 0.12), 0 15px 42px rgba(0, 0, 0, 0.4);
    transform: translate(-50%, -50%) scale(1.08);
}

.home-testimonials-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
}

.home-testimonials-action p {
    margin: 0;
    color: #748a94;
    font-size: 9px;
}

.insights {
    background: var(--white);
}

.insights-heading {
    margin-bottom: 46px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.insight-card {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: var(--paper);
    border-top: 4px solid var(--cyan-dark);
}

.insight-card:nth-child(2) {
    border-top-color: var(--yellow);
}

.insight-card:nth-child(3) {
    border-top-color: var(--coral);
}

.insight-card > span {
    color: var(--cyan-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.insight-card h3 {
    margin: 35px 0 14px;
    font-family: var(--display);
    font-size: 21px;
    line-height: 1.2;
}

.insight-card p {
    margin: 0;
    color: var(--muted-light);
    font-size: 13px;
}

.insight-card a,
.insights-all {
    width: fit-content;
    margin-top: auto;
    padding-top: 25px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.insight-card a i,
.insights-all i {
    margin-left: 7px;
    color: var(--cyan-dark);
}

.insights-all {
    display: block;
    margin: 15px 0 0 auto;
}

.process {
    position: relative;
    background: linear-gradient(180deg, #eef3f2 0%, var(--white) 100%);
}

.process-heading {
    margin-bottom: 48px;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    position: relative;
    min-height: 190px;
    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: start;
    gap: 20px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line-light);
    border-radius: 7px;
    box-shadow: 0 16px 42px rgba(7, 16, 24, 0.055);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.process-list li:hover {
    border-color: rgba(0, 127, 141, 0.32);
    box-shadow: 0 22px 48px rgba(7, 16, 24, 0.09);
    transform: translateY(-4px);
}

.process-list li > span {
    color: var(--cyan-dark);
    font-family: var(--display);
    font-size: 24px;
}

.process-list li > i {
    color: rgba(0, 127, 141, 0.28);
    font-size: 24px;
}

.process-list small {
    display: block;
    margin-bottom: 12px;
    color: var(--cyan-dark);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.process-list h3 {
    margin: 0 0 5px;
    font-family: var(--display);
    font-size: 20px;
}

.process-list p {
    margin: 0;
    color: var(--muted-light);
    font-size: 13px;
}

.redi7-trading-evolucionado {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 25px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 45%, rgba(0, 205, 255, 0.13), transparent 32%), radial-gradient(circle at 15% 80%, rgba(0, 100, 255, 0.1), transparent 30%), #020711;
    border-top: 1px solid rgba(0, 210, 255, 0.12);
    border-bottom: 1px solid rgba(0, 210, 255, 0.12);
}

.redi7-trading-evolucionado::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 220, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 220, 255, 0.035) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
    pointer-events: none;
}

.redi7-trading-content {
    position: relative;
    z-index: 1;
    width: min(950px, 100%);
    margin: auto;
    text-align: center;
}

.redi7-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 17px;
    color: #a9eaff;
    background: rgba(0, 190, 255, 0.055);
    border: 1px solid rgba(0, 220, 255, 0.25);
    border-radius: 50px;
    box-shadow: 0 0 25px rgba(0, 190, 255, 0.08);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.redi7-status {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    background: #25f59b;
    border-radius: 50%;
    box-shadow: 0 0 8px #25f59b, 0 0 18px rgba(37, 245, 155, 0.7);
}

.redi7-trading-content h2 {
    margin: 28px 0 20px;
    color: #fff;
    font-family: var(--display);
    font-size: 92px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.9;
    text-shadow: 0 0 30px rgba(0, 205, 255, 0.1);
}

.redi7-trading-content h2 span {
    color: transparent;
    background: linear-gradient(100deg, #fff 0%, #5deaff 30%, #168cff 65%, #fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    filter: drop-shadow(0 0 18px rgba(0, 200, 255, 0.25));
}

.redi7-trading-description {
    max-width: 720px;
    margin: 0 auto;
    color: #91a8c9;
    font-size: 17px;
    line-height: 1.75;
}

.redi7-trading-description strong {
    color: #e8faff;
}

.redi7-trading-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.redi7-btn-primary,
.redi7-btn-secondary {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 250ms ease, box-shadow 250ms ease, background 250ms ease, border-color 250ms ease;
}

.redi7-btn-primary {
    color: #00121d;
    background: linear-gradient(135deg, #64f5ff, #168cff);
    box-shadow: 0 0 30px rgba(0, 190, 255, 0.25);
}

.redi7-btn-secondary {
    color: #d9f7ff;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(100, 210, 255, 0.25);
    backdrop-filter: blur(10px);
}

.redi7-btn-primary:hover,
.redi7-btn-secondary:hover {
    transform: translateY(-4px);
}

.redi7-btn-primary:hover {
    box-shadow: 0 0 45px rgba(0, 205, 255, 0.48);
}

.redi7-btn-secondary:hover {
    background: rgba(0, 200, 255, 0.08);
    border-color: rgba(0, 225, 255, 0.55);
}

.site-footer {
    color: var(--white);
    background: var(--ink);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 0.7fr);
    gap: 60px;
    padding-top: 72px;
    padding-bottom: 60px;
}

.footer-brand p {
    max-width: 330px;
    margin: 12px 0 0;
    color: var(--muted-dark);
    font-size: 12px;
}

.footer-top h3 {
    margin: 0 0 18px;
    color: #edf5f6;
    font-size: 11px;
    text-transform: uppercase;
}

.footer-top > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-top > div:not(.footer-brand) a {
    margin-bottom: 9px;
    color: var(--muted-dark);
    font-size: 11px;
    text-decoration: none;
}

.footer-top > div:not(.footer-brand) a:hover {
    color: var(--cyan);
}

.footer-bottom {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid var(--line-dark);
}

.footer-bottom p {
    margin: 0;
    color: #748a94;
    font-size: 9px;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: #20b965;
    border-radius: 50%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.26);
    font-size: 24px;
    text-decoration: none;
    transition: transform 180ms ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes cue {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@media (max-width: 1020px) {
    .main-nav {
        gap: 18px;
    }

    .header-actions .text-link {
        display: none;
    }

    .hero-layout-futuristic {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-copy {
        width: 100%;
        max-width: 700px;
    }

    .hero-title-futuristic {
        font-size: 64px;
    }

    .hologram-stage {
        max-width: 540px;
        margin-inline: auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .platform-layout {
        grid-template-columns: 1fr;
    }

    .platform::before {
        width: 22%;
    }

    .platform-copy {
        max-width: 690px;
    }

    .platform-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 28px;
    }

    .platform-feature:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 780px) {
    :root {
        --header-height: 68px;
    }

    .shell {
        width: min(100% - 30px, 620px);
    }

    .section {
        padding: 78px 0;
    }

    .brand-logo-normal {
        width: 42px;
        height: 42px;
    }

    .brand-badge-glow {
        width: 42px;
        height: 42px;
    }

    .brand-badge-glow img {
        width: 30px;
        height: 30px;
    }

    .brand-copy strong {
        font-size: 18px;
    }

    .main-nav {
        position: fixed;
        inset: var(--header-height) 0 auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px 18px 22px;
        background: rgba(7, 16, 24, 0.98);
        border-bottom: 1px solid var(--line-dark);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        min-height: 52px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--line-dark);
    }

    .main-nav a::after {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        order: 3;
    }

    .header-inner {
        gap: 10px;
    }

    .header-actions {
        margin-left: auto;
    }

    .button-small {
        min-height: 40px;
        padding-inline: 12px;
    }

    .hero {
        min-height: auto;
        align-items: flex-start;
    }

    .hero-grid {
        background-size: 44px 44px;
        mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 80%);
    }

    .hero-inner {
        padding-top: calc(var(--header-height) + 25px);
        padding-bottom: 70px;
    }

    .hero-layout-futuristic {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title-futuristic {
        font-size: 50px;
    }

    .hero-statement {
        font-size: 24px;
    }

    .hero-description {
        font-size: 14.5px;
        line-height: 1.65;
    }

    .hero-proof {
        gap: 10px 14px;
        font-size: 9.5px;
    }

    .hologram-stage {
        max-width: 100%;
        padding: 10px 0;
    }

    .hologram-telemetry-badge {
        padding: 8px 12px;
        gap: 8px;
    }

    .badge-top {
        top: -8px;
        right: 0px;
    }

    .badge-bottom {
        bottom: -10px;
        left: 0px;
    }

    .badge-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .badge-title {
        font-size: 8px;
    }

    .badge-metric {
        font-size: 11px;
    }

    .hologram-telemetry-pill {
        display: none;
    }

    .scroll-cue {
        display: none;
    }

    .signal-track {
        justify-content: flex-start;
        animation: marquee 18s linear infinite;
    }

    .section-heading,
    .services-heading {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        margin-bottom: 44px;
    }

    .section-heading h2,
    .services-heading h2,
    .platform-copy h2,
    .academy-copy h2 {
        font-size: 34px;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .services-focus {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-focus span:nth-child(2) {
        border-right: 0;
    }

    .services-focus span:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line-dark);
    }

    .value-block {
        min-height: 380px;
        padding: 26px 24px 82px;
    }

    .value-capabilities {
        left: 24px;
        right: 24px;
    }

    .value-block h3 {
        margin-top: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-featured {
        grid-column: auto;
    }

    .service-featured > div:nth-child(2) {
        max-width: 100%;
    }

    .service-card:last-child {
        grid-column: auto;
    }

    .service-card {
        min-height: 390px;
    }

    .service-telegram-copier > div:nth-child(2),
    .service-trader-signals > div:nth-child(2),
    .service-trailing-stop > div:nth-child(2),
    .service-gold-voltage > div:nth-child(2),
    .service-forex-voltage > div:nth-child(2) {
        padding-top: 70px;
    }

    .platform::before {
        display: none;
    }

    .platform-layout {
        gap: 42px;
    }

    .dashboard-body {
        min-height: 390px;
        grid-template-columns: 48px 1fr;
    }

    .dashboard-main {
        padding: 20px 14px;
    }

    .metric-row {
        grid-template-columns: 1fr;
    }

    .metric-row > div {
        min-height: 64px;
        grid-template-columns: 22px 1fr;
        align-items: center;
    }

    .metric-row i {
        grid-row: span 2;
        margin: 0;
    }

    .chart-panel {
        display: none;
    }

    .platform-features {
        grid-template-columns: 1fr;
        margin-top: 48px;
    }

    .platform-feature,
    .platform-feature:nth-child(2) {
        padding: 23px 0 0;
        border-right: 0;
    }

    .academy {
        min-height: 760px;
        align-items: flex-end;
    }

    .academy-photo {
        background-position: 62% center;
    }

    .academy::after {
        background: linear-gradient(180deg, rgba(7, 16, 24, 0.2) 0%, rgba(7, 16, 24, 0.78) 42%, rgba(7, 16, 24, 1) 100%);
    }

    .academy-copy {
        width: 100%;
        padding: 250px 0 68px;
    }

    .academy-points {
        grid-template-columns: 1fr;
    }

    .home-testimonials-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .home-testimonials-heading h2 {
        font-size: 34px;
    }

    .home-testimonials-video {
        width: min(100%, 560px);
        aspect-ratio: 3 / 2;
    }

    .home-testimonials-video img {
        object-position: center;
    }

    .home-testimonials-play {
        width: 62px;
        height: 62px;
        font-size: 18px;
    }

    .home-testimonials-video-label {
        left: 14px;
        bottom: 14px;
    }

    .home-testimonials-action {
        align-items: flex-start;
        flex-direction: column;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insight-card {
        min-height: 280px;
    }

    .process-list {
        grid-template-columns: 1fr;
    }

    .process-list li {
        min-height: 160px;
        grid-template-columns: 42px 1fr auto;
        gap: 14px;
        padding: 22px;
    }

    .process-list li > span {
        font-size: 22px;
    }

    .redi7-trading-evolucionado {
        min-height: 540px;
        padding: 70px 20px;
    }

    .redi7-trading-content h2 {
        font-size: 58px;
    }

    .redi7-trading-description {
        font-size: 15px;
    }

    .redi7-trading-buttons {
        flex-direction: column;
    }

    .redi7-btn-primary,
    .redi7-btn-secondary {
        width: 100%;
        max-width: 330px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 42px 28px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        min-height: 110px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 8px;
    }

    @keyframes marquee {
        to { transform: translateX(-55%); }
    }
}

@media (max-width: 460px) {
    .shell {
        width: min(100% - 24px, 620px);
    }

    .section {
        padding: 64px 0;
    }

    .brand-copy small {
        display: none;
    }

    .brand-copy strong {
        font-size: 16px;
    }

    .header-actions .button {
        padding-inline: 10px;
        font-size: 9px;
    }

    .heading-accent {
        white-space: normal;
    }

    .ecosystem-intro {
        padding-left: 16px;
    }

    .header-actions .button i {
        display: none;
    }

    .hero-inner {
        padding-top: 96px;
        padding-bottom: 220px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-statement {
        font-size: 23px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-proof {
        display: grid;
        grid-template-columns: 1fr;
    }

    .section-heading h2,
    .services-heading h2,
    .platform-copy h2,
    .academy-copy h2 {
        font-size: 30px;
    }

    .services-heading h2 {
        overflow-wrap: anywhere;
    }

    .service-card {
        min-height: 400px;
        padding: 22px;
    }

    .service-card h3,
    .home-testimonials-heading h2,
    .process-list h3 {
        overflow-wrap: anywhere;
    }

    .service-telegram-copier > div:nth-child(2),
    .service-trader-signals > div:nth-child(2),
    .service-trailing-stop > div:nth-child(2),
    .service-gold-voltage > div:nth-child(2),
    .service-forex-voltage > div:nth-child(2) {
        padding-top: 48px;
    }

    .home-testimonials-video-label {
        max-width: calc(100% - 28px);
        font-size: 8px;
    }

    .home-testimonials-action .button,
    .redi7-btn-primary,
    .redi7-btn-secondary {
        width: 100%;
    }

    .process-list li {
        grid-template-columns: 36px minmax(0, 1fr);
    }

    .process-list li > i {
        display: none;
    }

    .dashboard-window {
        margin-inline: -7px;
    }

    .dashboard-welcome strong {
        font-size: 20px;
    }

    .redi7-trading-content h2 {
        font-size: 46px;
        overflow-wrap: anywhere;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 48px;
        height: 48px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

.footer-logo {
    width: min(120px, 100%);
    display: block;
}

.footer-logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 24px rgba(0, 215, 232, 0.14));
}