/* ===========================================================
   NomadaOps — Futuristic Editorial
   Aesthetic: deep indigo void, atmospheric cyan light,
   hairlines + asymmetric grid + technical labels.
   =========================================================== */

@font-face {
  font-family: "Sora";
  src: url("assets/fonts/Sora-Variable.ttf") format("truetype-variations");
  font-weight: 100 800;
  font-display: swap;
}
@font-face { font-family: "Avenir"; src: url("assets/fonts/Avenir-Light.ttf");   font-weight: 300; font-display: swap; }
@font-face { font-family: "Avenir"; src: url("assets/fonts/Avenir-Book.ttf");    font-weight: 400; font-display: swap; }
@font-face { font-family: "Avenir"; src: url("assets/fonts/Avenir-Regular.ttf"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Avenir"; src: url("assets/fonts/Avenir-Heavy.ttf");   font-weight: 700; font-display: swap; }
@font-face { font-family: "Avenir"; src: url("assets/fonts/Avenir-Black.ttf");   font-weight: 900; font-display: swap; }

:root {
  --indigo: #02024A;
  --indigo-deep: #01012e;
  --azul:   #1534C2;
  --cian:   #007EFC;
  --celeste:#96D0FE;
  --naranja:#EB5324;
  --negro:  #121212;
  --blanco: #FFFFFF;

  --ink: #F5F7FF;
  --ink-dim: rgba(245, 247, 255, 0.55);
  --ink-mute: rgba(245, 247, 255, 0.32);
  --line: rgba(150, 208, 254, 0.14);
  --line-strong: rgba(150, 208, 254, 0.28);

  --f-display: "Sora", system-ui, sans-serif;
  --f-body:    "Avenir", "Inter", system-ui, sans-serif;
  --f-mono:    "Avenir", "Inter", system-ui, sans-serif;

  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:    cubic-bezier(0.33, 1, 0.68, 1);

  --gutter: clamp(20px, 4vw, 64px);
  --col: minmax(0, 1fr);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html, body {
  background: var(--indigo);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body {
  /* atmospheric base — barely-there mesh, less saturated */
  background:
    radial-gradient(1100px 600px at 82% -8%, rgba(0,126,252,0.10), transparent 60%),
    radial-gradient(900px 600px at -8% 28%, rgba(21,52,194,0.13), transparent 60%),
    radial-gradient(700px 500px at 60% 110%, rgba(150,208,254,0.06), transparent 60%),
    radial-gradient(900px 700px at 20% 65%, rgba(2,2,40,0.6), transparent 70%),
    var(--indigo-deep);
}

img { display: block; max-width: 100%; }

::selection { background: var(--cian); color: var(--blanco); }

/* ---- grain overlay, fixed ------------------------------------------------ */
.grain {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 100;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---- custom cursor halo -------------------------------------------------- */
.cursor {
  pointer-events: none;
  position: fixed;
  top: 0; left: 0;
  width: 28px; height: 28px;
  margin: -14px 0 0 -14px;
  border-radius: 50%;
  border: 1px solid rgba(150,208,254,0.65);
  z-index: 200;
  transition: transform 0.18s var(--ease-out), width 0.25s var(--ease-out), height 0.25s var(--ease-out), border-color 0.25s ease;
  will-change: transform;
  mix-blend-mode: difference;
}
.cursor.is-hover {
  width: 56px; height: 56px;
  margin: -28px 0 0 -28px;
  border-color: var(--cian);
}
@media (hover: none) { .cursor { display: none; } }

/* ---- progress bar -------------------------------------------------------- */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 1px;
  background: var(--line);
  z-index: 90;
}
.progress::after {
  content: "";
  display: block; height: 100%;
  width: var(--p, 0%);
  background: linear-gradient(90deg, var(--azul), var(--cian), var(--celeste));
  transition: width 0.08s linear;
}

/* =========================================================
   Layout — wide canvas, technical column
   ========================================================= */
.wrap {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

/* technical labels — monospaced */
.tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--celeste);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.tag::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--cian);
  display: inline-block;
  transform: rotate(45deg);
  box-shadow: 0 0 12px var(--cian);
}

.tag-mute {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 18px 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(2, 2, 30, 0.7);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.nav.is-scrolled .nav-logo img { height: 36px; transition: height 0.3s ease; }
.nav-row {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { display: inline-flex; align-items: center; text-decoration: none; color: var(--ink); }
.nav-logo img { height: 44px; width: auto; display: block; }

.nav-links {
  display: flex; gap: 8px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  position: relative;
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a .idx {
  font-size: 9.5px;
  color: var(--cian);
  margin-right: 6px;
  opacity: 0.7;
}

.nav-cta {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  transition: background 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120px 60px at var(--mx, 50%) var(--my, 50%), rgba(0,126,252,0.35), transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.nav-cta:hover { border-color: var(--cian); }
.nav-cta:hover::before { opacity: 1; }
.nav-cta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cian);
  box-shadow: 0 0 10px var(--cian);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 80px;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}

/* grid lines bg */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 88px 88px;
  background-position: center top;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  opacity: 0.6;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}
.hero-orb-1 { width: 620px; height: 620px; top: -140px; right: -140px; background: radial-gradient(circle, rgba(0,126,252,0.45), transparent 70%); }
.hero-orb-2 { width: 460px; height: 460px; bottom: -160px; left: -60px;  background: radial-gradient(circle, rgba(21,52,194,0.55), transparent 70%); }
.hero-orb-3 { width: 280px; height: 280px; top: 35%; left: 45%;          background: radial-gradient(circle, rgba(150,208,254,0.18), transparent 70%); }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: end;
  position: relative;
  z-index: 2;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); }
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 80px;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-loc {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; gap: 32px;
}
.hero-loc span b { color: var(--celeste); font-weight: 500; letter-spacing: 0.12em; }

.hero h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(54px, 9vw, 144px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-spring);
}
.hero.is-ready h1 .line > span { transform: translateY(0); }
.hero.is-ready h1 .line:nth-child(1) > span { transition-delay: 0.10s; }
.hero.is-ready h1 .line:nth-child(2) > span { transition-delay: 0.22s; }
.hero.is-ready h1 .line:nth-child(3) > span { transition-delay: 0.34s; }

