/* =====================================================================
   SaycuTrans · landing pública
   Identidad de marca: navy #1a2332 + naranja #ee7320 (de la presentación
   comercial). Todo por variables — cero color hardcodeado en componentes.
   ===================================================================== */

:root {
  /* Marca */
  --navy-900: #141d2b;   /* footer / fondos más oscuros */
  --navy-800: #1a2332;   /* hero / cta */
  --navy-700: #232f42;   /* superficies sobre navy */
  --navy-600: #2d3b54;
  --orange:   #ee7320;   /* acento */
  --orange-600: #d85f12; /* hover */
  --orange-100: #fdecdd; /* tintes suaves */

  /* Neutros claros */
  --ink:       #1f2d3d;  /* texto principal y títulos sobre claro */
  --ink-soft:  #3a4658;
  --muted:     #5b6675;
  --bg:        #ffffff;
  --bg-soft:   #f5f7fb;
  --bg-soft-2: #eef1f7;
  --border:    #e5e9f0;
  --border-strong: #d4dae4;
  --on-dark:   #ffffff;
  --on-dark-soft: #c4ccd9;

  /* Tipografía */
  --font-display: "Archivo", system-ui, "Segoe UI", sans-serif;
  --font-body: "Hanken Grotesk", system-ui, "Segoe UI", sans-serif;

  /* Forma */
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --shadow-card: 0 16px 34px rgba(20, 29, 43, .11), 0 4px 10px rgba(20, 29, 43, .06);
  --shadow-card-hover: 0 26px 54px rgba(20, 29, 43, .18), 0 8px 18px rgba(20, 29, 43, .09);
  --shadow-soft: 0 8px 22px rgba(20, 29, 43, .08);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -.01em; color: var(--ink); }
ul, ol { list-style: none; padding: 0; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

/* ---------- Botones ---------- */
.btn {
  --bg: var(--orange);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  padding: 13px 24px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s, color .18s, border-color .18s;
  white-space: nowrap;
}
.btn--sm { padding: 9px 16px; font-size: 14.5px; }
.btn--lg { padding: 16px 30px; font-size: 17px; }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 10px 22px rgba(238, 115, 32, .32); }
.btn--primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(238, 115, 32, .40); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange-600); }
.btn--ghost-light { background: rgba(255, 255, 255, .06); color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .14); border-color: #fff; transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav__inner { display: flex; align-items: center; gap: 18px; height: 70px; }
.nav__logo { display: inline-flex; align-items: center; gap: 10px; }
.nav__logo img { border-radius: 9px; }
.nav__logo-text { font-family: var(--font-display); font-weight: 600; font-size: 21px; color: #fff; letter-spacing: -.02em; transition: color .3s; }
.nav__logo-text strong { font-weight: 800; color: var(--orange); }
.nav__links { display: flex; gap: 26px; margin-left: 20px; margin-right: auto; }
.nav__links a { font-weight: 600; font-size: 15.5px; color: rgba(255, 255, 255, .82); transition: color .2s; position: relative; }
.nav__links a:hover { color: #fff; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--orange); transition: width .25s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: transparent; border: 0; cursor: pointer; }
.nav__toggle span { width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s, background .3s; }

/* Nav en estado scrolled (sobre fondo claro) */
.nav--solid { background: rgba(255, 255, 255, .92); backdrop-filter: blur(10px); box-shadow: var(--shadow-soft); border-bottom-color: var(--border); }
.nav--solid .nav__logo-text { color: var(--ink); }
.nav--solid .nav__links a { color: var(--ink-soft); }
.nav--solid .nav__links a:hover { color: var(--orange-600); }
.nav--solid .btn--ghost { color: var(--ink); }
/* Botón ghost del nav sobre el hero (nav transparente): texto claro legible */
.nav:not(.nav--solid) .nav__cta .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .45); background: rgba(255, 255, 255, .08); }
.nav:not(.nav--solid) .nav__cta .btn--ghost:hover { background: rgba(255, 255, 255, .18); border-color: #fff; color: #fff; }
.nav--solid .nav__toggle span { background: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy-800); color: #fff; padding: 132px 0 84px; overflow: hidden; }
.hero__stripes { position: absolute; inset: 0; pointer-events: none; }
.hero__stripes::before, .hero__stripes::after {
  content: ""; position: absolute; top: -30%; height: 160%; transform: rotate(16deg); border-radius: 6px;
}
.hero__stripes::before { right: 7%; width: clamp(42px, 6vw, 96px); background: var(--orange); opacity: .92; }
.hero__stripes::after { right: 15%; width: clamp(20px, 2.4vw, 38px); background: var(--orange); opacity: .28; }
.hero__inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 13.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: 18px; }
.eyebrow--light { color: var(--orange); }
.hero__title { font-size: clamp(2.7rem, 6vw, 4.6rem); font-weight: 900; letter-spacing: -.03em; color: #fff; }
.hero__title .accent { color: var(--orange); }
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--on-dark-soft); max-width: 33ch; margin-top: 22px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero__chips li { font-size: 14px; font-weight: 600; color: var(--on-dark-soft); padding: 7px 14px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px; background: rgba(255, 255, 255, .04); }
.hero__media { justify-self: center; }
.hero__media img { width: clamp(240px, 30vw, 340px); filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .45)); border-radius: 22px; }

