/* ==========================================================================
   MARCI BUSES — design tokens
   Paleta: navy (marca), turquesa (color real de la flota), dorado (logo)
   ========================================================================== */
:root {
  --navy-950: #0b2439;
  --navy-900: #0f2c46;
  --navy-700: #1d5073;
  --navy-500: #326a91;
  --teal-600: #0a8f8a;
  --teal-500: #0fa3a3;
  --teal-100: #e3f5f3;
  --gold-500: #bd9456;
  --gold-300: #d9b878;
  --paper: #ffffff;
  --paper-alt: #f3f6f8;
  --ink: #16283a;
  --ink-soft: #4a5b6c;
  --line: #dde4e9;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --container: 1180px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; }
p { line-height: 1.6; margin: 0; }
button { font-family: var(--font-body); cursor: pointer; }
:focus-visible { outline: 2px solid var(--teal-600); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ============ layout helpers ============ */
.section { padding: 96px 24px; }
.section--alt { background: var(--paper-alt); }
.section__inner { max-width: var(--container); margin: 0 auto; }
.section__title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin: 14px 0 28px;
  max-width: 18ch;
}
.section__body { font-size: 17px; color: var(--ink-soft); max-width: 60ch; }
.section__body--wide { max-width: 72ch; margin-bottom: 40px; }

.grid-2 { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; } }

/* "letrero de destino" — señal luminosa de destino del bus, usada como eyebrow */
.sign-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: #ffce7a;
  background: var(--navy-950);
  padding: 8px 14px 8px 12px;
  border-radius: 5px;
  text-shadow: 0 0 8px rgba(255,206,122,.55);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), inset 0 -10px 16px rgba(0,0,0,.25);
}
.sign-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #ffce7a; box-shadow: 0 0 6px 1px rgba(255,206,122,.9);
  animation: sign-pulse 2.4s ease-in-out infinite;
}
@keyframes sign-pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.sign-tag--dark { color: #ffce7a; background: var(--navy-950); }

/* ============ buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--teal-600); color: #fff; box-shadow: 0 10px 20px -8px rgba(10,143,138,.55); }
.btn--primary:hover { background: var(--teal-500); box-shadow: 0 12px 24px -8px rgba(10,143,138,.6); }
.btn--dark { background: var(--navy-900); color: #fff; box-shadow: 0 10px 20px -10px rgba(11,36,57,.5); }
.btn--dark:hover { background: var(--navy-700); }
.btn--outline-light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,.12); }
.btn--ghost { border-color: var(--line); color: var(--navy-900); }
.btn--ghost:hover { border-color: var(--teal-600); color: var(--teal-600); }
.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.inline-link { color: var(--teal-600); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ============ nav ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(11,36,57,0.0);
  transition: background .25s ease, box-shadow .25s ease;
}
.nav.is-scrolled { background: rgba(11,36,57,0.92); backdrop-filter: blur(8px); box-shadow: 0 6px 24px rgba(0,0,0,.15); }
.nav__inner {
  max-width: var(--container); margin: 0 auto; padding: 10px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo { height: 68px; width: auto; border-radius: 6px; }
.nav__links { display: flex; gap: 28px; font-size: 14.5px; font-weight: 500; color: #fff; }
.nav__links a { opacity: .92; }
.nav__links a:hover { opacity: 1; color: var(--teal-500); }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__quote { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.nav__quote:hover { border-color: var(--teal-500); color: var(--teal-500); }
.cart-toggle {
  position: relative; background: none; border: none; color: #fff; width: 38px; height: 38px;
  display: grid; place-items: center; border-radius: 50%;
}
.cart-toggle:hover { background: rgba(255,255,255,.12); }
.cart-toggle svg { width: 22px; height: 22px; }
.cart-toggle__count {
  position: absolute; top: -2px; right: -2px; background: var(--teal-600); color: #fff;
  font-size: 11px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-mono);
}
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav__burger span { width: 22px; height: 2px; background: #fff; display: block; }

@media (max-width: 880px) {
  .nav__links {
    position: fixed; top: 72px; left: 0; right: 0; background: var(--navy-950);
    flex-direction: column; padding: 20px 24px; gap: 18px;
    transform: translateY(-130%); transition: transform .25s ease;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__quote { display: none; }
  .nav__burger { display: flex; }
}

/* ============ hero ============ */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; padding: 140px 24px 100px;
  color: #fff; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; background: var(--navy-950); }
.hero__media img { width: 100%; height: 100%; object-fit: contain; animation: hero-zoom 18s ease-out forwards; }
@keyframes hero-zoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,36,57,.72) 0%, rgba(11,36,57,.55) 45%, rgba(11,36,57,.92) 100%);
}
.hero__content { position: relative; z-index: 1; max-width: 720px; animation: hero-rise .9s ease-out; }
@keyframes hero-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.hero__title { font-size: clamp(36px, 6vw, 64px); line-height: 1.05; margin: 18px 0 20px; }
.hero__subtitle { font-size: 17px; color: rgba(255,255,255,.86); max-width: 54ch; margin-bottom: 34px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.75); animation: bob 2.2s ease-in-out infinite; z-index: 1;
}
.hero__scroll svg { width: 22px; height: 22px; }
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,6px); } }

