/* =========================================================
   EXP.pe — Estilos del sitio
   Diseño dark navy + cyan, glassmorphism, micro-interacciones
   ========================================================= */

:root {
  /* Paleta — modo oscuro (default) */
  --bg:           #06101F;
  --bg-2:         #08172B;
  --surface:      #0E1B2E;
  --surface-2:    #142B45;
  --border:       rgba(255,255,255,0.08);
  --border-2:     rgba(255,255,255,0.14);
  --text:         #F4F8FF;
  --text-2:       rgba(244,248,255,0.66);
  --text-3:       rgba(244,248,255,0.42);
  --accent:       #7092BE;        /* lila-azul principal */
  --accent-2:     #5070A0;
  --accent-glow:  rgba(112,146,190,0.35);
  --accent-soft:  rgba(112,146,190,0.12);
  --danger:       #FF5C7A;

  /* Geometría */
  --radius:       18px;
  --radius-sm:    12px;
  --radius-lg:    28px;
  --maxw:         1240px;

  /* Sombras */
  --shadow-1:     0 1px 0 rgba(255,255,255,0.04) inset, 0 30px 60px -30px rgba(0,0,0,0.6);
  --shadow-glow:  0 0 0 1px rgba(112,146,190,0.18), 0 30px 80px -20px rgba(112,146,190,0.25);

  /* Motion */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
}

[data-theme="light"] {
  --bg:           #F5F8FC;
  --bg-2:         #ECF1F8;
  --surface:      #FFFFFF;
  --surface-2:    #F2F6FB;
  --border:       rgba(6,16,31,0.08);
  --border-2:     rgba(6,16,31,0.14);
  --text:         #06101F;
  --text-2:       rgba(6,16,31,0.66);
  --text-3:       rgba(6,16,31,0.42);
  --accent:       #4A6FA8;
  --accent-2:     #3A5A90;
  --accent-glow:  rgba(74,111,168,0.30);
  --accent-soft:  rgba(74,111,168,0.10);
  --shadow-1:     0 1px 0 rgba(255,255,255,1) inset, 0 20px 50px -25px rgba(6,16,31,0.18);
  --shadow-glow:  0 0 0 1px rgba(74,111,168,0.25), 0 20px 60px -20px rgba(74,111,168,0.25);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Satoshi', 'Inter', system-ui, -apple-system, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background 0.5s var(--ease-out), color 0.3s var(--ease-out);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--accent); color: #06101F; }

/* Scrollbar sutil */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-soft); }

/* ---------- Tipografía ---------- */
.font-display {
  font-family: 'Clash Display', 'Satoshi', system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-weight: 600;
}
.font-mono {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-feature-settings: "ss01", "ss02";
}
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px; background: var(--accent);
  display: inline-block;
}

/* ---------- Layout ---------- */
.container-x { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container-x { padding: 0 40px; } }

section { position: relative; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .3s var(--ease-out), background .3s, box-shadow .3s, color .3s;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
}
.btn .btn-arrow { transition: transform .3s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(112,146,190,0);
}
.btn-primary:hover {
  box-shadow: 0 0 40px var(--accent-glow);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm { padding: 10px 16px; font-size: 13px; }

/* ---------- Glass / surfaces ---------- */
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
[data-theme="light"] .glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.6));
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .3s var(--ease-out), transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-2), transparent);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  width: calc(100% - 28px);
  max-width: var(--maxw);
  border-radius: 999px;
  padding: 10px 12px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: backdrop-filter .3s, background .3s, top .3s;
}
.nav.scrolled {
  background: color-mix(in oklab, var(--bg) 70%, transparent);
}
.nav-links { display: none; align-items: center; gap: 26px; font-size: 14px; color: var(--text-2); }
.nav-links a { position: relative; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-actions { display: flex; align-items: center; gap: 8px; }

.icon-btn {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: color .2s, border-color .2s, background .2s;
}
.icon-btn:hover { color: var(--text); border-color: var(--border-2); background: var(--surface); }

.seg {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  position: relative;
  font-size: 12px;
  font-weight: 500;
}
.seg button {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--text-2);
  position: relative;
  z-index: 1;
  transition: color .25s;
}
.seg button.active { color: #06101F; }
[data-theme="light"] .seg button.active { color: #FFFFFF; }
.seg .pill {
  position: absolute;
  top: 3px; bottom: 3px;
  border-radius: 999px;
  background: var(--accent);
  transition: left .35s var(--ease-out), width .35s var(--ease-out);
  z-index: 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, #000 30%, transparent 80%);
  opacity: .55;
}
.hero-glow {
  position: absolute;
  width: 900px; height: 900px;
  left: 50%; top: 30%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, var(--accent-glow), transparent 60%);
  filter: blur(40px);
  opacity: .55;
  animation: breathe 8s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: .45; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: .65; transform: translate(-50%, -50%) scale(1.06); }
}