/* ---------- Secciones ---------- */
.section { padding: 88px 0; background: var(--bg); }
.section--light { background: var(--bg-soft); }
section[id] { scroll-margin-top: 82px; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section__head--left { text-align: left; margin: 0 0 32px; }
.section__title { font-size: clamp(1.9rem, 3.4vw, 2.85rem); font-weight: 800; }
.section__sub { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--muted); margin-top: 12px; }

/* ---------- El reto ---------- */
.reto__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.reto__lead h3 { font-size: 1.4rem; margin-bottom: 12px; }
.reto__lead > p { color: var(--muted); font-size: 1.08rem; max-width: 46ch; }
.pains { margin-top: 26px; display: grid; gap: 14px; }
.pain { display: flex; align-items: center; gap: 13px; font-weight: 600; color: var(--ink-soft); }
.pain .ico { width: 24px; height: 24px; flex: none; color: var(--orange); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.stats { display: grid; gap: 16px; }
.stat { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-card); }
.stat__num { display: block; font-family: var(--font-display); font-weight: 900; font-size: clamp(1.8rem, 3.4vw, 2.5rem); color: var(--orange); letter-spacing: -.02em; line-height: 1; }
.stat__label { display: block; color: var(--muted); margin-top: 10px; font-size: .98rem; }

