/* ============================================================
   Pcstore Tech — Design system
   Premium / tecnológico / corporativo / minimalista
   ============================================================ */

:root{
  /* Superficies (identidad real de marca: azul Pcstore Tech) */
  --navy-950:#1b3f91;   /* brand-blue-dk */
  --navy-900:#2451a4;   /* brand-blue */
  --navy-800:#3f68b8;   /* brand-blue-lt */
  --navy-700:#3f68b8;
  --surface:#ffffff;
  --surface-alt:#f5f6f9;
  --surface-alt-2:#eef1f7;
  --line:#e7e9f1;
  --line-soft:#edf0f5;

  /* Texto */
  --ink:#10142b;
  --body:#545b72;
  --muted:#8b92a8;
  --on-dark:#ffffff;
  --on-dark-muted:rgba(255,255,255,0.80);
  --on-dark-dim:rgba(255,255,255,0.60);

  /* Marca — azul identidad + naranja acción (colores reales del logo) */
  --brand-blue-dk:#1b3f91;
  --brand-blue:#2451a4;
  --brand-blue-lt:#3f68b8;
  --accent:#ee8b2f;
  --accent-600:#c96e1f;
  --accent-500:#ee8b2f;
  --accent-300:#ffb066;
  --accent-soft:rgba(238,139,47,0.12);
  --accent-soft-dark:rgba(255,176,102,0.16);
  --brand-soft: rgba(36,81,164,0.09);
  --emphasis-dark:#ff6b6d;
  --emphasis-card:#ff8a8b;
  --blob-red: rgba(237,23,25,0.30);

  /* Otros */
  --radius-lg:18px;
  --radius-md:12px;
  --radius-sm:10px;
  --shadow-md:0 14px 28px -22px rgba(16,20,43,0.45);
  --shadow-lg:0 10px 26px -18px rgba(16,20,43,0.35);
  --container:1080px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Helvetica,Arial,sans-serif;
  color:var(--body);
  background:var(--surface);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;margin:0;padding:0;}
h1,h2,h3,h4{color:var(--ink);margin:0;font-weight:800;letter-spacing:-0.01em;}
h3{font-weight:700;}
em{font-style:normal;}
p{margin:0;}
button{font-family:inherit;}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

section{padding:34px 0 68px;}
@media (max-width:768px){
  section{padding:28px 0 48px;}
}

