:root {
  --navy: #0a2540;
  --navy-2: #11315a;
  --blue: #2563eb;
  --blue-2: #3b82f6;
  --blue-soft: #dbeafe;
  --ink: #0a1628;
  --ink-2: #1f2a44;
  --muted: #5b6b85;
  --line: #e3e8f0;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --cream: #f5f1e8;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* === Accessibility === */
.fe-skip-link {
  position: absolute;
  left: 16px; top: -100px;
  z-index: 999;
  background: var(--navy);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.fe-skip-link:focus {
  top: 16px;
  outline: 3px solid var(--blue-2);
  outline-offset: 2px;
}

/* === WhatsApp floating button === */
.fe-wa {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.12);
  z-index: 90;
  transition: transform .2s, box-shadow .2s;
}
.fe-wa:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5), 0 4px 12px rgba(0,0,0,0.15);
  background: #1ebe5b;
}
.fe-wa:active { transform: scale(1.02); }
.fe-wa:focus-visible {
  outline: 3px solid var(--blue-2);
  outline-offset: 3px;
}
.fe-wa-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: fe-wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes fe-wa-pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (max-width: 600px) {
  .fe-wa { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}
/* Push WhatsApp up when cookie banner is visible */
.fe:has(.fe-cookies) .fe-wa { bottom: 130px; }
@media (max-width: 720px) {
  .fe:has(.fe-cookies) .fe-wa { bottom: 220px; }
}

/* === Site shell === */
.fe { min-height: 100vh; }

/* ============================================ */
/* NAV */
.fe-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background .2s, box-shadow .2s, border-color .2s;
}
.fe-nav.is-scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 4px 24px rgba(10,37,64,0.06);
  border-bottom-color: transparent;
}
.fe-nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: padding .25s ease;
}
.fe-nav.is-scrolled .fe-nav-inner {
  padding: 8px 32px;
}
.fe-nav-logo { display: flex; align-items: center; gap: 10px; }
.fe-nav-logo img {
  height: 64px; width: auto; max-width: 100%;
  transition: height .25s ease;
}
.fe-nav.is-scrolled .fe-nav-logo img { height: 44px; }
.fe-nav.is-scrolled .fe-nav-cta { padding: 8px 16px; font-size: 13px; }
.fe-nav-cta { transition: padding .25s ease, font-size .25s ease, background .15s; }
.fe-nav-links { display: flex; gap: 28px; align-items: center; }
.fe-nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: color .15s;
}
.fe-nav-links a:hover { color: var(--blue); }
.fe-nav-cta {
  background: var(--navy); color: white;
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  border: none;
}
.fe-nav-cta:hover { background: var(--blue); }
@media (max-width: 880px) {
  .fe-nav-links { display: none; }
  .fe-nav-inner,
  .fe-nav.is-scrolled .fe-nav-inner { padding: 8px 20px; transition: none; }
  .fe-nav-logo img,
  .fe-nav.is-scrolled .fe-nav-logo img { height: 44px; transition: none; }
  .fe-nav-cta,
  .fe-nav.is-scrolled .fe-nav-cta { padding: 8px 16px; font-size: 13px; }
}

/* ============================================ */
/* HERO — variant classic */
.fe-hero {
  position: relative; overflow: hidden;
  background: var(--bg);
}
.fe-hero-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 80px 32px 96px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px;
  align-items: center;
}
.fe-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); font-weight: 500;
  padding: 6px 12px; border-radius: 999px;
  background: var(--blue-soft);
}
.fe-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.18);
}
.fe-hero h1 {
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02; letter-spacing: -0.025em;
  font-weight: 700; color: var(--navy);
  margin: 20px 0 24px;
  text-wrap: balance;
}
.fe-hero h1 em {
  font-style: normal; color: var(--blue);
}
.fe-hero p.lede {
  font-size: 19px; color: var(--muted);
  max-width: 540px; margin: 0 0 36px;
  text-wrap: pretty;
}
.fe-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--navy); color: white;
  padding: 14px 26px; border-radius: 999px;
  font-size: 15px; font-weight: 600; border: none;
  transition: all .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--navy);
  padding: 14px 26px; border-radius: 999px;
  font-size: 15px; font-weight: 600;
  border: 1px solid var(--line);
  transition: all .15s;
}
.btn-ghost:hover { border-color: var(--navy); background: var(--bg-soft); }