/* ============ nosotros ============ */
.pull-quote {
  font-family: var(--font-display); font-weight: 500; font-size: 21px; line-height: 1.5;
  color: var(--navy-900); margin: 0 0 22px; padding-left: 20px;
  border-left: 3px solid var(--teal-600);
}
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.stat-row__item { display: flex; flex-direction: column; gap: 4px; }
.stat-row__num { font-family: var(--font-mono); font-size: 26px; font-weight: 600; color: var(--teal-600); }
.stat-row__label { font-size: 13px; color: var(--ink-soft); }
@media (max-width: 620px) { .stat-row { grid-template-columns: repeat(2,1fr); } }

.grid-2__media { position: relative; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: 0 16px 40px -20px rgba(11,36,57,.4); aspect-ratio: 4/3; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.media-main { border-radius: var(--radius); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.media-float {
  position: absolute; width: 52%; border-radius: var(--radius); border: 5px solid var(--paper);
  bottom: -30px; right: -24px; aspect-ratio: 4/3; object-fit: cover;
  box-shadow: 0 20px 40px rgba(15,44,70,.25);
}
@media (max-width: 900px) { .media-float { right: 0; } }

/* ============ flota ============ */
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 48px; }
@media (max-width: 980px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fleet-grid { grid-template-columns: 1fr; } }

.fleet-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 10px 24px -16px rgba(11,36,59,.3);
  transition: transform .25s ease, box-shadow .25s ease;
}
.fleet-card:hover { transform: translateY(-5px); box-shadow: 0 20px 34px -16px rgba(11,36,59,.35); }
.fleet-card__img { aspect-ratio: 4/3; overflow: hidden; }
.fleet-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.fleet-card:hover .fleet-card__img img { transform: scale(1.06); }
.fleet-card__body { padding: 18px 20px 22px; }
.fleet-card__seats {
  font-family: var(--font-mono); font-size: 13px; color: var(--ink-soft); margin-bottom: 8px;
}
.fleet-card__seats span { font-size: 30px; font-weight: 700; color: var(--teal-600); margin-right: 4px; }
.fleet-card__body h3 { font-size: 17px; margin-bottom: 6px; }
.fleet-card__body p { font-size: 13.5px; color: var(--ink-soft); }

