/* =====================================================================
   CANAL MEDIOCERO — Propuesta Comercial 2026
   Brand sample / Landing one-page
   Paleta y branding extraídos del PDF oficial
   ===================================================================== */

:root {
    /* Brand */
    --orange: #E2580E;
    --orange-2: #FF7A1A;
    --orange-dk: #B8430A;
    --orange-soft: rgba(226, 88, 14, 0.10);
    --navy: #0A1A2F;
    --navy-2: #10243E;
    --navy-3: #1B3B62;
    --paper: #F4F6F9;
    --paper-2: #EAEEF4;
    --white: #FFFFFF;
    --ink: #0A1A2F;
    --muted: #5A6B82;
    --line: #E1E7F0;

    /* Effects */
    --shadow-sm: 0 4px 14px rgba(10, 26, 47, 0.06);
    --shadow: 0 12px 34px rgba(10, 26, 47, 0.12);
    --shadow-lg: 0 26px 60px rgba(10, 26, 47, 0.22);
    --glow: 0 10px 40px rgba(226, 88, 14, 0.35);

    --radius: 14px;
    --radius-lg: 22px;
    --maxw: 1180px;
    --ease: cubic-bezier(.16, .84, .34, 1);

    --font-display: 'Anton', 'Inter', sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 22px;
}

/* ---------- Typography helpers ---------- */
.display {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: .5px;
    line-height: .96;
    font-weight: 400;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    font-size: .76rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
}

.kicker::before {
    content: "";
    width: 26px;
    height: 3px;
    border-radius: 3px;
    background: var(--orange);
}

.section-title {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: 1.12;
    letter-spacing: .5px;
    color: var(--navy);
}

.section-title .hl {
    color: var(--orange);
}

.lead {
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 60ch;
}

/* tech / circuit decorative pattern */
.circuit {
    background-image:
        radial-gradient(rgba(255, 255, 255, .10) 1.4px, transparent 1.4px);
    background-size: 26px 26px;
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.reveal.d1 {
    transition-delay: .08s;
}

.reveal.d2 {
    transition-delay: .16s;
}

.reveal.d3 {
    transition-delay: .24s;
}

.reveal.d4 {
    transition-delay: .32s;
}

.reveal.d5 {
    transition-delay: .40s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    html {
        scroll-behavior: auto
    }
}

/* =====================================================================
   NAVBAR
   ===================================================================== */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}

.nav.scrolled {
    background: rgba(10, 26, 47, .92);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 26px rgba(0, 0, 0, .28);
    padding: 10px 22px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.brand-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
}

.brand-name {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 1.1rem;
    line-height: 1.04;
    letter-spacing: .5px;
}

.brand-name small {
    display: block;
    font-size: .54rem;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.60);
    margin-top: 3px;
    line-height: 1;
}

.nav-links {
    display: none;
    gap: 26px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, .82);
    font-weight: 600;
    font-size: .92rem;
    position: relative;
    transition: color .2s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    width: 0;
    background: var(--orange);
    transition: width .25s var(--ease);
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    font-size: .92rem;
    letter-spacing: .3px;
    padding: 12px 22px;
    border-radius: 50px;
    cursor: pointer;
    border: 0;
    transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s;
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: var(--glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--orange-dk);
}

.btn-ghost {
    background: rgba(255, 255, 255, .10);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .28);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow);
}

.btn-dark:hover {
    background: var(--navy-3);
    transform: translateY(-2px);
}

.nav .btn {
    padding: 10px 18px;
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    padding: 120px 0 70px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    to {
        transform: scale(1.16);
    }
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(226, 88, 14, .93) 0%, rgba(226, 88, 14, .62) 42%, rgba(10, 26, 47, .78) 78%, rgba(10, 26, 47, .94) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-mark {
    width: 92px;
    height: 92px;
    margin-bottom: 22px;
    filter: drop-shadow(0 8px 22px rgba(0, 0, 0, .3));
}

.hero h1 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(3.4rem, 12vw, 7.5rem);
    line-height: .98;
    letter-spacing: 1px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, .3);
}

.hero h1 .thin {
    font-family: var(--font-body);
    font-weight: 300;
    display: block;
    font-size: .42em;
    letter-spacing: 8px;
}

