/* ============================================================
   Alex "Nova" Bringas — supernova billboard
   Unbounded (display) + Manrope (body) · space-black + nebula
   ============================================================ */

:root {
  --bg:        #050510;
  --bg-2:      #0a0a1c;
  --ink:       #f4f2ff;
  --ink-dim:   #a7a4c4;
  --ink-faint: #6f6c92;
  --line:      rgba(176,108,247,.16);
  --violet:    #b06cf7;
  --magenta:   #e85cc8;
  --ember:     #ff8a3d;
  --grad:      linear-gradient(105deg, var(--violet) 0%, var(--magenta) 55%, var(--ember) 100%);
  --shadow:    0 30px 80px -30px rgba(0,0,0,.9);
  --maxw:      1240px;
}

*,*::before,*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
strong { color: var(--ink); font-weight: 700; }

.sr-only, .skip {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip:focus {
  position: fixed; top: 12px; left: 12px; width: auto; height: auto; clip: auto;
  z-index: 999; background: var(--violet); color: #0a0016; padding: 10px 16px;
  border-radius: 8px; font-weight: 700;
}

/* ---------- starfield ---------- */
#starfield {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: .8;
}

/* keep content above starfield */
.site-header, main, .site-footer, .mobile-nav { position: relative; z-index: 2; }

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(18px, 4vw, 52px);
  transition: background .4s ease, backdrop-filter .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.solid {
  background: rgba(6,6,18,.72);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom-color: var(--line);
  padding-top: 14px; padding-bottom: 14px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand-mark { color: var(--violet); display: inline-flex; filter: drop-shadow(0 0 10px rgba(176,108,247,.5)); }
.brand-word {
  font-family: "Unbounded", sans-serif; font-weight: 800; font-size: 1.05rem;
  letter-spacing: .28em; padding-left: 2px;
}

.nav { display: flex; gap: clamp(14px, 2vw, 30px); }
.nav a {
  font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 600;
  color: var(--ink-dim); position: relative; padding: 4px 0;
  transition: color .25s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--grad); transition: width .3s ease;
}
.nav a:hover, .nav a:focus-visible { color: var(--ink); }
.nav a:hover::after, .nav a:focus-visible::after { width: 100%; }

.nav-toggle { display: none; }

/* mobile nav */
.mobile-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 39;
  background: rgba(7,7,20,.97); backdrop-filter: blur(18px);
  padding: 84px 26px 30px; display: flex; flex-direction: column; gap: 4px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a {
  font-family: "Unbounded", sans-serif; font-weight: 600; font-size: 1.25rem;
  padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--ink);
}
.mobile-nav[hidden] { display: none; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: min(100svh, 1000px);
  display: flex; align-items: flex-end;
  padding: 0 clamp(18px, 4vw, 52px) clamp(48px, 8vh, 96px);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 70% 28%;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 78% 32%, transparent 0%, transparent 40%, rgba(5,5,16,.35) 70%, rgba(5,5,16,.86) 100%),
    linear-gradient(to top, var(--bg) 2%, rgba(5,5,16,.55) 34%, transparent 66%),
    linear-gradient(to right, rgba(5,5,16,.85) 0%, rgba(5,5,16,.25) 42%, transparent 70%);
}

.hero-inner { position: relative; z-index: 2; max-width: 760px; }

.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .74rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink-dim); margin: 0 0 clamp(14px,2.5vh,26px); font-weight: 600;
}
.hero-kicker .tick {
  width: 30px; height: 1.5px; background: var(--grad); display: inline-block;
}

.hero-title { margin: 0; line-height: .82; }
.ht-line {
  display: block;
  font-family: "Unbounded", sans-serif; font-weight: 900;
  font-size: clamp(5.5rem, 21vw, 18rem);
  letter-spacing: -.02em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter:
    drop-shadow(0 3px 22px rgba(0,0,0,.7))
    drop-shadow(0 0 46px rgba(176,108,247,.4));
  text-transform: uppercase;
}

.hero-name {
  font-family: "Unbounded", sans-serif; font-weight: 400; letter-spacing: .06em;
  font-size: clamp(1.1rem, 3.4vw, 2rem); margin: clamp(6px,1.5vh,16px) 0 0;
  color: var(--ink);
}
.hero-name span { color: var(--ink-dim); font-weight: 300; }

.hero-tag {
  margin: clamp(18px,3vh,30px) 0 0; max-width: 46ch;
  font-size: clamp(1rem, 2vw, 1.22rem); color: var(--ink-dim); line-height: 1.5;
}

