/* ============================================
   GRUPO LUNA — Web 2026
   Paleta: #00415d / #017db0 / #00a2e2 / #7cc2e6 / #dadada
   Tipo: Montserrat
============================================ */

:root {
  /* Brand */
  --ink: #00415d;
  --blue-deep: #00415d;
  --blue: #017db0;
  --blue-bright: #00a2e2;
  --blue-sky: #7cc2e6;
  --grey: #dadada;
  --grey-line: #e2ddd7;
  --border: #dedad4;
  --bg: #f4f2ee;
  --cement: #eae6df;
  --paper: #ffffff;
  --text: #0a1f2c;
  --text-soft: #3a5566;
  --text-mute: #7b8a94;

  /* Type scale — driven by --type-density tweak */
  --type-density: 1;
  --fs-hero: clamp(44px, calc(5.8vw * var(--type-density)), 92px);
  --fs-display: clamp(44px, calc(6vw * var(--type-density)), 96px);
  --fs-h2: clamp(32px, calc(4.4vw * var(--type-density)), 68px);
  --fs-h3: clamp(20px, calc(1.8vw * var(--type-density)), 32px);
  --fs-body: clamp(15px, calc(1.1vw * var(--type-density)), 19px);
  --fs-small: 13px;
  --fs-eyebrow: 12px;

  --tracking-eyebrow: 0.22em;
  --tracking-display: -0.02em;
  --tracking-tight: -0.03em;

  /* Layout */
  --gutter: clamp(20px, 4vw, 64px);
  --max: 1480px;
  --radius: 0;
  --radius-s: 4px;

  /* Motion */
  --motion: 1; /* tweak: 0 = subtle, 0.5 = medium, 1 = strong */
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--text); }

html {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-size: var(--fs-body);
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
}

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

/* ---------- Text Morphing ---------- */
.text-morph {
  display: inline-block;
  min-width: 200px;
  position: relative;
  white-space: nowrap;
}
.tw-text {
  display: inline;
  background: linear-gradient(120deg, var(--blue-bright) 0%, var(--blue) 60%, var(--ink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tw-cursor {
  display: inline-block;
  width: 3px;
  margin-left: 3px;
  color: var(--blue-bright);
  font-weight: 300;
  animation: tw-blink 0.9s step-start infinite;
  vertical-align: baseline;
}
@keyframes tw-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* ---------- Typography ---------- */

.eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: currentColor;
  display: inline-block;
}

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: var(--tracking-display);
  line-height: 1;
  color: var(--ink);
  text-wrap: balance;
}

h2 { font-size: var(--fs-h2); line-height: 1.02; }
h3 { font-size: var(--fs-h3); line-height: 1.15; font-weight: 600; }

p { color: var(--text-soft); }

a { color: inherit; text-decoration: none; }

.mono {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

/* ---------- Layout helpers ---------- */

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

section {
  padding-block: clamp(80px, 12vw, 180px);
  position: relative;
}

/* ---------- NAV ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(246,248,251,.65);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 6px 24px -12px rgba(0,65,93,0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 18px;
  color: var(--ink);
}
.nav-logo img { width: 36px; height: 36px; }
.nav-logo .sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: block;
  margin-top: 1px;
}
.nav-logo .name b { font-weight: 700; }
.nav-logo .name span { font-weight: 300; }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav-links a {
  color: var(--text);
  position: relative;
  padding: 4px 0;
  cursor: pointer;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--blue-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--grey);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  overflow: hidden;
  background: var(--paper);
}
.lang-toggle button {
  background: none;
  border: 0;
  padding: 6px 12px;
  cursor: pointer;
  color: var(--text-mute);
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color .2s, background .2s;
}
.lang-toggle button.active {
  background: var(--ink);
  color: white;
}

/* mobile nav */
.nav-burger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 32px; height: 32px;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 4px; right: 4px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease), top .3s var(--ease), opacity .2s;
}
.nav-burger span:nth-child(1) { top: 11px; }
.nav-burger span:nth-child(2) { top: 16px; }
.nav-burger span:nth-child(3) { top: 21px; }
.nav-burger.open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 16px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: var(--paper);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    font-size: 24px;
    transform: translateY(-100%);
    transition: transform .5s var(--ease);
    z-index: -1;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-burger { display: block; z-index: 101; }
}