.fleet-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 920px; }
@media (max-width: 760px) { .fleet-specs { grid-template-columns: 1fr; } }
.fleet-specs__col h3 { font-size: 17px; margin-bottom: 16px; }
.fleet-specs__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.fleet-specs__list li { position: relative; padding-left: 30px; font-size: 14.5px; color: var(--ink-soft); }
.fleet-specs__list li::before {
  position: absolute; left: 0; top: -1px; width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: 11px; font-weight: 700; color: #fff;
}
.fleet-specs__list--check li::before { content: "✓"; background: var(--teal-600); }
.fleet-specs__list--shield li::before { content: "★"; background: var(--gold-500); }
.fleet-note { margin-top: 26px; font-size: 13px; color: var(--ink-soft); font-style: italic; }
/* ============ clientes ============ */
.client-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 48px; }
@media (max-width: 900px) { .client-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .client-grid { grid-template-columns: 1fr; } }
.client-plate {
  background: var(--navy-950); border-radius: 10px; padding: 20px 18px;
  display: flex; flex-direction: column; gap: 8px; min-height: 108px;
  box-shadow: 0 10px 24px -12px rgba(11,36,57,.5);
  transition: transform .25s ease, box-shadow .25s ease;
}
.client-plate:hover { transform: translateY(-4px); box-shadow: 0 16px 28px -12px rgba(11,36,57,.6); }
.client-plate--outline { background: transparent; border: 1.5px dashed var(--navy-700); box-shadow: none; }
.client-plate--outline:hover { border-color: var(--teal-600); transform: translateY(-4px); }
.client-plate--outline .client-plate__eyebrow { color: var(--teal-600); }
.client-plate--outline .client-plate__name { color: var(--navy-900); }
.client-plate__eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--gold-300); text-transform: uppercase; }
.client-plate__name { color: #fff; font-weight: 600; font-size: 15.5px; line-height: 1.35; }
.client-plate__meta { font-family: var(--font-mono); font-size: 12px; color: var(--teal-500); }

.client-photos { display: grid; grid-template-columns: 1fr 1.4fr; gap: 18px; margin-top: 40px; height: 380px; }
.client-photos__item {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 14px 30px -16px rgba(11,36,57,.4);
}
.client-photos__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.client-photos__item:hover img { transform: scale(1.05); }
@media (max-width: 620px) {
  .client-photos { grid-template-columns: 1fr; height: auto; }
  .client-photos__item { height: 320px; }
}

.collage-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 14px;
  height: 460px;
}
.collage-grid__item {
  border-radius: var(--radius); overflow: hidden; background: var(--paper-alt);
  box-shadow: 0 14px 30px -16px rgba(11,36,57,.4);
}
.collage-grid__item--big { grid-row: span 2; }
.collage-grid__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.collage-grid__item:hover img { transform: scale(1.05); }
@media (max-width: 720px) {
  .collage-grid { grid-template-columns: 1fr; grid-template-rows: 220px 160px 160px; height: auto; }
  .collage-grid__item--big { grid-row: auto; }
}
.feature-photo__caption--static {
  position: static; background: none; color: var(--ink-soft); font-size: 14px;
  padding: 14px 0 0; text-align: center;
}

/* ============ por qué escogernos — route line ============ */
.route { position: relative; padding-left: 44px; max-width: 760px; }
.route__line {
  position: absolute; left: 15px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, var(--teal-600), var(--line) 90%);
}
.route__stop { position: relative; padding-bottom: 40px; display: flex; gap: 22px; }
.route__stop:last-child { padding-bottom: 0; }
.route__marker {
  position: absolute; left: -44px; top: -2px; width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy-950); color: var(--teal-500); font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  display: grid; place-items: center; z-index: 1;
  box-shadow: 0 0 0 4px var(--paper), 0 6px 14px -6px rgba(11,36,57,.5);
  transition: background .2s ease, color .2s ease;
}
.section--alt .route__marker { box-shadow: 0 0 0 4px var(--paper-alt), 0 6px 14px -6px rgba(11,36,57,.5); }
.route__stop:hover .route__marker { background: var(--teal-600); color: #fff; }
.route__content h3 { font-size: 18px; margin-bottom: 6px; }
.route__content p { color: var(--ink-soft); font-size: 15px; max-width: 56ch; }

/* ============ eventos ============ */
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .event-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .event-grid { grid-template-columns: 1fr; } }