.hero-telemetry {
  list-style: none; margin: clamp(24px,4vh,40px) 0 0; padding: 0;
  display: flex; gap: clamp(20px, 4vw, 54px); flex-wrap: wrap;
}
.hero-telemetry li { display: flex; flex-direction: column; gap: 4px; }
.hero-telemetry .tval {
  font-family: "Unbounded", sans-serif; font-weight: 700;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem); line-height: 1; color: var(--ink);
}
.hero-telemetry .tlab {
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint);
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: clamp(26px,4vh,40px); }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 14px 26px; border-radius: 100px; transition: transform .25s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
  will-change: transform;
}
.btn-primary { background: var(--grad); color: #12001f; box-shadow: 0 14px 40px -12px rgba(232,92,200,.6); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 50px -12px rgba(232,92,200,.75); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink-dim); }
.btn-ghost:hover { border-color: var(--violet); color: var(--ink); transform: translateY(-3px); }

.hero-scroll {
  position: absolute; right: clamp(18px,4vw,52px); bottom: clamp(40px,7vh,80px); z-index: 2;
}
.hero-scroll span {
  writing-mode: vertical-rl; font-size: .62rem; letter-spacing: .4em; color: var(--ink-faint);
  animation: scrollpulse 2.6s ease-in-out infinite;
}
@keyframes scrollpulse { 0%,100%{opacity:.35; transform:translateY(0);} 50%{opacity:1; transform:translateY(8px);} }

/* ============ TICKER ============ */
.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; background: rgba(10,10,28,.5); padding: 14px 0;
}
.ticker-track {
  display: inline-flex; align-items: center; gap: 26px; white-space: nowrap;
  animation: marquee 34s linear infinite; will-change: transform;
}
.ticker-track span {
  font-family: "Unbounded", sans-serif; font-weight: 600; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim);
}
.ticker-track .dot { color: var(--violet); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ============ SHARED SECTION BITS ============ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-dim);
  font-weight: 600; margin: 0 0 20px;
}
.eyebrow.center { justify-content: center; }
.eyebrow .idx {
  font-family: "Unbounded", sans-serif; color: var(--violet); font-weight: 700; font-size: .8rem;
}
.section-title {
  font-family: "Unbounded", sans-serif; font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 4.6rem); line-height: .98; letter-spacing: -.02em;
  margin: 0; text-transform: uppercase;
}
.section-title.center { text-align: center; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ============ HISTORIA ============ */
.historia { padding: clamp(70px, 12vh, 150px) clamp(18px,4vw,52px); max-width: var(--maxw); margin: 0 auto; }
.hist-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.hist-copy .lede { font-size: clamp(1.1rem,2vw,1.35rem); color: var(--ink); margin: 24px 0 18px; line-height: 1.5; }
.hist-copy p { color: var(--ink-dim); margin: 0 0 16px; }

.hist-facts { list-style: none; margin: 34px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 20px 30px; }
.hist-facts li { display: flex; flex-direction: column; gap: 4px; }
.hist-facts span { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); }
.hist-facts strong { font-family: "Unbounded", sans-serif; font-weight: 500; font-size: 1rem; color: var(--ink); }

.hist-figure { margin: 0; position: relative; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); }
.hist-figure::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px var(--line);
  background: radial-gradient(120% 120% at 80% 0%, transparent 55%, rgba(176,108,247,.14) 100%);
}
.hist-figure img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 25%; }
.hist-figure figcaption {
  position: absolute; left: 0; bottom: 0; right: 0; padding: 20px 18px 16px;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-dim);
  background: linear-gradient(to top, rgba(5,5,16,.9), transparent);
}
.hist-figure figcaption .dot { color: var(--violet); }

