    :root {
      --bg: #050609;
      --bg-alt: #0b0e15;
      --bg-soft: #121624;
      --accent: #f5c96a;
      --accent-soft: rgba(245, 201, 106, 0.13);
      --accent-strong: #ffdd8a;
      --danger: #f25f5c;
      --text-main: #e8edf8;
      --text-muted: #9ca7c5;
      --border-subtle: rgba(255, 255, 255, 0.06);
      --glass: rgba(6, 9, 20, 0.82);
      --radius-lg: 18px;
      --radius-xl: 26px;
      --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.8);
      --transition-fast: 160ms ease-out;
      --transition-med: 230ms ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html, body {
      height: 100%;
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: radial-gradient(circle at top, #191b2c 0, #050609 55%, #010108 100%);
      color: var(--text-main);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .bg-orbit {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -2;
      background:
        radial-gradient(circle at 10% 0%, rgba(147, 197, 253, 0.05), transparent 55%),
        radial-gradient(circle at 90% 10%, rgba(248, 250, 252, 0.08), transparent 60%),
        radial-gradient(circle at 50% 115%, rgba(248, 113, 113, 0.1), transparent 60%);
      opacity: 0.9;
      transition: transform 1s ease-out;    
	}

    .grain {
      position: fixed;
      inset: -40px;
      pointer-events: none;
      opacity: 0.12;
      z-index: -1;
      background-image: url("https://grainy-gradients.vercel.app/noise.svg");
      mix-blend-mode: soft-light;
      transition: transform 1.2s ease-out;    
	}

    /* ---------- MULTI-LANGUAGE ---------- */

    .i18n.es { display: none; }

    .lang-es .i18n.en { display: none !important; }
    .lang-es .i18n.es { display: inline; }

    .lang-es .i18n-block.en { display: none !important; }
    .lang-es .i18n-block.es { display: block; }

    .i18n-block.en { display: block; }
    .i18n-block.es { display: none; }

    /* ---------- LANGUAGE OVERLAY ---------- */

    .lang-overlay {
      position: fixed;
      inset: 0;
      background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98));
      z-index: 50;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
    }

    .lang-overlay-inner {
      max-width: 420px;
      width: 100%;
      background: rgba(15, 23, 42, 0.96);
      border-radius: 22px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.9);
      padding: 1.7rem 1.7rem 1.5rem;
      text-align: center;
      animation: fade-in 260ms ease-out;
    }

    .lang-overlay-title {
      font-family: "Cinzel", serif;
      font-size: 1.1rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 0.4rem;
    }

    .lang-overlay-sub {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 1.2rem;
    }

    .lang-buttons {
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      margin-bottom: 0.6rem;
    }

    .lang-btn {
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
      color: var(--text-main);
      padding: 0.65rem 1.1rem;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      cursor: pointer;
      transition: border-color var(--transition-med), box-shadow var(--transition-med), transform var(--transition-fast), background var(--transition-med);
    }

    .lang-btn span.flag { font-size: 1.1rem; }

    .lang-btn:hover {
      border-color: rgba(250, 204, 21, 0.8);
      transform: translateY(-1px);
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.96);
      background: radial-gradient(circle at top, rgba(30, 64, 175, 0.98), rgba(15, 23, 42, 0.95));
    }

    .lang-overlay-note {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .hidden { display: none !important; }

    /* ---------- NAVBAR ---------- */

    .nav {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(18px);
      background: linear-gradient(to bottom, rgba(3, 7, 18, 0.86), rgba(3, 7, 18, 0.65), transparent);
      border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.85rem 1.5rem;
      max-width: 1120px;
      margin: 0 auto;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.55rem;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background:
        radial-gradient(circle at 30% 0%, #facc6b, transparent 65%),
        conic-gradient(from 200deg, #1f2937, #020617, #020617, #1f2937);
      border: 1px solid rgba(250, 204, 21, 0.4);
      box-shadow: 0 0 22px rgba(250, 204, 21, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 45%;
      border-radius: inherit;
      background: rgba(15, 23, 42, 0.7);
      filter: blur(7px);
    }

    .brand-mark span {
      font-family: "Cinzel", serif;
      font-size: 0.9rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      position: relative;
      z-index: 1;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      gap: 0.05rem;
    }

    .brand-title {
      font-family: "Cinzel", serif;
      font-size: 0.9rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .brand-sub {
      font-size: 0.7rem;
      color: var(--text-muted);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.45rem 0.9rem;
      font-size: 0.8rem;
	        color: var(--accent-strong);
      font-weight: 600;
      border-radius: 999px;
      border: 1px solid rgba(249, 250, 251, 0.18);
      background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8));
      cursor: pointer;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
    }

    .nav-cta span.icon { font-size: 1rem; }

    .nav-cta:hover {
      transform: translateY(-1px);
      border-color: rgba(250, 204, 21, 0.5);
      box-shadow: 0 13px 35px rgba(15, 23, 42, 0.9);
      background: radial-gradient(circle at top, rgba(30, 64, 175, 0.9), rgba(15, 23, 42, 0.92));
      color: var(--accent);    
	}

    .nav-lang {
      font-size: 0.75rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted);
      cursor: pointer;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.4);
      padding: 0.25rem 0.7rem;
      background: rgba(15, 23, 42, 0.7);
      transition: border-color var(--transition-med), background var(--transition-med), color var(--transition-med);
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }

    .nav-lang span.badge {
      font-size: 0.7rem;
      padding: 0 0.4rem;
      border-radius: 999px;
      background: rgba(31, 41, 55, 0.9);
      color: #e5e7eb;
    }

    .nav-lang:hover {
      border-color: rgba(250, 204, 21, 0.7);
      color: var(--accent-strong);
    }

    /* ---------- HERO ---------- */

    .hero {
      position: relative;
      padding: 4rem 0 4.75rem;
      overflow: hidden;
      isolation: isolate;
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: -1;
    }

    .hero::before {
      background: radial-gradient(circle at 16% 12%, rgba(96, 165, 250, 0.16), transparent 30%),
        radial-gradient(circle at 70% 0%, rgba(244, 114, 182, 0.16), transparent 40%);
      filter: blur(6px);
    }

    .hero::after {
      background: radial-gradient(circle at 40% 65%, rgba(34, 197, 94, 0.12), transparent 34%);
      filter: blur(16px);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.9fr);
      gap: 2.4rem;
      align-items: center;
    }

    @media (max-width: 900px) {
      .hero {
        padding-top: 2.5rem;
      }
      .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.2rem;
      }
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(248, 250, 252, 0.18);
      background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.25), rgba(15, 23, 42, 0.92));
      font-size: 0.7rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent-strong);
      margin-bottom: 1.25rem;
    }

    .pill-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: radial-gradient(circle, #22c55e, #16a34a);
      box-shadow: 0 0 12px rgba(22, 163, 74, 0.8);
    }

    .hero-title {
      font-family: "Cinzel", serif;
      font-size: clamp(2.4rem, 4vw, 3.1rem);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      line-height: 1.2;
      margin-bottom: 0.9rem;
    }

    .hero-title span.highlight {
      color: var(--accent);
      text-shadow: 0 0 22px rgba(250, 204, 21, 0.4);
    }

    .hero-subtitle {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 32rem;
      line-height: 1.6;
      margin-bottom: 1.6rem;
    }

    .hero-highlights {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 0.75rem;
      margin-bottom: 1.4rem;
    }

    .hero-highlight {
      display: flex;
      gap: 0.7rem;
      padding: 0.7rem 0.85rem;
      border-radius: 14px;
      background: linear-gradient(145deg, rgba(15, 23, 42, 0.85), rgba(4, 7, 16, 0.95));
      border: 1px solid rgba(148, 163, 184, 0.35);
      outline: 1px solid rgba(250, 204, 21, 0.08);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
      align-items: flex-start;
    }

    .hero-highlight-icon {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(245, 201, 106, 0.14);
      border: 1px solid rgba(245, 201, 106, 0.3);
      box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.6), 0 12px 24px rgba(0, 0, 0, 0.35);
    }

    .hero-highlight-title {
      font-size: 0.9rem;
      letter-spacing: 0.04em;
    }

    .hero-highlight-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-top: 0.1rem;
      line-height: 1.4;
    }
	
    .hero-subtitle strong {
      color: var(--accent-strong);
      font-weight: 500;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem;
      margin-bottom: 1.8rem;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .hero-meta-item {
      display: flex;
      align-items: center;
      gap: 0.55rem;
    }

    .hero-meta-icon {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
    }

    .hero-form-card {
      background: radial-gradient(circle at 10% 0%, rgba(59, 130, 246, 0.12), transparent 38%),
        radial-gradient(circle at 90% 6%, rgba(244, 114, 182, 0.12), transparent 40%),
        radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98));      border-radius: var(--radius-xl);
      border: 1px solid rgba(148, 163, 184, 0.4);
      outline: 1px solid rgba(250, 204, 21, 0.07);
      box-shadow: var(--shadow-soft);
      padding: 1.6rem 1.7rem 1.5rem;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      backdrop-filter: blur(12px);
        }

    .hero-form-card::before {
      content: "";
      position: absolute;
      inset: -30%;
      background:
        radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.15), transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(250, 204, 21, 0.16), transparent 60%);
      opacity: 0.6;
      pointer-events: none;
      animation: slow-spin 24s linear infinite;
    }

    .hero-form-card::after {
      content: "";
      position: absolute;
      inset: -10% 10% 30% -15%;
      background: radial-gradient(circle, rgba(250, 204, 21, 0.12), transparent 60%);
      filter: blur(20px);
      opacity: 0.45;
      animation: pulse 12s ease-in-out infinite alternate;
      pointer-events: none;    
	}

    .hero-form-card-inner {
      position: relative;
      z-index: 1;
    }

    .hero-form-title {
      font-family: "Cinzel", serif;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 0.4rem;
    }

    .hero-form-sub {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 1.1rem;
    }

    .form-row {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      margin-bottom: 1rem;
    }

    .input-group {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.4rem 0.45rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid rgba(148, 163, 184, 0.55);
      transition: border-color var(--transition-med), box-shadow var(--transition-med), background var(--transition-med), transform var(--transition-fast);
    }

    .input-group:focus-within {
      border-color: rgba(250, 204, 21, 0.85);
      box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.25), 0 18px 45px rgba(15, 23, 42, 0.95);
      background: rgba(15, 23, 42, 0.95);
      transform: translateY(-1px);
    }

    .input-group:hover {
      border-color: rgba(250, 204, 21, 0.35);
    }
	
    .input-icon {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      color: var(--accent-strong);
      background: radial-gradient(circle, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
    }

    input[type="email"] {
      flex: 1;
      border: none;
      background: transparent;
      color: var(--text-main);
      font-size: 0.9rem;
      outline: none;
      padding: 0.35rem 0.1rem;
    }

    input::placeholder {
      color: rgba(148, 163, 184, 0.75);
    }

    .btn {
      border: none;
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      padding: 0.55rem 1.2rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      background: radial-gradient(circle at top, #facc6b, #eab308);
      color: #111827;
      box-shadow: 0 14px 35px rgba(250, 204, 21, 0.4);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast), background var(--transition-med);
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 20px 45px rgba(250, 204, 21, 0.55);
      filter: brightness(1.03);
    }

    .btn:active {
      transform: translateY(0);
      box-shadow: 0 9px 20px rgba(15, 23, 42, 0.9);
      filter: brightness(0.97);
    }

    .btn-outline {
      background: transparent;
      color: var(--accent-strong);
      border: 1px solid rgba(250, 204, 21, 0.55);
      box-shadow: none;
      padding-inline: 1.1rem;
    }

    .btn-outline:hover {
      background: rgba(24, 24, 27, 0.9);
      box-shadow: 0 14px 35px rgba(15, 23, 42, 0.9);
    }

    .hero-form-foot {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.7rem;
      font-size: 0.72rem;
      color: var(--text-muted);
    }

    .hero-mini-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
    }

    .mini-badge {
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.4);
      padding: 0.2rem 0.5rem;
      background: rgba(15, 23, 42, 0.8);
      font-size: 0.68rem;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }

    .mini-badge span.dot {
      width: 5px;
      height: 5px;
      border-radius: 999px;
      background: var(--accent);
    }

    /* ---------- HERO VISUAL ---------- */

    .hero-visual-card {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.55);
      box-shadow: var(--shadow-soft);
      background:
        radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.98)),
        url("https://images.pexels.com/photos/1103970/pexels-photo-1103970.jpeg?auto=compress&cs=tinysrgb&w=1600") center/cover no-repeat;
      min-height: 360px;
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateY(0);
      transition: transform 18s ease-out;
    }

    .hero-visual-card:hover {
      transform: translateY(-10px);
    }

    .hero-overlay-gradient {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 0%, rgba(249, 250, 251, 0.18), transparent 52%),
        linear-gradient(to top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.0));
      mix-blend-mode: soft-light;
    }

    .hero-overlay-fog {
      position: absolute;
      inset: 40% -20% 0;
      background: radial-gradient(circle at 50% 0%, rgba(148, 163, 184, 0.33), transparent 55%);
      opacity: 0.75;
      filter: blur(10px);
    }

    .hero-visual-content {
      position: relative;
      z-index: 1;
      padding: 1.5rem 1.5rem 1.7rem;
      width: min(100%, 32rem);
      margin: 0 auto;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.65rem;
    }

    .hero-floating-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.2rem 0.55rem;
      border-radius: 999px;
      font-size: 0.7rem;
      background: rgba(15, 23, 42, 0.78);
      border: 1px solid rgba(148, 163, 184, 0.7);
    }

    .hero-floating-tag span.icon { font-size: 0.85rem; }

    .hero-visual-title {
      font-family: "Cinzel", serif;
      font-size: 1.1rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .hero-visual-sub {
      font-size: 0.82rem;
      color: var(--text-muted);
      max-width: 26rem;
    }

    .hero-bars {
      display: flex;
      gap: 0.6rem;
      font-size: 0.7rem;
      animation: float 12s ease-in-out infinite;
      width: 100%;
    }

    .hero-bar {
      flex: 1;
      background: rgba(15, 23, 42, 0.9);
      border-radius: 999px;
      padding: 0.3rem 0.55rem;
      border: 1px solid rgba(148, 163, 184, 0.7);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.4rem;
    }

    .hero-bar span.label { color: var(--text-muted); }

    .hero-bar-fill {
      flex: 0 0 50%;
      height: 4px;
      border-radius: 999px;
      background: linear-gradient(to right, #4ade80, #facc6b);
      position: relative;
      overflow: hidden;
    }

    .hero-bar-fill::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(15, 23, 42, 0.1), rgba(248, 250, 252, 0.5), rgba(15, 23, 42, 0.1));
      transform: translateX(-100%);
      animation: bar-shine 5s infinite;
    }

    @keyframes bar-shine {
      0% { transform: translateX(-120%); }
      50% { transform: translateX(10%); }
      100% { transform: translateX(120%); }
    }

    /* ---------- SECTIONS GENERALES ---------- */

    .section {
      padding: 3.5rem 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .eyebrow {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      color: var(--accent-strong);
      margin-bottom: 0.5rem;
    }

    .section-title {
      font-family: "Cinzel", serif;
      font-size: 1.5rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 0.65rem;
    }

    .section-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      max-width: 34rem;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* ---------- FACTIONS ---------- */

    .factions-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.8rem;
      margin-top: 1.3rem;
    }

    @media (max-width: 800px) {
      .factions-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .faction-card {
      position: relative;
      border-radius: var(--radius-lg);
      padding: 1.5rem 1.4rem 1.4rem;
      background: radial-gradient(circle at top, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.97));
      border: 1px solid rgba(148, 163, 184, 0.5);
      overflow: hidden;
      transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med), background var(--transition-med);
      cursor: default;
    }

    .faction-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 55px rgba(15, 23, 42, 0.98);
      border-color: rgba(250, 204, 21, 0.5);
      background: radial-gradient(circle at top, rgba(30, 64, 175, 0.95), rgba(15, 23, 42, 0.97));
    }

    .faction-tag {
      font-size: 0.75rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.3rem;
    }

    .faction-name {
      font-family: "Cinzel", serif;
      font-size: 1.1rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 0.6rem;
    }

    .faction-name.light { color: #e5e7eb; }

    .faction-name.shadow { color: #f97373; }

    .faction-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 0.8rem;
      max-width: 30rem;
    }

    .faction-list {
      list-style: none;
      display: grid;
      gap: 0.3rem;
      font-size: 0.8rem;
      color: var(--text-main);
      margin-bottom: 0.9rem;
    }

    .faction-list li {
      display: flex;
      gap: 0.4rem;
      align-items: flex-start;
    }

    .faction-bullet {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: var(--accent);
      margin-top: 0.25rem;
      flex-shrink: 0;
    }

    .faction-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .faction-sigil { font-size: 1.3rem; opacity: 0.9; }

    /* ---------- LORE ---------- */

    .lore {
      background: radial-gradient(circle at top, rgba(41, 37, 36, 0.55), rgba(15, 23, 42, 0.98));
      border-top: 1px solid rgba(75, 85, 99, 0.4);
      border-bottom: 1px solid rgba(75, 85, 99, 0.4);
    }

    .lore-inner {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
      gap: 2.5rem;
      align-items: center;
    }

    @media (max-width: 900px) {
      .lore-inner {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .lore-text-block {
      max-width: 34rem;
    }

    .lore-prose {
      font-size: 0.95rem;
      line-height: 1.8;
      color: var(--text-main);
      margin-bottom: 1.4rem;
    }

    .lore-prose span.key {
      color: var(--accent-strong);
      font-weight: 500;
    }

    .lore-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .lore-meta-item {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }

    .lore-meta-label {
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 0.7rem;
      color: rgba(209, 213, 219, 0.85);
    }

    .lore-meta-value { font-size: 0.85rem; }

    .lore-card {
      background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(8, 10, 20, 0.96));
      border-radius: var(--radius-lg);
      border: 1px solid rgba(148, 163, 184, 0.6);
      outline: 1px solid rgba(250, 204, 21, 0.08);
      padding: 1.4rem 1.4rem 1.25rem;
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(10px);
    }

    .lore-card-title {
      font-family: "Cinzel", serif;
      font-size: 1rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 0.6rem;
    }

    .lore-card-sub {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    .lore-form {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      margin-bottom: 0.8rem;
    }

    .lore-input-row {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      font-size: 0.8rem;
    }

    .lore-input-row label {
      color: rgba(209, 213, 219, 0.9);
    }

    .lore-input-row input[type="email"] {
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.75);
      background: rgba(15, 23, 42, 0.9);
      padding: 0.55rem 0.75rem;
      font-size: 0.9rem;
      transition: border-color var(--transition-med), box-shadow var(--transition-med), background var(--transition-med);
    }

    .lore-input-row input[type="email"]:focus {
      outline: none;
      border-color: rgba(250, 204, 21, 0.85);
      box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.3);
      background: rgba(15, 23, 42, 0.98);
    }

    .lore-card-footnote {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    /* ---------- AMAZON SECTION ---------- */

    .amazon-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.8fr);
      gap: 2.3rem;
      align-items: center;
    }

    @media (max-width: 900px) {
      .amazon-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .amazon-text {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .amazon-card {
      background: rgba(15, 23, 42, 0.95);
      border-radius: var(--radius-lg);
      border: 1px solid rgba(148, 163, 184, 0.7);
      padding: 1.3rem 1.4rem 1.2rem;
      box-shadow: var(--shadow-soft);
    }

    .amazon-badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 0.9rem;
    }

    .amazon-badge {
      font-size: 0.72rem;
      padding: 0.2rem 0.6rem;
      border-radius: 999px;
      border: 1px solid rgba(234, 179, 8, 0.6);
      background: rgba(24, 24, 27, 0.9);
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }

    .amazon-buttons {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
      gap: 0.8rem;
      margin-top: 0.5rem;
    }

    .btn-amz {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      border-radius: 999px;
      border: 1px solid rgba(234, 179, 8, 0.9);
      background: radial-gradient(circle at top, #facc6b, #eab308);
      color: #111827;
      padding: 0.55rem 1rem;
      font-size: 0.88rem;
      cursor: pointer;
      box-shadow: 0 16px 40px rgba(250, 204, 21, 0.35);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
      text-align: center;
    }

    .btn-amz span.icon { font-size: 1.1rem; }

    .btn-amz:hover {
      transform: translateY(-1px);
      box-shadow: 0 20px 45px rgba(250, 204, 21, 0.6);
      filter: brightness(1.03);
    }

    .amazon-note {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.6rem;
    }

    /* ---------- CODES SECTION ---------- */

    .codes {
      background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.98));
      border-top: 1px solid rgba(55, 65, 81, 0.7);
      border-bottom: 1px solid rgba(55, 65, 81, 0.7);
    }

    .codes-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
      gap: 2rem;
      align-items: center;
    }

    @media (max-width: 900px) {
      .codes-inner {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .codes-text {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .codes-card {
      background: rgba(15, 23, 42, 0.96);
      border-radius: var(--radius-lg);
      border: 1px solid rgba(148, 163, 184, 0.65);
      padding: 1.3rem 1.3rem 1.1rem;
      box-shadow: var(--shadow-soft);
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .codes-tag {
      font-size: 0.7rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent-strong);
      margin-bottom: 0.45rem;
    }

    .codes-demo {
      margin-top: 0.7rem;
      padding: 0.6rem 0.7rem;
      border-radius: 999px;
      border: 1px dashed rgba(148, 163, 184, 0.7);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(15, 23, 42, 0.85);
    }

    .codes-demo-code {
      font-family: "Cinzel", serif;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-size: 0.8rem;
    }

    .codes-demo-label {
      font-size: 0.75rem;
      color: rgba(209, 213, 219, 0.9);
    }

    .final-cta {
      text-align: center;
      padding-bottom: 3.5rem;
      padding-top: 2rem;
    }

    .final-cta-title {
      font-family: "Cinzel", serif;
      font-size: 1.2rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 0.7rem;
    }

    .final-cta-sub {
      font-size: 0.9rem;
      color: var(--text-muted);
      max-width: 32rem;
      margin: 0 auto 1.4rem;
    }

    .final-cta-actions {
      display: flex;
      justify-content: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    /* ---------- FOOTER ---------- */

    .footer {
      border-top: 1px solid rgba(31, 41, 55, 0.9);
      padding: 1.4rem 0;
      font-size: 0.75rem;
      color: rgba(148, 163, 184, 0.8);
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
    }

    .footer-links a { opacity: 0.85; }
    .footer-links a:hover { opacity: 1; }

    @media (max-width: 640px) {
      .nav-inner { padding-inline: 1rem; }
      .hero-form-card { padding: 1.4rem 1.2rem; }
      .hero-visual-card { min-height: 260px; }
      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    /* ---------- TOAST ---------- */

    .toast {
      position: fixed;
      left: 50%;
      top: 22vh;
      transform: translate(-50%, -50%) scale(0.96);
      width: min(520px, calc(100% - 2.5rem));
      padding: 1rem 1.15rem;
      border-radius: 18px;
      background: radial-gradient(circle at 12% 0%, rgba(59, 130, 246, 0.12), transparent 35%),
        radial-gradient(circle at 90% 0%, rgba(34, 197, 94, 0.12), transparent 35%),
        rgba(7, 11, 21, 0.94);
      border: 1px solid rgba(34, 197, 94, 0.7);
      color: #c6f6d5;
      font-size: 0.92rem;
      line-height: 1.5;
      box-shadow: 0 28px 60px rgba(0, 0, 0, 0.72);
      display: flex;
      gap: 0.85rem;
      align-items: flex-start;
      z-index: 60;
      backdrop-filter: blur(12px);
    }

    .toast.toast-error {
      border-color: rgba(242, 95, 92, 0.7);
      color: #fecdd3;
      background:
        radial-gradient(circle at 10% 0%, rgba(244, 114, 182, 0.12), transparent 35%),
        rgba(22, 10, 18, 0.94);
    }

    .toast.toast-visible {
      animation: toast-in 260ms ease-out;
      transform: translate(-50%, -50%) scale(1);
    }

    .toast-icon { font-size: 1.1rem; margin-top: 0.05rem; }

    .toast-close {
      margin-left: auto;
      border: none;
      background: rgba(255, 255, 255, 0.04);
      color: inherit;
      cursor: pointer;
      padding: 0.2rem 0.45rem;
      font-size: 0.9rem;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: opacity var(--transition-fast), transform var(--transition-fast);
    }

    .toast-close:hover {
      opacity: 1;
      transform: translateY(-1px);
    }

    @media (max-width: 640px) {
      .toast {
        top: auto;
        bottom: 1.5rem;
        transform: translate(-50%, 0) scale(0.98);
        text-align: left;
      }

      .toast.toast-visible { transform: translate(-50%, 0) scale(1); }
    }

    /* ---------- ANIMACIONES EXTRA ---------- */

    .shake {
      animation: shake 0.3s ease-in-out;
    }

    @keyframes toast-in {
      from {
        opacity: 0;
        transform: translate(-50%, -58%) scale(0.94);
      }
      to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
      }
    }

    @keyframes shake {
      0% { transform: translateX(0); }
      25% { transform: translateX(-4px); }
      50% { transform: translateX(4px); }
      75% { transform: translateX(-3px); }
      100% { transform: translateX(0); }
    }

    @keyframes fade-in {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes slow-spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @keyframes pulse {
      from { opacity: 0.25; transform: scale(1); }
      to { opacity: 0.6; transform: scale(1.08); }
    }

    @keyframes float {
      0% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
      100% { transform: translateY(0); }
    } 