.hero-tagline {
    margin: 22px 0 8px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: clamp(.85rem, 2vw, 1.1rem);
    color: #fff;
}

.hero-slogan {
    display: inline-block;
    margin-top: 18px;
    background: rgba(10, 26, 47, .55);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(4px);
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-style: italic;
    font-size: 1.05rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .82rem;
    backdrop-filter: blur(4px);
}

.chip .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange-2);
}

.hero-social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.hero-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    transition: transform .2s var(--ease), background .2s;
}

.hero-social a:hover {
    transform: translateY(-3px);
    background: var(--orange);
}

.hero-social svg {
    width: 19px;
    height: 19px;
    fill: #fff;
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .7);
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-cue .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, .6);
    border-radius: 14px;
    position: relative;
}

.scroll-cue .mouse::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 7px;
    border-radius: 3px;
    background: #fff;
    animation: wheel 1.6s infinite;
}

@keyframes wheel {
    0% {
        opacity: 1;
        top: 7px
    }

    100% {
        opacity: 0;
        top: 18px
    }
}

/* =====================================================================
   SECTION SHELL
   ===================================================================== */
section {
    position: relative;
}

.sec {
    padding: clamp(64px, 9vw, 120px) 0;
}

.sec-dark {
    background: var(--navy);
    color: #fff;
}

.sec-dark .section-title {
    color: #fff;
}

.sec-dark .lead {
    color: rgba(255, 255, 255, .72);
}

.sec-deep {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #fff;
}

.sec-deep .section-title {
    color: #fff;
}

.sec-deep .lead {
    color: rgba(255, 255, 255, .72);
}

.head {
    max-width: 760px;
    margin-bottom: 52px;
}

.head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.head.center .kicker {
    justify-content: center;
}

/* =====================================================================
   INTRO / RED MULTIPLATAFORMA
   ===================================================================== */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
    align-items: center;
}

.intro-copy p.big {
    font-size: 1.25rem;
    color: var(--ink);
    font-weight: 500;
}

.intro-copy strong {
    color: var(--orange);
}

.platform-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.pf {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px 14px;
    min-width: 96px;
    flex: 1;
    box-shadow: var(--shadow-sm);
    transition: transform .25s var(--ease), box-shadow .25s;
}

.pf:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.pf svg {
    width: 26px;
    height: 26px;
    fill: var(--orange);
}

.pf span {
    font-weight: 700;
    font-size: .82rem;
    color: var(--navy);
}

.intro-media {
    position: relative;
}

.intro-media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.alliance {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding: 16px 22px;
    border-radius: var(--radius);
    background: var(--orange-soft);
    border: 1px dashed rgba(226, 88, 14, .35);
    font-weight: 600;
    color: var(--ink);
    font-size: .95rem;
}

.alliance b {
    color: var(--orange);
}

.badge-wapp {
    font-family: var(--font-display);
    letter-spacing: 1px;
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: 8px;
    padding: 3px 10px;
    font-size: .9rem;
}

/* =====================================================================
   SOLUCIONES — cards
   ===================================================================== */
.sol-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.sol-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: transform .28s var(--ease), box-shadow .28s, border-color .28s;
}

.sol-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--orange);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .3s var(--ease);
}

.sol-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.sol-card:hover::before {
    transform: scaleY(1);
}

.sol-ic {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--orange), var(--orange-dk));
    box-shadow: var(--glow);
    margin-bottom: 18px;
}

.sol-ic svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.sol-card h3 {
    font-size: 1.18rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.sol-card p {
    color: var(--muted);
    font-size: .96rem;
}

.banner-strip {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, var(--orange), var(--orange-dk));
    color: #fff;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--glow);
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1.3;
}

.banner-strip svg {
    width: 40px;
    height: 40px;
    fill: #fff;
    flex: 0 0 auto;
}

/* =====================================================================
   ECOSISTEMA — radial hub
   ===================================================================== */
.radial-hub {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 30px auto 40px;
}