.event-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  display: flex; flex-direction: column;
  box-shadow: 0 10px 24px -16px rgba(11,36,59,.3);
  transition: transform .25s ease, box-shadow .25s ease;
}
.event-card:hover { transform: translateY(-5px); box-shadow: 0 20px 34px -16px rgba(11,36,59,.35); }
.event-card__img { aspect-ratio: 3/4; overflow: hidden; }
.event-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.event-card:hover .event-card__img img { transform: scale(1.06); }
.event-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.event-card__cat { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--teal-600); text-transform: uppercase; }
.event-card__title { font-size: 18px; }
.event-card__desc { font-size: 14px; color: var(--ink-soft); flex: 1; }
.event-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.event-card__price { font-family: var(--font-mono); font-weight: 600; font-size: 17px; color: var(--navy-900); }
.event-card__price span { font-size: 11px; color: var(--ink-soft); font-family: var(--font-body); display: block; }
.event-card__add { background: var(--navy-900); color: #fff; border: none; padding: 10px 18px; border-radius: 999px; font-size: 13.5px; font-weight: 600; transition: background .2s ease, transform .15s ease; }
.event-card__add:hover { background: var(--teal-600); transform: translateY(-1px); }
.event-card__add.is-added { background: var(--teal-600); }

/* ============ cotizar / form ============ */
.quote-form { background: var(--paper-alt); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 16px; box-shadow: 0 16px 40px -24px rgba(11,36,57,.35); }
.quote-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--navy-900); }
.quote-form input, .quote-form textarea {
  font-family: var(--font-body); font-size: 14.5px; padding: 12px 14px; border-radius: 8px;
  border: 1px solid var(--line); background: #fff; resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.quote-form input:focus, .quote-form textarea:focus { border-color: var(--teal-600); box-shadow: 0 0 0 3px var(--teal-100); outline: none; }
.quote-form__note { font-size: 12px; color: var(--ink-soft); margin: 0; }

/* ============ cart drawer ============ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(11,36,57,.45); z-index: 90;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(400px, 100%); background: #fff; z-index: 95;
  display: flex; flex-direction: column; transform: translateX(100%); transition: transform .3s ease;
  box-shadow: -20px 0 50px rgba(0,0,0,.18);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-drawer__head h3 { font-size: 19px; }
.cart-drawer__head button { background: none; border: none; font-size: 26px; line-height: 1; color: var(--ink-soft); }
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 10px 24px; }
.cart-drawer__empty { color: var(--ink-soft); font-size: 14px; padding: 30px 0; text-align: center; }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.cart-item__info { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.cart-item__title { font-size: 14.5px; font-weight: 600; }
.cart-item__price { font-family: var(--font-mono); font-size: 13px; color: var(--ink-soft); }
.cart-item__qty { display: flex; align-items: center; gap: 10px; }
.cart-item__qty button { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--line); background: #fff; font-size: 14px; }
.cart-item__remove { align-self: flex-start; font-size: 12px; color: var(--ink-soft); text-decoration: underline; background: none; border: none; }
.cart-drawer__foot { padding: 20px 24px 26px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.cart-drawer__total { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 18px; font-weight: 600; }
.cart-drawer__hint { font-size: 11.5px; color: var(--ink-soft); text-align: center; margin: 0; }

.transfer-info { border-top: 1px solid var(--line); margin-top: 4px; padding-top: 14px; }
.transfer-info__label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal-600); text-align: center; margin: 0 0 10px;
}
.transfer-info__list { display: flex; flex-direction: column; gap: 6px; margin: 0; }
.transfer-info__list > div { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 12.5px; }
.transfer-info__list dt { color: var(--ink-soft); flex-shrink: 0; }
.transfer-info__list dd { margin: 0; display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-weight: 600; color: var(--navy-900); text-align: right; }
.copy-btn {
  font-family: var(--font-body); font-size: 10.5px; font-weight: 600; letter-spacing: .02em;
  color: var(--teal-600); background: var(--teal-100); border: none; border-radius: 999px;
  padding: 4px 9px; transition: background .15s ease, color .15s ease; flex-shrink: 0;
}
.copy-btn:hover { background: var(--teal-600); color: #fff; }
.copy-btn.is-copied { background: var(--navy-900); color: #fff; }
.transfer-info__copy-all { width: 100%; margin-top: 10px; }
.transfer-info__note { font-size: 11px; color: var(--ink-soft); text-align: center; margin: 10px 0 0; }

/* ============ scroll reveal (progressive enhancement) ============ */
html.js-reveal .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
html.js-reveal .reveal.is-visible { opacity: 1; transform: none; }

/* ============ footer ============ */
.footer { background: var(--navy-950); color: rgba(255,255,255,.85); padding: 64px 24px 24px; }
.footer__inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__logo { height: 46px; width: auto; border-radius: 6px; }
.footer__brand p { font-size: 13.5px; color: rgba(255,255,255,.6); }
.footer__col h4 { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--teal-500); margin-bottom: 14px; }
.footer__col p { margin-bottom: 8px; font-size: 14px; }
.footer__col a:hover { color: var(--teal-500); }
.footer__bottom { max-width: var(--container); margin: 40px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12.5px; color: rgba(255,255,255,.55); }