/* Líneas topográficas estilo Stripe — en SVG */
.hero-topo { position: absolute; inset: 0; opacity: .55; }
.hero-topo path { stroke: url(#topoGrad); fill: none; stroke-width: 0.8; }

/* Partículas */
.particle {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  opacity: 0;
  animation: drift linear infinite;
}
@keyframes drift {
  0%   { opacity: 0; transform: translate(0, 0); }
  10%  { opacity: .8; }
  90%  { opacity: .8; }
  100% { opacity: 0; transform: translate(var(--dx, 40px), var(--dy, -200px)); }
}

.hero h1 {
  font-size: clamp(40px, 6.5vw, 84px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 24px 0 22px;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--accent), #C8DCF5 60%, var(--accent));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.hero p.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-2);
  max-width: 640px;
  line-height: 1.55;
}

.hero-foot {
  position: absolute;
  bottom: 28px; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: end;
  padding: 0 24px;
  font-size: 12px; color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .1em;
}
@media (min-width: 768px) { .hero-foot { padding: 0 40px; } }

/* Marquesina logos */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 64px; animation: scroll 35s linear infinite; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--text-3);
  white-space: nowrap;
  letter-spacing: -0.01em;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ---------- Soluciones cards ---------- */
.solution {
  position: relative;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 480px;
  overflow: hidden;
  cursor: pointer;
}
.solution::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, var(--accent-soft), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease-out);
  pointer-events: none;
}
.solution:hover::before { opacity: 1; }
.solution:hover { box-shadow: var(--shadow-glow); }
.solution .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: .14em;
}
.solution h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
}
.solution .visual {
  height: 180px;
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.solution ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 8px; font-size: 14px; color: var(--text-2); }
.solution li { display: flex; gap: 10px; align-items: flex-start; }
.solution li::before {
  content: ''; width: 6px; height: 6px; margin-top: 7px; border-radius: 50%;
  background: var(--accent); flex: 0 0 auto;
  box-shadow: 0 0 8px var(--accent);
}

/* ---------- Service deep section ---------- */
.service {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.service-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 1024px) {
  .service-grid { grid-template-columns: 1fr 1.05fr; align-items: center; }
}

.kpi {
  display: flex; gap: 18px; align-items: baseline;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
}
.kpi .num {
  font-family: 'Clash Display', sans-serif;
  font-size: 32px; font-weight: 600;
  background: linear-gradient(180deg, var(--text), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.kpi .label { font-size: 13px; color: var(--text-2); }

/* ---------- Counters ---------- */
.counter {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, var(--text), color-mix(in oklab, var(--accent) 60%, var(--text)));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Cloud diagram ---------- */
.cloud-diagram {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 50% 50%, var(--accent-soft), transparent 70%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.cloud-node {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s var(--ease-out);
  white-space: nowrap;
  z-index: 2;
}
.cloud-node:hover, .cloud-node.active {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft), 0 0 30px var(--accent-glow);
  transform: scale(1.04);
}
.cloud-node .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.cloud-line { stroke: var(--border-2); stroke-width: 1; fill: none; stroke-dasharray: 4 4; }
.cloud-line.active { stroke: var(--accent); animation: dash 1s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -16; } }

/* ---------- Testimonials ---------- */
.testimonial {
  padding: 32px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 12px; left: 24px;
  font-family: 'Clash Display', serif;
  font-size: 90px;
  color: var(--accent);
  opacity: .2;
  line-height: 1;
}
.testimonial blockquote {
  margin: 0; padding: 0;
  font-size: 18px; line-height: 1.55;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.testimonial cite {
  margin-top: 22px; display: flex; gap: 12px; align-items: center;
  font-style: normal;
}
.testimonial .avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #06101F; font-size: 14px;
  border: 1px solid var(--border-2);
}
.testimonial .who { font-size: 14px; color: var(--text); font-weight: 500; }
.testimonial .where { font-size: 12px; color: var(--text-3); }

/* ---------- Form ---------- */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label { font-size: 12px; color: var(--text-3); letter-spacing: .04em; text-transform: uppercase; font-family: 'JetBrains Mono', monospace;}
.input, .textarea, .select {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.textarea { min-height: 120px; resize: vertical; }
.field-error { color: var(--danger); font-size: 12px; }

/* Reset [hidden] — evita que display:flex lo sobreescriba */
[hidden] { display: none !important; }

/* ---------- Tweaks panel ---------- */
.tweaks-panel {
  position: fixed;
  right: 18px; bottom: 18px;
  width: 320px;
  max-height: 76vh;
  z-index: 80;
  border-radius: 18px;
  padding: 16px;
  display: flex; flex-direction: column;
  gap: 14px;
  overflow: auto;
  font-size: 13px;
  background: color-mix(in oklab, var(--surface) 92%, transparent);
  border: 1px solid var(--border-2);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
  backdrop-filter: blur(20px) saturate(140%);
}
.tweaks-panel h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  margin: 0; color: var(--text-3);
}
.tweaks-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tweaks-row .label { font-size: 12px; color: var(--text-2); }
.swatches { display: flex; gap: 6px; }
.swatch {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--border-2);
  cursor: pointer;
  transition: transform .2s, border-color .2s;
}
.swatch:hover { transform: scale(1.1); }
.swatch.active { border-color: var(--text); box-shadow: 0 0 0 2px var(--bg); }

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 120px; height: 3px; background: var(--border-2); border-radius: 999px;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); cursor: pointer;
  box-shadow: 0 0 8px var(--accent-glow);
}