/* ---------- HERO ---------- */

.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(to right, rgba(1,125,176,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(1,125,176,.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 60% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 50%, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: calc(100vh - 120px);
}
@media (max-width: 1000px) {
  .hero-content { grid-template-columns: 1fr; }
}

.hero-text {
  max-width: 740px;
  padding-right: clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 60px;
}

.hero-eyebrow {
  margin-bottom: 32px;
  color: var(--blue);
}

.hero-title {
  font-size: var(--fs-hero);
  letter-spacing: -0.025em;
  line-height: 1.0;
  font-weight: 200;
  color: var(--ink);
}
.hero-title b {
  font-weight: 800;
  color: var(--ink);
  display: block;
  margin-top: 0.08em;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--blue-bright) 0%, var(--blue) 60%, var(--ink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.hero-sub {
  margin-top: 32px;
  max-width: 560px;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--text-soft);
}

.hero-meta {
  margin-top: 48px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-meta-item .num {
  display: block;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 200;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero-meta-item .num b { font-weight: 700; color: var(--blue-bright); }
.hero-meta-item .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
  margin-top: 6px;
}

.hero-cta {
  margin-top: 56px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.btn-primary {
  background: var(--ink);
  color: white;
}
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: white; }

.btn .arrow {
  width: 16px; height: 16px;
  transition: transform .25s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- HERO CUBE (real brand image) ---------- */

.cube-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 640px;
  margin-inline: auto;
  display: grid;
  place-items: center;
}

.cube-img-wrap {
  position: relative;
  width: 78%;
  z-index: 3;
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1);
  animation: float 8s ease-in-out infinite;
  will-change: transform;
}
.cube-img-wrap img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 65, 93, 0.22));
}
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

/* Soft glow halo behind cube */
.cube-halo {
  position: absolute;
  inset: 8%;
  z-index: 1;
  background: radial-gradient(circle at 50% 50%, rgba(1,125,176,0.12) 0%, transparent 65%);
  filter: blur(32px);
}

/* Hex rings rotating slowly around cube */
.hex-ring {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: var(--blue);
  opacity: 0.35;
}
.hex-ring-1 { animation: spin 60s linear infinite; opacity: 0.18; }
.hex-ring-2 { animation: spin 90s linear infinite reverse; opacity: 0.12; scale: 1.18; }
.hex-ring-3 { animation: spin 120s linear infinite; opacity: 0.08; scale: 1.36; }
@keyframes spin {
  to { rotate: 360deg; }
}

/* Glassy chips floating */
.chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 4;
  white-space: nowrap;
  animation: float-chip 10s ease-in-out infinite;
}
.chip .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-bright);
}
.chip-1 { top: 12%; right: -8%; animation-delay: 0s; }
.chip-2 { bottom: 18%; left: -12%; animation-delay: -3s; }
.chip-3 { top: 50%; right: -4%; animation-delay: -6s; }
@keyframes float-chip {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@media (max-width: 1000px) {
  .chip-1, .chip-3 { right: 2%; }
  .chip-2 { left: 2%; }
}

/* ---------- HERO VISUAL (architectural image panel) ---------- */

.hero-visual {
  position: relative;
  overflow: hidden;
  margin-right: calc(-1 * var(--gutter));
  background: var(--cement);
}
.hero-visual img,
.hero-visual video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.96);
}
.hero-visual img {
  transform: scale(1.06);
  transition: transform 10s ease;
}
.hero-visual:hover img {
  transform: scale(1.0);
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg) 0%,
    rgba(244,242,238,0.4) 18%,
    rgba(244,242,238,0.06) 45%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,65,93,0.18), transparent);
  z-index: 1;
  pointer-events: none;
}
.hero-visual-label {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  pointer-events: none;
}
.hero-visual-label .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue-bright);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--blue-bright);
}
.hero-visual-caption {
  position: absolute;
  bottom: 28px;
  left: 24px;
  z-index: 2;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
}