/* ---------- Utilidades de texto ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:800;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:10px;
}
.eyebrow::before{
  content:"";
  width:6px;height:6px;border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 4px var(--accent-soft);
  flex-shrink:0;
}
.eyebrow.on-dark{color:var(--accent-300);}
.eyebrow.on-dark::before{background:var(--accent-300);box-shadow:0 0 0 4px var(--accent-soft-dark);}

h2.section-title{
  font-size:clamp(22px,2.4vw,27px);
  max-width:600px;
  margin:0 auto 10px;
}
p.section-lede{
  font-size:14.5px;
  color:var(--muted);
  max-width:600px;
  margin:0 auto;
}
.section-head{
  max-width:600px;
  margin:0 auto 40px;
  text-align:center;
}
.section-head.left{text-align:left;margin-left:0;margin-right:0;max-width:640px;}
.section-head.left h2, .section-head.left p{margin-left:0;margin-right:0;}

/* ---------- Botones ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 24px;
  border-radius:7px;
  font-size:14.5px;
  font-weight:700;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:opacity .15s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--accent);
  color:#fff;
}
.btn-primary:hover{opacity:.92;}
.btn-outline{
  background:transparent;
  border-color:var(--line);
  color:var(--ink);
}
.btn-outline:hover{border-color:var(--brand-blue);color:var(--brand-blue);}
.btn-outline.on-dark{
  border-color:rgba(255,255,255,0.32);
  color:var(--on-dark);
}
.btn-outline.on-dark:hover{opacity:.85;}
.btn-sm{padding:9px 18px;font-size:13px;}

/* ---------- Header ---------- */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:var(--brand-blue);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:14px;
  padding-bottom:14px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
}
.logo .logo-img{
  height:30px;
  width:auto;
  display:block;
}
.logo .mark{
  width:30px;height:30px;
  flex-shrink:0;
}
.logo .pc{color:var(--on-dark-muted);font-weight:500;}
.logo .tech{color:var(--accent-300);}

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
}
.nav-links a{
  padding:6px 0;
  font-size:13.5px;
  font-weight:600;
  color:rgba(255,255,255,0.82);
  transition:color .15s ease;
}
.nav-links a:hover{color:#fff;}
.nav-links a.is-active{color:#fff;}

.header-actions{display:flex;align-items:center;gap:12px;}
.nav-toggle{
  display:none;
  width:40px;height:40px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.25);
  background:transparent;
  color:var(--on-dark);
  align-items:center;justify-content:center;
}

@media (max-width:980px){
  .nav-links{
    position:fixed;
    top:58px;left:0;right:0;
    background:var(--brand-blue-dk);
    border-bottom:1px solid rgba(255,255,255,0.12);
    flex-direction:column;
    align-items:stretch;
    padding:12px;
    gap:4px;
    display:none;
  }
  .nav-links.is-open{display:flex;}
  .nav-links a{padding:14px;}
  .header-actions .btn-primary{display:none;}
  .header-actions.is-open .btn-primary{display:inline-flex;}
  .nav-toggle{display:inline-flex;}
}

/* ---------- Hero (secciones oscuras) ---------- */
.dark-section{
  background:linear-gradient(165deg, var(--brand-blue-dk), var(--brand-blue) 75%);
  color:var(--on-dark);
  position:relative;
  overflow:hidden;
}
.dark-section::before{
  content:"";
  position:absolute;inset:0;
  background-image:repeating-linear-gradient(115deg, rgba(255,255,255,0.045) 0 2px, transparent 2px 68px);
  pointer-events:none;
}
.dark-section::after{
  content:"";
  position:absolute;right:-140px;top:-160px;width:520px;height:520px;
  background:radial-gradient(circle, var(--blob-red), transparent 70%);
  pointer-events:none;
}
.dark-section .container{position:relative;z-index:1;}

.hero{padding:96px 0 64px;}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:56px;
  align-items:center;
}
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr;}
}
.hero h1{
  font-size:clamp(30px,4vw,40px);
  color:var(--on-dark);
  line-height:1.16;
  max-width:620px;
  margin-bottom:18px;
  letter-spacing:-0.01em;
}
.hero h1 em{color:var(--emphasis-dark);}
.hero p.hero-sub{
  font-size:16.5px;
  color:var(--on-dark-muted);
  max-width:540px;
  margin-bottom:32px;
  line-height:1.65;
}
.hero-ctas{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:44px;}
.hero-tags{display:flex;gap:10px;flex-wrap:wrap;}
.hero-tag{
  font-size:11.5px;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--on-dark-dim);
  border:1px solid rgba(255,255,255,0.12);
  padding:8px 14px;
  border-radius:999px;
}

/* ---------- Ilustración técnica (hero) ---------- */
.tech-illustration{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:var(--radius-lg);
  padding:20px 20px 22px;
}
.tech-illustration svg{width:100%;height:auto;display:block;overflow:visible;}
.status-dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--accent-300);
  box-shadow:0 0 0 4px var(--accent-soft-dark);
  animation:pulse-dot 2.4s ease-in-out infinite;
  flex-shrink:0;
}
@keyframes pulse-dot{
  0%,100%{opacity:1;}
  50%{opacity:0.35;}
}
.tech-illustration-caption{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,0.08);
}
.infra-status-chip{
  font-size:11px;
  font-weight:600;
  color:var(--on-dark-dim);
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  padding:6px 10px;
  border-radius:999px;
  display:flex;align-items:center;gap:6px;
}
.infra-status-chip .status-dot{width:6px;height:6px;}

