/* GoCast.App — diseño landing */

:root {
    --gc-gutter: clamp(0.35rem, 0.85vw, 0.6rem);
    --gc-max: min(1560px, calc(100% - 0.5rem));
    --gc-content-max: var(--gc-max);
    --gc-nav-h: 72px;
    --gc-bg: #080a0f;
    --gc-surface: #0f131a;
    --gc-card: #161c28;
    --gc-card-2: #1c2433;
    --gc-line: rgba(255, 255, 255, 0.1);
    --gc-line-soft: rgba(255, 255, 255, 0.06);
    --gc-text: #eef0f4;
    --gc-muted: #8b939f;
    --gc-accent: #0dcaf0;
    --gc-green: #3dd68c;
    --gc-amber: #ff9f43;
    --gc-radius: 14px;
    --gc-gap: 1.25rem;
}

body {
    margin: 0;
    background: var(--gc-bg);
    color: var(--gc-text);
}

/* Iconos FA: no heredar GoCastProx; centrar en cajas */
.fas,
.far,
.fab {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
}

.integracion-paso__icon,
.emisor-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.integracion-paso__icon i,
.emisor-item__icon i {
    line-height: 1;
}

.pipeline-node i,
.cap-nav a i,
.hero-chip i,
.nav-cta i,
.btn i {
    line-height: 1;
    vertical-align: middle;
}

body::before {
    display: none;
}

.container {
    width: 100%;
    max-width: var(--gc-max);
    margin-inline: auto;
    padding-inline: var(--gc-gutter);
}

/* Nav */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--gc-nav-h);
    background: rgba(8, 10, 15, 0.92);
    border-bottom: 1px solid var(--gc-line);
    backdrop-filter: blur(14px);
}

.site-nav .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a:not(.nav-cta) {
    color: var(--gc-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none !important;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--gc-text);
}

.nav-cta {
    border-radius: 8px;
    font-weight: 600;
}

/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: calc(var(--gc-nav-h) + 2.75rem) 0 4rem;
    background: linear-gradient(165deg, #0c1018 0%, #080a0f 45%, #0a1218 100%);
    border-bottom: 1px solid var(--gc-line);
}

.hero-ambient {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-ambient__grid {
    position: absolute;
    inset: -25% -10%;
    background-image:
        linear-gradient(rgba(13, 202, 240, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 202, 240, 0.06) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 80% 70% at 55% 45%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 55% 45%, #000 20%, transparent 75%);
    animation: heroGridDrift 32s linear infinite;
}

.hero-ambient__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.5;
    will-change: transform;
}

.hero-ambient__orb--cyan {
    width: min(48vw, 380px);
    height: min(48vw, 380px);
    top: -12%;
    left: -8%;
    background: rgba(13, 202, 240, 0.42);
    animation: heroOrbA 16s ease-in-out infinite;
}

.hero-ambient__orb--green {
    width: min(36vw, 280px);
    height: min(36vw, 280px);
    bottom: 0;
    right: 5%;
    background: rgba(61, 214, 140, 0.22);
    animation: heroOrbB 20s ease-in-out infinite;
}

.hero-ambient__orb--violet {
    width: min(30vw, 220px);
    height: min(30vw, 220px);
    top: 40%;
    right: 28%;
    background: rgba(100, 120, 200, 0.2);
    animation: heroOrbC 14s ease-in-out infinite reverse;
}

.hero-ambient__beam {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(13, 202, 240, 0.35), transparent);
    transform: translateX(-50%) rotate(12deg);
    transform-origin: top center;
    opacity: 0.4;
    animation: heroBeamPulse 6s ease-in-out infinite;
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.5rem, 3vw, 2.75rem);
    align-items: center;
}

.hero-copy {
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-visual {
    position: relative;
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.85rem;
    padding: 0.35rem 0.75rem 0.35rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gc-accent);
    background: rgba(13, 202, 240, 0.08);
    border: 1px solid rgba(13, 202, 240, 0.22);
    border-radius: 999px;
}

.hero-kicker__pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gc-accent);
    box-shadow: 0 0 12px var(--gc-accent);
    animation: heroPulse 2s ease-in-out infinite;
}

.hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.1rem, 4.8vw, 3.35rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(90deg, #e8f4ff 0%, var(--gc-accent) 55%, #7ee8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    margin: 0 0 1.5rem;
    max-width: 34rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--gc-muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.35rem;
    background: var(--gc-accent);
    color: #041015;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none !important;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn-glow {
    box-shadow: 0 0 0 0 rgba(13, 202, 240, 0.5);
    animation: heroBtnGlow 3s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.35rem;
    border: 1px solid var(--gc-line);
    border-radius: 8px;
    color: var(--gc-text);
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
    border-color: var(--gc-accent);
    color: var(--gc-accent);
    transform: translateY(-2px);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin: 0;
    padding: 1.25rem 0 0;
    list-style: none;
    border-top: 1px solid var(--gc-line-soft);
}

.hero-metrics li {
    padding: 0.5rem 0.35rem;
    font-size: 0.72rem;
    color: var(--gc-muted);
    border-radius: 8px;
    transition: background 0.2s;
}

.hero-metrics li:hover {
    background: rgba(255, 255, 255, 0.03);
}

.hero-metrics strong {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 1.2rem;
    color: var(--gc-accent);
    animation: heroMetricPop 0.6s ease both;
}

.hero-metrics li:nth-child(2) strong { animation-delay: 0.08s; }
.hero-metrics li:nth-child(3) strong { animation-delay: 0.16s; }
.hero-metrics li:nth-child(4) strong { animation-delay: 0.24s; }

.hero-chip {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.7rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gc-text);
    background: rgba(15, 19, 26, 0.92);
    border: 1px solid var(--gc-line);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

.hero-chip i {
    color: var(--gc-accent);
    font-size: 0.6rem;
}

.hero-chip--top {
    top: -0.5rem;
    right: 8%;
    animation: heroFloatChip 5s ease-in-out infinite;
}

.hero-chip--side {
    bottom: 18%;
    left: -0.75rem;
    animation: heroFloatChip 6.5s ease-in-out infinite reverse;
}

.hero-screen {
    position: relative;
    border-radius: var(--gc-radius);
    border: 1px solid rgba(13, 202, 240, 0.25);
    background: #0a0c10;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 24px 60px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(13, 202, 240, 0.08);
    animation: heroScreenFloat 7s ease-in-out infinite;
}

.hero-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-screen__head,
.hero-screen__foot {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 1rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(18, 22, 30, 0.95);
    border-bottom: 1px solid var(--gc-line-soft);
}

.hero-screen__foot {
    border-bottom: none;
    border-top: 1px solid var(--gc-line-soft);
    color: var(--gc-muted);
}

.hero-screen__route {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--gc-accent);
}

.hero-screen__route i {
    font-size: 0.55rem;
    animation: heroRouteBlink 2s ease-in-out infinite;
}

.hero-screen__live {
    color: #ff6b6b;
}

.hero-screen__live i {
    font-size: 0.45rem;
    vertical-align: middle;
    margin-right: 0.25rem;
    animation: heroLiveBlink 1.4s ease-in-out infinite;
}

.hero-screen__tag {
    color: var(--gc-muted);
}

.hero-screen__body {
    position: relative;
    aspect-ratio: 16 / 10;
    background:
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(13, 202, 240, 0.12), transparent),
        linear-gradient(180deg, #161e2a 0%, #0a0e14 100%);
    overflow: hidden;
}

.hero-screen__grid-lines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 23px,
        rgba(255, 255, 255, 0.03) 23px,
        rgba(255, 255, 255, 0.03) 24px
    );
    opacity: 0.6;
}

.hero-screen__scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(13, 202, 240, 0.8), transparent);
    box-shadow: 0 0 16px rgba(13, 202, 240, 0.6);
    animation: heroScan 4s linear infinite;
    z-index: 3;
    opacity: 0.7;
}

.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2.5rem;
    width: 100%;
    height: 45%;
    z-index: 1;
    animation: heroWaveShift 7s ease-in-out infinite;
}

.hero-wave__path {
    fill: rgba(13, 202, 240, 0.2);
}

.hero-wave__path--front {
    fill: rgba(13, 202, 240, 0.38);
}

.hero-vu {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    height: 2.25rem;
    padding: 0 1rem 0.5rem;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65));
}

.hero-vu span {
    flex: 1;
    max-width: 8px;
    height: var(--vu-h, 50%);
    border-radius: 2px 2px 0 0;
    background: linear-gradient(180deg, var(--gc-green), var(--gc-accent));
    transform-origin: bottom;
    animation: heroVuBounce 0.9s ease-in-out infinite;
}

