/* ============================================================
   Cosmica Biosciences — stylesheet
   ============================================================ */

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #030308;
  color: #F5F5F7;
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: #F5F5F7; text-decoration: none; }
a:hover { color: #F5C242; }
h1, h2, p, ul, figure { margin: 0; }
img { display: block; }
::selection { background: rgba(245, 194, 66, 0.22); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [style*="animation"] { animation: none !important; }
}

/* ---- Fixed background layers ---- */
.bg-image {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("assets/backdrop-wide.png");
  background-size: cover; background-position: center;
}
.bg-stage { position: fixed; inset: 0; z-index: 1; pointer-events: none; }
.bg-vignette {
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(ellipse 120% 80% at 50% 50%, transparent 55%, rgba(3,3,8,.55) 100%);
}

/* ---- Progress rail ---- */
.rail {
  position: fixed; right: 30px; top: 50%; transform: translateY(-50%);
  z-index: 40; display: flex; flex-direction: column; gap: 16px; align-items: flex-end;
}
.rail__item { display: flex; align-items: center; gap: 10px; }
.rail__label {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 600; color: #6E6E7E; opacity: 0; transition: opacity .3s ease;
}
.rail__node {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.22);
  transition: background .3s ease, transform .3s ease;
}
.rail__item.is-active .rail__label { opacity: 1; }
.rail__item.is-active .rail__node { background: #F5C242; transform: scale(1.7); }

/* ---- Nav ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 74px;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
}
.nav.is-scrolled {
  background: rgba(3,3,8,.7);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,.06);
}
.nav__brand { display: flex; align-items: center; }
.nav__wordmark { height: 30px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link { font-size: 15px; font-weight: 500; color: #F5F5F7; }
.nav__link:hover { color: #F5C242; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(100deg, #F7A83A, #F35A2A);
  color: #1a0b03; font-weight: 700; border-radius: 100px;
  box-shadow: 0 12px 44px rgba(243,90,42,.30);
  transition: box-shadow .3s ease;
}
.btn-primary:hover { color: #1a0b03; box-shadow: 0 18px 52px rgba(243,90,42,.5); }
.btn-primary .free { font-weight: 800; padding: 0 3px; }

.btn-nav {
  display: inline-flex; align-items: center;
  background: linear-gradient(100deg, #F7A83A, #F35A2A);
  color: #1a0b03; font-weight: 700; font-size: 14px;
  padding: 11px 20px; border-radius: 100px;
  transition: box-shadow .3s ease;
}
.btn-nav:hover { color: #1a0b03; box-shadow: 0 8px 24px rgba(243,90,42,.30); }
.btn-nav b { font-weight: 800; }

.link-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 15px; font-weight: 500; color: #9AA0B4; padding: 14px 12px;
}
.link-ghost:hover { color: #F5C242; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(255,255,255,.42); color: #F5F5F7; font-weight: 600;
  border-radius: 100px; padding: 14px 30px; font-size: 15px;
  background: rgba(255,255,255,.04);
  transition: background .3s ease, border-color .3s ease;
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #F5F5F7; color: #F5F5F7; }

/* ---- HIPAA badge ---- */
.hipaa {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .06em; color: #7A8090;
}

/* ---- Main / sections ---- */
.main { position: relative; z-index: 10; }
.section { position: relative; padding: 120px 56px; display: flex; align-items: center; }
.section--center { justify-content: center; }
.section--right { justify-content: flex-end; }

.grad-left {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 80% at 16% 50%, rgba(3,3,8,.92) 0%, rgba(3,3,8,.5) 44%, transparent 72%);
}
.grad-right {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 76% 80% at 84% 50%, rgba(3,3,8,.92) 0%, rgba(3,3,8,.5) 44%, transparent 72%);
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.is-revealed { opacity: 1; transform: none; }

.eyebrow {
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  font-weight: 600; color: #6E6E7E; margin-bottom: 18px;
}