.fe-hero-stats {
  margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; max-width: 580px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.fe-hero-stat .n {
  font-size: 36px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.02em; line-height: 1;
}
.fe-hero-stat .l {
  margin-top: 6px; font-size: 13px; color: var(--muted);
}

.fe-hero-visual {
  position: relative; aspect-ratio: 4/5;
  border-radius: 24px; overflow: hidden;
  background: var(--navy);
}
.fe-hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}
.fe-hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,37,64,0.55) 100%);
}
.fe-hero-badge {
  position: absolute; left: 24px; bottom: 24px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  padding: 18px 22px; border-radius: 16px;
  display: flex; align-items: center; gap: 14px;
  z-index: 2; max-width: 280px;
}
.fe-hero-badge .ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--blue-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.fe-hero-badge strong { display: block; font-size: 14px; color: var(--navy); }
.fe-hero-badge span { font-size: 12px; color: var(--muted); }

@media (max-width: 960px) {
  .fe-hero-inner { grid-template-columns: 1fr; padding: 56px 24px 72px; gap: 40px; }
  .fe-hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .fe-hero-stat .n { font-size: 28px; }
}

/* ============================================ */
/* Operators marquee */
.fe-operators {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 32px 0;
}
.fe-operators-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; gap: 48px;
  justify-content: space-between;
}
.fe-operators .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); flex-shrink: 0;
  max-width: 220px; line-height: 1.4;
}
.fe-op-marquee {
  flex: 1; min-width: 0; overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.fe-op-track {
  display: flex; gap: 56px; align-items: center;
  width: max-content;
  animation: fe-op-scroll 28s linear infinite;
}
.fe-op-marquee:hover .fe-op-track { animation-play-state: paused; }
.fe-op-track span {
  font-size: 22px; font-weight: 700; color: var(--navy-2);
  letter-spacing: -0.01em;
  opacity: 0.55;
  white-space: nowrap;
  transition: opacity .2s;
}
.fe-op-track span:hover { opacity: 1; }
@keyframes fe-op-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .fe-op-track { animation: none; }
}
@media (max-width: 720px) {
  .fe-operators-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .fe-op-marquee { width: 100%; }
}

/* ============================================ */
/* Section shell */
.fe-section {
  max-width: 1280px; margin: 0 auto;
  padding: 112px 32px;
}
.fe-section.tight { padding: 80px 32px; }
.fe-section-head {
  max-width: 740px; margin-bottom: 56px;
}
.fe-section-head .kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}
.fe-section-head h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.08; letter-spacing: -0.022em;
  color: var(--navy); font-weight: 700;
  margin: 0 0 18px;
  text-wrap: balance;
}
.fe-section-head p {
  font-size: 18px; color: var(--muted);
  margin: 0; max-width: 640px;
  text-wrap: pretty;
}

/* ============================================ */
/* QUIENES SOMOS */
.fe-about {
  background: var(--bg-soft);
}
.fe-about-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px;
  align-items: center;
  max-width: 1280px; margin: 0 auto;
  padding: 112px 32px;
}
.fe-about-visual {
  position: relative; aspect-ratio: 4/5;
  max-width: 440px;
  border-radius: 24px; overflow: hidden;
}
.fe-about-visual img { width: 100%; height: 100%; object-fit: cover; }
.fe-about-fact {
  position: absolute; right: -16px; bottom: -16px;
  background: white; padding: 20px 24px;
  border-radius: 16px; box-shadow: 0 12px 40px rgba(10,37,64,0.12);
  border: 1px solid var(--line);
}
.fe-about-fact .n {
  font-size: 42px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.02em; line-height: 1;
}
.fe-about-fact .l { font-size: 12px; color: var(--muted); margin-top: 4px; }