.hero-vu span:nth-child(odd) { animation-duration: 0.75s; }
.hero-vu span:nth-child(3n) { animation-duration: 1.05s; }
.hero-vu span:nth-child(4) { animation-delay: 0.1s; }
.hero-vu span:nth-child(7) { animation-delay: 0.2s; }
.hero-vu span:nth-child(10) { animation-delay: 0.15s; }

@keyframes heroGridDrift {
    from { transform: translate(0, 0); }
    to { transform: translate(44px, 44px); }
}

@keyframes heroOrbA {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 20px) scale(1.08); }
}

@keyframes heroOrbB {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-25px, -15px); }
}

@keyframes heroOrbC {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, 25px) scale(0.92); }
}

@keyframes heroBeamPulse {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 0.55; }
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

@keyframes heroBtnGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(13, 202, 240, 0.25); }
    50% { box-shadow: 0 4px 32px rgba(13, 202, 240, 0.55); }
}

@keyframes heroMetricPop {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFloatChip {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes heroScreenFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(0.3deg); }
}

@keyframes heroScan {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { top: 100%; opacity: 0; }
}

@keyframes heroLiveBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

@keyframes heroRouteBlink {
    0%, 100% { opacity: 1; transform: translateX(0); }
    50% { opacity: 0.5; transform: translateX(3px); }
}

@keyframes heroWaveShift {
    0%, 100% { transform: translateY(0) scaleY(1); }
    50% { transform: translateY(-3px) scaleY(1.06); }
}

@keyframes heroVuBounce {
    0%, 100% { transform: scaleY(0.45); }
    50% { transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-ambient__grid,
    .hero-ambient__orb,
    .hero-ambient__beam,
    .hero-copy,
    .hero-visual,
    .hero-kicker__pulse,
    .hero-btn-glow,
    .hero-metrics strong,
    .hero-chip,
    .hero-screen,
    .hero-screen__scan,
    .hero-screen__live i,
    .hero-screen__route i,
    .hero-wave,
    .hero-vu span {
        animation: none !important;
    }
}

/* Secciones */
.page-section {
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--gc-line);
}

.page-section--flow {
    background: var(--gc-bg);
}

.page-section--intro {
    background: var(--gc-surface);
    padding-bottom: 2rem;
}

.page-section--stack {
    padding-top: 0;
    background: var(--gc-bg);
}

.page-section--integracion {
    background: var(--gc-surface);
}

.section-label {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.7rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gc-accent);
    background: rgba(13, 202, 240, 0.1);
    border: 1px solid rgba(13, 202, 240, 0.2);
    border-radius: 6px;
}

.section-title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.section-desc {
    margin: 0 0 1.75rem;
    max-width: 40rem;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--gc-muted);
}

.section-desc--last {
    margin-bottom: 0;
}

/* Flujo */
.pipeline-card {
    margin-top: 0.5rem;
}

.pipeline-flow--four {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    align-items: center;
}

.pipeline-node {
    padding: 1.15rem 0.65rem;
    text-align: center;
    background: var(--gc-card);
    border: 1px solid var(--gc-line-soft);
    border-radius: 10px;
}

.pipeline-node i {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 0.5rem;
    line-height: 2.5rem;
    font-size: 1rem;
    color: var(--gc-accent);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 10px;
}

.pipeline-node h3 {
    margin: 0 0 0.25rem;
    font-size: 0.85rem;
}

.pipeline-node p {
    margin: 0;
    font-size: 0.72rem;
    color: var(--gc-muted);
}

.pipeline-arrow {
    text-align: center;
    color: rgba(13, 202, 240, 0.45);
    font-size: 0.65rem;
}

/* Nav funciones */
.funciones-nav {
    position: sticky;
    top: var(--gc-nav-h);
    z-index: 90;
    background: rgba(8, 10, 15, 0.95);
    border-bottom: 1px solid var(--gc-line);
    backdrop-filter: blur(12px);
}

.cap-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0;
    padding: 0.85rem 0;
    list-style: none;
}

.cap-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gc-muted);
    text-decoration: none !important;
    background: var(--gc-card);
    border: 1px solid var(--gc-line-soft);
    border-radius: 6px;
}

.cap-nav a:hover {
    color: var(--gc-text);
    border-color: rgba(13, 202, 240, 0.4);
}