.hero h1 em {
  font-style: italic;
  font-weight: 200;
  color: var(--celeste);
  font-feature-settings: "ss01";
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--celeste), var(--cian) 60%, var(--celeste));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;
}
@keyframes shine {
  0% { background-position: 0% 0; } 100% { background-position: 200% 0; }
}

.hero-side {
  display: flex; flex-direction: column; gap: 28px;
  align-self: end;
  padding-bottom: 8px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.9s var(--ease-spring) 0.7s, transform 0.9s var(--ease-spring) 0.7s;
}
.hero.is-ready .hero-side { opacity: 1; transform: translateY(0); }

.hero-side p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 38ch;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 26px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blanco);
  background: var(--naranja);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-spring);
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  z-index: -1;
  transition: transform 0.7s var(--ease-out);
}
.btn:hover::before { transform: translateX(100%); }
.btn:hover { box-shadow: 0 16px 60px rgba(235, 83, 36, 0.35); transform: translateY(-2px); }

.btn .arrow {
  width: 18px; height: 12px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'><path d='M0 8 H22 M14 1 L22 8 L14 15' fill='none' stroke='black' stroke-width='2'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'><path d='M0 8 H22 M14 1 L22 8 L14 15' fill='none' stroke='black' stroke-width='2'/></svg>") center/contain no-repeat;
  transition: transform 0.4s var(--ease-spring);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { box-shadow: 0 16px 60px rgba(0,126,252,0.18); border-color: var(--cian); }

/* hero rotating isotipo, beacon */
.hero-beacon {
  position: absolute;
  right: clamp(20px, 6vw, 80px);
  top: clamp(140px, 18vh, 220px);
  transform: none;
  width: clamp(220px, 28vw, 440px);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 1;
  opacity: 0; filter: blur(8px);
  transition: opacity 1.4s var(--ease-out) 0.4s, filter 1.4s var(--ease-out) 0.4s;
}
.hero.is-ready .hero-beacon { opacity: 0.55; filter: blur(0); }
.hero-beacon svg { width: 100%; height: 100%; animation: spin 60s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 960px) { .hero-beacon { display: none; } }

/* hero ticker */
.hero-ticker {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.hero-ticker > div {
  padding: 24px 18px 0 0;
  border-right: 1px solid var(--line);
}
.hero-ticker > div:last-child { border-right: none; }
.hero-ticker .v {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  color: var(--celeste);
  line-height: 1;
}
.hero-ticker .l {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 10px;
  max-width: 22ch;
  line-height: 1.4;
}
@media (max-width: 720px) {
  .hero-ticker { grid-template-columns: 1fr 1fr; }
  .hero-ticker > div { padding: 18px 12px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  left: var(--gutter);
  bottom: 28px;
  display: flex; gap: 14px; align-items: center;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  z-index: 3;
}
.scroll-cue .bar {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--cian), transparent);
  animation: drop 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes drop {
  0%   { transform: scaleY(0); }
  50%  { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
  background: rgba(255,255,255,0.015);
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: scroll-x 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track > div {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 64px;
  white-space: nowrap;
}
.marquee-track > div::after {
  content: "";
  width: 14px; height: 14px;
  background: var(--cian);
  transform: rotate(45deg);
  display: inline-block;
  box-shadow: 0 0 24px var(--cian);
}
.marquee-track > div:nth-child(2n) { color: var(--ink-mute); font-style: italic; font-weight: 300; }
@keyframes scroll-x {
  to { transform: translateX(-50%); }
}

/* =========================================================
   SECTION HEADER (generic)
   ========================================================= */
.section { padding: 120px 0; position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 64px;
}
@media (min-width: 960px) { .section-head { grid-template-columns: auto 1fr; gap: 80px; } }

.section-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cian);
  display: flex; align-items: flex-start; gap: 16px;
  white-space: nowrap;
}
.section-num .nrm { color: var(--ink-mute); }

.section-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 76px);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}
.section-title em { color: var(--celeste); font-style: italic; font-weight: 200; }

