/* TEMAS */

:root[data-theme="noche"] {
    --bg:#0B0F14;
    --bg-alt:#10151D;
    --card:#141B24;
    --card-2:#191F29;
    --border:#232B37;

    --green:#19C37D;
    --green-dark:#13A669;

    --blue:#5B8BFF;
    --amber:#F0B429;
    --red:#EF5C7A;

    --text:#F8FAFC;
    --text-muted:#A4AFC1;
    --shadow:rgba(0,0,0,.35);
}

:root[data-theme="sjodr"] {
    --bg: #F4F6FA;
    --bg-alt: #F8FAFC;

    --card: #FFFFFF;
    --card-2: #F0F4F8;

    --border: rgba(0,0,0,.07);

    --green: #19C37D;
    --green-dark: #13A669;

    --blue: #2563FF;
    --amber: #F59E0B;
    --red: #F43F5E;

    --text: #111827;
    --text-muted: #6B7280;

    --shadow: rgba(0,0,0,.08);
}

:root[data-theme="aurora"] {
    --bg:#F2E8FC;
    --bg-alt:#EDE8FF;

    --card:#FFFFFF;
    --card-2:#FAF4FF;

    --border:rgba(201,75,190,.1);

    --green:#C94BBE;
    --green-dark:#A93EA0;

    --blue:#6D28D9;
    --amber:#FFB347;
    --red:#FF6FB1;

    --text:#1B0A1A;
    --text-muted:#8A4B86;

    --shadow:rgba(27,10,26,.1);
}

:root[data-theme="bosque"] {
    --bg: #E4F3EC;
    --bg-alt: #EAF6F0;

    --card: #F8FCFA;
    --card-2: #F1FAF5;

    --border: rgba(26,174,120,.10);

    --green: #1AAE78;
    --green-dark: #138B5F;

    --blue: #2F6BFF;
    --amber: #E6A700;
    --red: #E5484D;

    --text: #07130E;
    --text-muted: #4A7A64;

    --shadow: rgba(10,40,25,.08);
}

:root[data-theme="llama"] {
    --bg: #FFF0E8;
    --bg-alt: #FFF5F0;

    --card: #FFFFFF;
    --card-2: #FFF8F4;

    --border: rgba(242,74,26,.10);

    --green: #F24A1A;
    --green-dark: #D93A10;

    --blue: #F97316;
    --amber: #F59E0B;
    --red: #EF4444;

    --text: #1A0A07;
    --text-muted: #8A3A2A;

    --shadow: rgba(26,10,7,.10);
}

:root[data-theme="mistico"] {
    --bg: #EDE5FC;
    --bg-alt: #F0E8FF;

    --card: #FFFFFF;
    --card-2: #F7F2FF;

    --border: rgba(109,40,217,.10);

    --green: #6D28D9;
    --green-dark: #571FB8;

    --blue: #3B82F6;
    --amber: #F59E0B;
    --red: #F43F5E;

    --text: #120A2A;
    --text-muted: #6A4BB8;

    --shadow: rgba(18,10,42,.10);
}

:root[data-theme="oceano"] {
    --bg: #E4EEF9;
    --bg-alt: #EFF6FF;

    --card: #FFFFFF;
    --card-2: #F4F8FF;

    --border: rgba(37,99,255,.10);

    --green: #2563FF;
    --green-dark: #0D3FD1;

    --blue: #19C37D;
    --amber: #F59E0B;
    --red: #EF4444;

    --text: #070A12;
    --text-muted: #4060A0;

    --shadow: rgba(7,10,18,.10);
}

/* RESTO DEL CSS DE LA WEB */


/* style.css (sjodr.com) — reemplazar el archivo completo */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }


html { scroll-behavior: smooth; }

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

body,
nav,
.bento-card,
.phone-frame{
    transition:
        background .3s,
        color .3s,
        border-color .3s;
}

/* ── TICKER ── */
.ticker {
    background: var(--green);
    color: #0B0F14;
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.ticker-track {
    display: inline-flex;
    width: max-content;
    animation: tickerScroll 28s linear infinite;
}

.ticker-group {
    display: inline-flex;
    gap: 18px;
    padding-right: 18px;
    flex-shrink: 0;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.nav-mark {
    width: 34px; height: 34px;
    object-fit: contain;
    flex-shrink: 0;
}
.nav-mark.small { width: 26px; height: 26px; }

.nav-name {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text);
}

.nav-links { display: flex; gap: 32px; }
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
    padding: 9px 20px;
    background: var(--green);
    color: var(--bg);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
    position: relative;
    padding: 90px 48px 60px;
    overflow: hidden;
}

.hero-rune {
    position: absolute;
    top: -60px; right: -20px;
    font-size: 480px;
    font-family: 'Cinzel', serif;
    color: rgba(25,195,125,0.04);
    pointer-events: none;
    line-height: 1;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.25;
    mask-image: linear-gradient(180deg, black, transparent 85%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
}

.eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--green);
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(44px, 5.6vw, 76px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 22px;
}

.outline-text {
    color: var(--green);
}

.hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: var(--green);
    color: var(--bg);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s;
    box-shadow: 0 6px 24px rgba(25,195,125,0.25);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-lg { padding: 17px 40px; font-size: 16px; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 14px 26px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.2s;
}
.btn-ghost:hover { color: var(--text); border-color: var(--green); }

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 36px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong { font-family: 'JetBrains Mono', monospace; font-size: 20px; color: var(--green); }
.hero-meta span { font-size: 12px; color: var(--text-muted); }

/* ── PHONE MOCKUP ── */
.hero-right { position: relative; display: flex; justify-content: center; }