@media (max-width: 1000px) {
  .hero-visual {
    display: block;
    position: absolute;
    inset: 0;
    margin-right: 0;
    z-index: 0;
  }
  .hero-visual::before {
    background: linear-gradient(
      175deg,
      rgba(244,242,238,0.92) 0%,
      rgba(244,242,238,0.76) 50%,
      rgba(244,242,238,0.45) 100%
    );
  }
  .hero-visual-label { display: none; }
  .hero-text {
    position: relative;
    z-index: 2;
    padding-right: 0;
  }
}

/* ---------- GLASS surface utility ---------- */
.glass {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 20px 50px -20px rgba(0, 65, 93, 0.18),
    0 8px 24px -12px rgba(0, 65, 93, 0.12);
}
.glass-dark {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 20px 60px -20px rgba(0, 0, 0, 0.4);
}

/* ---------- Ambient hexagons (hero bg) ---------- */
.ambient-hexes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.ambient-hex {
  position: absolute;
  transition: transform 0.1s linear;
}

/* ---------- Section header pattern ---------- */

.sec-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
@media (max-width: 800px) {
  .sec-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

.sec-head .num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--blue);
  margin-bottom: 16px;
}
.sec-head h2 {
  font-size: var(--fs-display);
  font-weight: 200;
  letter-spacing: var(--tracking-tight);
}
.sec-head h2 b { font-weight: 700; }
.sec-head .lead {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 560px;
}

/* ---------- Nosotros ---------- */

.nosotros {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.nosotros::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='173' viewBox='0 0 200 173'><g fill='none' stroke='%23017db0' stroke-width='0.7' opacity='0.18'><polygon points='50,4 96,30 96,86 50,112 4,86 4,30'/><polygon points='150,4 196,30 196,86 150,112 104,86 104,30'/><polygon points='100,91 146,117 146,173 100,199 54,173 54,117'/></g></svg>");
  background-size: 240px 207px;
  opacity: 0.5;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 80% 30%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 80% 30%, black, transparent 70%);
}
.nosotros .wrap { position: relative; z-index: 2; }
.nosotros-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
@media (max-width: 900px) { .nosotros-grid { grid-template-columns: 1fr; } }

.nosotros-text h2 {
  font-size: var(--fs-display);
  font-weight: 200;
  letter-spacing: var(--tracking-tight);
  margin-bottom: 32px;
}
.nosotros-text h2 b { font-weight: 700; }
.nosotros-text h2 .accent { color: var(--blue-bright); font-weight: 700; }

.nosotros-text p { margin-top: 28px; font-size: var(--fs-body); }
.nosotros-text p + p { margin-top: 32px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.value {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-left-color .3s var(--ease), background .3s;
  position: relative;
  overflow: hidden;
}
.value:hover {
  border-left-color: var(--blue-bright);
  background: var(--paper);
}
.value .ico {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.value .ico svg { width: 100%; height: 100%; stroke-width: 1.2; }
.value h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.value p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-soft);
}

/* ---------- Servicios ---------- */

.servicios { background: var(--cement); }

.servicios-list {
  border-top: 1px solid var(--grey);
}
.servicio {
  border-bottom: 1px solid var(--grey);
  padding: 36px 0;
  display: grid;
  grid-template-columns: 80px 1fr 2fr auto;
  gap: 40px;
  align-items: center;
  cursor: pointer;
  transition: padding .4s var(--ease), background .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.servicio:hover {
  padding-left: 24px;
  padding-right: 24px;
}
.servicio::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--ink);
  transition: width .5s var(--ease);
  z-index: 0;
}
.servicio:hover::before { width: 100%; }
.servicio:hover .s-num,
.servicio:hover .s-title,
.servicio:hover .s-desc,
.servicio:hover .s-arrow { color: white; }
.servicio:hover .s-arrow { transform: translateX(8px) rotate(-45deg); }

.servicio > * { position: relative; z-index: 1; transition: color .4s var(--ease); }