.section-lead {
  font-size: 17px;
  color: var(--ink-dim);
  max-width: 56ch;
  margin-top: 22px;
  line-height: 1.6;
}

/* divider line, draws on scroll */
.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
  position: relative;
  overflow: hidden;
}
.divider::after {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: var(--draw, 0%);
  background: linear-gradient(90deg, var(--cian), transparent);
  transition: width 1.4s var(--ease-spring);
}

/* =========================================================
   CAPABILITIES (services)
   ========================================================= */
.cap-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
.cap {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 40px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  cursor: pointer;
  transition: background 0.4s ease;
}
@media (min-width: 960px) {
  .cap { grid-template-columns: 60px 0.9fr 1.2fr auto; padding: 44px 0; }
}
.cap::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px; top: -1px;
  background: linear-gradient(90deg, rgba(0,126,252,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}
.cap:hover { background: rgba(0,126,252,0.03); }
.cap:hover::before { opacity: 1; }

.cap-idx {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  padding-top: 8px;
}
.cap-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  display: flex; align-items: center; gap: 16px;
}
.cap-title .glyph {
  display: inline-block; width: 8px; height: 8px;
  background: var(--cian);
  transform: rotate(45deg);
  box-shadow: 0 0 12px var(--cian);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cap:hover .cap-title .glyph { opacity: 1; }
.cap-desc {
  color: var(--ink-dim);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 48ch;
}
.cap-action {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  align-self: center;
  display: flex; align-items: center; gap: 12px;
  transition: color 0.3s ease, transform 0.4s var(--ease-spring);
}
.cap-action::after {
  content: "→";
  display: inline-block;
  transition: transform 0.4s var(--ease-spring);
  color: var(--cian);
}
.cap:hover .cap-action { color: var(--ink); }
.cap:hover .cap-action::after { transform: translateX(6px); }

/* expanded panel */
.cap-detail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-spring);
  overflow: hidden;
}
.cap.is-open .cap-detail { grid-template-rows: 1fr; }
.cap-detail > div { min-height: 0; }
.cap-detail-inner {
  padding: 24px 0 12px 100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px 56px;
  border-top: 1px dashed var(--line);
  margin-top: 24px;
}
@media (max-width: 720px) {
  .cap-detail-inner { padding-left: 0; }
}
.cap-detail-item {
  display: flex; flex-direction: column; gap: 8px;
}
.cap-detail-item .num {
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.2em;
  color: var(--cian);
}
.cap-detail-item .nm {
  font-family: var(--f-display); font-weight: 500; font-size: 15px;
  color: var(--ink);
}
.cap-detail-item .dc {
  font-size: 13.5px;
  color: var(--ink-mute);
  line-height: 1.55;
}

