:root {
    --bg: #06100d;
    --bg-2: #0b1713;
    --card: rgba(255, 255, 255, 0.08);
    --card-strong: rgba(255, 255, 255, 0.13);
    --line: rgba(255, 255, 255, 0.14);
    --text: #f5fbf8;
    --muted: #a9b8b1;
    --green: #22c55e;
    --green-2: #14b8a6;
    --lime: #a3e635;
    --dark: #03100a;
    --white: #ffffff;
    --warning: #fbbf24;
    --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Sora', var(--font-main);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: var(--font-main);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at 12% 8%, rgba(34, 197, 94, 0.22), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(20, 184, 166, 0.2), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(163, 230, 53, 0.14), transparent 34%),
        linear-gradient(180deg, #07110e 0%, #030806 100%);
}

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

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

.container {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    top: 16px;
    left: 50%;
    z-index: 50;
    width: min(1160px, calc(100% - 32px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(3, 16, 10, 0.72);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.brand,
.nav-links,
.header-cta {
    display: inline-flex;
    align-items: center;
}

.brand {
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.brand-logo {
    width: 74px;
    height: auto;
    padding: 2px 4px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
}

.nav-links {
    gap: 20px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.nav-links a:hover {
    color: var(--white);
}

.header-cta {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), var(--green-2));
    color: #03110b;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.24);
}

.hero-section {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: 130px 0 70px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(90deg, rgba(3, 8, 6, 0.94), rgba(3, 8, 6, 0.55) 45%, rgba(3, 8, 6, 0.9)), url('../imagenes/hero-trading-desktop.svg');
    background-position: center;
    background-size: cover;
    opacity: 0.9;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    align-items: center;
    gap: 44px;
}

.eyebrow {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    margin-bottom: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(163, 230, 53, 0.32);
    border-radius: 999px;
    color: #c7f9d4;
    background: rgba(34, 197, 94, 0.1);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

h1 {
    max-width: 790px;
    font-size: clamp(3.35rem, 8vw, 7.35rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    font-weight: 900;
}

h3 {
    font-size: 1.35rem;
    font-weight: 850;
}

.hero-lead {
    max-width: 680px;
    margin-top: 24px;
    color: #d8e7df;
    font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-actions.center {
    justify-content: center;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 950;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--lime));
    color: #03110b;
    box-shadow: 0 18px 38px rgba(34, 197, 94, 0.3);
}

.btn-secondary,
.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.btn-dark {
    width: 100%;
    margin-top: 22px;
    background: #f5fbf8;
    color: #04110b;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.trust-row span {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #b8c7c0;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.86rem;
    font-weight: 750;
}

.hero-card,
.final-card,
.feature-card,
.path-card,
.broker-card,
.content-card,
.conversion-card {
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-card {
    position: relative;
    padding: 26px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: -80px -80px auto auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.2);
    filter: blur(24px);
}

.live-pill {
    width: max-content;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.16);
    color: #fde68a;
    font-size: 0.8rem;
    font-weight: 900;
}

.hero-avatar {
    width: 124px;
    height: 124px;
    margin-bottom: 22px;
    border: 2px solid rgba(163, 230, 53, 0.42);
    border-radius: 28px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.06);
}

.hero-card h2 {
    font-size: 2rem;
}

.steps-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
    padding-left: 20px;
    color: #c8d6cf;
    font-weight: 650;
}

.quick-actions {
    padding: 0 0 40px;
    transform: translateY(-34px);
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.conversion-card {
    position: relative;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.conversion-card::after {
    content: '';
    position: absolute;
    inset: auto -30px -50px auto;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.18);
    filter: blur(8px);
}

.conversion-card:hover {
    transform: translateY(-6px);
    border-color: rgba(163, 230, 53, 0.55);
    box-shadow: 0 28px 84px rgba(0, 0, 0, 0.42), 0 0 42px rgba(34, 197, 94, 0.16);
}

.card-kicker {
    width: max-content;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.16);
    color: #bbf7d0;
    font-size: 0.75rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.conversion-card strong {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 2.15rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.conversion-card small {
    position: relative;
    z-index: 1;
    color: #c9d7d0;
    font-size: 0.94rem;
    font-weight: 650;
}

.conversion-logo {
    position: relative;
    z-index: 1;
    width: auto;
    max-width: 190px;
    max-height: 54px;
    object-fit: contain;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28), 0 0 28px rgba(34, 197, 94, 0.16);
}

.vantage {
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.2), rgba(255, 255, 255, 0.07));
}

.section {
    padding: 92px 0;
}

.section-heading {
    max-width: 880px;
    margin-bottom: 34px;
}

.section-heading.narrow {
    max-width: 760px;
}

.section-heading p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.1rem;
}

.feature-grid,
.content-grid,
.path-grid {
    display: grid;
    gap: 18px;
}

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