.fe-about h2 {
  font-size: clamp(32px, 3.8vw, 44px);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--navy); font-weight: 700;
  margin: 0 0 24px;
}
.fe-about p { font-size: 17px; color: var(--ink-2); margin: 0 0 18px; }
.fe-about-points {
  margin-top: 32px; display: grid; gap: 16px;
}
.fe-about-point {
  display: flex; gap: 14px; align-items: flex-start;
}
.fe-about-point .ic {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.fe-about-point strong { color: var(--navy); }
.fe-about-point span { color: var(--ink-2); font-size: 15px; }

@media (max-width: 880px) {
  .fe-about-grid { grid-template-columns: 1fr; padding: 72px 24px; gap: 40px; }
}

/* ============================================ */
/* SERVICIOS */
.fe-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.fe-service {
  background: white; border: 1px solid var(--line);
  border-radius: 20px; padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: all .2s;
  min-height: 280px;
}
.fe-service:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 32px rgba(37,99,235,0.08);
  transform: translateY(-2px);
}
.fe-service-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.1em;
}
.fe-service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.fe-service h3 {
  font-size: 19px; font-weight: 600; color: var(--navy);
  margin: 0; letter-spacing: -0.01em;
  line-height: 1.25;
}
.fe-service p {
  font-size: 14px; color: var(--muted);
  margin: 0; line-height: 1.55;
}
.fe-service ul {
  margin: 8px 0 0; padding: 0; list-style: none;
  display: grid; gap: 8px;
}
.fe-service li {
  font-size: 13px; color: var(--ink-2);
  padding-left: 16px; position: relative;
}
.fe-service li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
}
@media (max-width: 980px) {
  .fe-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .fe-services-grid { grid-template-columns: 1fr; }
}

/* ============================================ */
/* SECTORES (dark band) */
.fe-sectors {
  background: var(--navy);
  color: white;
  position: relative; overflow: hidden;
}
.fe-sectors::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(59,130,246,0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(59,130,246,0.12), transparent 50%);
  pointer-events: none;
}
.fe-sectors .fe-section { position: relative; z-index: 1; }
.fe-sectors .fe-section-head .kicker { color: var(--blue-2); }
.fe-sectors .fe-section-head h2 { color: white; }
.fe-sectors .fe-section-head p { color: rgba(255,255,255,0.7); }

.fe-sectors-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.fe-sector {
  background: var(--navy); padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 280px;
  position: relative; transition: background .2s;
}
.fe-sector:hover { background: var(--navy-2); }
.fe-sector-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}
.fe-sector h3 {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.01em; margin: 0 0 8px;
  line-height: 1.2;
}
.fe-sector p {
  font-size: 13px; color: rgba(255,255,255,0.65);
  margin: 0; line-height: 1.55;
}
.fe-sector .arr {
  margin-top: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: white; transition: all .2s;
}
.fe-sector:hover .arr {
  background: var(--blue); border-color: var(--blue);
}
@media (max-width: 980px) { .fe-sectors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .fe-sectors-grid { grid-template-columns: 1fr; } }

/* ============================================ */
/* SEGURIDAD / COBERTURA — split band */
.fe-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.fe-card-big {
  background: white; border: 1px solid var(--line);
  border-radius: 24px; padding: 40px;
  display: flex; flex-direction: column; gap: 24px;
  min-height: 380px;
}
.fe-card-big .ic-big {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.fe-card-big h3 {
  font-size: 26px; font-weight: 700; color: var(--navy);
  margin: 0; letter-spacing: -0.015em;
}
.fe-card-big p { font-size: 15px; color: var(--muted); margin: 0; }
.fe-card-big ul {
  margin: auto 0 0; padding: 0; list-style: none;
  display: grid; gap: 10px;
}
.fe-card-big li {
  font-size: 14px; color: var(--ink-2);
  padding: 12px 16px;
  background: var(--bg-soft); border-radius: 10px;
  display: flex; align-items: center; gap: 12px;
}
.fe-card-big li svg { color: var(--blue); flex-shrink: 0; }

.fe-coverage {
  background: var(--navy); color: white;
  border-radius: 24px; padding: 40px;
  position: relative; overflow: hidden;
  min-height: 380px;
  display: flex; flex-direction: column;
}
.fe-coverage h3 {
  font-size: 26px; font-weight: 700; margin: 0 0 12px;
  letter-spacing: -0.015em;
}
.fe-coverage p {
  color: rgba(255,255,255,0.7); margin: 0 0 24px;
  font-size: 15px;
}
.fe-coverage-zones { display: grid; gap: 12px; margin-bottom: 24px; }
.fe-zone {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
}
.fe-zone .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.2);
  flex-shrink: 0;
}
.fe-zone strong { font-size: 14px; }
.fe-zone span { font-size: 12px; color: rgba(255,255,255,0.6); margin-left: auto; }

.fe-map {
  margin-top: auto; height: 80px;
  border-top: 1px dashed rgba(255,255,255,0.15);
  padding-top: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: rgba(255,255,255,0.5);
  display: flex; justify-content: space-between; align-items: end;
}