/* =========================================================
   PROCESS — inverted light section for tonal rhythm
   ========================================================= */
.process-section {
  background:
    radial-gradient(1000px 600px at 100% 0%, rgba(0,126,252,0.10), transparent 60%),
    radial-gradient(800px 500px at 0% 100%, rgba(21,52,194,0.08), transparent 60%),
    var(--celeste);
  color: var(--indigo);
  position: relative;
}
.process-section .section-num { color: var(--azul); }
.process-section .section-num .nrm { color: rgba(2,2,74,0.55); }
.process-section .section-title { color: var(--indigo); }
.process-section .section-title em { color: var(--azul); }
.process-section .section-lead { color: rgba(2,2,74,0.65); }
.process-section .step {
  background: rgba(255,255,255,0.55);
  border-color: rgba(2,2,74,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.process-section .step:hover {
  border-color: rgba(2,2,74,0.32);
  background: rgba(255,255,255,0.85);
}
.process-section .step-n { color: var(--azul); }
.process-section .step-n .dot { background: var(--azul); box-shadow: 0 0 8px var(--azul); }
.process-section .step-t { color: var(--indigo); }
.process-section .step-d { color: rgba(2,2,74,0.65); }
.process-section .step-spec { color: rgba(2,2,74,0.45); border-top-color: rgba(2,2,74,0.12); }
/* Process: one step gets a Naranja accent dot (Azul + Celeste + Naranja combo) */
.process-section .step:nth-child(3) .step-n .dot { background: var(--naranja); box-shadow: 0 0 8px var(--naranja); }
.process-section .step:nth-child(3) .step-n > span:first-child { color: var(--naranja); }
.process-section .step:nth-child(3)::after { background: radial-gradient(circle at top right, rgba(235,83,36,0.22), transparent 70%); }

/* hairline rules connecting the inverted section to its neighbors */
.process-section::before, .process-section::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(2,2,74,0.18), transparent);
}
.process-section::before { top: 0; }
.process-section::after { bottom: 0; }
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  counter-reset: step;
}
@media (min-width: 720px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.step {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.015);
  padding: 28px 24px 32px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s var(--ease-spring), background 0.4s ease;
}
.step:hover {
  border-color: var(--line-strong);
  background: rgba(0,126,252,0.04);
  transform: translateY(-4px);
}
.step::after {
  content: "";
  position: absolute;
  top: 0; right: 0; width: 60px; height: 60px;
  background: radial-gradient(circle at top right, rgba(0,126,252,0.4), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.step:hover::after { opacity: 1; }

.step-n {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--celeste);
  margin-bottom: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.step-n .dot {
  width: 6px; height: 6px; background: var(--cian);
  transform: rotate(45deg);
  box-shadow: 0 0 8px var(--cian);
}
.step-t {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--ink);
}
.step-d {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
}
.step-spec {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  text-transform: uppercase;
  display: flex; justify-content: space-between; gap: 12px;
}

/* =========================================================
   WORK
   ========================================================= */
.work {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 900px) {
  .work {
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
  }
}
.work-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(150,208,254,0.06), rgba(2,2,74,0.4));
  padding: 28px 26px;
  border-radius: 4px;
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: border-color 0.4s ease, transform 0.5s var(--ease-spring);
}
.work-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }

@media (min-width: 900px) {
  .work-card.w-7 { grid-column: span 7; min-height: 480px; }
  .work-card.w-5 { grid-column: span 5; min-height: 480px; }
  .work-card.w-6 { grid-column: span 6; min-height: 380px; }
  .work-card.w-4 { grid-column: span 4; min-height: 380px; }
  .work-card.w-8 { grid-column: span 8; min-height: 380px; }
}

.work-card .badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.2em;
  color: var(--celeste); text-transform: uppercase;
}
.work-card .badge .dot { width: 6px; height: 6px; background: var(--cian); transform: rotate(45deg); box-shadow: 0 0 8px var(--cian); }

.work-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; }
.work-num {
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.2em; color: var(--ink-mute);
}

.work-body { margin-top: 60px; }
.work-name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 14px;
}
.work-name em { color: var(--celeste); font-style: italic; font-weight: 300; }
.work-meta {
  display: flex; gap: 8px 16px; flex-wrap: wrap;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-mute);
}
.work-desc {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 52ch;
}