.feature-card {
    min-height: 270px;
    padding: 22px;
    border-radius: var(--radius-md);
}

.feature-number {
    display: block;
    margin-bottom: 42px;
    color: rgba(163, 230, 53, 0.72);
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.feature-card p,
.path-card p {
    margin-top: 14px;
    color: var(--muted);
}

.dark-band {
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.42), rgba(34, 197, 94, 0.08));
    border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
    gap: 46px;
    align-items: center;
}

.split-section p {
    margin-top: 18px;
    color: #c4d2cb;
    font-size: 1.06rem;
}

.broker-stack {
    display: grid;
    gap: 16px;
}

.broker-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 18px;
    align-items: center;
    padding: 20px;
    border-radius: var(--radius-md);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.broker-card:hover {
    transform: translateY(-4px);
    border-color: rgba(163, 230, 53, 0.5);
}

.broker-card img {
    max-height: 42px;
    width: auto;
    object-fit: contain;
}

.broker-card strong,
.broker-card span {
    display: block;
}

.broker-card strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.broker-card span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.95rem;
}

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

.content-card {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 24px;
    border-radius: var(--radius-md);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.32);
}

.content-card strong {
    font-family: var(--font-display);
    font-size: 1.42rem;
    letter-spacing: -0.04em;
}

.content-card span {
    color: var(--muted);
    font-weight: 650;
}

.tiktok { background: linear-gradient(145deg, rgba(251, 113, 133, 0.18), rgba(255, 255, 255, 0.06)); }
.community { background: linear-gradient(145deg, rgba(34, 197, 94, 0.2), rgba(255, 255, 255, 0.06)); }
.youtube { background: linear-gradient(145deg, rgba(239, 68, 68, 0.2), rgba(255, 255, 255, 0.06)); }
.spotify { background: linear-gradient(145deg, rgba(34, 197, 94, 0.18), rgba(255, 255, 255, 0.06)); }
.book { background: linear-gradient(145deg, rgba(251, 191, 36, 0.18), rgba(255, 255, 255, 0.06)); }
.app { background: linear-gradient(145deg, rgba(20, 184, 166, 0.2), rgba(255, 255, 255, 0.06)); }

.authority-section {
    padding: 100px 0;
    background: #f2f7f4;
    color: #06100d;
}

.authority-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1fr);
    gap: 54px;
    align-items: center;
}

.portrait-wrap {
    position: relative;
}

.portrait {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 34px;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 28px 70px rgba(6, 16, 13, 0.22);
}

.portrait-badge {
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #06100d;
    color: #bbf7d0;
    font-family: var(--font-display);
    font-weight: 900;
}

.authority-copy .eyebrow {
    color: #14532d;
    background: rgba(34, 197, 94, 0.13);
    border-color: rgba(34, 197, 94, 0.24);
}

.authority-lead {
    margin-top: 18px;
    color: #20332b;
    font-size: 1.2rem;
    font-weight: 650;
}

.authority-copy p:not(.authority-lead) {
    margin-top: 22px;
    color: #40524a;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.credentials span {
    padding: 10px 12px;
    border: 1px solid rgba(6, 16, 13, 0.12);
    border-radius: 999px;
    background: var(--white);
    color: #102219;
    font-weight: 850;
}

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

.path-card {
    padding: 26px;
    border-radius: var(--radius-md);
}

.path-card span {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #c7f9d4;
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.path-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 24px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 900;
}

.path-card.highlighted {
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.28), rgba(255, 255, 255, 0.08));
    border-color: rgba(163, 230, 53, 0.42);
}

.path-card.highlighted a {
    background: linear-gradient(135deg, var(--green), var(--lime));
    color: #03110b;
}

.final-cta {
    padding: 70px 0 100px;
}

.final-card {
    padding: clamp(30px, 6vw, 70px);
    border-radius: 38px;
    text-align: center;
}

.final-card .eyebrow {
    margin-inline: auto;
}

