/* ==========================================================================
   DataME — J Alberto Suarez C
   Brand: orange / magenta / purple on dark navy
   ========================================================================== */
:root {
  --navy:      #0d0e1c;
  --navy-2:    #12142a;
  --surface:   #171a33;
  --surface-2: #1d2140;
  --line:      #2a2e52;
  --text:      #f2f3fa;
  --muted:     #9296b8;
  --orange:    #ff7a1a;
  --magenta:   #cc0066;
  --purple:    #6b3fa0;
  --grad: linear-gradient(135deg, var(--orange), var(--magenta) 55%, var(--purple));
  --grad-soft: linear-gradient(135deg, rgba(255,122,26,.16), rgba(204,0,102,.16) 55%, rgba(107,63,160,.16));
  --radius: 20px;
  --nav-h: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle, #1b1e3d 1px, transparent 1px) 0 0/28px 28px,
    var(--navy);
  color: var(--text);
  font-family: "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ---------- scroll progress ---------- */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200; }
.progress span { display: block; height: 100%; width: 0; background: var(--grad); }

/* ---------- custom cursor ---------- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 300; pointer-events: none; border-radius: 50%; opacity: 0; transition: opacity .3s; }
body.cursor-live .cursor-dot, body.cursor-live .cursor-ring { opacity: 1; }
.cursor-dot  { width: 6px; height: 6px; background: var(--orange); margin: -3px 0 0 -3px; }
.cursor-ring { width: 34px; height: 34px; border: 1.5px solid rgba(204,0,102,.65); margin: -17px 0 0 -17px; transition: width .22s, height .22s, margin .22s, border-color .22s, background .22s; }
.cursor-ring.grow { width: 58px; height: 58px; margin: -29px 0 0 -29px; border-color: var(--orange); background: rgba(255,122,26,.08); }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- logo cube ---------- */
.logo { display: flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -.02em; font-size: 19px; }
.cube-wrap { width: 30px; height: 30px; perspective: 260px; flex-shrink: 0; }
.cube { display: block; position: relative; width: 30px; height: 30px; transform-style: preserve-3d; animation: spinCube 11s linear infinite; }
.cube span { display: block; position: absolute; inset: 0; border-radius: 5px; background: var(--grad); opacity: .92; border: 1px solid rgba(255,255,255,.18); }
.cube span:nth-child(1) { transform: translateZ(15px); }
.cube span:nth-child(2) { transform: rotateY(90deg) translateZ(15px); opacity: .68; }
.cube span:nth-child(3) { transform: rotateY(180deg) translateZ(15px); opacity: .8; }
.cube span:nth-child(4) { transform: rotateY(-90deg) translateZ(15px); opacity: .6; }
.cube span:nth-child(5) { transform: rotateX(90deg) translateZ(15px); opacity: .75; }
.cube span:nth-child(6) { transform: rotateX(-90deg) translateZ(15px); opacity: .55; }
@keyframes spinCube { to { transform: rotateX(360deg) rotateY(360deg); } }
.logo b { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- nav ---------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 150; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 0 clamp(18px, 4vw, 40px);
  background: rgba(13,14,28,.78); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-links { display: flex; align-items: center; gap: 3px; }
.nav-links a { color: var(--muted); font-size: 13.5px; font-weight: 600; padding: 9px 13px; border-radius: 999px; transition: .22s; }
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a.active { color: var(--text); background: var(--grad-soft); }
.nav-cta { background: var(--grad); color: #fff !important; padding: 10px 20px !important; font-weight: 700; }
.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.burger i { display: block; width: 17px; height: 2px; background: var(--text); border-radius: 2px; transition: .28s; }
.burger.open i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open i:nth-child(2) { opacity: 0; }
.burger.open i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- layout ---------- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 clamp(18px, 4vw, 40px); }
.section { padding: clamp(64px, 9vw, 118px) 0; }
.label { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin: 0 0 14px; }
.label::before { content: ""; width: 22px; height: 2px; background: var(--grad); border-radius: 2px; }
h1, h2, h3 { letter-spacing: -.035em; margin: 0; }
.h-xl { font-size: clamp(38px, 5.6vw, 72px); font-weight: 800; line-height: 1.03; }
.h-lg { font-size: clamp(30px, 4vw, 52px); font-weight: 800; line-height: 1.08; }
.lede { color: var(--muted); font-size: clamp(15px, 1.6vw, 17px); line-height: 1.72; max-width: 62ch; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-head { margin-bottom: clamp(32px, 4vw, 54px); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 14.5px; border: 1px solid transparent; cursor: pointer; transition: .25s; font-family: inherit; }
.btn-primary { background: var(--grad); color: #fff; }
.btn-primary:hover { filter: brightness(1.12); box-shadow: 0 12px 34px rgba(204,0,102,.34); }
.btn-ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* ---------- cards ---------- */
.card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px;
  transition: transform .32s cubic-bezier(.2,.8,.2,1), border-color .3s, box-shadow .32s;
}
.card:hover { transform: translateY(-7px); border-color: #3b4172; box-shadow: 0 22px 46px rgba(0,0,0,.5); }
.card h3 { font-size: 18px; margin-bottom: 9px; }
.card p { color: var(--muted); font-size: 14px; line-height: 1.68; margin: 0; }
.cert-badge { display: block; width: 34px; height: 34px; object-fit: contain; border-radius: 7px; margin-top: 14px; }
.card-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--grad-soft); border: 1px solid var(--line); display: grid; place-items: center; font-size: 20px; margin-bottom: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ---------- tags / pills ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.tag { background: var(--surface-2); border: 1px solid var(--line); color: #c3c7e4; font-size: 12.5px; font-weight: 600; padding: 7px 14px; border-radius: 999px; transition: .22s; }
a.tag:hover, .tag:hover { border-color: var(--magenta); color: #fff; }
.tag-grad { background: var(--grad-soft); border-color: rgba(204,0,102,.4); color: #ff9e5e; }
.badge { position: absolute; top: 18px; right: 18px; font-size: 10.5px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; background: rgba(255,122,26,.14); color: var(--orange); border: 1px solid rgba(255,122,26,.34); }

/* ---------- hero (shared) ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: var(--nav-h); perspective: 1200px; overflow: hidden; background: radial-gradient(ellipse at 65% 40%, #1a1d3d 0%, var(--navy) 62%); }
.hero-inner { display: grid; grid-template-columns: 1.08fr .92fr; gap: 40px; align-items: center; width: 100%; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; pointer-events: none; }
.blob-1 { width: 480px; height: 480px; background: rgba(107,63,160,.5); top: -110px; right: -80px; }
.blob-2 { width: 380px; height: 380px; background: rgba(204,0,102,.34); bottom: -120px; left: -90px; }
.hero-portrait-wrap { position: relative; display: grid; place-items: center; transform-style: preserve-3d; }
.hero-portrait-wrap img { width: min(430px, 82%); filter: drop-shadow(0 30px 50px rgba(0,0,0,.7)) drop-shadow(0 0 80px rgba(204,0,102,.2)); -webkit-mask-image: linear-gradient(to bottom, #000 88%, transparent 99%); mask-image: linear-gradient(to bottom, #000 88%, transparent 99%); }
.hero-ring { position: absolute; width: 78%; aspect-ratio: 1; border: 1px dashed #2f3460; border-radius: 50%; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { position: relative; padding: calc(var(--nav-h) + 74px) 0 58px; overflow: hidden; background: radial-gradient(ellipse at 50% 0%, #1c1f42 0%, var(--navy) 68%); border-bottom: 1px solid var(--line); }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat b { display: block; font-size: clamp(32px, 4.4vw, 56px); font-weight: 800; letter-spacing: -.04em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: 13.5px; }

/* ---------- marquee ---------- */
.marquee { border-block: 1px solid var(--line); padding: 15px 0; overflow: hidden; background: var(--navy-2); }
.marquee-track { display: flex; gap: 26px; align-items: center; width: max-content; animation: slide 40s linear infinite; }
.marquee span { font-size: 14.5px; font-weight: 600; white-space: nowrap; color: #c9cdea; }
.marquee i { color: var(--magenta); font-style: normal; font-size: 9px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- medallion 3D (conserved) ---------- */
.med-scroll { height: 330svh; position: relative; }
.med-sticky { position: sticky; top: 0; height: 100svh; display: grid; grid-template-columns: 1fr 1.1fr; align-items: center; gap: 40px; max-width: 1240px; margin: 0 auto; padding: 0 clamp(18px,4vw,40px); perspective: 1400px; }
.med-stage { position: relative; height: 62svh; transform-style: preserve-3d; }
.med-plane { position: absolute; left: 50%; top: 50%; width: min(430px, 84%); transform-style: preserve-3d; will-change: transform; }
.plane-face { border-radius: 18px; padding: 22px 24px; background: linear-gradient(150deg, rgba(29,33,64,.97), rgba(19,21,42,.97)); border: 1px solid var(--line); box-shadow: 0 34px 60px rgba(0,0,0,.6); }
.plane-tag { font-size: 10px; font-weight: 800; letter-spacing: 2.4px; }
.p-bronze .plane-tag { color: #d08a4e; } .p-bronze .plane-face { border-color: rgba(208,138,78,.44); }
.p-silver .plane-tag { color: #b9bdd0; } .p-silver .plane-face { border-color: rgba(185,189,208,.36); }
.p-gold   .plane-tag { color: #e8b33c; } .p-gold   .plane-face { border-color: rgba(232,179,60,.44); }
.plane-face h3 { margin: 8px 0; font-size: 19px; }
.plane-face p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

/* ---------- process ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; transition: .3s; }
.step:hover { transform: translateY(-6px); border-color: var(--magenta); }
.step b { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--grad); color: #fff; font-size: 15px; margin-bottom: 16px; }
.step h3 { font-size: 16.5px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 13.5px; line-height: 1.62; margin: 0; }

/* ---------- timeline ---------- */
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li { display: grid; grid-template-columns: 118px 1fr; gap: 24px; padding: 22px 0; border-top: 1px solid var(--line); transition: .3s; }
.timeline li:hover { background: linear-gradient(90deg, rgba(204,0,102,.07), transparent); }
.t-date { font-weight: 800; font-size: 13px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.timeline h3 { font-size: 18px; margin-bottom: 4px; }
.timeline p { margin: 0; color: var(--muted); font-size: 14px; }

/* ---------- code blocks ---------- */
.code {
  background: #0a0b18; border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; margin: 16px 0 0; font-size: 12.5px;
}
.code-head { display: flex; align-items: center; justify-content: space-between; padding: 9px 14px; background: var(--surface-2); border-bottom: 1px solid var(--line); font-size: 11px; font-weight: 700; letter-spacing: .6px; color: var(--muted); text-transform: uppercase; }
.code pre { margin: 0; padding: 16px; overflow-x: auto; line-height: 1.66; font-family: "SF Mono", Menlo, Consolas, "Courier New", monospace; }
.code .k { color: #ff7a1a; font-weight: 600; }   /* keyword */
.code .s { color: #6ee7a8; }                      /* string  */
.code .c { color: #5f668f; font-style: italic; }  /* comment */
.code .f { color: #c084fc; }                      /* func    */
.code .n { color: #f472b6; }                      /* number  */

/* ---------- search + filters ---------- */
.searchbar { position: relative; max-width: 560px; }
.searchbar input {
  width: 100%; padding: 15px 18px 15px 46px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line); color: var(--text);
  font-size: 14.5px; font-family: inherit; outline: none; transition: .25s;
}
.searchbar input:focus { border-color: var(--magenta); box-shadow: 0 0 0 4px rgba(204,0,102,.14); }
.searchbar::before { content: "⌕"; position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 19px; }
.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.filter { background: var(--surface); border: 1px solid var(--line); color: var(--muted); font-size: 13px; font-weight: 600; padding: 9px 17px; border-radius: 999px; cursor: pointer; font-family: inherit; transition: .22s; }
.filter:hover { color: var(--text); border-color: #3b4172; }
.filter.active { background: var(--grad); border-color: transparent; color: #fff; }
.no-results { display: none; color: var(--muted); padding: 30px 0; }

/* ---------- news ---------- */
.news-layout { display: grid; grid-template-columns: 1fr 292px; gap: 34px; align-items: start; }
.featured { display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; overflow: hidden; padding: 0; }
.featured-media { background: var(--grad); min-height: 260px; display: grid; place-items: center; font-size: 62px; }
.featured-body { padding: 32px 30px; }
.sidebar-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; margin-bottom: 18px; }
.sidebar-card h3 { font-size: 15px; margin-bottom: 15px; }
.meta { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12.5px; margin-bottom: 12px; }

/* ---------- form ---------- */
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: start; }
.field { margin-bottom: 17px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; }
.field .req { color: var(--magenta); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  background: var(--navy-2); border: 1px solid var(--line); color: var(--text);
  font-size: 14.5px; font-family: inherit; outline: none; transition: .22s;
}
.field textarea { min-height: 148px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--magenta); box-shadow: 0 0 0 4px rgba(204,0,102,.13); }
.field .err { display: none; color: #ff6b81; font-size: 12.5px; margin-top: 6px; }
.field.invalid input, .field.invalid textarea { border-color: #ff6b81; }
.field.invalid .err { display: block; }
.form-note { color: var(--muted); font-size: 12.5px; margin-top: 14px; }
.form-status { display: none; padding: 14px 18px; border-radius: 12px; font-size: 14px; margin-top: 16px; }
.form-status.ok  { display: block; background: rgba(110,231,168,.1); border: 1px solid rgba(110,231,168,.35); color: #6ee7a8; }
.form-status.bad { display: block; background: rgba(255,107,129,.1); border: 1px solid rgba(255,107,129,.35); color: #ff8fa0; }
.contact-line { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-line .ico { width: 40px; height: 40px; border-radius: 11px; background: var(--grad-soft); border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; }
.contact-line b { display: block; font-size: 14px; }
.contact-line span { color: var(--muted); font-size: 13.5px; }

/* ---------- newsletter ---------- */
.newsletter { background: linear-gradient(135deg, rgba(255,122,26,.1), rgba(107,63,160,.14)); border: 1px solid var(--line); border-radius: 26px; padding: clamp(30px, 5vw, 54px); text-align: center; }
.nl-form { display: flex; gap: 10px; max-width: 460px; margin: 24px auto 0; }
.nl-form input { flex: 1; padding: 14px 18px; border-radius: 999px; background: var(--navy-2); border: 1px solid var(--line); color: var(--text); font-size: 14.5px; font-family: inherit; outline: none; }
.nl-form input:focus { border-color: var(--magenta); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--navy-2); padding: 52px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.footer h4 { font-size: 13px; margin: 0 0 14px; letter-spacing: .4px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: var(--muted); font-size: 13.5px; }
.footer a:hover { color: var(--orange); }
.footer-base { margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: 12.5px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: perspective(1000px) translateY(42px) translateZ(-70px) rotateX(9deg); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s } .reveal[data-d="2"] { transition-delay: .16s }
.reveal[data-d="3"] { transition-delay: .24s } .reveal[data-d="4"] { transition-delay: .32s }
.reveal[data-d="5"] { transition-delay: .4s }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(13,14,28,.98); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line); padding: 16px clamp(18px,4vw,40px) 24px;
    transform: translateY(-14px); opacity: 0; pointer-events: none; transition: .28s;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 16px; font-size: 15px; }
  .nav-cta { text-align: center; justify-content: center; margin-top: 6px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 26px; }
  .hero-portrait-wrap { order: -1; }
  .hero-portrait-wrap img { width: min(300px, 66%); }
  .lede { margin-inline: auto; }
  .hero .btn-row { justify-content: center; }
  .grid-3, .grid-2, .grid-4, .process, .news-layout, .contact-layout, .featured, .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .med-sticky { grid-template-columns: 1fr; gap: 8px; padding-top: 92px; align-content: start; }
  .med-stage { height: 46svh; }
  .med-plane { width: min(400px, 92%); }
  .plane-face { padding: 16px 18px; }
  .plane-face p { font-size: 12px; }
  .timeline li { grid-template-columns: 86px 1fr; gap: 14px; }
  .nl-form { flex-direction: column; }
}

/* ---------- accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .marquee-track, .cube { animation: none; }
  .cursor-dot, .cursor-ring { display: none; }
  .med-scroll { height: auto; }
  .med-sticky { position: static; height: auto; padding-block: 80px; }
  .med-stage { height: auto; display: flex; flex-direction: column-reverse; gap: 16px; }
  .med-plane { position: static; width: 100%; transform: none !important; opacity: 1 !important; }
  .card:hover, .step:hover { transform: none; }
}
/* ==========================================================================
   THEME: Stadium — 90deg gradient #ff8200 → #2274df → #ffffff, stadium at 30%
   Delete this block to return to the plain navy theme.
   ========================================================================== */
:root {
  --bg-a: #ff8200;
  --bg-b: #2274df;
  --bg-c: #ffffff;
  --stadium-opacity: .30;   /* 70% transparent */
  --veil: .50;              /* darkening over the gradient — raise if text feels washed out */
}
body { background: none; }
body::before, body::after { content: ""; position: fixed; inset: 0; pointer-events: none; }
body::before {
  z-index: -2;
  background:
    linear-gradient(rgba(13,14,28,var(--veil)), rgba(13,14,28,var(--veil))),
    linear-gradient(90deg, var(--bg-a), var(--bg-b) 55%, var(--bg-c));
}
body::after {
  z-index: -1;
  background: url("assets/stadium.webp") center / cover no-repeat;
  opacity: var(--stadium-opacity);
}
/* let the backdrop through the previously opaque bands */
.hero      { background: radial-gradient(ellipse at 65% 40%, rgba(13,14,28,.10) 0%, rgba(13,14,28,.45) 70%); }
.page-hero { background: radial-gradient(ellipse at 50% 0%, rgba(13,14,28,.12) 0%, rgba(13,14,28,.5) 72%); }
.hero-blob { opacity: .34; }
.marquee   { background: rgba(18,20,42,.7); backdrop-filter: blur(6px); }
.footer    { background: rgba(18,20,42,.78); backdrop-filter: blur(10px); }
.card, .step, .sidebar-card { background: rgba(23,26,51,.86); backdrop-filter: blur(8px); }
.newsletter { backdrop-filter: blur(8px); }
/* bare text columns need their own scrim over the photo */
.contact-layout > div:first-child, .timeline {
  background: rgba(18,20,42,.72); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
}

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 6px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 400; background: var(--grad); color: #fff; padding: 12px 20px; border-radius: 999px; }