/* Fondo de estrellas */
.stars-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.stars-layer {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 20px 30px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(1.5px 1.5px at 80px 140px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 150px 70px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 220px 210px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 280px 80px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(1.5px 1.5px at 320px 250px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 380px 40px, #fff, rgba(0, 0, 0, 0));
    background-repeat: repeat;
    background-size: 400px 400px;
    animation: starMove 100s linear infinite;
    opacity: 0.45;
}

.stars-layer.l2 {
    background-image:
        radial-gradient(1.5px 1.5px at 50px 120px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 130px 270px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 260px 90px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(1.5px 1.5px at 340px 180px, #fff, rgba(0, 0, 0, 0));
    background-size: 500px 500px;
    animation: starMove2 120s linear infinite;
    opacity: 0.25;
}

@keyframes starMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -400px -400px;
    }
}

@keyframes starMove2 {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -500px 500px;
    }
}

.radial-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: grid;
    place-content: center;
    text-align: center;
    background: radial-gradient(circle at 50% 35%, var(--orange) 0%, var(--orange-dk) 100%);
    color: #fff;
    font-family: var(--font-display);
    text-transform: uppercase;
    box-shadow: var(--glow);
    border: 6px solid rgba(255, 255, 255, .12);
    line-height: .95;
    font-size: 1.2rem;
    z-index: 10;
}

.radial-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.radial-lines .line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 1px;
    border-top: 2px dashed rgba(255, 255, 255, 0.15);
    transform-origin: 0 50%;
}

.radial-lines .l-1 {
    transform: rotate(-90deg);
}

.radial-lines .l-2 {
    transform: rotate(-18deg);
}

.radial-lines .l-3 {
    transform: rotate(54deg);
}

.radial-lines .l-4 {
    transform: rotate(126deg);
}

.radial-lines .l-5 {
    transform: rotate(198deg);
}

.radial-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    margin-top: -45px;
    margin-left: -45px;
    z-index: 10;
}

.radial-node.n-1 {
    transform: rotate(-90deg) translate(200px) rotate(90deg);
}

.radial-node.n-2 {
    transform: rotate(-18deg) translate(200px) rotate(18deg);
}

.radial-node.n-3 {
    transform: rotate(54deg) translate(200px) rotate(-54deg);
}

.radial-node.n-4 {
    transform: rotate(126deg) translate(200px) rotate(-126deg);
}

.radial-node.n-5 {
    transform: rotate(198deg) translate(200px) rotate(-198deg);
}

.radial-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    backdrop-filter: blur(3px);
    transition: background .25s, border-color .25s, transform .2s;
    color: #fff;
    font-weight: 700;
    font-size: .75rem;
    cursor: default;
    position: relative;
    animation: floatNode 4s ease-in-out infinite;
}

.radial-inner:hover {
    background: rgba(226, 88, 14, .14);
    border-color: rgba(226, 88, 14, .5);
    transform: scale(1.08);
}

.n-2 .radial-inner {
    animation-delay: -0.8s;
}

.n-3 .radial-inner {
    animation-delay: -1.6s;
}

.n-4 .radial-inner {
    animation-delay: -2.4s;
}

.n-5 .radial-inner {
    animation-delay: -3.2s;
}

@keyframes floatNode {

    0%,
    100% {
        top: 0;
    }

    50% {
        top: -10px;
    }
}

.radial-inner .node-ic {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(226, 88, 14, .18);
}

.radial-inner .node-ic svg {
    width: 18px;
    height: 18px;
    fill: var(--orange-2);
}