/* ============ CONSTELACIÓN ============ */
.constelacion {
  padding: clamp(60px,10vh,120px) clamp(18px,4vw,52px) clamp(70px,12vh,140px);
  background:
    radial-gradient(80% 60% at 50% 20%, rgba(176,108,247,.10), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.const-head { max-width: 720px; margin: 0 auto; text-align: center; }
.const-sub { color: var(--ink-dim); font-size: 1.05rem; margin: 16px 0 0; }

.const-stage {
  max-width: 1060px; margin: clamp(30px,6vh,64px) auto 0;
}
.const-svg { width: 100%; height: auto; overflow: visible; }

.const-line {
  stroke: var(--violet);
  stroke-width: 1.6;
  stroke-dasharray: 1; stroke-dashoffset: 0;   /* visible by default (no-JS) */
  filter: drop-shadow(0 0 6px rgba(176,108,247,.7));
  opacity: .9;
}
/* hidden-then-draw states apply ONLY once JS arms reveals ([data-io]) */
[data-io] [data-const]:not(.in) .const-line { stroke-dashoffset: 1; }
[data-const].in .const-line { animation: drawline 2s ease forwards; }
@keyframes drawline { to { stroke-dashoffset: 0; } }

.star .halo {
  fill: rgba(176,108,247,.14);
  stroke: rgba(176,108,247,.4); stroke-width: 1;
  transform-origin: center; transform-box: fill-box;
}
.star .halo.big { fill: rgba(232,92,200,.18); stroke: rgba(232,92,200,.5); }
.star .core {
  fill: var(--ink); transform-origin: center; transform-box: fill-box;
  filter: drop-shadow(0 0 8px rgba(255,255,255,.8));
}
.star .s-num, .star .s-lab {
  fill: var(--ink-dim); font-family: "Unbounded", sans-serif; text-anchor: middle;
}
/* hidden initial state ONLY under JS reveal gate */
[data-io] [data-const]:not(.in) .star .halo { opacity: 0; transform: scale(.4); }
[data-io] [data-const]:not(.in) .star .core { opacity: 0; transform: scale(.3); }
[data-io] [data-const]:not(.in) .star .s-num,
[data-io] [data-const]:not(.in) .star .s-lab { opacity: 0; }
.star .s-num { font-size: 20px; font-weight: 700; fill: var(--ink); }
.star .s-lab { font-size: 9px; letter-spacing: .22em; }
.star .s-num.hot { fill: var(--ember); }
.star .s-lab.hot { fill: var(--ember); }

[data-const].in .star .halo { animation: pop .7s cubic-bezier(.2,.9,.3,1.4) forwards; animation-delay: calc(.2s + var(--i) * .22s); }
[data-const].in .star .core { animation: pop .6s cubic-bezier(.2,.9,.3,1.4) forwards; animation-delay: calc(.28s + var(--i) * .22s); }
[data-const].in .star .s-num,
[data-const].in .star .s-lab { animation: fadein .6s ease forwards; animation-delay: calc(.42s + var(--i) * .22s); }
@keyframes pop { to { opacity: 1; transform: scale(1); } }
@keyframes fadein { to { opacity: 1; } }

/* twinkle on the final star */
[data-const].in .star:last-child .core { animation: pop .6s cubic-bezier(.2,.9,.3,1.4) forwards, twinkle 2.4s ease-in-out 2s infinite; }
@keyframes twinkle { 0%,100%{ filter: drop-shadow(0 0 8px rgba(255,255,255,.8)); } 50%{ filter: drop-shadow(0 0 18px rgba(255,138,61,.95)); } }

.const-note { text-align: center; color: var(--ink-faint); font-size: .82rem; margin: clamp(24px,4vh,44px) auto 0; max-width: 640px; }
.const-note .tbd { color: var(--violet); }

/* constellation flash when reached via nav */
.const-stage.flash { animation: constflash 1.2s ease; }
@keyframes constflash { 0%,100%{ filter: none; } 30%{ filter: drop-shadow(0 0 30px rgba(232,92,200,.6)); } }

/* ============ MISIÓN band ============ */
.mision {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  min-height: 62vh;
}
.mision-media { position: relative; overflow: hidden; }
.mision-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; min-height: 320px; }
.mision-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, transparent 40%, var(--bg) 98%); }
.mision-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px,8vw,90px); }
.mision blockquote {
  font-family: "Unbounded", sans-serif; font-weight: 600; font-size: clamp(1.6rem,3.4vw,2.9rem);
  line-height: 1.12; margin: 8px 0 22px; letter-spacing: -.01em;
}
.mision-copy p { color: var(--ink-dim); max-width: 44ch; margin: 0; }

/* ============ FUTURO / CARDS ============ */
.futuro { padding: clamp(70px,12vh,150px) clamp(18px,4vw,52px); max-width: var(--maxw); margin: 0 auto; }
.futuro-head { max-width: 760px; margin: 0 auto clamp(40px,7vh,72px); text-align: center; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px,1.6vw,22px); }
.card {
  position: relative; border: 1px solid var(--line); border-radius: 14px;
  padding: 30px 26px 28px; background: linear-gradient(180deg, rgba(176,108,247,.05), rgba(10,10,28,.2));
  overflow: hidden; transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  scroll-margin-top: 100px;
}
.card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s ease; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 0%, rgba(176,108,247,.16), transparent 60%);
}
.card:hover { transform: translateY(-6px); border-color: rgba(176,108,247,.45); box-shadow: 0 24px 50px -24px rgba(176,108,247,.4); }
.card:hover::before { opacity: 1; }
.card-idx {
  font-family: "Unbounded", sans-serif; font-size: .72rem; letter-spacing: .1em; color: var(--violet); font-weight: 700;
}
.card h3 { font-family: "Unbounded", sans-serif; font-weight: 600; font-size: 1.35rem; margin: 14px 0 10px; }
.card p { color: var(--ink-dim); font-size: .95rem; margin: 0 0 18px; }
.card-soon {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-faint);
  padding: 6px 12px; border: 1px solid var(--line); border-radius: 100px;
}
.card-soon::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 8px var(--ember); }