.s-num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-mute);
}
.s-title {
  font-size: clamp(24px, 2.6vw, 40px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.05;
}
.s-title b { font-weight: 700; }
.s-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 460px;
}
.s-arrow {
  font-size: 24px;
  color: var(--ink);
  transition: transform .4s var(--ease), color .4s var(--ease);
}

@media (max-width: 900px) {
  .servicio { grid-template-columns: 50px 1fr; gap: 16px; padding: 24px 0; }
  .servicio .s-desc, .servicio .s-arrow { display: none; }
}

/* ---------- Proyectos ---------- */

.proyectos { background: var(--ink); color: white; padding-block: clamp(100px, 14vw, 200px); }
.proyectos .sec-head h2 { color: white; }
.proyectos .sec-head h2 b { color: var(--blue-sky); }
.proyectos .sec-head .num { color: var(--blue-sky); }
.proyectos .sec-head .lead { color: rgba(255,255,255,0.7); }


/* ---------- Stats ---------- */

.stats {
  background: var(--cement);
  padding-block: clamp(80px, 12vw, 160px);
  position: relative;
  overflow: hidden;
}

.stats-cubes {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  max-width: 700px;
  height: 60%;
  opacity: 0.05;
  pointer-events: none;
}
.stats-hex-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='87' viewBox='0 0 100 87'><polygon points='25,2 73,2 97,43 73,84 25,84 1,43' fill='none' stroke='%23017db0' stroke-width='0.6' opacity='0.18'/></svg>");
  background-size: 120px 104px;
  opacity: 0.6;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 20% 80%, black, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 20% 80%, black, transparent 60%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
}
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    border-left: 1px solid var(--border);
  }
}

.stat {
  padding: clamp(40px, 5vw, 72px) clamp(24px, 3vw, 48px);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background .35s var(--ease);
}
.stat:last-child { border-right: 0; }
@media (max-width: 900px) {
  .stat { border-right: 1px solid var(--border); }
  .stat:nth-child(2n) { border-right: 0; }
}
.stat:hover { background: var(--paper); }
.stat-num {
  font-size: clamp(72px, 9.5vw, 140px);
  font-weight: 200;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.stat-num .plus, .stat-num .suffix {
  font-size: 0.3em;
  font-weight: 700;
  color: var(--blue-bright);
  line-height: 1.2;
  margin-top: 0.5em;
  letter-spacing: 0;
}
.stat-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 20px;
  line-height: 1.5;
  padding-top: 16px;
  border-top: 2px solid var(--blue);
}


/* ---------- Contacto ---------- */

.contacto {
  background: linear-gradient(180deg, var(--ink) 0%, #002b3f 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.contacto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue-bright) 30%, var(--blue) 70%, transparent);
  pointer-events: none;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) { .contacto-grid { grid-template-columns: 1fr; } }

.contacto-text h2 {
  font-size: var(--fs-display);
  font-weight: 200;
  letter-spacing: var(--tracking-tight);
  color: white;
  line-height: 0.95;
}
.contacto-text h2 b { font-weight: 700; color: var(--blue-sky); }

.contacto-text .lead {
  margin-top: 28px;
  color: rgba(255,255,255,0.7);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  max-width: 460px;
}

.contact-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  transition: color .2s;
}
.contact-item:hover { color: var(--blue-sky); }
.contact-item .ico {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item .ico svg { width: 16px; height: 16px; }

/* Form */
.form {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 30px 80px -20px rgba(0,0,0,0.4);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.form::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><polygon points='50,4 87,25 87,75 50,96 13,75 13,25' fill='none' stroke='%237cc2e6' stroke-width='0.8' opacity='0.5'/></svg>") center/contain no-repeat;
  opacity: 0.5;
  pointer-events: none;
}
.form > * { position: relative; z-index: 1; }
.form h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-sky);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-top: 20px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  font-weight: 600;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-family: inherit;
  font-size: 15px;
  padding: 10px 0;
  transition: border-color .25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--blue-bright);
}
.field textarea { resize: vertical; min-height: 80px; }
.field select option { background: var(--ink); color: white; }