/* ---------- Trust bar ---------- */
.trust-bar{
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:32px;
  margin-top:8px;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.badge{
  display:flex;
  align-items:center;
  gap:10px;
  padding:11px 18px;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:999px;
  background:rgba(255,255,255,0.02);
  font-size:13.5px;
  color:var(--on-dark);
  font-weight:500;
}
.badge .dot{width:7px;height:7px;border-radius:50%;background:var(--accent-300);flex-shrink:0;}
.badge.light{
  border-color:var(--line);
  background:var(--surface-alt);
  color:var(--ink);
}
.badge.light .dot{background:var(--accent);}

/* ---------- Pillars band (tarjetas flotando sobre el hero) ---------- */
.pillars-band{background:var(--surface-alt);padding-bottom:32px;}
.pillars-band + section{padding-top:24px;}
@media (max-width:760px){.pillars-band{padding-bottom:0;}}
.pillars{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  transform:translateY(-40px);
}
.pillar{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:24px 22px;
  box-shadow:var(--shadow-lg);
}
.pillar .ic-badge{
  width:38px;height:38px;border-radius:9px;
  background:var(--brand-soft);
  color:var(--brand-blue);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:14px;
}
.pillar h3{font-size:14.5px;margin:0 0 5px;}
.pillar p{font-size:12.5px;color:var(--body);margin:0;line-height:1.55;}
@media (max-width:760px){
  .pillars{grid-template-columns:1fr;transform:none;padding-top:24px;}
}

/* ---------- Icon badge (tarjetas de servicio) ---------- */
.ic-badge{
  width:34px;height:34px;border-radius:8px;
  background:var(--brand-soft);
  color:var(--brand-blue);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:13px;
}
svg.ic{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;}

/* ---------- Diferenciador: checklist + tarjeta cita ---------- */
.diff-grid{display:grid;grid-template-columns:1.05fr 1fr;gap:44px;align-items:center;}
@media (max-width:800px){.diff-grid{grid-template-columns:1fr;}}
.diff-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:18px;}
.diff-list li{display:flex;gap:13px;}
.diff-check{
  width:22px;height:22px;border-radius:50%;
  background:var(--accent);color:#fff;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-size:12px;font-weight:800;margin-top:1px;
}
.diff-list b{font-size:14.5px;color:var(--ink);}
.diff-list span.d{display:block;font-size:12.5px;color:var(--body);margin-top:3px;line-height:1.55;}
.quote-card{
  background:linear-gradient(165deg, var(--brand-blue-dk), var(--brand-blue));
  color:#fff;border-radius:14px;padding:30px;position:relative;overflow:hidden;
}
.quote-card::after{
  content:"";position:absolute;right:-60px;bottom:-60px;width:200px;height:200px;
  background:radial-gradient(circle, var(--blob-red), transparent 70%);
}
.quote-card .big{position:relative;font-size:15.5px;font-weight:700;line-height:1.55;}
.quote-card .big em{color:var(--emphasis-card);}

/* ---------- Certificaciones ---------- */
.cert-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;}
@media (max-width:760px){.cert-grid{grid-template-columns:1fr;}}
.cert-card{display:flex;gap:18px;border:1px solid var(--border);border-radius:var(--radius-md);padding:18px;background:var(--surface);}
.cert-card img{width:104px;border-radius:6px;border:1px solid var(--line);flex-shrink:0;box-shadow:var(--shadow-lg);}
.cert-badge{display:inline-flex;align-items:center;gap:6px;font-size:11px;font-weight:800;letter-spacing:.03em;color:var(--brand-blue);background:var(--brand-soft);padding:3px 9px;border-radius:999px;margin-bottom:8px;}
.cert-card h3{font-size:14.5px;margin:0 0 4px;}
.cert-card .scope{font-size:12px;color:var(--body);line-height:1.5;margin:0 0 10px;}
.cert-card .meta{font-size:11.5px;color:var(--muted);margin:0 0 10px;}
.cert-card a.dl{font-size:12.5px;font-weight:700;color:var(--accent);text-decoration:none;}
@media (max-width:480px){.cert-card{flex-direction:column;}.cert-card img{width:100%;}}

/* ---------- Cards de servicio ---------- */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;}
@media (max-width:900px){
  .grid-3{grid-template-columns:1fr 1fr;}
}
@media (max-width:640px){
  .grid-3,.grid-2{grid-template-columns:1fr;}
}

.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:20px;
  transition:box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.card:hover{box-shadow:var(--shadow-md);border-color:var(--brand-blue);}
.card .card-index{
  font-size:11px;
  font-weight:700;
  letter-spacing:0.08em;
  color:var(--accent);
  margin-bottom:12px;
  display:block;
}
.card h3{font-size:14px;margin-bottom:6px;}
.card p{font-size:12.5px;color:var(--muted);line-height:1.55;}
.card a.card-link{
  display:inline-flex;align-items:center;gap:6px;
  font-size:12.5px;font-weight:600;color:var(--accent);
  margin-top:14px;
}

.card.on-dark{
  background:var(--navy-800);
  border-color:rgba(255,255,255,0.08);
}
.card.on-dark h3{color:var(--on-dark);}
.card.on-dark p{color:var(--on-dark-muted);}