.work-foot {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 18px;
  margin-top: auto;
  padding-top: 30px;
}
.work-foot .logo-chip {
  background: rgba(255,255,255,0.92);
  border-radius: 6px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  height: 44px;
}
.work-foot .logo-chip img { max-height: 24px; width: auto; object-fit: contain; }
.work-foot .more {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink);
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.work-foot .more::after { content: "↗"; color: var(--cian); }
.work-foot .more:hover { border-color: var(--cian); }

/* big card decorative isotipo */
.work-card .deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  right: -60px; bottom: -60px;
  width: 360px; height: 360px;
}
.work-card .deco svg { width: 100%; height: 100%; }

/* atmospheric overlay */
.work-card::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(400px 240px at 0% 0%, rgba(0,126,252,0.12), transparent 60%),
    radial-gradient(400px 240px at 100% 100%, rgba(150,208,254,0.08), transparent 60%);
  opacity: 0; transition: opacity 0.5s ease;
}
.work-card:hover::before { opacity: 1; }

/* =========================================================
   STATS — instrument-panel band
   ========================================================= */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0,126,252,0.04), transparent 30%),
    var(--negro);
  position: relative;
}
.stats::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cian) 50%, transparent);
  opacity: 0.6;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-cell {
  padding: 48px 32px;
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.stats-grid > .stat-cell:last-child { border-right: none; }
@media (max-width: 900px) {
  .stat-cell { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 32px 22px; }
  .stat-cell:nth-child(2n) { border-right: none; }
}
.stat-cell::before {
  content: "";
  position: absolute; left: 32px; top: 32px;
  width: 6px; height: 6px;
  background: var(--cian);
  transform: rotate(45deg);
  box-shadow: 0 0 12px var(--cian);
}
.stat-v {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  margin: 56px 0 16px;
}
.stat-v .unit { color: var(--celeste); }
.stat-l {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background:
    radial-gradient(900px 500px at 80% 60%, rgba(235,83,36,0.32), transparent 60%),
    radial-gradient(700px 400px at 20% 30%, rgba(2,2,74,0.6), transparent 60%),
    var(--indigo);
  border-top: 1px solid var(--line);
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 320px at 50% 60%, rgba(235,83,36,0.22), transparent 70%),
    radial-gradient(500px 240px at 22% 30%, rgba(255,255,255,0.04), transparent 70%);
  pointer-events: none;
}
.cta-banner .tag::before { background: var(--naranja); box-shadow: 0 0 12px var(--naranja); }
.cta-banner .section-title em, .cta-banner h2 em { color: var(--naranja) !important; font-style: italic; font-weight: 200; }
.cta-banner .orbit-ring:nth-child(1)::before { background: var(--naranja); box-shadow: 0 0 16px var(--naranja); }
.cta-banner .orbit-ring:nth-child(2)::before { background: var(--blanco); }
.cta-banner .orbit-ring:nth-child(3)::before { background: var(--naranja); }
.cta-inner { position: relative; text-align: center; z-index: 2; }
.cta-inner h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  max-width: 18ch;
  margin: 24px auto 28px;
  color: var(--ink);
}
.cta-inner h2 em { color: var(--celeste); font-weight: 200; font-style: italic; }
.cta-inner p {
  color: var(--ink-dim);
  max-width: 56ch;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.6;
}
.cta-inner .row { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* CTA orbit visual */
.orbit {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 880px; height: 880px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}
.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  animation: spin 80s linear infinite;
}
.orbit-ring:nth-child(2) { inset: 12%; animation-duration: 60s; animation-direction: reverse; }
.orbit-ring:nth-child(3) { inset: 26%; animation-duration: 40s; }
.orbit-ring::before {
  content: "";
  position: absolute; top: -4px; left: 50%;
  width: 8px; height: 8px;
  background: var(--cian);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 16px var(--cian);
}
.orbit-ring:nth-child(2)::before { background: var(--celeste); top: auto; bottom: -4px; }
.orbit-ring:nth-child(3)::before { background: var(--naranja); }

/* =========================================================
   FOOTER
   ========================================================= */
/* =========================================================
   FOOTER — celeste close-out band, low saturation
   ========================================================= */