.form .btn-submit {
  margin-top: 32px;
  background: var(--blue-bright);
  color: white;
  border: 0;
  padding: 18px 32px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background .25s, transform .25s;
  width: 100%;
  justify-content: center;
}
.form .btn-submit:hover { background: white; color: var(--ink); transform: translateY(-2px); }

.form-success {
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(124,194,230,0.3);
  background: rgba(124,194,230,0.06);
}
.form-success h3 { color: var(--blue-sky); margin-bottom: 12px; }
.form-success p { color: rgba(255,255,255,0.7); font-size: 14px; }

/* ---------- Map ---------- */
.map-embed {
  margin-top: clamp(40px, 6vw, 72px);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(124,194,230,0.15);
  position: relative;
  z-index: 2;
}
.map-embed iframe { display: block; }

/* ---------- Footer ---------- */
footer {
  background: #001f2e;
  color: rgba(255,255,255,0.5);
  padding: 32px var(--gutter);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer .foot-logo {
  display: flex; align-items: center; gap: 10px;
  color: white;
  font-weight: 600;
  letter-spacing: 0.04em;
}
footer .foot-logo img { width: 24px; height: 24px; }

/* ---------- Reveal animation ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(calc(40px * var(--motion)));
  transition:
    opacity .8s var(--ease-out),
    transform .9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

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

/* ---------- Scroll-progress indicator ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue-bright);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 200;
  transition: transform 0.1s linear;
}

/* ---------- Hero scroll hint ---------- */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 5;
  color: var(--text-mute);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.scroll-hint .line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--blue-bright), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-hint .line::after {
  content: '';
  position: absolute;
  left: 0; top: -40px;
  width: 1px; height: 40px;
  background: var(--ink);
  animation: scroll-line 2s var(--ease) infinite;
}
@keyframes scroll-line {
  0% { transform: translateY(0); }
  100% { transform: translateY(80px); }
}

/* ---------- Hero variant: cinematic ---------- */
.hero[data-variant="cinematic"] .hero-content {
  grid-template-columns: 1fr;
  text-align: center;
  place-items: center;
}
.hero[data-variant="cinematic"] .hero-text { max-width: 1200px; text-align: center; }
.hero[data-variant="cinematic"] .hero-eyebrow { justify-content: center; }
.hero[data-variant="cinematic"] .hero-meta { justify-content: center; }
.hero[data-variant="cinematic"] .hero-cta { justify-content: center; }
.hero[data-variant="cinematic"] .cube-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  z-index: 0;
  opacity: 0.22;
  margin: 0;
  filter: blur(0.5px);
}
.hero[data-variant="cinematic"] .chip { display: none; }
.hero[data-variant="cinematic"] .hero-title { font-size: clamp(72px, 12vw, 220px); }

/* ---------- Hero variant: stacked ---------- */
.hero[data-variant="stacked"] .hero-content {
  grid-template-columns: 1fr;
  align-content: end;
  align-items: end;
}
.hero[data-variant="stacked"] .cube-stage {
  position: absolute;
  top: 8%; right: 4%;
  width: 38%;
  max-width: 460px;
  margin: 0;
  z-index: 1;
}
.hero[data-variant="stacked"] .hero-title { font-size: clamp(72px, 13vw, 240px); line-height: 0.88; }



/* ============================================
   INNOVATIONS — cursor, magnetic, word-reveal,
   horizontal projects, honeycomb
============================================ */

/* ---------- Hex Cursor ---------- */

body.has-hex-cursor,
body.has-hex-cursor * { cursor: none !important; }
body.has-hex-cursor input,
body.has-hex-cursor textarea,
body.has-hex-cursor select { cursor: text !important; }

@media (pointer: coarse) {
  body.has-hex-cursor,
  body.has-hex-cursor * { cursor: auto !important; }
  .hex-cursor-dot, .hex-cursor-ring { display: none !important; }
}

.hex-cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--blue-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 12px var(--blue-bright);
  will-change: transform;
}