.node-info {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 190px;
    background: rgba(10, 26, 47, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    z-index: 20;
    pointer-events: none;
    box-shadow: var(--shadow-sm);
}

.radial-inner:hover .node-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Nodos inferiores (n-3 Cable, n-4 Radio): tooltip arriba */
.n-3 .node-info,
.n-4 .node-info {
    top: auto;
    bottom: 110%;
    transform: translateX(-50%) translateY(-10px);
}

.n-3 .radial-inner:hover .node-info,
.n-4 .radial-inner:hover .node-info {
    transform: translateX(-50%) translateY(0);
}

.node-info b {
    color: var(--orange);
}

@media (max-width: 600px) {
    .radial-hub {
        width: 300px;
        height: 300px;
        margin-bottom: 50px;
    }

    .radial-lines .line {
        width: 140px;
    }

    .radial-node.n-1 {
        transform: rotate(-90deg) translate(140px) rotate(90deg);
    }

    .radial-node.n-2 {
        transform: rotate(-18deg) translate(140px) rotate(18deg);
    }

    .radial-node.n-3 {
        transform: rotate(54deg) translate(140px) rotate(-54deg);
    }

    .radial-node.n-4 {
        transform: rotate(126deg) translate(140px) rotate(-126deg);
    }

    .radial-node.n-5 {
        transform: rotate(198deg) translate(140px) rotate(-198deg);
    }
}

/* =====================================================================
   MÉTRICAS
   ===================================================================== */
.metrics-band {
    margin-bottom: 14px;
}

.metrics-band .tag {
    display: inline-block;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: .72rem;
    text-transform: uppercase;
    color: var(--navy);
    background: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
}

.sec-deep .metrics-band .tag {
    color: var(--navy);
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.metric {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    position: relative;
    overflow: hidden;
    transition: transform .25s var(--ease), border-color .25s;
}

.metric:hover {
    transform: translateY(-5px);
    border-color: rgba(226, 88, 14, .55);
}

.metric .ic {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dk));
    display: grid;
    place-items: center;
    margin-bottom: 16px;
}

.metric .ic svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.metric .num {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 7vw, 3.6rem);
    line-height: 1;
    color: #fff;
}

.metric .num .suf {
    color: var(--orange-2);
}

.metric .lbl {
    color: rgba(255, 255, 255, .72);
    font-weight: 600;
    margin-top: 6px;
}

.metric-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 42px;
}

.metric-tags span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 10px 20px;
    border-radius: 50px;
}

.metric-tags span::before {
    content: "»";
    color: var(--orange-2);
    font-weight: 900
}

/* =====================================================================
   BAR / STAT widgets (audiencia, alcance, comportamiento)
   ===================================================================== */
.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.sec-dark .panel,
.sec-deep .panel {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .12);
}

.panel h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--orange);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sec-dark .panel h3,
.sec-deep .panel h3 {
    color: var(--orange-2);
}

.bar-row {
    margin-bottom: 16px;
}

.bar-row:last-child {
    margin-bottom: 0;
}

.bar-top {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: .92rem;
    margin-bottom: 7px;
}

.sec-dark .bar-top,
.sec-deep .bar-top {
    color: #fff;
}

.bar-top .v {
    color: var(--orange);
}

.sec-dark .bar-top .v,
.sec-deep .bar-top .v {
    color: var(--orange-2);
}

.bar-track {
    height: 12px;
    border-radius: 50px;
    background: var(--paper-2);
    overflow: hidden;
}

.sec-dark .bar-track,
.sec-deep .bar-track {
    background: rgba(255, 255, 255, .12);
}

.bar-fill {
    height: 100%;
    width: 0;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--orange-dk), var(--orange-2));
    transition: width 1.3s var(--ease);
}

/* big stat callout */
.stat-callout {
    background: linear-gradient(140deg, var(--orange), var(--orange-dk));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--glow);
    align-self: center;
}

.stat-callout .big {
    font-family: var(--font-display);
    font-size: clamp(3rem, 9vw, 4.4rem);
    line-height: 1;
}

.stat-callout p {
    font-weight: 700;
    margin-top: 6px;
}

/* donut */
.donut-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.donut {
    width: 150px;
    height: 150px;
    flex: 0 0 auto;
    position: relative;
}

.donut svg {
    transform: rotate(-90deg);
}

.donut .center {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    text-align: center;
}

.legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legend .li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.legend .sw {
    width: 14px;
    height: 14px;
    border-radius: 4px;
}

.profile-note {
    margin-top: 28px;
    display: flex;
    gap: 16px;
    align-items: center;
    background: var(--orange-soft);
    border-radius: var(--radius);
    padding: 18px 22px;
}

.profile-note svg {
    width: 34px;
    height: 34px;
    fill: var(--orange);
    flex: 0 0 auto;
}

.profile-note p {
    color: var(--ink);
    font-weight: 600;
    font-size: .96rem;
}

.sec-dark .profile-note {
    background: rgba(226, 88, 14, .14);
}

.sec-dark .profile-note p {
    color: #fff;
}