/* ---------- Chips de sector (sin icono, sin CTA, más ligeros) ---------- */
.sector-chip{
  padding:18px 16px;
  border-radius:10px;
  background:var(--surface);
  border:1px solid var(--line);
}
.sector-chip h3{font-size:14px;color:var(--brand-blue);margin-bottom:5px;font-weight:800;}
.sector-chip p{font-size:12.5px;color:var(--muted);line-height:1.5;}

/* ---------- Proceso / pasos ---------- */
.steps-row{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
}
@media (max-width:980px){.steps-row{grid-template-columns:repeat(3,1fr);}}
@media (max-width:560px){.steps-row{grid-template-columns:1fr 1fr;}}
.step{
  padding:22px 16px;
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
  background:var(--surface-alt);
}
.step .step-num{
  font-size:12px;font-weight:700;color:var(--accent);
  letter-spacing:0.05em;margin-bottom:10px;display:block;
}
.step h4{font-size:14.5px;margin-bottom:6px;}
.step p{font-size:12.5px;color:var(--muted);line-height:1.5;}

.flow-row{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:0;
  justify-content:center;
}
.flow-step{
  padding:14px 20px;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  color:var(--ink);
  background:var(--surface);
  white-space:nowrap;
}
.flow-arrow{
  padding:0 10px;
  color:var(--accent);
  font-size:16px;
}
@media (max-width:768px){
  .flow-row{flex-direction:column;align-items:stretch;}
  .flow-arrow{transform:rotate(90deg);padding:6px 0;text-align:center;}
}

/* ---------- Indicadores ---------- */
.indicators{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}
@media (max-width:980px){.indicators{grid-template-columns:repeat(3,1fr);}}
@media (max-width:600px){.indicators{grid-template-columns:1fr 1fr;}}
.indicator{
  border:1px solid rgba(255,255,255,0.1);
  background:rgba(255,255,255,0.02);
  border-radius:var(--radius-sm);
  padding:22px 18px;
  text-align:center;
}
.indicator .status-dot{margin:0 auto 12px;width:9px;height:9px;}
.indicator .label{
  font-size:11px;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;
  color:var(--on-dark-dim);margin-bottom:6px;
}
.indicator .state{
  font-size:14.5px;font-weight:600;color:var(--on-dark);
}

/* ---------- CTA band ---------- */
.cta-band{
  background:linear-gradient(120deg, var(--brand-blue-dk), var(--brand-blue));
  color:var(--on-dark);
  border-radius:var(--radius-lg);
  padding:46px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
  flex-wrap:wrap;
  position:relative;
  overflow:hidden;
  text-align:left;
}
.cta-band::after{
  content:"";position:absolute;left:-80px;top:-100px;width:280px;height:280px;
  background:radial-gradient(circle, var(--blob-red), transparent 70%);
}
.cta-band > .eyebrow{width:100%;}
.cta-band h2{color:var(--on-dark);max-width:460px;margin:0 0 9px;font-size:25px;position:relative;}
.cta-band p{color:var(--on-dark-muted);max-width:420px;margin:0;font-size:14px;position:relative;}
.cta-band .hero-ctas{margin-bottom:0;position:relative;}
.cta-band .cta-text{flex:1;min-width:260px;}
@media (max-width:640px){
  .cta-band{text-align:center;justify-content:center;padding:36px 26px;}
  .cta-band .cta-text{text-align:center;}
  .cta-band h2,.cta-band p{margin-left:auto;margin-right:auto;}
  .cta-band .hero-ctas{justify-content:center;}
}