.final-card p {
    max-width: 720px;
    margin: 20px auto 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.risk-note {
    color: #91a39a !important;
    font-size: 0.88rem !important;
}

.site-footer {
    padding: 38px 0 96px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--muted);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-logo {
    width: 116px;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-weight: 800;
}

.footer-links a:hover {
    color: var(--white);
}

.mobile-sticky {
    display: none;
}

@media (min-width: 981px) {
    html {
        scroll-snap-type: y mandatory;
    }

    .hero-section,
    .quick-actions,
    .section,
    .dark-band,
    .authority-section,
    .final-cta,
    .site-footer {
        min-height: 100vh;
        scroll-snap-align: start;
    }

    .hero-section,
    .quick-actions,
    .section,
    .dark-band,
    .authority-section,
    .final-cta,
    .site-footer {
        display: grid;
        align-items: center;
    }

    .hero-section {
        padding: 112px 0 56px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.62fr);
        gap: 54px;
    }

    h1 {
        max-width: 720px;
        font-size: clamp(3.2rem, 5.2vw, 5.15rem);
        line-height: 0.98;
    }

    h2 {
        font-size: clamp(2.3rem, 3.7vw, 3.85rem);
    }

    .hero-lead {
        max-width: 620px;
        margin-top: 18px;
        font-size: 1.08rem;
    }

    .hero-actions {
        margin-top: 24px;
    }

    .hero-card {
        padding: 24px;
    }

    .hero-card h2 {
        font-size: 1.7rem;
    }

    .hero-avatar {
        width: 104px;
        height: 104px;
        margin-bottom: 18px;
    }

    .steps-list {
        gap: 9px;
        margin-top: 16px;
        font-size: 0.95rem;
    }

    .quick-actions {
        padding: 112px 0 72px;
        transform: none;
    }

    .action-grid {
        align-items: stretch;
    }

    .conversion-card {
        min-height: 360px;
        padding: 32px;
    }

    .conversion-card strong {
        font-size: clamp(1.75rem, 2.3vw, 2.65rem);
    }

    .section,
    .dark-band,
    .authority-section,
    .final-cta {
        padding: 112px 0 72px;
    }

    .site-footer {
        padding: 112px 0 72px;
    }

    .section-heading {
        margin-bottom: 26px;
    }

    .section-heading p,
    .split-section p,
    .authority-lead,
    .final-card p {
        font-size: 1rem;
    }

    .feature-card {
        min-height: 245px;
    }

    .feature-number {
        margin-bottom: 28px;
        font-size: 2.25rem;
    }

    .content-card {
        min-height: 155px;
    }

    .authority-grid {
        grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
    }

    .portrait {
        max-height: 620px;
    }

    .broker-stack {
        gap: 22px;
    }

    .broker-card {
        grid-template-columns: 170px 1fr;
        min-height: 150px;
        padding: 26px;
        border-color: rgba(163, 230, 53, 0.34);
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(34, 197, 94, 0.08));
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), 0 0 42px rgba(34, 197, 94, 0.14);
    }

    .broker-card img {
        max-width: 150px;
        max-height: 74px;
        padding: 12px 14px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
    }

    .broker-card strong {
        font-size: 1.5rem;
    }
}

@media (max-width: 980px) {
    .nav-links {
        display: none;
    }

    .hero-grid,
    .split-section,
    .authority-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .content-grid,
    .path-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .quick-actions {
        transform: none;
        padding-top: 28px;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .site-header {
        top: 10px;
        width: calc(100% - 20px);
        padding: 10px;
    }

    .brand span {
        display: none;
    }

    .brand-logo {
        width: 92px;
    }

    .header-cta {
        min-height: 40px;
        padding: 0 14px;
        font-size: 0.82rem;
    }

    .hero-section {
        min-height: auto;
        padding: 116px 0 42px;
    }

    .hero-bg {
        background-image: linear-gradient(180deg, rgba(3, 8, 6, 0.72), rgba(3, 8, 6, 0.46) 46%, rgba(3, 8, 6, 0.96)), url('../imagenes/hero-trading-phone.svg');
    }

    h1 {
        font-size: clamp(3.1rem, 16vw, 4.8rem);
    }

    h2 {
        font-size: clamp(2.05rem, 10vw, 3.2rem);
    }

    .hero-actions,
    .trust-row {
        width: 100%;
    }

    .btn,
    .hero-actions .btn {
        width: 100%;
        min-height: 56px;
    }

    .trust-row span {
        flex: 1 1 calc(50% - 10px);
        text-align: center;
    }

    .hero-card {
        padding: 20px;
        border-radius: 24px;
    }

    .hero-card h2 {
        font-size: 1.65rem;
    }

    .hero-avatar {
        width: 100px;
        height: 100px;
        border-radius: 22px;
    }

    .conversion-card {
        min-height: 168px;
        padding: 22px;
    }

    .section,
    .dark-band,
    .authority-section {
        padding: 66px 0;
    }

    .feature-grid,
    .content-grid,
    .path-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 220px;
    }

    .broker-card {
        grid-template-columns: 1fr;
    }

    .broker-card img {
        max-height: 36px;
    }

    .portrait {
        max-height: 520px;
    }

    .footer-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer {
        padding-bottom: 100px;
    }

    .mobile-sticky {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 60;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 999px;
        background: rgba(3, 16, 10, 0.84);
        backdrop-filter: blur(18px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
    }

    .mobile-sticky a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--green), var(--green-2));
        color: #03110b;
        font-weight: 950;
    }

    .mobile-sticky a + a {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
    }
}

@media (max-width: 380px) {
    .header-cta {
        font-size: 0.74rem;
    }

    .brand-logo {
        width: 82px;
    }

    .hero-section {
        padding-top: 106px;
    }

    .trust-row span {
        flex-basis: 100%;
    }
}