footer {
  border-top: 1px solid rgba(2,2,74,0.18);
  padding: 80px 0 36px;
  position: relative;
  background:
    radial-gradient(800px 400px at 0% 100%, rgba(255,255,255,0.4), transparent 60%),
    var(--celeste);
  color: var(--indigo);
}
.foot-brand p { color: rgba(2,2,74,0.6) !important; }
.foot-col h4 { color: rgba(2,2,74,0.55) !important; }
.foot-col a, .foot-col span { color: rgba(2,2,74,0.7) !important; }
.foot-col a:hover { color: var(--indigo) !important; }
.foot-bottom {
  border-top-color: rgba(2,2,74,0.25);
  color: rgba(2,2,74,0.8);
}
.foot-bottom span { color: rgba(2,2,74,0.8); }
.foot-bottom .live { color: var(--indigo); font-weight: 700; }
.foot-bottom .live::before { background: #1e9b6b; box-shadow: 0 0 10px rgba(30,155,107,0.6); }

/* swap to azul logo on light footer */
.foot-brand .lm img { content: url("assets/logos/logo-vrt-indigo.svg"); }
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .foot-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.foot-brand { max-width: 32ch; }
.foot-brand .lm { display: inline-flex; }
.foot-brand .lm img { height: 56px; width: auto; display: block; }
.foot-brand p { color: var(--ink-mute); font-size: 14px; margin-top: 22px; line-height: 1.6; }

.foot-col h4 {
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-mute);
  margin-bottom: 16px;
}
.foot-col a, .foot-col span {
  display: block;
  color: var(--ink-dim);
  font-size: 14px;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.25s ease;
}
.foot-col a:hover { color: var(--ink); }

.foot-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.18em; color: var(--ink-mute); text-transform: uppercase;
}
.foot-bottom .live { display: inline-flex; align-items: center; gap: 10px; color: var(--celeste); }
.foot-bottom .live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #2ee79b; box-shadow: 0 0 10px #2ee79b;
  animation: pulse 1.6s ease-in-out infinite;
}

/* =========================================================
   REVEAL on scroll
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-spring), transform 0.9s var(--ease-spring);
}
[data-reveal].is-in {
  opacity: 1; transform: translateY(0);
}
[data-reveal][data-d="1"] { transition-delay: 0.08s; }
[data-reveal][data-d="2"] { transition-delay: 0.16s; }
[data-reveal][data-d="3"] { transition-delay: 0.24s; }
[data-reveal][data-d="4"] { transition-delay: 0.32s; }
[data-reveal][data-d="5"] { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* =========================================================
   CAPABILITIES — Azul + Negro + Blanco band
   ========================================================= */
#capabilities {
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(21,52,194,0.18), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(0,126,252,0.10), transparent 60%),
    var(--negro);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
#capabilities .section-num { color: var(--cian); }
#capabilities .cap:hover { background: rgba(21,52,194,0.08) !important; }
#capabilities .cap-title .glyph { background: var(--cian); box-shadow: 0 0 12px var(--cian); }

/* =========================================================
   WORK — Cian + Celeste + Negro
   ========================================================= */
#work {
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(0,126,252,0.10), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(150,208,254,0.06), transparent 60%),
    #0a0a18;
}

/* alternate work-card subtle tints */
.work-card:nth-child(3n) {
  background: linear-gradient(160deg, rgba(0,126,252,0.10), rgba(18,18,18,0.55));
}
.work-card:nth-child(3n+1) {
  background: linear-gradient(160deg, rgba(150,208,254,0.07), rgba(18,18,18,0.55));
}
.work-card:nth-child(3n+2) {
  background: linear-gradient(160deg, rgba(0,126,252,0.06), rgba(2,2,74,0.4));
}

/* =========================================================
   REVERSE-PALETTE work card (default: light + big logo bg;
   on hover: dark + full content)
   ========================================================= */
.work-card.card-reverse {
  background:
    radial-gradient(600px 360px at 100% 0%, rgba(0,126,252,0.10), transparent 60%),
    var(--blanco) !important;
  border-color: rgba(2,2,74,0.12);
  transition: background 0.6s var(--ease-spring), border-color 0.5s ease, transform 0.5s var(--ease-spring);
}
.work-card.card-reverse .reverse-cover {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  z-index: 3;
  opacity: 1;
  transition: opacity 0.5s var(--ease-spring), transform 0.6s var(--ease-spring);
}
.work-card.card-reverse .reverse-cover img {
  width: 55%; height: auto;
  max-width: 260px;
  filter: drop-shadow(0 8px 30px rgba(2,2,74,0.15));
  transition: transform 0.6s var(--ease-spring);
}
/* Card subtitle marker visible in default state */
.work-card.card-reverse::after {
  content: "Hover to reveal";
  position: absolute;
  left: 26px; bottom: 22px;
  z-index: 4;
  font-family: var(--f-body);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(2,2,74,0.4);
  font-weight: 500;
  transition: opacity 0.4s ease;
}
.work-card.card-reverse:hover::after { opacity: 0; }