.cap-nav a i {
    font-size: 0.65rem;
    color: var(--gc-accent);
}

/* Tarjetas función */
.funciones-stack {
    display: flex;
    flex-direction: column;
    gap: var(--gc-gap);
    padding-bottom: 3.5rem;
}

.feat-panel {
    background: var(--gc-card);
    border: 1px solid var(--gc-line);
    border-radius: var(--gc-radius);
    padding: clamp(1.5rem, 3vw, 2rem);
    scroll-margin-top: calc(var(--gc-nav-h) + 4.5rem);
}

.feat-grid {
    display: grid;
    grid-template-columns: 1fr minmax(240px, 300px);
    gap: 2rem;
    align-items: start;
}

.feat-label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gc-accent);
}

.feat-label--green { color: var(--gc-green); }
.feat-label--amber { color: var(--gc-amber); }

.feat h2 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.feat-intro {
    margin: 0 0 1.15rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--gc-muted);
}

.feat-intro strong {
    color: var(--gc-text);
}

.feat-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2rem;
}

.feat-cols h4 {
    margin: 0 0 0.45rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7280;
}

.feat-cols ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.feat-cols li {
    padding: 0.4rem 0;
    padding-left: 0.9rem;
    font-size: 0.86rem;
    line-height: 1.5;
    color: var(--gc-muted);
    border-bottom: 1px solid var(--gc-line-soft);
    position: relative;
}

.feat-cols li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 4px;
    height: 4px;
    border-radius: 1px;
    background: var(--gc-accent);
}

.feat--client .feat-cols li::before { background: var(--gc-green); }
.feat--intercom .feat-cols li::before { background: var(--gc-amber); }

.feat-note {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--gc-muted);
    background: rgba(0, 0, 0, 0.25);
    border-left: 3px solid var(--gc-accent);
    border-radius: 0 8px 8px 0;
}

.feat-aside {
    border: 1px solid var(--gc-line-soft);
    border-radius: 10px;
    overflow: hidden;
    background: #0a0c10;
}

.feat-aside::before {
    content: "";
    display: block;
    height: 28px;
    background:
        radial-gradient(circle at 14px 50%, #ff5f57 4px, transparent 4px),
        radial-gradient(circle at 34px 50%, #febc2e 4px, transparent 4px),
        radial-gradient(circle at 54px 50%, #28c840 4px, transparent 4px),
        #12161e;
    border-bottom: 1px solid var(--gc-line-soft);
}

.feat-aside .mock-ui {
    padding: 1rem;
    font-family: ui-monospace, Consolas, monospace;
    font-size: 0.7rem;
    line-height: 1.6;
    color: #6b7280;
}

.feat-aside .mock-ui::before {
    display: none;
}

.feat-aside .line--ok { color: var(--gc-green); }
.feat-aside .line--live { color: #ff6b6b; font-weight: 700; }
.feat-aside .line--accent { color: var(--gc-accent); }

.feat-fx {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gc-line-soft);
    border-radius: 10px;
}

.feat-fx h4 {
    margin: 0 0 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gc-accent);
}

.feat-chain {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0 0 0.75rem;
    padding: 0;
    list-style: none;
}

.feat-chain li {
    padding: 0.25rem 0.5rem;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #9eeaf9;
    background: rgba(13, 202, 240, 0.1);
    border: 1px solid rgba(13, 202, 240, 0.2);
    border-radius: 5px;
}

.feat-fx-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feat-fx-grid li {
    font-size: 0.78rem;
    color: var(--gc-muted);
}

.feat-fx-grid strong {
    display: block;
    color: var(--gc-text);
    font-size: 0.8rem;
}

.feat-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #041015;
    background: var(--gc-accent);
    border-radius: 8px;
    text-decoration: none !important;
}

/* Integración */
.integracion-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.integracion-intro .section-desc--last {
    max-width: 42rem;
}

.integracion-layout {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 320px);
    gap: var(--gc-gap);
    align-items: stretch;
}

.integracion-rutas {
    padding: 1.5rem;
    background: var(--gc-card);
    border: 1px solid var(--gc-line);
    border-radius: var(--gc-radius);
}

.integracion-paso--screen {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(90deg, rgba(13, 202, 240, 0.12), rgba(13, 202, 240, 0.02));
    border: 1px solid rgba(13, 202, 240, 0.28);
    border-radius: 10px;
}