/* ---------- Quote (qué es) ---------- */
.quote {
  position: relative; background: var(--navy-800); color: #fff; border-radius: var(--radius);
  border-left: 6px solid var(--orange); padding: 34px 40px; font-family: var(--font-display);
  font-weight: 600; font-size: clamp(1.2rem, 2.1vw, 1.7rem); line-height: 1.35; letter-spacing: -.01em;
  max-width: 980px; margin: 0 auto 48px; box-shadow: var(--shadow-card);
}
.quote strong { color: var(--orange); font-weight: 800; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar { text-align: center; padding: 8px; }
.pillar h3 { font-size: 1.22rem; margin: 16px 0 8px; }
.pillar p { color: var(--muted); font-size: .98rem; }

/* ---------- Icon badge ---------- */
.icon-badge { display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; }
.icon-badge--sm { width: 46px; height: 46px; }
.icon-badge svg { width: 28px; height: 28px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-badge--sm svg { width: 22px; height: 22px; }
.icon-badge--orange { background: var(--orange); box-shadow: 0 8px 18px rgba(238, 115, 32, .30); }
.icon-badge--navy { background: var(--navy-800); box-shadow: 0 8px 18px rgba(26, 35, 50, .26); }
.pillar .icon-badge { margin-inline: auto; }

/* ---------- Grids + cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 26px 28px; box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.card--accent { border-left: 4px solid var(--orange); }
.card h3 { font-size: 1.18rem; margin: 16px 0 8px; }
.card p { color: var(--muted); font-size: .98rem; }
.section--light .card, .section--light .stat { background: #fff; }

/* ---------- Tiles (panel) ---------- */
.grid--tiles { gap: 20px; }
.tile {
  background: #fff; border: 1px solid var(--border); border-top: 3px solid var(--orange);
  border-radius: var(--radius); padding: 26px 22px; text-align: center; box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.tile .icon-badge { margin: 0 auto 14px; }
.tile h3 { font-size: 1.12rem; margin-bottom: 6px; }
.tile p { color: var(--muted); font-size: .92rem; }

/* ---------- Steps (ciclo) ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.step {
  position: relative; background: #fff; border: 1px solid var(--border); border-top: 3px solid var(--orange);
  border-radius: var(--radius); padding: 28px 20px 24px; box-shadow: var(--shadow-card);
}
.step__num {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
  margin-bottom: 16px; box-shadow: 0 8px 16px rgba(238, 115, 32, .30);
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .94rem; }

/* ---------- Feature split (app / gps) ---------- */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-split--reverse .feature-split__media { order: -1; }
.feature-list { display: grid; gap: 22px; }
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .icon-badge { flex: none; }
.feature h3 { font-size: 1.12rem; margin-bottom: 4px; }
.feature p { color: var(--muted); font-size: .98rem; }
.feature-split__media { display: grid; place-items: center; }
.device { width: clamp(230px, 26vw, 300px); border-radius: 22px; filter: drop-shadow(0 26px 52px rgba(20, 29, 43, .22)); }
.shot { width: 100%; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-card-hover); }

/* ---------- Galería ---------- */
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.gallery__item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow-card); }
.gallery__item--full { grid-column: 1 / -1; }
.gallery__item img { border-radius: 8px; width: 100%; }
.gallery__item figcaption { color: var(--muted); font-size: .95rem; text-align: center; margin-top: 14px; }