/* small note chip under panels */
.mini-note {
    margin-top: 18px;
    font-size: .9rem;
    color: var(--muted);
    font-style: italic;
}

.sec-dark .mini-note,
.sec-deep .mini-note {
    color: rgba(255, 255, 255, .66);
}

.mini-note b {
    color: var(--orange);
    font-style: normal;
}

.sec-dark .mini-note b,
.sec-deep .mini-note b {
    color: var(--orange-2);
}

/* device list */
.kv-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.kv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 18px;
    border-radius: var(--radius);
    background: var(--paper);
    border: 1px solid var(--line);
}

.sec-dark .kv,
.sec-deep .kv {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .12);
}

.kv .name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.sec-dark .kv .name,
.sec-deep .kv .name {
    color: #fff;
}

.kv .name svg {
    width: 22px;
    height: 22px;
    fill: var(--orange);
}

.sec-dark .kv .name svg,
.sec-deep .kv .name svg {
    fill: var(--orange-2);
}

.kv .pct {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--orange);
}

.sec-dark .kv .pct,
.sec-deep .kv .pct {
    color: var(--orange-2);
}

/* heatmap */
.heat {
    display: grid;
    grid-template-columns: 40px repeat(8, 1fr);
    gap: 5px;
    margin-top: 8px;
}

.heat .cell {
    aspect-ratio: 1.4/1;
    border-radius: 4px;
    background: rgba(255, 255, 255, .10);
}

.heat .day {
    display: grid;
    place-items: center;
    font-size: .72rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .7);
}

.heat .hr {
    font-size: .66rem;
    color: rgba(255, 255, 255, .55);
    text-align: center;
}

/* =====================================================================
   INFRAESTRUCTURA — gallery
   ===================================================================== */
.infra-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
}

.infra-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 26px;
}

.infra-feats .f {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 700;
    font-size: .95rem;
}

.infra-feats .f svg {
    width: 22px;
    height: 22px;
    fill: var(--orange-2);
    flex: 0 0 auto;
}

.badge-4k {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    padding: 12px 18px;
}

.badge-4k .k {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: #fff;
    background: var(--orange);
    padding: 2px 12px;
    border-radius: 8px;
}

.badge-4k span {
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.gallery .g {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.gallery .g img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.gallery .g:hover img {
    transform: scale(1.08);
}

.gallery .g.tall {
    grid-row: span 2;
}

.gallery .g .cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px;
    background: linear-gradient(transparent, rgba(10, 26, 47, .85));
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
}

/* =====================================================================
   PLANES
   ===================================================================== */
.plans {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.plan {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform .28s var(--ease), box-shadow .28s;
}

.plan:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.plan.feat {
    border: 2px solid var(--orange);
}

.plan.feat::after {
    content: "Más elegido";
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    font-weight: 800;
    font-size: .72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    box-shadow: var(--glow);
}

.plan-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 6px;
}

.plan-ic {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-3));
}

.plan.feat .plan-ic {
    background: linear-gradient(135deg, var(--orange), var(--orange-dk));
    box-shadow: var(--glow);
}

.plan-ic svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.plan h3 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 1.55rem;
    color: var(--navy);
    letter-spacing: .5px;
}

.plan .for {
    color: var(--muted);
    font-size: .9rem;
    margin-bottom: 20px;
}

.plan ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.plan li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-weight: 600;
    color: var(--ink);
}

.plan li svg {
    width: 20px;
    height: 20px;
    fill: var(--orange);
    flex: 0 0 auto;
    margin-top: 2px;
}

.plan .perso {
    font-size: .82rem;
    color: var(--orange);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-align: center;
}

.flow {
    margin-top: 44px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 22px 26px;
}

.flow .step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: .92rem;
}

.flow .step .n {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--orange);
    display: grid;
    place-items: center;
    font-size: .8rem;
    font-weight: 900;
    flex: 0 0 auto;
}

.flow .arrow {
    color: var(--orange-2);
    font-weight: 900;
}

/* =====================================================================
   OPORTUNIDADES
   ===================================================================== */
.opps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.opp {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: transform .25s var(--ease), box-shadow .25s;
}

.opp:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.opp .n {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--orange), var(--orange-dk));
    box-shadow: var(--glow);
}