@media (max-width: 880px) {
  .fe-split { grid-template-columns: 1fr; }
}

/* ============================================ */
/* EQUIPO */
.fe-team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.fe-team-card {
  background: white; border: 1px solid var(--line);
  border-radius: 20px; padding: 32px;
  display: flex; gap: 24px; align-items: center;
}
.fe-team-photo {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 28px; font-weight: 700;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.fe-team-info h4 {
  font-size: 20px; font-weight: 600; color: var(--navy);
  margin: 0 0 4px;
}
.fe-team-info .role {
  font-size: 13px; color: var(--blue);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.fe-team-info .contact {
  display: grid; gap: 4px; font-size: 13px; color: var(--muted);
}
.fe-team-info .contact a { color: var(--ink-2); }
.fe-team-info .contact a:hover { color: var(--blue); }
@media (max-width: 720px) {
  .fe-team-grid { grid-template-columns: 1fr; }
  .fe-team-card { flex-direction: column; text-align: center; }
}

/* ============================================ */
/* CONTACTO */
.fe-contact {
  background: var(--bg-soft);
}
.fe-contact-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 112px 32px;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px;
}
.fe-contact-left h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  color: var(--navy); font-weight: 700;
  letter-spacing: -0.022em; line-height: 1.08;
  margin: 0 0 20px;
}
.fe-contact-left p {
  font-size: 17px; color: var(--muted); margin: 0 0 36px;
}
.fe-contact-channels { display: grid; gap: 14px; }
.fe-channel {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: white; border: 1px solid var(--line);
  border-radius: 14px;
  transition: all .15s;
}
.fe-channel:hover { border-color: var(--blue); }
.fe-channel .ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fe-channel small { font-size: 11px; color: var(--muted); display: block; text-transform: uppercase; letter-spacing: 0.08em; }
.fe-channel strong { font-size: 15px; color: var(--navy); }

.fe-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
}
.fe-form h3 {
  font-size: 22px; font-weight: 600; color: var(--navy);
  margin: 0 0 8px; letter-spacing: -0.01em;
}
.fe-form .sub { font-size: 14px; color: var(--muted); margin: 0 0 28px; }
.fe-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.fe-field { display: flex; flex-direction: column; gap: 6px; }
.fe-field.full { grid-column: 1 / -1; }
.fe-field label {
  font-size: 12px; font-weight: 500;
  color: var(--ink-2);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  display: flex; justify-content: space-between; align-items: baseline;
}
.fe-field label .req { color: var(--blue); }
.fe-counter {
  font-size: 10px; color: var(--muted);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
}
.fe-input-wrap { position: relative; }
.fe-input-ok {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: #10b981; color: white;
  display: flex; align-items: center; justify-content: center;
  animation: fe-pop-in .25s ease-out;
  pointer-events: none;
}
@keyframes fe-pop-in {
  from { opacity: 0; transform: translateY(-50%) scale(0.6); }
  to { opacity: 1; transform: translateY(-50%) scale(1); }
}
.fe-field input, .fe-field textarea {
  font-family: inherit; font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  transition: all .15s;
  width: 100%;
}
.fe-field input:focus, .fe-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.fe-field textarea { resize: vertical; min-height: 120px; }