.hex-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  pointer-events: none;
  z-index: 9998;
  color: var(--ink);
  transition: width .3s var(--ease), height .3s var(--ease), color .3s var(--ease);
  will-change: transform;
}
.hex-cursor-ring svg {
  width: 100%; height: 100%;
  animation: cursor-spin 8s linear infinite;
}
@keyframes cursor-spin {
  to { rotate: 360deg; }
}
.hex-cursor-ring.hover {
  color: var(--blue-bright);
}
.hex-cursor-ring.hover svg {
  scale: 1.6;
  transition: scale .25s var(--ease);
}

.hex-trail {
  position: fixed;
  top: 0; left: 0;
  width: 16px; height: 16px;
  margin: -8px 0 0 -8px;
  pointer-events: none;
  z-index: 9997;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><polygon points='50,4 87,25 87,75 50,96 13,75 13,25' fill='none' stroke='%2300a2e2' stroke-width='6'/></svg>") center/contain no-repeat;
  animation: trail-fade 0.8s ease-out forwards;
}
@keyframes trail-fade {
  0%   { opacity: 0.6; transform: scale(0.4) rotate(0deg); }
  50%  { opacity: 0.4; transform: scale(1) rotate(40deg); }
  100% { opacity: 0;   transform: scale(1.4) rotate(80deg); }
}

/* Magnetic buttons need to keep their default transition but we control via JS */
[data-magnetic] {
  transition: transform 0.05s linear !important;
  will-change: transform;
}
.btn[data-magnetic]:hover {
  transform: none; /* magnetic handles transform */
}

/* ---------- Word Reveal ---------- */
.word-reveal { display: inline; }
.wr-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.wr-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1), opacity 0.5s ease;
  will-change: transform, opacity;
}
.wr-inner.in {
  transform: translateY(0);
  opacity: 1;
}
.nosotros .nos-para {
  margin-top: 24px;
  margin-bottom: 0;
  font-size: var(--fs-body);
  color: var(--text-soft);
  line-height: 1.65;
}
.nosotros .nos-para + .nos-para {
  margin-top: 28px;
}

/* ---------- HORIZONTAL PROJECTS ---------- */

.h-proyectos {
  position: relative;
  background: linear-gradient(180deg, var(--ink) 0%, #002a3d 50%, var(--ink) 100%);
  color: white;
  padding: 0;
}

.h-proyectos-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.h-proyectos-head {
  padding-top: clamp(80px, 10vh, 120px);
  padding-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: end;
  flex-shrink: 0;
  z-index: 3;
  position: relative;
}
.h-proyectos-head .eyebrow { color: var(--blue-sky); }
.h-proyectos-head h2 {
  color: white;
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 200;
  letter-spacing: var(--tracking-tight);
}
.h-proyectos-head h2 b { font-weight: 700; color: var(--blue-sky); }

.h-proyectos-progress {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}
.h-dot {
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0.4;
  transition: opacity .4s var(--ease);
}
.h-dot.active, .h-dot.done { opacity: 1; }
.h-dot-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--blue-sky);
}
.h-dot-bar {
  display: block;
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.h-dot-fill {
  position: absolute;
  inset: 0;
  background: var(--blue-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.h-dot.active .h-dot-fill { transform: scaleX(1); }
.h-dot.done .h-dot-fill { transform: scaleX(1); }

.h-proyectos-track {
  display: flex;
  height: 100%;
  flex: 1;
  align-items: stretch;
  padding-left: var(--gutter);
  padding-top: 24px;
  padding-bottom: 56px;
  will-change: transform;
}

.h-proyecto {
  flex-shrink: 0;
  width: min(92vw, 1320px);
  height: 100%;
  position: relative;
  overflow: hidden;
  margin-right: clamp(16px, 3vw, 48px);
}

/* dark gradient overlay so text stays legible */
.h-proyecto::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,15,28,0.82) 0%,
    rgba(0,15,28,0.55) 40%,
    rgba(0,15,28,0.22) 75%,
    rgba(0,15,28,0.1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.h-proyecto-img {
  position: absolute;
  inset: 0;
  aspect-ratio: unset;
  height: 100%;
  max-height: none;
  overflow: hidden;
  background: #001828;
  box-shadow: none;
}
.h-proyecto-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.7s ease, transform 1.4s cubic-bezier(.2,.7,.2,1);
  filter: saturate(0.88) brightness(0.92);
}
.h-proyecto-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.18);
}
.h-proyecto-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-sky);
  box-shadow: 0 0 8px var(--blue-sky);
}
.h-proyecto-label {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
}
.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.carousel-dot.active {
  background: white;
  transform: scale(1.3);
}