.phone-frame {
    width: 300px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 34px;
    padding: 18px 16px;
    box-shadow: 0 30px 80px var(--shadow);
    position: relative;
}

.phone-notch {
    width: 90px; height: 20px;
    background: var(--bg);
    border-radius: 0 0 14px 14px;
    margin: 0 auto 14px;
}

.phone-screen {
    background: var(--bg-alt);
    border-radius: 20px;
    padding: 20px 18px;
}

.ph-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.ph-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1px; color: var(--text-muted); }
.ph-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--green);
    background: rgba(25,195,125,0.12);
    padding: 3px 8px;
    border-radius: 6px;
}

.ph-value {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ph-chart { width: 100%; height: 60px; display: block; margin-bottom: 16px; }

.ph-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 16px; padding-top: 12px; border-top: 1px solid var(--border); }
.ph-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); }
.ph-item b { margin-left: auto; color: var(--text); font-weight: 600; }
.ph-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

.ph-ia {
    background: var(--card-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
}

.ph-ia-tag {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--green);
    font-style: normal;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.float-card {
    position: absolute;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 12px 30px var(--shadow);
    color: var(--text);
}

.float-card-1 { top: 60px; left: -40px; }
.float-card-2 { bottom: 40px; right: -30px; }

/* ── SECTIONS ── */
.section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 110px 48px;
}

.section-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--green);
    margin-bottom: 16px;
}
.section-eyebrow.light { text-align: center; }

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-title.light { text-align: center; }

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 480px;
}
.section-desc.light { text-align: center; margin: 0 auto 50px; }

/* ── BENTO ── */
.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 50px;
}

.bento-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    transition: all 0.25s;
}

.bento-card:hover { border-color: var(--green); transform: translateY(-3px); }

.bento-lg { grid-column: span 2; }

.bento-icon {
    font-size: 22px;
    color: var(--green);
    margin-bottom: 16px;
}

.bento-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.bento-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

.bento-tag {
    display: inline-block;
    margin-top: 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--green);
    background: rgba(25,195,125,0.1);
    padding: 5px 10px;
    border-radius: 6px;
}

/* ── REALMS ── */
.realms {
    background: var(--bg-alt);
    padding: 110px 48px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.realms-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.realm-chip {
    padding: 14px 22px;
    border-radius: 100px;
    background: var(--card);
    border: 1px solid var(--rc);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s;
    cursor: pointer;
}

.realm-chip:hover {
    border-color: var(--rc);
    box-shadow: 0 0 0 1px var(--rc);
    transform: translateY(-2px);
}

/* ── SPLIT / SECURITY ── */
.split-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 110px 48px;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.mono-list { display: flex; flex-direction: column; gap: 16px; }
.mono-list div {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}
.mono-list span {
    font-family: 'JetBrains Mono', monospace;
    color: var(--green);
    font-size: 13px;
    flex-shrink: 0;
}

.split-visual { display: flex; justify-content: center; }

.lock-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.lock-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--green);
}

/* ── QUOTE ── */
.quote-section {
    max-width: 760px;
    margin: 0 auto;
    padding: 100px 48px;
    text-align: center;
}

.quote-mark {
    font-family: 'Cinzel', serif;
    font-size: 80px;
    color: var(--green);
    line-height: 0.5;
    margin-bottom: 20px;
}

.quote-text {
    font-family: 'Cinzel', serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 500;
    line-height: 1.5;
    color: var(--text);
}

/* ── CTA ── */
.cta-section {
    text-align: center;
    padding: 120px 48px;
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border);
}

.cta-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.15;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 300;
}

/* ── FOOTER ── */
footer {
    padding: 36px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

.footer-text { font-size: 12px; color: var(--text-muted); }

.footer-link {
    font-size: 13px;
    color: var(--green);
    text-decoration: none;
    font-weight: 500;
}
.footer-link:hover { color: var(--green-dark); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .split-section { grid-template-columns: 1fr; }
    .bento { grid-template-columns: 1fr 1fr; }
    .bento-lg { grid-column: span 2; }
    .float-card { display: none; }
}

@media (max-width: 600px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none; }
    .hero { padding: 60px 20px 40px; }
    .section, .split-section, .realms, .cta-section { padding-left: 20px; padding-right: 20px; }
    .bento { grid-template-columns: 1fr; }
    .bento-lg { grid-column: span 1; }
    footer { padding: 28px 20px; flex-direction: column; align-items: flex-start; }
}


/* ============= PLANES ============= */

#plans{
    background: var(--bg-alt);
}
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 100%;
}

.plan-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 2px 16px var(--shadow);
}

.plan-card-jotunheim {
    border-color: #a855f7;
    box-shadow: 0 8px 32px -6px rgba(168, 85, 247,0.35);
}

.plan-card-asgard {
    border-color: #fbbf24;
    box-shadow: 0 8px 32px -6px rgba(251, 191, 36,0.35);
}

.plan-card-ribbon {
    position: absolute;
    top: -1px; right: 20px;
    background: var(--accent);
    color: var(--accent-text);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 0 0 8px 8px;
}

.plan-card-header h3 { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.plan-card-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 20px; }
.plan-price-amount { font-size: 32px; font-weight: 800; color: var(--text-primary); letter-spacing: -1px; }
.plan-price-period { font-size: 13px; color: var(--text-muted); }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; flex: 1; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-secondary); }
.plan-features li svg { flex-shrink: 0; color: var(--color-success); }
.plan-feature-off { color: var(--text-muted) !important; }
.plan-feature-off svg { color: var(--text-muted) !important; }

.plan-card-btn { width: 100%; }

.plans-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 968px) { .plans-grid-3 { grid-template-columns: 1fr; } }