/* Fade existing content in/out */
.work-card.card-reverse > .work-head,
.work-card.card-reverse > .work-body,
.work-card.card-reverse > .work-foot {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease-spring), transform 0.5s var(--ease-spring);
  position: relative;
  z-index: 2;
}
.work-card.card-reverse:hover {
  background: linear-gradient(160deg, rgba(0,126,252,0.10), rgba(18,18,18,0.55)) !important;
  border-color: var(--line-strong);
}
.work-card.card-reverse:hover .reverse-cover {
  opacity: 0;
  transform: scale(1.15);
}
.work-card.card-reverse:hover > .work-head,
.work-card.card-reverse:hover > .work-body,
.work-card.card-reverse:hover > .work-foot {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}
/* Hide decorative isotipo in default reverse state, show on hover */
.work-card.card-reverse .deco {
  opacity: 0;
  transition: opacity 0.5s var(--ease-spring);
}
.work-card.card-reverse:hover .deco { opacity: 0.08; transition-delay: 0.15s; }
/* =========================================================
   MANIFESTO — Azul + Celeste + Blanco (saturated middle band)
   ========================================================= */
.manifesto {
  position: relative;
  padding: 120px 0 140px;
  overflow: hidden;
  background:
    radial-gradient(900px 600px at 100% 0%, rgba(0,126,252,0.30), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(2,2,74,0.5), transparent 60%),
    var(--azul);
  color: var(--blanco);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.manifesto-bg {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 720px;
  height: 720px;
  opacity: 0.06;
  pointer-events: none;
}
.manifesto-bg svg {
  width: 100%; height: 100%;
  animation: spin 80s linear infinite;
}

.manifesto-head {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
.manifesto-head .section-num { color: var(--celeste); }
.manifesto-head .section-num .nrm { color: rgba(255,255,255,0.55); }
.manifesto-eyebrow {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: clamp(40px, 6vw, 84px);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--blanco);
  max-width: 18ch;
}
.manifesto-eyebrow em {
  color: var(--celeste);
  font-style: italic;
  font-weight: 200;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .manifesto-grid {
    grid-template-columns: 1fr 1px 1fr;
    gap: 60px;
    align-items: stretch;
  }
}

.manifesto-divider {
  display: none;
}
@media (min-width: 900px) {
  .manifesto-divider {
    display: block;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.25) 30%, rgba(255,255,255,0.25) 70%, transparent);
  }
}

.manifesto-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 8px 0;
}

.manifesto-card-head {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--celeste);
  font-weight: 700;
}
.manifesto-glyph {
  color: var(--celeste);
  font-size: 12px;
  display: inline-block;
  transform: translateY(-1px);
}

.manifesto-text {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(20px, 1.9vw, 26px);
  letter-spacing: -0.012em;
  line-height: 1.35;
  color: var(--blanco);
  max-width: 38ch;
}
.manifesto-text em {
  color: var(--celeste);
  font-style: italic;
  font-weight: 300;
}

.manifesto-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}
.manifesto-pills span {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blanco);
  font-weight: 700;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.manifesto-pills span:hover {
  border-color: var(--celeste);
  background: rgba(150,208,254,0.12);
}

.manifesto-values {
  margin-top: 80px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  z-index: 2;
}
@media (min-width: 720px) {
  .manifesto-values {
    grid-template-columns: 220px 1fr;
    gap: 60px;
    align-items: start;
  }
}
.manifesto-values-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--celeste);
  font-weight: 700;
}
.manifesto-values ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px 32px;
}
.manifesto-values li {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--blanco);
  position: relative;
  padding-left: 16px;
}
.manifesto-values li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 6px; height: 6px;
  background: var(--celeste);
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(150,208,254,0.6);
}

/* small helpers */
.mono { font-family: var(--f-mono); letter-spacing: 0.16em; text-transform: uppercase; }