.opp h4 {
    color: var(--navy);
    font-size: 1.05rem;
}

.equation {
    margin-top: 38px;
    text-align: center;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(1.3rem, 4vw, 2.1rem);
    color: var(--navy);
    line-height: 1.2;
}

.equation .hl {
    color: var(--orange);
}

/* =====================================================================
   NOTICIAS
   ===================================================================== */
.news-top {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    font-size: .85rem;
    color: var(--orange);
    background: var(--orange-soft);
    padding: 8px 16px;
    border-radius: 50px;
}

.pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(226, 88, 14, .6)
    }

    70% {
        box-shadow: 0 0 0 11px rgba(226, 88, 14, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(226, 88, 14, 0)
    }
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.news-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.news-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform .28s var(--ease), box-shadow .28s;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.news-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--paper-2);
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.news-card:hover .news-thumb img {
    transform: scale(1.07);
}

.news-thumb .src {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--orange);
    color: #fff;
    font-weight: 800;
    font-size: .72rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
}

.news-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-body h3 {
    font-size: 1.18rem;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 10px;
}

.news-excerpt {
    color: var(--muted);
    font-size: .95rem;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
    padding-top: 14px;
    font-size: .82rem;
    color: #7A8AA0;
}

.news-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-weight: 800;
}

.news-more svg {
    width: 15px;
    height: 15px;
    fill: var(--orange);
    transition: transform .2s;
}

.news-card:hover .news-more svg {
    transform: translateX(4px);
}

.loading-news,
.empty-news {
    grid-column: 1/-1;
    text-align: center;
    padding: 50px;
    color: var(--muted);
    background: #fff;
    border: 1px dashed var(--line);
    border-radius: var(--radius-lg);
}

/* news modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 30px 16px;
    background: rgba(6, 15, 28, .72);
    backdrop-filter: blur(6px);
    overflow-y: auto;
}

.modal.open {
    display: flex;
    animation: fade .25s ease;
}

@keyframes fade {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.modal-card {
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 760px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: pop .35s var(--ease);
    margin: auto;
}

@keyframes pop {
    from {
        transform: translateY(28px) scale(.97);
        opacity: 0
    }

    to {
        transform: none;
        opacity: 1
    }
}

.modal-hero {
    position: relative;
    aspect-ratio: 16/8;
    background: var(--paper-2);
}

.modal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 55%, rgba(10, 26, 47, .8));
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    background: rgba(10, 26, 47, .7);
    color: #fff;
    font-size: 1.3rem;
    display: grid;
    place-items: center;
    transition: background .2s, transform .2s;
}

.modal-close:hover {
    background: var(--orange);
    transform: rotate(90deg);
}

.modal-src {
    position: absolute;
    left: 18px;
    bottom: 14px;
    z-index: 2;
    background: var(--orange);
    color: #fff;
    font-weight: 800;
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 5px 13px;
    border-radius: 50px;
}

.modal-content {
    padding: 30px clamp(22px, 4vw, 40px) 34px;
}

.modal-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 14px;
}

.modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--muted);
    font-size: .88rem;
    font-weight: 600;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.modal-meta span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.modal-meta svg {
    width: 16px;
    height: 16px;
    fill: var(--orange);
}

.modal-text {
    color: #33425A;
    font-size: 1.05rem;
    line-height: 1.8;
}

.modal-text p {
    margin-bottom: 16px;
}

.modal-actions {
    margin-top: 26px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* =====================================================================
   CTA FINAL + FOOTER
   ===================================================================== */
.cta-final {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final .container {
    position: relative;
    z-index: 2;
}

.cta-final h2 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1.08;
    color: #fff;
}

.cta-final p {
    color: rgba(255, 255, 255, .8);
    font-size: 1.15rem;
    margin: 18px auto 30px;
    max-width: 56ch;
}

.cta-final .url {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 5vw, 2.4rem);
    color: var(--orange-2);
    letter-spacing: 1px;
    margin-top: 30px;
}

.cta-final .url .ext {
    color: #fff;
}

.cta-final .slogan {
    margin-top: 14px;
    font-style: italic;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    font-size: 1.1rem;
}