/* ---------- Sección a3ERP (bloque oscuro destacado) ---------- */
.section--dark { background: var(--navy-800); position: relative; overflow: hidden; }
.section--dark .section__title { color: #fff; }
.section--dark .section__sub { color: var(--on-dark-soft); }
.erp-shot { max-width: 940px; margin: 0 auto 42px; border-radius: 14px; overflow: hidden; box-shadow: 0 34px 70px rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.12); }
.erp-shot img { width: 100%; display: block; }
.erp-feats { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 26px; max-width: 980px; margin: 0 auto; }
.erp-feat h3 { color: #fff; font-size: 1.12rem; margin: 14px 0 7px; }
.erp-feat p { color: var(--on-dark-soft); font-size: .97rem; }

/* ---------- CTA ---------- */
.cta { position: relative; background: var(--navy-800); color: #fff; padding: 88px 0 84px; overflow: hidden; }
.cta__stripes { position: absolute; inset: 0; pointer-events: none; }
.cta__stripes::before, .cta__stripes::after { content: ""; position: absolute; top: -30%; height: 160%; transform: rotate(16deg); border-radius: 6px; }
.cta__stripes::before { right: 6%; width: clamp(42px, 6vw, 92px); background: var(--orange); opacity: .9; }
.cta__stripes::after { right: 13%; width: clamp(18px, 2.2vw, 34px); background: var(--orange); opacity: .26; }
.cta__inner { position: relative; }
.cta__head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.cta__head h2 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 900; color: #fff; }
.cta__head p { color: var(--on-dark-soft); font-size: 1.15rem; margin-top: 14px; }
.cta__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cta__card { background: var(--navy-700); border: 1px solid rgba(255, 255, 255, .08); border-left: 4px solid var(--orange); border-radius: var(--radius); padding: 26px; }
.cta__card h3 { color: #fff; font-size: 1.2rem; margin: 14px 0 8px; }
.cta__card p { color: var(--on-dark-soft); font-size: .98rem; }
.cta__arrow { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 10px; background: var(--orange); }
.cta__arrow svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.cta__domains { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px; margin-top: 40px; font-family: var(--font-display); font-weight: 700; }
.cta__domains a { color: var(--orange); transition: color .2s; }
.cta__domains a:hover { color: #fff; }
.cta__domains span { color: rgba(255, 255, 255, .35); }
.cta__contact { text-align: center; margin-top: 38px; }
.cta__contact-badge { display: inline-block; font-family: var(--font-display); font-weight: 800; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--navy-900); background: var(--orange); padding: 7px 16px; border-radius: 999px; }
.cta__contact-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px; margin-top: 18px; }
.cta__contact-link { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; transition: color .2s; }
.cta__contact-link svg { width: 20px; height: 20px; fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cta__contact-link:hover { color: var(--orange); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: var(--on-dark-soft); padding: 56px 0 28px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; }
.footer__brand p { margin-top: 14px; max-width: 36ch; font-size: .98rem; }
.footer .nav__logo-text { color: #fff; }
.footer__col h4 { font-size: .92rem; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 14px; }
.footer__col a { display: block; padding: 5px 0; font-size: .98rem; transition: color .2s; }
.footer__col a:hover { color: var(--orange); }
.footer__bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .9rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.grid > .reveal:nth-child(2), .pillars > .reveal:nth-child(2), .steps > .reveal:nth-child(2), .cta__cards > .reveal:nth-child(2) { transition-delay: .07s; }
.grid > .reveal:nth-child(3), .pillars > .reveal:nth-child(3), .steps > .reveal:nth-child(3), .cta__cards > .reveal:nth-child(3) { transition-delay: .14s; }
.grid > .reveal:nth-child(4), .pillars > .reveal:nth-child(4), .steps > .reveal:nth-child(4) { transition-delay: .21s; }
.grid > .reveal:nth-child(5), .steps > .reveal:nth-child(5) { transition-delay: .28s; }
.grid > .reveal:nth-child(6) { transition-delay: .35s; }
.grid > .reveal:nth-child(7) { transition-delay: .42s; }
.grid > .reveal:nth-child(8) { transition-delay: .49s; }
.hero__content .reveal:nth-child(2) { transition-delay: .06s; }
.hero__content .reveal:nth-child(3) { transition-delay: .12s; }
.hero__content .reveal:nth-child(4) { transition-delay: .18s; }
.hero__content .reveal:nth-child(5) { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero__content { display: flex; flex-direction: column; align-items: center; }
  .hero__sub { max-width: 48ch; }
  .hero__actions, .hero__chips { justify-content: center; }
  .hero__media { order: -1; }
  .reto__grid { grid-template-columns: 1fr; gap: 30px; }
  .feature-split { grid-template-columns: 1fr; gap: 36px; }
  .feature-split--reverse .feature-split__media { order: 0; }
  .pillars { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cta__cards { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .nav__links { position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; padding: 8px 24px 18px; box-shadow: var(--shadow-soft); border-bottom: 1px solid var(--border); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; margin: 0; }
  .nav--open .nav__links { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { color: var(--ink-soft); padding: 12px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav__links a::after { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero__title { font-size: clamp(2.1rem, 10.5vw, 3rem); }
  .hero__stripes::before { right: -9%; opacity: .8; }
  .hero__stripes::after { right: 3%; }
  .nav--open .nav__toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav--open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav--open .nav__toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  /* hamburguesa siempre oscura cuando el panel está abierto (fondo blanco) */
  .nav--open:not(.nav--solid) .nav__toggle span { background: var(--ink); }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4, .pillars, .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .quote { padding: 26px 24px; border-left-width: 5px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding-top: 110px; }
}

/* ---------- Accesibilidad ---------- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .tile { transition: none; }
}

/* ---------- Modo embed (cuando detalle.html vive dentro del modal de
   la película index.html, con ?embed=1) ----------
   La nav es position:fixed y, embebida en un iframe, tapa el contenido y se
   ve fuera de contexto. Se oculta y se compensa el padding superior del hero
   (que estaba reservado para la nav fija). El resto se conserva tal cual. */
html.is-embed .nav { display: none; }
html.is-embed .hero { padding-top: 56px; }
@media (max-width: 560px) {
  html.is-embed .hero { padding-top: 40px; }
}
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
