:root {
      --bg: #152236;
      --bg-card: #1b2d45;
      --border: #253d58;
      --fg: #f5f0e8;
      --fg-muted: #b8a080;
      --gold: #b8943e;
      --gold-green: #b8943e;
      --red: #d94a3a;
      --gold-light: #c9a84c;
    }
    *,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
    body {
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      background: var(--bg);
      color: var(--fg);
      min-height: 100vh;
      position: relative; overflow-x: hidden;
      line-height: 1.72;
    }
    body::before {
      content: '';
      position: fixed; inset: 0;
      background:
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(184,148,62,0.015) 40px, rgba(184,148,62,0.015) 42px),
        repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(184,148,62,0.01) 40px, rgba(184,148,62,0.01) 42px);
      pointer-events: none; z-index: 0;
    }
    nav {
      position: relative; z-index: 10;
      padding: 1rem 1.5rem;
      background: rgba(21,34,54,0.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo {
      color: var(--gold); text-decoration: none;
      font-size: 1.1rem; font-weight: 700;
    }
    .nav-back {
      color: var(--fg-muted); text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.2s;
    }
    .nav-back:hover { color: var(--fg); }
    .nav-cta {
      background: var(--gold); color: #152238 !important;
      padding: 0.45rem 1.2rem; border-radius: 20px;
      font-weight: 700 !important; font-size: 0.85rem !important;
      text-decoration: none; min-height: 44px;
      transition: all 0.2s;
    }
    .nav-cta:hover {
      background: var(--gold-light, #c9a84c); color: #152238 !important;
      transform: translateY(-1px);
      box-shadow: 0 2px 12px rgba(184,148,62,0.25);
    }

    .hero {
      position: relative; z-index: 1;
      text-align: center;
      padding: 3rem 1.5rem 2rem;
      border-bottom: 1px solid var(--border);
    }
    .hero-icon {
      width: 72px; height: 72px;
      margin: 0 auto 1.2rem;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(184,148,62,0.15), rgba(184,148,62,0.12));
      display: flex; align-items: center; justify-content: center;
      font-size: 2.2rem;
      border: 2px solid rgba(184,148,62,0.25);
    }
    .hero h1 {
      font-size: clamp(1.7rem, 4vw, 2.4rem);
      font-weight: 800;
      margin-bottom: 0.4rem;
    }
    .hero h1 .gold { color: var(--gold); }
    .hero .subtitle {
      color: var(--fg-muted);
      font-size: 1rem;
      max-width: 550px; margin:0 auto;
      line-height: 1.6;
    }

    .content {
      position: relative; z-index: 1;
      max-width: 860px; margin: 0 auto;
      padding: 3rem 1.5rem;
    }
    .content h2 {
      color: var(--gold);
      font-size: 1.5rem;
      font-weight: 700;
      margin: 2.5rem 0 1rem;
      padding-bottom: 0.6rem;
      border-bottom: 2px solid rgba(184,148,62,0.2);
    }
    .content h2:first-child { margin-top: 0; }
    .content h3 {
      color: var(--fg);
      font-size: 1.15rem;
      font-weight: 700;
      margin: 1.8rem 0 0.8rem;
    }
    .content p {
      color: #bcc8d6;
      font-size: 1.02rem;
      line-height: 1.78;
      margin-bottom: 1rem;
    }
    .content p strong { color: var(--fg); font-weight: 700; }
    .content ul, .content ol {
      color: #bcc8d6;
      padding-left: 1.5rem;
      margin-bottom: 1.2rem;
    }
    .content li {
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 0.5rem;
    }

    .highlight {
      background: rgba(184,148,62,0.08);
      border-left: 3px solid var(--gold);
      padding: 1.2rem 1.5rem;
      margin: 1.8rem 0;
      border-radius: 0 8px 8px 0;
      color: #bcc8d6;
      font-size: 0.95rem;
      line-height: 1.65;
    }
    .highlight strong { color: var(--gold); }

    .stats-inline {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1rem;
      margin: 1.5rem 0;
    }
    .stat-mini {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.2rem 1rem;
      text-align: center;
    }
    .stat-mini .num {
      font-size: 2rem; font-weight: 850;
      color: var(--gold);
      line-height: 1.1;
    }
    .stat-mini .label {
      font-size: 0.85rem;
      color: var(--fg-muted);
      margin-top: 0.3rem;
    }

    .links-section {
      display: flex; flex-wrap: wrap; gap: 0.8rem;
      justify-content: center; margin: 1.5rem 0;
    }
    .links-section a {
      display: inline-block;
      background: var(--bg-card);
      border: 1px solid var(--border);
      color: var(--fg-muted);
      padding: 0.6rem 1.2rem;
      border-radius: 20px;
      text-decoration: none;
      font-size: 0.88rem;
      transition: all 0.2s;
    }
    .links-section a:hover {
      border-color: var(--gold);
      color: var(--fg);
      background: rgba(184,148,62,0.08);
    }

    footer {
      position: relative; z-index: 1;
      text-align: center;
      padding: 2.5rem 1.5rem;
      border-top: 1px solid rgba(184,148,62,0.12);
      color: #5a6880;
      font-size: 0.82rem;
    }
    footer a { color: #7a9ec0; text-decoration: none; transition: color 0.2s; }
    footer a:hover { color: var(--gold); }
    .footer-social {
      display: flex; gap: 1rem; justify-content: center;
      flex-wrap: wrap; margin-bottom: 1.2rem;
    }
    .footer-social a {
      color: var(--gold); text-decoration: none;
      font-size: 0.88rem; font-weight: 600;
    }
    .footer-dot { color: #2a4060; }
    .footer-legal {
      font-size: 0.9rem; color: #8a9cb0;
      font-weight: 600; margin-bottom: 0.3rem;
    }
    .footer-links { margin-top: 1rem; }
    .footer-links a { margin: 0 0.5rem; color: #7a9ec0; }

    @media (max-width: 600px) {
      .content { padding: 2rem 1rem; }
      .hero { padding: 2.5rem 1rem 1.5rem; }
      .stats-inline { grid-template-columns: 1fr 1fr; }
    }

    /* ── Viewport + Touch ── */
    html {
      overflow-x: hidden;
      -webkit-text-size-adjust: 100%;
    }
    img, video, canvas, svg, iframe, table {
      max-width: 100%;
      height: auto;
    }
    @media screen and (max-width: 768px) {
      input, textarea, select {
        font-size: 16px !important;
      }
    }
    /* touch-action */
    img, .bio-image-wrap, .hero-photo-wrapper {
      touch-action: pinch-zoom;
    }
    button, a, input, select, .card, nav {
      touch-action: manipulation;
    }
    .inline-icon { vertical-align: middle; margin-right: 0.15rem; margin-top: -2px; }
    .icon-ring img { display: block; margin: auto; }
    .stat-icon img { display: block; margin: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
    .cred-icon img, .re-icon img, .icon img, .role-icon img, .hero-icon img, .vol-icon img, .eje-icon img, .num img { vertical-align: middle; }

    .skip-link{position:absolute;top:-40px;left:0;background:var(--gold, #b8943e);color:var(--bg, #152238);padding:8px 16px;z-index:1000;transition:top .2s}.skip-link:focus{top:0}

    .breadcrumb{padding:.5rem 0;font-size:.875rem}
    .breadcrumb ol{list-style:none;display:flex;gap:.5rem;flex-wrap:wrap}
    .breadcrumb a{color:var(--fg-muted);text-decoration:none}
    .breadcrumb a:hover{color:var(--gold)}
    .breadcrumb li::after{content:"›";margin-left:.5rem;color:var(--fg-muted)}
    .breadcrumb li:last-child::after{content:""}