.h-proyecto-info {
  position: absolute;
  bottom: clamp(40px, 7vh, 80px);
  left: clamp(32px, 5vw, 72px);
  z-index: 2;
  max-width: min(580px, 55%);
  padding-right: 0;
}
.h-proyecto-idx {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--blue-sky);
  margin-bottom: 20px;
}
.h-proyecto-title {
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: white;
  margin-bottom: 12px;
}
.h-proyecto-loc {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.h-proyecto-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin-bottom: 32px;
}
.h-proyecto-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
}
.hs-v {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 200;
  letter-spacing: -0.02em;
  color: white;
  line-height: 1;
}
.hs-l {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
}

.h-proyectos-hint {
  position: absolute;
  bottom: 32px;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  z-index: 5;
  animation: hint-pulse 2.4s ease-in-out infinite;
}
@keyframes hint-pulse {
  0%, 100% { transform: translateX(0); opacity: 0.45; }
  50% { transform: translateX(6px); opacity: 0.9; }
}

/* Mobile: vertical stack */
.h-proyectos-mobile {
  height: auto !important;
  padding-block: clamp(80px, 12vw, 140px);
}
.h-proyectos-mobile .h-proyectos-pin {
  position: static;
  height: auto;
  overflow: visible;
}
.h-proyectos-mobile .h-proyectos-head {
  grid-template-columns: 1fr;
  padding-top: 0;
  padding-bottom: 40px;
}
.h-proyectos-mobile .h-proyectos-progress { display: none; }
.h-proyectos-mobile .h-proyectos-hint { display: none; }
.h-proyectos-mobile .h-proyectos-track {
  display: block;
  height: auto;
  overflow: visible;
  padding: 0 var(--gutter);
  transform: none !important;
  will-change: auto;
}
.h-proyectos-mobile .h-proyecto {
  width: 100%;
  height: auto;
  min-height: 70vw;
  margin-right: 0;
  margin-bottom: 16px;
}
.h-proyectos-mobile .h-proyecto:last-child { margin-bottom: 0; }
.h-proyectos-mobile .h-proyecto-img {
  position: absolute;
  inset: 0;
  aspect-ratio: unset;
  height: 100%;
  max-height: none;
}
.h-proyectos-mobile .h-proyecto-info {
  bottom: 24px;
  left: 24px;
  max-width: 90%;
}
.h-proyectos-mobile .h-proyecto-desc { display: none; }
.h-proyectos-mobile .h-proyecto-stats { gap: 20px; }

/* ---------- HONEYCOMB ---------- */

/* honeycomb-sec / portafolio extendido — replaced with card grid */
.honeycomb-sec {
  background: var(--bg);
  padding-block: clamp(100px, 14vw, 180px);
}

/* ---------- PORTAFOLIO EXTENDIDO — card grid ---------- */
.port-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 1100px) { .port-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .port-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 420px)  { .port-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

.port-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 0;
  border-top: 2px solid var(--grey-line);
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-top-color .3s var(--ease), background .3s;
  cursor: default;
}
.port-card:hover {
  border-top-color: var(--blue-bright);
  background: var(--bg);
}
.port-card-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bright);
}
.port-card-title {
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}
.port-card-year {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-mute);
  margin-top: auto;
  padding-top: 8px;
}

/* ---------- WordReveal ---------- */
.word-reveal { display: inline; }
.word-reveal .wr-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .55s cubic-bezier(.2,.7,.2,1), transform .55s cubic-bezier(.2,.7,.2,1);
}
.word-reveal.shown .wr-word {
  opacity: 1;
  transform: translateY(0);
}
.nos-para {
  display: block;
  margin-top: 28px;
  font-size: var(--fs-body);
  color: var(--text-soft);
}