.footer {
    background: #061320;
    color: rgba(255, 255, 255, .6);
    padding: 50px 0 34px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.footer-cols {
    display: flex;
    gap: 46px;
    flex-wrap: wrap;
}

.footer-cols h5 {
    color: #fff;
    font-size: .78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-cols a,
.footer-cols p {
    display: block;
    color: rgba(255, 255, 255, .6);
    font-size: .92rem;
    margin-bottom: 7px;
    transition: color .2s;
}

.footer-cols a:hover {
    color: var(--orange-2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 30px;
    padding-top: 22px;
    font-size: .84rem;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-brand-name {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 1.4rem !important;
    /* To override the generic p/a sizing */
    line-height: 1;
    letter-spacing: .5px;
}

/* =====================================================================
   INTELIGENCIA ARTIFICIAL (BENTO GRID)
   ===================================================================== */
.ai-sec {
    background: #060b13;
    /* Very dark techy background */
    color: #fff;
    padding-bottom: 80px;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.bento-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    cursor: default;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(226, 88, 14, 0.2);
    border-color: rgba(226, 88, 14, 0.3);
}

.bento-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s var(--ease);
    z-index: 1;
}

.tech-bg {
    background: linear-gradient(135deg, rgba(10, 26, 47, 1) 0%, rgba(226, 88, 14, 0.4) 100%);
    background-size: 200% 200%;
    animation: flowBg 10s ease infinite;
}

@keyframes flowBg {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.bento-card:hover .bento-bg {
    transform: scale(1.05);
}

.bento-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 11, 19, 0.95) 0%, rgba(6, 11, 19, 0.2) 60%, rgba(6, 11, 19, 0) 100%);
    z-index: 2;
    transition: opacity 0.4s, background 0.4s;
    pointer-events: none;
}

.bento-card:hover .bento-glass {
    opacity: 0.85;
    background: linear-gradient(to top, rgba(6, 11, 19, 0.85) 0%, rgba(6, 11, 19, 0.05) 70%, rgba(6, 11, 19, 0) 100%);
}

.bento-content {
    position: relative;
    z-index: 3;
}

.bento-content .b-ic {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s, border-color 0.3s;
}

.bento-card:hover .bento-content .b-ic {
    background: rgba(226, 88, 14, 0.2);
    border-color: rgba(226, 88, 14, 0.5);
}

.bento-content .b-ic svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    transition: fill 0.3s;
}

.bento-card:hover .bento-content .b-ic svg {
    fill: var(--orange-2);
}

.bento-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.bento-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
}

/* Animacion Sonido */
.sound-wave {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    gap: 4px;
    height: 30px;
    align-items: center;
    z-index: 3;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.bento-card:hover .sound-wave {
    opacity: 1;
}

.sound-wave span {
    display: block;
    width: 4px;
    background: var(--orange-2);
    border-radius: 2px;
    height: 100%;
    animation: wave 1.2s ease-in-out infinite;
}

.sound-wave span:nth-child(2) {
    animation-delay: 0.1s;
}

.sound-wave span:nth-child(3) {
    animation-delay: 0.2s;
}

.sound-wave span:nth-child(4) {
    animation-delay: 0.3s;
}

.sound-wave span:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes wave {

    0%,
    100% {
        height: 8px;
    }

    50% {
        height: 100%;
    }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (min-width: 640px) {
    .sol-grid {
        grid-template-columns: 1fr 1fr;
    }

    .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .news-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .opps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .nav-links {
        display: flex;
    }

    .intro-grid {
        grid-template-columns: 1.05fr .95fr;
    }

    .sol-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .split {
        grid-template-columns: 1fr 1fr;
    }

    .split.wide-left {
        grid-template-columns: 1.15fr .85fr;
    }

    .infra-grid {
        grid-template-columns: .9fr 1.1fr;
    }

    .plans {
        grid-template-columns: repeat(3, 1fr);
    }

    .opps {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 300px);
    }

    .bento-card.large {
        grid-column: span 2;
    }

    .bento-card.square {
        grid-column: span 1;
    }

    .bento-card.wide {
        grid-column: span 2;
    }
}

@media (min-width: 1100px) {
    .gallery {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .gallery .g.wide {
        grid-column: span 2;
    }
}