/* ---------- Placeholder / pendiente ---------- */
.placeholder-box{
  border:1.5px dashed var(--line);
  border-radius:var(--radius-sm);
  padding:22px;
  text-align:center;
  color:var(--muted);
  font-size:13px;
}
.placeholder-strip{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.placeholder-strip .placeholder-box{flex:1;min-width:140px;}

.pending-note{
  font-size:12.5px;
  color:var(--muted);
  border-left:3px solid var(--accent);
  padding:10px 16px;
  background:var(--surface-alt);
  border-radius:0 8px 8px 0;
}

/* ---------- Bloque diferenciador (2 líneas) ---------- */
.diff-block{max-width:640px;}
.diff-line1{
  font-size:19px;font-weight:600;line-height:1.45;
  color:var(--ink);margin:0 0 10px 0;letter-spacing:-0.005em;
}
.diff-line2{
  font-size:14px;font-weight:400;line-height:1.6;
  color:var(--muted);letter-spacing:0.02em;margin:0;
}
.diff-block.on-dark .diff-line1{color:var(--on-dark);}
.diff-block.on-dark .diff-line2{color:var(--on-dark-dim);}

/* ---------- Breadcrumb / page hero (páginas internas) ---------- */
.page-hero{padding:72px 0 56px;}
.page-hero h1{font-size:clamp(30px,3.6vw,44px);color:var(--on-dark);max-width:720px;margin-bottom:18px;}
.page-hero p{font-size:17px;color:var(--on-dark-muted);max-width:620px;}

/* ---------- Tabla comparativa / listas con check ---------- */
.check-list{display:grid;grid-template-columns:repeat(2,1fr);gap:10px 24px;}
@media (max-width:640px){.check-list{grid-template-columns:1fr;}}
.check-list li{
  display:flex;align-items:flex-start;gap:10px;
  font-size:14.5px;color:var(--body);
}
.check-list li::before{
  content:"";
  width:6px;height:6px;border-radius:50%;
  background:var(--accent);
  margin-top:8px;flex-shrink:0;
}

/* ---------- Formulario de contacto ---------- */
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
@media (max-width:640px){.form-grid{grid-template-columns:1fr;}}
.field{display:flex;flex-direction:column;gap:8px;}
.field.full{grid-column:1 / -1;}
.field label{font-size:13px;font-weight:600;color:var(--ink);}
.field input,.field select,.field textarea{
  border:1px solid var(--line);
  border-radius:10px;
  padding:12px 14px;
  font-size:14.5px;
  font-family:inherit;
  color:var(--ink);
  background:var(--surface);
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--accent);box-shadow:0 0 0 3px var(--accent-soft);
}
.checkbox-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;}
@media (max-width:560px){.checkbox-grid{grid-template-columns:1fr;}}
.checkbox-item{
  display:flex;align-items:center;gap:10px;
  border:1px solid var(--line);border-radius:10px;padding:11px 14px;
  font-size:13.5px;color:var(--body);
}
.checkbox-item input{accent-color:var(--accent);width:16px;height:16px;}

/* ---------- Footer ---------- */
.site-footer{
  background:var(--brand-blue);
  color:var(--on-dark-muted);
  padding:0 0 26px;
}
.footer-legal{
  padding-top:22px;padding-bottom:14px;
  font-size:11.5px;color:rgba(255,255,255,0.55);
  border-bottom:1px solid rgba(255,255,255,0.12);
  margin-bottom:36px;
}
.footer-legal strong{color:rgba(255,255,255,0.75);}
.footer-legal a{color:rgba(255,255,255,0.75);}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:32px;
  padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,0.12);
}
@media (max-width:768px){
  .footer-grid{grid-template-columns:1fr 1fr;}
}
.footer-grid h5{
  font-size:12px;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;
  color:var(--on-dark-dim);margin-bottom:16px;
}
.footer-grid ul li{margin-bottom:10px;}
.footer-grid ul li a{font-size:13.5px;color:var(--on-dark-muted);}
.footer-grid ul li a:hover{color:#fff;}
.footer-brand p{font-size:13.5px;color:rgba(255,255,255,0.70);max-width:280px;margin-top:12px;line-height:1.6;}
.footer-brand .logo-img{height:22px;}
.footer-bottom{
  padding-top:20px;
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;
  font-size:12px;color:rgba(255,255,255,0.55);
}

/* ---------- Breadcrumb pills ---------- */
.crumb{font-size:12.5px;color:var(--on-dark-dim);margin-bottom:18px;}
.crumb a{color:var(--on-dark-dim);}
.crumb a:hover{color:var(--accent-300);}

/* ---------- Utilidades ---------- */
[data-reveal]{opacity:0;transform:translateY(14px);transition:opacity .5s ease, transform .5s ease;}
[data-reveal].is-visible{opacity:1;transform:translateY(0);}

.mt-0{margin-top:0;}
.text-center{text-align:center;}
.mx-auto{margin-left:auto;margin-right:auto;}
.bg-alt{background:var(--surface-alt);}
.narrow{max-width:760px;}