/* Error state */
.fe-field.has-error input,
.fe-field.has-error textarea {
  border-color: #dc2626;
  background: #fef2f2;
}
.fe-field.has-error input:focus,
.fe-field.has-error textarea:focus {
  box-shadow: 0 0 0 3px rgba(220,38,38,0.12);
}
.fe-field.has-error {
  animation: fe-shake .35s ease-out;
}
@keyframes fe-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
}
.fe-field .err {
  font-size: 12px; color: #dc2626; margin-top: 4px;
  display: inline-flex; align-items: center; gap: 6px;
  animation: fe-err-in .2s ease-out;
}
@keyframes fe-err-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Toast inside form */
.fe-toast {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 24px;
  animation: fe-toast-in .3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid;
}
@keyframes fe-toast-in {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.fe-toast-error {
  background: #fef2f2; border-color: #fecaca; color: #991b1b;
}
.fe-toast-success {
  background: #ecfdf5; border-color: #a7f3d0; color: #065f46;
}
.fe-toast-ic {
  width: 32px; height: 32px; border-radius: 8px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.fe-toast-error .fe-toast-ic { background: #fecaca; color: #991b1b; }
.fe-toast-success .fe-toast-ic { background: #a7f3d0; color: #065f46; }
.fe-toast-body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.fe-toast-body strong { font-size: 13px; }
.fe-toast-body span { font-size: 12px; opacity: 0.85; }
.fe-toast-close {
  background: transparent; border: none; color: inherit; opacity: 0.6;
  padding: 4px; cursor: pointer; transition: opacity .15s;
  display: flex; align-items: center; justify-content: center;
}
.fe-toast-close:hover { opacity: 1; }

/* Spinner */
.fe-spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: fe-spin 0.7s linear infinite;
  margin-right: 4px;
}
@keyframes fe-spin {
  to { transform: rotate(360deg); }
}

.fe-form-submit {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px; gap: 16px; flex-wrap: wrap;
}
.fe-form-submit small { font-size: 12px; color: var(--muted); max-width: 320px; }
.fe-form-submit small a { color: var(--blue); text-decoration: underline; }
.fe-form button[type="submit"] {
  background: var(--navy); color: white;
  padding: 14px 28px; border-radius: 999px;
  font-size: 15px; font-weight: 600; border: none;
  transition: all .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.fe-form button[type="submit"]:hover:not(:disabled) { background: var(--blue); }
.fe-form button[type="submit"]:disabled { opacity: 0.7; cursor: wait; }

/* Success state */
.fe-success {
  padding: 48px 32px; text-align: center;
  background: white; border-radius: 16px;
  border: 1px solid var(--line);
  animation: fe-success-in .4s ease-out;
}
@keyframes fe-success-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.fe-success .ic-ok {
  width: 72px; height: 72px; border-radius: 50%;
  background: #ecfdf5; color: #10b981;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
@keyframes fe-circle-draw { to { stroke-dashoffset: 0; } }
@keyframes fe-check-draw { to { stroke-dashoffset: 0; } }
.fe-success h3 {
  color: var(--navy); margin: 0 0 8px;
  font-size: 22px; letter-spacing: -0.015em;
}
.fe-success p {
  color: var(--ink-2); margin: 0 auto; font-size: 15px;
  max-width: 420px; line-height: 1.6;
}
.fe-success-meta {
  margin: 24px auto 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--muted);
  display: inline-flex; gap: 8px; align-items: center;
  padding: 8px 14px;
  background: var(--bg-soft);
  border-radius: 999px;
}
.fe-success-again {
  margin-top: 24px;
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}
.fe-success-again:hover { border-color: var(--blue); background: rgba(37,99,235,0.04); }

/* Tech variant */
.fe[data-variant="tech"] .fe-field.has-error input,
.fe[data-variant="tech"] .fe-field.has-error textarea {
  background: rgba(220,38,38,0.08);
  border-color: #dc2626;
}
.fe[data-variant="tech"] .fe-toast-error {
  background: rgba(220,38,38,0.1); border-color: rgba(220,38,38,0.3); color: #fca5a5;
}
.fe[data-variant="tech"] .fe-toast-success {
  background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.3); color: #86efac;
}
.fe[data-variant="tech"] .fe-success {
  background: var(--bg-soft); border-color: var(--line);
}
.fe[data-variant="tech"] .fe-success h3 { color: white; }
.fe[data-variant="tech"] .fe-success p { color: var(--ink-2); }
.fe[data-variant="tech"] .fe-success-meta { background: var(--bg); }

/* Captcha */
.fe-captcha {
  display: flex; align-items: stretch; gap: 12px;
  flex-wrap: wrap;
}
.fe-captcha-challenge {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0;
  display: flex; align-items: center;
  overflow: hidden;
  flex-shrink: 0;
  user-select: none;
}
.fe-captcha-challenge svg:first-child {
  display: block;
}
.fe-captcha-refresh {
  background: transparent;
  border: none;
  border-left: 1px solid var(--line);
  padding: 0 12px;
  height: 44px;
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: color .15s, background .15s;
}
.fe-captcha-refresh:hover { color: var(--blue); background: rgba(37,99,235,0.06); }
.fe-captcha-input {
  flex: 1; min-width: 140px;
  font-family: 'JetBrains Mono', monospace !important;
  letter-spacing: 0.05em;
}
.fe-captcha-text { fill: var(--navy); }

.fe[data-variant="tech"] .fe-captcha-challenge { background: var(--bg); border-color: var(--line); }
.fe[data-variant="tech"] .fe-captcha-text { fill: white; }
.fe[data-variant="tech"] .fe-captcha-refresh { border-left-color: var(--line); }
.fe-form-submit {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px; gap: 16px; flex-wrap: wrap;
}
.fe-form-submit small { font-size: 12px; color: var(--muted); max-width: 320px; }
.fe-form button[type="submit"] {
  background: var(--navy); color: white;
  padding: 14px 28px; border-radius: 999px;
  font-size: 15px; font-weight: 600; border: none;
  transition: all .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.fe-form button[type="submit"]:hover { background: var(--blue); }
.fe-form button[type="submit"]:disabled { opacity: 0.5; cursor: wait; }

.fe-success {
  padding: 32px; text-align: center;
  background: white; border-radius: 16px;
  border: 1px solid var(--line);
}
.fe-success .ic-ok {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.fe-success h3 { color: var(--navy); margin: 0 0 8px; }
.fe-success p { color: var(--muted); margin: 0; font-size: 14px; }

@media (max-width: 880px) {
  .fe-contact-inner { grid-template-columns: 1fr; padding: 72px 24px; gap: 40px; }
  .fe-form { padding: 28px; }
  .fe-form-grid { grid-template-columns: 1fr; }
}

/* ============================================ */
/* COOKIE BANNER */
.fe-cookies {
  position: fixed; left: 24px; right: 24px; bottom: 24px;
  max-width: 720px; margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(10,37,64,0.18);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 20px;
  z-index: 100;
  animation: fe-cookies-in .35s ease-out;
}
@keyframes fe-cookies-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fe-cookies-ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fe-cookies-body { flex: 1; min-width: 0; }
.fe-cookies-body strong {
  display: block; font-size: 14px; color: var(--navy);
  margin-bottom: 4px;
}
.fe-cookies-body p {
  font-size: 13px; color: var(--muted); margin: 0;
  line-height: 1.5;
}
.fe-cookies-body a { color: var(--blue); text-decoration: underline; }
.fe-cookies-actions { display: flex; gap: 8px; flex-shrink: 0; }
.fe-cookies-actions button {
  padding: 10px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600; border: none;
  transition: all .15s;
  white-space: nowrap;
}
.fe-cookies-reject {
  background: transparent; color: var(--ink-2);
  border: 1px solid var(--line) !important;
}
.fe-cookies-reject:hover { border-color: var(--navy) !important; background: var(--bg-soft); }
.fe-cookies-accept {
  background: var(--navy); color: white;
}
.fe-cookies-accept:hover { background: var(--blue); }
@media (max-width: 720px) {
  .fe-cookies {
    flex-direction: column; align-items: flex-start;
    left: 16px; right: 16px; bottom: 16px;
    padding: 18px;
  }
  .fe-cookies-actions { width: 100%; }
  .fe-cookies-actions button { flex: 1; }
}
.fe[data-variant="tech"] .fe-cookies {
  background: var(--bg-soft); border-color: var(--line);
}
.fe[data-variant="tech"] .fe-cookies-body strong { color: white; }
.fe[data-variant="tech"] .fe-cookies-reject { color: var(--ink); }

/* ============================================ */
/* LEGAL PAGES */
.fe-legal {
  max-width: 820px; margin: 0 auto;
  padding: 80px 32px 120px;
}
.fe-legal .back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 32px;
}
.fe-legal .back:hover { color: var(--navy); }
.fe-legal h1 {
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05; letter-spacing: -0.022em;
  color: var(--navy); font-weight: 700;
  margin: 0 0 12px;
}
.fe-legal .updated {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 48px;
}
.fe-legal h2 {
  font-size: 22px; color: var(--navy); font-weight: 600;
  margin: 48px 0 16px; letter-spacing: -0.01em;
}
.fe-legal h3 {
  font-size: 16px; color: var(--navy); font-weight: 600;
  margin: 28px 0 10px;
}
.fe-legal p {
  font-size: 15px; color: var(--ink-2); line-height: 1.7;
  margin: 0 0 14px;
}
.fe-legal ul {
  margin: 0 0 14px; padding-left: 0; list-style: none;
}
.fe-legal ul li {
  font-size: 15px; color: var(--ink-2); line-height: 1.7;
  padding-left: 22px; position: relative;
  margin-bottom: 6px;
}
.fe-legal ul li::before {
  content: ""; position: absolute; left: 4px; top: 11px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
}
.fe-legal a { color: var(--blue); text-decoration: underline; }
.fe-legal table {
  width: 100%; border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}
.fe-legal th, .fe-legal td {
  text-align: left; padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.fe-legal th {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
  background: var(--bg-soft);
}
.fe-legal td strong { color: var(--navy); }
.fe-legal .box {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 14px; line-height: 1.6;
}
.fe-legal .box strong { color: var(--navy); }

/* ============================================ */
/* FOOTER */
.fe-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 32px 32px;
}
.fe-footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
}
.fe-footer h5 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  color: white; margin: 0 0 16px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
}
.fe-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.fe-footer li, .fe-footer a { font-size: 14px; }
.fe-footer a:hover { color: white; }
.fe-footer-brand img { height: auto; max-height: 72px; width: auto; max-width: 100%; filter: brightness(0) invert(1); margin-bottom: 16px; }
.fe-footer-brand p { font-size: 13px; line-height: 1.55; margin: 0; max-width: 280px; }
.fe-footer-bottom {
  max-width: 1280px; margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: rgba(255,255,255,0.5);
  font-family: 'JetBrains Mono', monospace;
}
@media (max-width: 880px) {
  .fe-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .fe-footer-brand { grid-column: 1 / -1; }
  .fe-footer-brand img { max-height: 48px; }
}

/* ============================================ */
/* VARIANT B — EDITORIAL */
.fe[data-variant="editorial"] {
  --navy: #0a2540;
  --bg-soft: #f5f1e8;
}
.fe[data-variant="editorial"] .fe-nav { background: rgba(245,241,232,0.92); border-bottom-color: rgba(10,37,64,0.08); }
.fe[data-variant="editorial"] body, .fe[data-variant="editorial"] .fe-hero, .fe[data-variant="editorial"] {
  background: var(--cream);
}
.fe[data-variant="editorial"] .fe-hero { background: var(--cream); }
.fe[data-variant="editorial"] .fe-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(48px, 6.2vw, 88px);
  letter-spacing: -0.03em;
  line-height: 0.98;
}
.fe[data-variant="editorial"] .fe-hero h1 em {
  font-style: italic; color: var(--navy);
}
.fe[data-variant="editorial"] .fe-section-head h2,
.fe[data-variant="editorial"] .fe-about h2,
.fe[data-variant="editorial"] .fe-contact-left h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.fe[data-variant="editorial"] .fe-about { background: white; }
.fe[data-variant="editorial"] .fe-contact { background: var(--cream); }
.fe[data-variant="editorial"] .fe-hero-visual { border-radius: 4px; }
.fe[data-variant="editorial"] .fe-service { border-radius: 4px; }
.fe[data-variant="editorial"] .fe-card-big { border-radius: 4px; }
.fe[data-variant="editorial"] .fe-coverage { border-radius: 4px; }
.fe[data-variant="editorial"] .fe-about-visual { border-radius: 4px; }
.fe[data-variant="editorial"] .fe-form { border-radius: 4px; }
.fe[data-variant="editorial"] .fe-team-card { border-radius: 4px; }
.fe[data-variant="editorial"] .btn-primary,
.fe[data-variant="editorial"] .btn-ghost,
.fe[data-variant="editorial"] .fe-nav-cta,
.fe[data-variant="editorial"] .fe-form button[type="submit"] { border-radius: 4px; }

/* ============================================ */
/* VARIANT C — TECH GRID */
.fe[data-variant="tech"] {
  --navy: #050e1f;
  --bg: #050e1f;
  --bg-soft: #0a1a33;
  --ink: #e6ecf5;
  --ink-2: #c7d2e5;
  --muted: #7a8aa8;
  --line: #15243d;
  --blue: #4d8bff;
  --blue-2: #66a0ff;
  --blue-soft: rgba(77,139,255,0.14);
}
.fe[data-variant="tech"] body { background: var(--bg); }
.fe[data-variant="tech"] .fe-nav {
  background: rgba(5,14,31,0.92);
  border-bottom-color: var(--line);
}
.fe[data-variant="tech"] .fe-nav-logo img { filter: brightness(0) invert(1); }
.fe[data-variant="tech"] .fe-nav-cta { background: var(--blue); color: white; }
.fe[data-variant="tech"] .fe-hero,
.fe[data-variant="tech"] .fe-about,
.fe[data-variant="tech"] .fe-contact { background: var(--bg); }
.fe[data-variant="tech"] .fe-hero {
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
}
.fe[data-variant="tech"] .fe-hero h1 { color: white; }
.fe[data-variant="tech"] .fe-hero h1 em { color: var(--blue-2); }
.fe[data-variant="tech"] .fe-hero p.lede { color: var(--muted); }
.fe[data-variant="tech"] .btn-primary { background: var(--blue); }
.fe[data-variant="tech"] .btn-primary:hover { background: var(--blue-2); }
.fe[data-variant="tech"] .btn-ghost { color: var(--ink); border-color: var(--line); }
.fe[data-variant="tech"] .btn-ghost:hover { border-color: var(--blue); background: var(--bg-soft); }
.fe[data-variant="tech"] .fe-section-head h2 { color: white; }
.fe[data-variant="tech"] .fe-section-head p { color: var(--muted); }
.fe[data-variant="tech"] .fe-service { background: var(--bg-soft); border-color: var(--line); }
.fe[data-variant="tech"] .fe-service h3 { color: white; }
.fe[data-variant="tech"] .fe-service li { color: var(--ink-2); }
.fe[data-variant="tech"] .fe-about h2,
.fe[data-variant="tech"] .fe-about p,
.fe[data-variant="tech"] .fe-about-point strong { color: var(--ink); }
.fe[data-variant="tech"] .fe-about-fact { background: var(--bg-soft); border-color: var(--line); }
.fe[data-variant="tech"] .fe-about-fact .n { color: white; }
.fe[data-variant="tech"] .fe-card-big { background: var(--bg-soft); border-color: var(--line); }
.fe[data-variant="tech"] .fe-card-big h3 { color: white; }
.fe[data-variant="tech"] .fe-card-big li { background: var(--bg); color: var(--ink-2); }
.fe[data-variant="tech"] .fe-team-card { background: var(--bg-soft); border-color: var(--line); }
.fe[data-variant="tech"] .fe-team-info h4 { color: white; }
.fe[data-variant="tech"] .fe-contact-left h2 { color: white; }
.fe[data-variant="tech"] .fe-channel { background: var(--bg-soft); border-color: var(--line); }
.fe[data-variant="tech"] .fe-channel strong { color: white; }
.fe[data-variant="tech"] .fe-form { background: var(--bg-soft); border-color: var(--line); }
.fe[data-variant="tech"] .fe-form h3 { color: white; }
.fe[data-variant="tech"] .fe-field input,
.fe[data-variant="tech"] .fe-field textarea {
  background: var(--bg); border-color: var(--line); color: white;
}
.fe[data-variant="tech"] .fe-operators { background: var(--bg-soft); border-color: var(--line); }
.fe[data-variant="tech"] .fe-op-track span { color: var(--ink-2); }
.fe[data-variant="tech"] .fe-eyebrow { background: var(--blue-soft); color: var(--blue-2); }


/* ============================================ */
/* ERROR PAGES (404, 403, …) */
.fe-error {
  min-height: calc(100vh - 80px);
  display: flex; align-items: center; justify-content: center;
  padding: 64px 32px;
  position: relative; overflow: hidden;
}
.fe-error-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,37,64,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,37,64,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 75%);
          mask-image: radial-gradient(ellipse at center, black, transparent 75%);
  pointer-events: none;
}
.fe-error-inner {
  text-align: center;
  max-width: 640px;
  position: relative; z-index: 1;
}
.fe-error-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.18em;
  color: var(--blue); text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 12px;
}
.fe-error-eyebrow::before,
.fe-error-eyebrow::after {
  content: "";
  width: 32px; height: 1px;
  background: var(--line);
}
.fe-error-big {
  font-size: clamp(120px, 22vw, 220px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin: 0 0 8px;
  background: linear-gradient(135deg, var(--navy) 30%, var(--blue) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.fe-error-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
  letter-spacing: -0.015em;
}
.fe-error-desc {
  font-size: 17px;
  color: var(--muted);
  margin: 0 auto 36px;
  max-width: 480px;
  line-height: 1.6;
}
.fe-error-actions {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}
.fe-error-trace {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px dashed var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  display: flex; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.fe-error-trace span::before {
  content: "● ";
  color: #dc2626;
  margin-right: 4px;
}