/* nav pulse target */
.card.pulse { animation: cardpulse 1.2s ease; }
@keyframes cardpulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(176,108,247,0); border-color: var(--line); }
  25% { box-shadow: 0 0 0 3px rgba(176,108,247,.5), 0 24px 50px -20px rgba(232,92,200,.5); border-color: var(--magenta); transform: translateY(-4px); }
}

/* newsletter card */
.card-news { grid-column: span 1; }
.news-form { display: flex; gap: 8px; margin: 0 0 10px; }
.news-form input {
  flex: 1; min-width: 0; background: rgba(5,5,16,.6); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; color: var(--ink); font-family: inherit; font-size: .9rem;
}
.news-form input:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(176,108,247,.2); }
.news-form input::placeholder { color: var(--ink-faint); }
.news-form button {
  border: 0; border-radius: 10px; padding: 12px 18px; cursor: pointer;
  background: var(--grad); color: #12001f; font-weight: 700; font-family: inherit; font-size: .82rem;
  letter-spacing: .04em; transition: transform .2s ease, filter .2s ease;
}
.news-form button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.news-msg { font-size: .82rem; margin: 0; min-height: 1.2em; color: var(--violet); }
.news-msg.ok { color: #6ce5a8; }

/* ============ FOOTER ============ */
.site-footer { border-top: 1px solid var(--line); padding: clamp(40px,7vh,70px) clamp(18px,4vw,52px) 48px; max-width: var(--maxw); margin: 0 auto; }
.foot-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.foot-ig { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-dim); transition: color .25s ease; }
.foot-ig:hover { color: var(--ink); }
.disclaimer { margin: 26px 0 0; font-size: .74rem; line-height: 1.7; color: var(--ink-faint); max-width: 60ch; }

/* ============ SCROLL REVEAL ============ */
[data-io] [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1); }
[data-io] [data-reveal].in { opacity: 1; transform: none; }

/* entrance: hide hero text only under JS entrance gate */
[data-entrance="js"] .hero-kicker,
[data-entrance="js"] .ht-line,
[data-entrance="js"] .hero-name,
[data-entrance="js"] .hero-tag,
[data-entrance="js"] .hero-telemetry,
[data-entrance="js"] .hero-cta { opacity: 0; }
[data-entrance="js"] .hero.entered .hero-kicker,
[data-entrance="js"] .hero.entered .ht-line,
[data-entrance="js"] .hero.entered .hero-name,
[data-entrance="js"] .hero.entered .hero-tag,
[data-entrance="js"] .hero.entered .hero-telemetry,
[data-entrance="js"] .hero.entered .hero-cta { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  [data-io] [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  .hero-scroll span { animation: none; }
  [data-const].in .star .halo, [data-const].in .star .core,
  [data-const].in .star .s-num, [data-const].in .star .s-lab { animation: none; opacity: 1; transform: none; }
  [data-const].in .const-line { animation: none; stroke-dashoffset: 0; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-0px) rotate(-45deg); }

  .hist-grid { grid-template-columns: 1fr; gap: 40px; }
  .hist-media { order: -1; }
  .mision { grid-template-columns: 1fr; }
  .mision-media::after { background: linear-gradient(to bottom, transparent 45%, var(--bg) 99%); }
  .cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .cards { grid-template-columns: 1fr; }
  .hist-facts { grid-template-columns: 1fr; }
  .hero-telemetry { gap: 22px 30px; }
  .hero { align-items: flex-end; }
  .hero-media img { object-position: 66% 24%; }
  /* stronger scrim so text holds over the bright composite on phones */
  .hero-veil {
    background:
      linear-gradient(to top, var(--bg) 6%, rgba(5,5,16,.72) 40%, rgba(5,5,16,.25) 72%, transparent 100%),
      linear-gradient(to right, rgba(5,5,16,.7) 0%, rgba(5,5,16,.15) 55%, transparent 100%);
  }
  .hero-kicker { letter-spacing: .18em; font-size: .64rem; }
  .hero-tag { font-size: 1rem; }
}