.integracion-paso__num {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: #041015;
    background: var(--gc-accent);
    border-radius: 8px;
}

.integracion-paso__icon {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    line-height: 2.75rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--gc-accent);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 10px;
}

.integracion-paso__text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.integracion-paso__text strong {
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.integracion-paso__text span {
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--gc-muted);
}

.integracion-rutas__label {
    margin: 0 0 0.75rem;
    padding-left: 0.15rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7280;
}

.emisor-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.emisor-item {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 0.85rem;
    align-items: start;
    padding: 0.85rem 1rem;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid var(--gc-line-soft);
    border-radius: 10px;
    transition: border-color 0.2s, background 0.2s;
}

.emisor-item:hover {
    border-color: rgba(13, 202, 240, 0.35);
    background: rgba(13, 202, 240, 0.04);
}

.emisor-item__mark {
    align-self: center;
    padding: 0.2rem 0.45rem;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gc-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gc-line-soft);
    border-radius: 4px;
}

.emisor-item__icon {
    width: 2.25rem;
    height: 2.25rem;
    line-height: 2.25rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--gc-accent);
    background: rgba(13, 202, 240, 0.08);
    border-radius: 8px;
}

.emisor-item__body h3 {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    font-weight: 700;
}

.emisor-item__body p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--gc-muted);
}

.emisor-item__body em {
    font-style: normal;
    color: var(--gc-text);
    font-weight: 600;
}

.integracion-mixer {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: linear-gradient(165deg, #121820 0%, #0c1016 100%);
    border: 1px solid rgba(13, 202, 240, 0.3);
    border-radius: var(--gc-radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.integracion-mixer__eyebrow {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gc-accent);
}

.integracion-mixer__title {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.integracion-mixer__desc {
    margin: 0 0 1.25rem;
    flex: 1;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--gc-muted);
}

.integracion-mixer__actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.integracion-mixer__url {
    display: block;
    padding: 0.55rem 0.75rem;
    font-family: ui-monospace, Consolas, monospace;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gc-accent);
    text-align: center;
    text-decoration: none !important;
    background: rgba(13, 202, 240, 0.08);
    border: 1px solid rgba(13, 202, 240, 0.25);
    border-radius: 8px;
    transition: background 0.2s, border-color 0.2s;
}

.integracion-mixer__url:hover {
    background: rgba(13, 202, 240, 0.14);
    border-color: rgba(13, 202, 240, 0.45);
}

.integracion-mixer__actions .btn-primary {
    width: 100%;
    justify-content: center;
}

.integracion-mixer__note {
    margin: 1rem 0 0;
    padding-top: 1rem;
    font-size: 0.72rem;
    line-height: 1.45;
    color: #6b7280;
    border-top: 1px solid var(--gc-line-soft);
}

.site-footer {
    padding: 2rem 0;
    border-top: 1px solid var(--gc-line);
    background: #06080a;
    text-align: center;
    font-size: 0.88rem;
    color: var(--gc-muted);
}

.site-footer a {
    color: var(--gc-accent);
}

/* Ocultar restos viejos */
.hero-showcase,
.hero-scroll,
.hero-bg,
.hero-badge,
.hero-badge-pulse,
.hero-enter,
.bento {
    display: none !important;
}

body {
    padding-inline: 0;
}

.site-nav {
    left: 0;
    right: 0;
}

.reveal {
    opacity: 1;
    transform: none;
}

@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
        max-width: 24rem;
        margin-inline: auto;
    }

    .hero-chip--side {
        left: 0.5rem;
    }

    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .feat-grid {
        grid-template-columns: 1fr;
    }

    .feat-cols {
        grid-template-columns: 1fr;
    }

    .pipeline-flow--four {
        grid-template-columns: 1fr;
    }

    .pipeline-arrow {
        transform: rotate(90deg);
    }

    .integracion-layout {
        grid-template-columns: 1fr;
    }

    .integracion-mixer {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }
}

/* Overrides sobre site.css */
body {
    background: var(--gc-bg);
    padding-inline: 0 !important;
}

.container {
    max-width: var(--gc-max) !important;
    padding-inline: var(--gc-gutter) !important;
}

.brand-logo {
    display: block;
    height: 36px;
    width: auto;
}

.footer-desk {
    margin-top: 0.35rem;
}