.toggle {
  width: 40px; height: 22px; border-radius: 999px;
  background: var(--border-2); position: relative;
  transition: background .25s;
  cursor: pointer;
  flex: 0 0 auto;
}
.toggle::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; transition: transform .25s var(--ease-out);
}
.toggle.on { background: var(--accent); }
.toggle.on::after { transform: translateX(18px); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: .05s; }
.reveal-2 { transition-delay: .15s; }
.reveal-3 { transition-delay: .25s; }
.reveal-4 { transition-delay: .35s; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- Footer ---------- */
.footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  position: relative;
}
.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

.footer h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-3); margin: 0 0 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; color: var(--text-2); }
.footer ul a:hover { color: var(--accent); }

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  left: 50%; bottom: 28px; transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  display: none;
}
@media (min-width: 768px) { .scroll-cue { display: block; } }
.scroll-cue::after {
  content: ''; position: absolute;
  left: 50%; top: 8px; transform: translateX(-50%);
  width: 2px; height: 6px; background: var(--accent); border-radius: 999px;
  animation: scrollDot 1.8s var(--ease-in-out) infinite;
}
@keyframes scrollDot { 0%,100% { transform: translate(-50%, 0); opacity: .8; } 50% { transform: translate(-50%, 8px); opacity: 0; } }

/* Logo mark */
.exp-mark {
  width: 30px; height: 30px;
  display: inline-block;
  position: relative;
}

/* Real logo — masked so it always takes the current accent color */
.exp-logo {
  display: inline-block;
  width: 32px; height: 32px;
  background-color: var(--accent);
  -webkit-mask: url('logo.png') center / contain no-repeat;
          mask: url('logo.png') center / contain no-repeat;
  filter: drop-shadow(0 0 10px var(--accent-glow));
  transition: background-color .3s var(--ease-out), filter .35s var(--ease-out);
}
/* Hide the actual <img> pixels — we use it only to give the element its alt + dimensions */
.exp-logo[src] { color: transparent; font-size: 0; }
[data-theme="light"] .exp-logo {
  filter: drop-shadow(0 1px 0 rgba(6,16,31,0.06));
}

/* Section heading layout */
.section-head {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0;
}
.section-head p { color: var(--text-2); font-size: 17px; line-height: 1.55; margin: 0; max-width: 620px;}

/* Why cards */
.why {
  padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
  height: 100%;
}
.why .icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid color-mix(in oklab, var(--accent) 30%, transparent);
}
.why h4 { font-family: 'Clash Display', sans-serif; font-weight: 600; font-size: 18px; margin: 0; letter-spacing: -0.01em;}
.why p { color: var(--text-2); font-size: 14px; line-height: 1.55; margin: 0; }

/* Industry tag */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid color-mix(in oklab, var(--accent) 25%, transparent);
}

/* Section dividers — soft arches */
.fade-top {
  position: absolute; left: 0; right: 0; top: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--bg-2), transparent);
  pointer-events: none;
}

/* Sticky service nav (in dense services) */
.service .number-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: .12em;
}

/* Highlight bar that runs under section titles */
.title-bar {
  display: inline-block;
  width: 56px; height: 4px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 16px var(--accent);
  margin-bottom: 14px;
}