/* ---- 1 · Hero ---- */
.hero {
  height: 100vh; min-height: 680px; text-align: center;
  justify-content: center; padding: 0 28px;
}
.hero__kicker {
  position: absolute; top: 104px; left: 0; right: 0;
  opacity: 0; animation: fadeUp .9s ease .2s forwards;
}
.hero__kicker span {
  font-size: 13px; letter-spacing: .34em; text-transform: uppercase;
  color: #B9C0EC; font-weight: 600;
}
.hero__inner { position: relative; max-width: 900px; display: flex; flex-direction: column; align-items: center; }
.hero__scrim {
  position: absolute; inset: -34% -26%; pointer-events: none;
  background: radial-gradient(ellipse 60% 56% at 50% 50%, rgba(3,3,8,.8) 0%, rgba(3,3,8,.44) 46%, transparent 74%);
}
.hero__title {
  position: relative; font-weight: 600;
  font-size: clamp(40px, 5vw, 72px); line-height: 1.04; letter-spacing: -.035em;
  text-shadow: 0 2px 50px rgba(3,3,8,.95);
}
.hero__title span { display: block; opacity: 0; }
.hero__title .l1 { animation: fadeUp 1s cubic-bezier(.16,1,.3,1) .3s forwards; }
.hero__title .l2 {
  font-weight: 300; padding-bottom: .14em; line-height: 1.14;
  animation: fadeUp 1s cubic-bezier(.16,1,.3,1) .46s forwards;
}
.hero__cta-wrap { position: relative; margin-top: 40px; opacity: 0; animation: fadeUp 1s ease .9s forwards; }
.hero__cta { padding: 17px 34px; font-size: 18px; }
.hero__cta .free { font-size: 23px; }
.hero__foot {
  position: absolute; bottom: 40px; left: 0; right: 0;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 0 28px; opacity: 0; animation: fadeUp 1s ease 1.3s forwards;
}
.hero__foot p {
  max-width: 56ch; font-size: 15px; line-height: 1.6; font-weight: 500;
  color: #D8DBE8; text-shadow: 0 1px 20px rgba(3,3,8,1);
}
.hero__foot em { font-style: normal; font-weight: 600; color: #F5C242; }

/* gold gradient text */
.grad-text {
  background: linear-gradient(100deg, #F5C242, #F35A2A);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.grad-text--tri {
  background: linear-gradient(100deg, #F5C242, #FF8A5C 60%, #F35A2A);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---- 2 · Thesis ---- */
.thesis { min-height: 118vh; }
.thesis__body { position: relative; max-width: 620px; }
.thesis__eyebrow { font-size: 12px; letter-spacing: .3em; text-transform: uppercase; font-weight: 600; color: #F5F5F7; margin-bottom: 20px; }
.thesis__title {
  font-weight: 600; font-size: clamp(30px, 3.6vw, 48px); line-height: 1.08;
  letter-spacing: -.02em; text-wrap: balance; margin-bottom: 48px;
}
.tier {
  display: grid; grid-template-columns: 52px 1fr 150px; align-items: center;
  gap: 20px; padding: 22px 0 22px 20px; position: relative;
}
.tier--sub { border-top: 1px solid rgba(255,255,255,.05); }
.tier__bar {
  position: absolute; left: 0; top: 16px; bottom: 16px; width: 3px;
  border-radius: 2px; background: linear-gradient(#F0A830, #F35A2A);
}
.tier__num { font-weight: 600; font-size: 26px; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.tier__num--on { color: #F5F5F7; }
.tier__num--off { color: #54545f; }
.tier__name { font-size: 21px; font-weight: 600; letter-spacing: -.015em; }
.tier__name--on { color: #F3A83C; }
.tier__name--off { color: #8B8B96; }
.tier__desc { font-size: 14px; margin-top: 3px; }
.tier__desc--on { color: #A8A8B8; }
.tier__desc--off { color: #6E6E79; }
.tier__pill { justify-self: end; }
.tier__pill span {
  display: inline-flex; padding: 9px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 600; color: #F3A03A;
  border: 1px solid rgba(240,168,48,.5); background: rgba(240,168,48,.06);
}
.divider { padding: 18px 0 18px 20px; }
.divider__top { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #F0A830; margin-bottom: 11px; }
.divider__line { display: block; height: 1px; background: linear-gradient(90deg, rgba(240,168,48,.55), rgba(207,91,78,.28)); }
.divider__bot { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #CF5B4E; margin-top: 11px; }

/* ---- 3 · OrganAge ---- */
.organage { min-height: 124vh; }
.organage__body { position: relative; max-width: 540px; }
.organage__logo-wrap { display: inline-flex; align-items: flex-start; gap: 3px; }
.organage__logo { height: 26px; width: auto; }
.organage__tm { font-size: 11px; font-weight: 600; color: #9AA0B4; line-height: 1; }
.organage__title {
  margin-top: 26px; font-weight: 600; font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.1; letter-spacing: -.032em;
}
.organage__lede { margin-top: 18px; max-width: 44ch; font-size: 17px; line-height: 1.5; font-weight: 500; color: #C6CBDA; }
.systems { margin-top: 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 18px; max-width: 540px; }
.system { display: flex; align-items: center; gap: 9px; }
.system img { width: 26px; height: 26px; object-fit: contain; flex-shrink: 0; }
.system span { font-size: 13px; font-weight: 600; }
.organage__actions { margin-top: 34px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.organage__cta { padding: 16px 30px; font-size: 17px; box-shadow: 0 12px 40px rgba(243,90,42,.22); }
.organage__cta:hover { box-shadow: 0 16px 46px rgba(243,90,42,.42); }
.organage__cta .free { font-size: 21px; }
.organage__hipaa { margin-top: 16px; }

/* ---- 4 · Intervention / OptimAge ---- */
.intervention { min-height: 118vh; }
.intervention__body { position: relative; max-width: 540px; }
.intervention__eyebrow { font-size: 12px; letter-spacing: .32em; text-transform: uppercase; font-weight: 600; color: #F5C242; margin-bottom: 22px; }
.intervention__title { font-weight: 600; font-size: clamp(34px, 3.6vw, 52px); line-height: 1.06; letter-spacing: -.03em; }
.intervention__title .light { font-weight: 300; }
.intervention__lede { margin-top: 24px; max-width: 46ch; font-size: 17.5px; line-height: 1.55; color: #A8A8B8; }
.feat-list { list-style: none; margin-top: 22px; padding: 0; display: flex; flex-direction: column; gap: 13px; max-width: 46ch; }
.feat-list li { position: relative; padding-left: 22px; font-size: 17px; line-height: 1.5; color: #A8A8B8; }
.feat-list li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px;
  border-radius: 50%; background: #F5C242; box-shadow: 0 0 8px rgba(245,194,66,.55);
}
.pillars { margin-top: 30px; display: grid; grid-template-columns: repeat(3, 1fr); max-width: 520px; border-top: 1px solid rgba(255,255,255,.1); }
.pillar { padding: 16px 16px 0 0; }
.pillar + .pillar { padding-left: 16px; padding-right: 16px; border-left: 1px solid rgba(255,255,255,.08); }
.pillar:last-child { padding-right: 0; padding-left: 16px; }
.pillar__name { font-size: 13.5px; font-weight: 700; color: #F5F5F7; }
.pillar__desc { font-size: 12px; color: #6E6E7E; margin-top: 5px; line-height: 1.5; }
.powered { margin-top: 30px; display: inline-flex; align-items: center; gap: 12px; }
.powered__line { width: 28px; height: 1px; background: linear-gradient(90deg, rgba(245,194,66,.9), rgba(245,194,66,0)); }
.powered__label { font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: #6E6E7E; }
.powered__name { font-size: 15px; font-weight: 700; letter-spacing: -.01em; color: #F5C242; }

/* ---- 5 · Science ---- */
.science { min-height: 118vh; }
.science__panel {
  position: relative; max-width: 1060px; width: 100%;
  background: rgba(6,7,14,.5); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.08); border-radius: 26px;
  padding: 52px 52px 44px;
}
.science__head { text-align: center; max-width: 760px; margin: 0 auto; }
.science__title { font-weight: 600; font-size: clamp(28px, 3.2vw, 44px); line-height: 1.1; letter-spacing: -.03em; }
.science__lede { margin: 20px auto 0; max-width: 52ch; font-size: 16.5px; line-height: 1.6; color: #A8A8B8; }
.science__axes-label { margin-top: 20px; text-align: center; font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #F3A83C; }
.metrics {
  margin-top: 14px; display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.08); border-radius: 16px; overflow: hidden;
}
.metric { padding: 26px 22px; text-align: center; }
.metric + .metric { border-left: 1px solid rgba(255,255,255,.07); }
.metric__val { font-size: 29px; font-weight: 600; letter-spacing: -.02em; color: #F5C242; font-variant-numeric: tabular-nums; }
.metric__label { margin-top: 8px; font-size: 12.5px; line-height: 1.45; color: #6E6E7E; }
.papers { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.paper { display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 26px; }
.paper__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.paper__journal { font-size: 16px; font-weight: 600; color: #F5F5F7; }
.paper__tag { font-size: 10.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; border-radius: 100px; padding: 5px 11px; white-space: nowrap; }
.paper__tag--pub { color: #F3A83C; border: 1px solid rgba(243,168,60,.45); }
.paper__tag--review { color: #6E6E7E; border: 1px solid rgba(255,255,255,.14); }
.paper__body { margin: 16px 0 18px; font-size: 15px; line-height: 1.6; color: #A8A8B8; }
.paper__body--tight { margin-bottom: 14px; }
.paper__points { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.paper__points li { position: relative; padding-left: 20px; font-size: 13.5px; line-height: 1.45; color: #C0C5D4; }
.paper__points li::before { content: ""; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: #F5C242; }
.paper__cite { margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.07); font-size: 13px; color: #6E6E7E; font-style: italic; }

/* ---- 6 · Team ---- */
.team { min-height: 118vh; }
.team__inner { position: relative; max-width: 1180px; width: 100%; }
.team__head { max-width: 820px; margin: 0 auto; text-align: center; }
.team__title { font-size: clamp(25px, 2.5vw, 34px); font-weight: 600; line-height: 1.2; letter-spacing: -.02em; text-shadow: 0 2px 30px rgba(3,3,8,.9); }
.team__lede { margin: 18px auto 0; max-width: 52ch; font-size: 15px; line-height: 1.6; color: #A8A8B8; }
.team__grid { margin-top: 50px; display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; }
.person {
  width: 300px; display: flex; flex-direction: column;
  background: rgba(8,9,16,.6); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 20px;
}
.person__photo { aspect-ratio: 4/5; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); background: #0C0C14; }
.person__photo img { width: 100%; height: 100%; object-fit: cover; }
.person__photo img.zoom-david { object-position: 50% 0%; transform: scale(1.18); transform-origin: 50% 0%; }
.person__photo img.pos-abhay { object-position: 50% 22%; }
.person__photo img.pos-fei { object-position: 50% 24%; }
.person__info { margin-top: 18px; }
.person__name { font-size: 17px; font-weight: 700; color: #F5F5F7; }
.person__role { font-size: 13px; font-weight: 600; color: #F5C242; margin-top: 4px; }
.person__field { font-size: 13px; color: #A8A8B8; margin-top: 12px; line-height: 1.5; }
.person__affil { font-size: 12.5px; color: #6E6E7E; margin-top: 4px; line-height: 1.5; }

/* ---- 7 · Closing ---- */
.closing { height: 100vh; min-height: 640px; text-align: center; justify-content: center; }
.closing__glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 55% at 50% 55%, rgba(243,144,58,0.14) 0%, transparent 66%); }
.closing__inner { position: relative; max-width: 860px; padding: 0 28px; display: flex; flex-direction: column; align-items: center; }
.closing__title { font-weight: 600; font-size: clamp(32px, 4vw, 56px); line-height: 1.14; letter-spacing: -.03em; text-shadow: 0 2px 40px rgba(3,3,8,.95); }
.closing__title span { display: block; }
.closing__cta { margin-top: 42px; padding: 16px 32px; font-size: 16px; }
.closing__cta .free { font-size: 20px; }
.closing__hipaa { margin-top: 20px; font-size: 12px; }
.partners { margin-top: 48px; display: flex; flex-direction: column; align-items: center; gap: 15px; }
.partners__label { font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase; color: #6E6E7E; }

/* ---- 8 · Access (sample-report email gate) ---- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.access { min-height: auto; padding: 110px 56px; scroll-margin-top: 90px; }
.access__panel {
  position: relative; max-width: 640px; width: 100%; text-align: center;
  background: rgba(6,7,14,.5); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.08); border-radius: 26px;
  padding: 52px 48px;
}
.access__head { max-width: 480px; margin: 0 auto; }
.access__title { font-weight: 600; font-size: clamp(26px, 2.8vw, 36px); line-height: 1.14; letter-spacing: -.03em; }
.access__lede { margin: 16px auto 0; max-width: 46ch; font-size: 15.5px; line-height: 1.6; color: #A8A8B8; }
.access__form { margin-top: 32px; }
.access__field {
  display: flex; align-items: stretch; gap: 10px; max-width: 460px; margin: 0 auto;
}
.access__input {
  flex: 1; min-width: 0; font-family: inherit; font-size: 15px; color: #F5F5F7;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px; padding: 0 20px; height: 52px;
  transition: border-color .3s ease, background .3s ease;
}
.access__input::placeholder { color: #6E6E7E; }
.access__input:focus { outline: none; border-color: #F5C242; background: rgba(255,255,255,.08); }
.access__input:invalid:not(:placeholder-shown) { border-color: #CF5B4E; }
.access__submit { flex-shrink: 0; height: 52px; padding: 0 26px; font-size: 15px; border: none; cursor: pointer; font-family: inherit; }
.access__submit:disabled { opacity: .6; cursor: not-allowed; }
.access__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.access__note { margin-top: 16px; font-size: 12px; line-height: 1.5; color: #6E6E7E; }
.access__note.is-error { color: #E8867E; }
.access__note.is-success { color: #5CB1A2; font-weight: 600; }
.access__hipaa { margin-top: 26px; justify-content: center; }
@media (max-width: 560px) {
  .access__panel { padding: 40px 24px; }
  .access__field { flex-direction: column; }
  .access__submit { justify-content: center; }
}

/* ---- Footer ---- */
.footer { position: relative; z-index: 10; border-top: 1px solid rgba(255,255,255,.06); padding: 52px 56px; background: #030308; }
.footer__inner { max-width: 1180px; margin: 0 auto; display: flex; flex-direction: column; gap: 30px; }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer__wordmark { height: 44px; width: auto; opacity: .92; }
.footer__nav { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.footer__nav a { font-size: 14px; color: #A8A8B8; }
.footer__nav a:hover { color: #F5C242; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.06); padding-top: 26px; }
.footer__legal { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__copy { font-size: 12px; color: #6E6E7E; }
.footer__hipaa { font-size: 11px; }
.footer__tag { font-size: 12px; color: #6E6E7E; letter-spacing: .14em; text-transform: uppercase; }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .nav { padding: 0 22px; }
  .nav__links { gap: 16px; }
  .nav__links .nav__link { display: none; }
  .section { padding: 90px 24px; }
  .section--right { justify-content: center; }
  .rail { display: none; }
  .systems { grid-template-columns: repeat(2, 1fr); }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(3), .metric:nth-child(4) { border-top: 1px solid rgba(255,255,255,.07); }
  .metric:nth-child(3) { border-left: none; }
  .papers { grid-template-columns: 1fr; }
  .science__panel { padding: 34px 24px; }
}
