/* =========================================================================
   Secciones: Bento · Sinergia · Sistema · Programas · Resultados · CTA
   ========================================================================= */

/* SECCIÓN 01 — Bento Grid "Life Engineering" -------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.bento-card { padding: 30px 30px 26px; display: flex; flex-direction: column; gap: 14px; transition: border-color 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.45s var(--ease); }
.bento-card.b1 { grid-column: span 4; }              /* Mentalidad */
.bento-card.b2 { grid-column: span 4; }              /* Fitness */
.bento-card.b-tall { grid-column: span 4; grid-row: span 2; } /* Espiritualidad */
.bento-card.b3 { grid-column: span 4; }              /* Nutrición */
.bento-card.b4 { grid-column: span 4; }              /* Finanzas */
.bento-card.b-wide { grid-column: span 12; flex-direction: row; align-items: center; gap: 26px; } /* Mentoría */
.bento-card.b-wide .bento-ic { flex: none; }
.bento-card.b-wide .bento-wide-body { flex: 1; min-width: 0; }
.bento-card.b-wide .meter { margin-top: 0; padding-top: 0; min-width: 220px; max-width: 300px; }

/* Efecto hover de las tarjetas del método */
.bento-card::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  opacity: 0; transition: opacity 0.45s var(--ease);
  background:
    radial-gradient(120% 80% at 50% -10%, color-mix(in srgb, var(--gold) 16%, transparent), transparent 60%);
}
.bento-card:hover { border-color: var(--line); background: color-mix(in srgb, var(--gold) 4%, var(--panel)); box-shadow: 0 30px 70px rgba(0,0,0,0.55), 0 0 0 1px var(--line-soft), var(--glow); }
.bento-card:hover::after { opacity: 1; }
.bento-card .bento-ic { transition: transform 0.5s var(--spring), background 0.4s, color 0.4s, box-shadow 0.4s; }
.bento-card:hover .bento-ic { transform: scale(1.12) rotate(-5deg); background: color-mix(in srgb, var(--gold) 16%, transparent); box-shadow: 0 0 22px color-mix(in srgb, var(--gold) 30%, transparent); }
.bento-card h3 em, .bento-card .bento-num { transition: color 0.4s, text-shadow 0.4s; }
.bento-card:hover .bento-num { color: var(--gold); }
@media (max-width: 980px) {
  .bento-card.b1, .bento-card.b2, .bento-card.b-tall, .bento-card.b3, .bento-card.b4, .bento-card.b-wide {
    grid-column: span 12; grid-row: auto;
  }
  .bento-card.b-wide { flex-direction: column; align-items: stretch; }
  .bento-card.b-wide .meter { max-width: none; }
}

.bento-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.bento-num { font-family: var(--font-display); font-size: 15px; letter-spacing: 2px; color: color-mix(in srgb, var(--gold) 55%, transparent); }
.bento-ic {
  width: 46px; height: 46px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  background: color-mix(in srgb, var(--gold) 9%, transparent);
  border: 1px solid var(--line-soft);
}
.bento-card h3 {
  margin: 0;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.6px; text-transform: uppercase; line-height: 1.06;
}
.bento-card h3 em { font-style: normal; color: var(--gold); }
.bento-card p { margin: 0; color: var(--muted); font-size: 14.5px; text-wrap: pretty; }
.bento-card .meter { margin-top: auto; padding-top: 16px; gap: 12px; }
.bento-card .bento-tag {
  align-self: flex-start;
  font-size: 10.5px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--line-soft);
  background: color-mix(in srgb, var(--gold) 6%, transparent);
  border-radius: 999px; padding: 5px 12px;
}
.bento-card .app-chip {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 4px;
  font-size: 12px; font-weight: 700;
  color: var(--gold-light);
  border: 1px dashed var(--line);
  border-radius: 12px; padding: 10px 14px;
}
.bento-card .app-chip .ic { display: inline-flex; color: var(--gold); }

/* SECCIÓN 02 — Sinergia (split screen) -------------------------------------- */
.synergy-wrap { perspective: 1200px; }
.synergy-split {
  display: flex; gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  min-height: 480px;
}
.syn-side {
  flex: 1;
  position: relative;
  padding: clamp(28px, 4vw, 52px);
  display: flex; flex-direction: column; justify-content: flex-end; gap: 16px;
  transition: flex 0.7s var(--ease);
  overflow: hidden;
  min-width: 0;
}
.synergy-split:hover .syn-side { flex: 0.78; }
.synergy-split .syn-side:hover { flex: 1.45; }
.syn-side.pro { background: linear-gradient(160deg, #0d0d10, #08080a); }
.syn-side.per { background: linear-gradient(200deg, color-mix(in srgb, var(--gold) 10%, #0a0a0c), #08080a); border-left: 1px solid var(--line); }
.syn-media {
  position: absolute; inset: 0;
  opacity: 0.34;
  transition: opacity 0.7s var(--ease), transform 0.9s var(--ease);
  pointer-events: none;
}
.syn-side.per .syn-media { pointer-events: auto; }
.syn-media img, .syn-media image-slot { width: 100%; height: 100%; object-fit: cover; display: block; }
.syn-media::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.92) 86%);
}
.syn-side:hover .syn-media { opacity: 0.6; transform: scale(1.04); }
.syn-label {
  position: relative;
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold);
}
.syn-side h3 {
  position: relative; margin: 0;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: 0.6px; text-transform: uppercase; line-height: 1.05;
}
.syn-side p { position: relative; margin: 0; color: var(--muted); font-size: 14.5px; max-width: 420px; text-wrap: pretty; }
.syn-side p strong { color: var(--text); }
@media (max-width: 820px) {
  .synergy-split { flex-direction: column; }
  .synergy-split:hover .syn-side, .synergy-split .syn-side:hover { flex: 1; }
  .syn-side { min-height: 320px; }
  .syn-side.per { border-left: 0; border-top: 1px solid var(--line); }
}

/* SECCIÓN 03 — El Sistema (rutina diaria) ------------------------------------ */
.sys-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: start; }
@media (max-width: 920px) { .sys-grid { grid-template-columns: 1fr; } }

.timeline { display: grid; gap: 0; position: relative; }
.t-item {
  display: grid; grid-template-columns: 86px 18px 1fr;
  gap: 14px; align-items: start;
  padding: 17px 0;
}
.t-time {
  font-family: var(--font-display);
  font-size: 19px; letter-spacing: 1px;
  color: var(--gold-light);
  text-align: right;
  padding-top: 1px;
}
.t-rail { position: relative; display: flex; justify-content: center; align-self: stretch; }
.t-rail::before {
  content: ''; position: absolute; top: 0; bottom: -1px; width: 1px;
  background: linear-gradient(180deg, var(--line), var(--line-soft));
}
.t-item:first-child .t-rail::before { top: 9px; }
.t-item:last-child .t-rail::before { bottom: auto; height: 9px; }
.t-dot {
  position: relative; z-index: 1;
  width: 9px; height: 9px; margin-top: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px color-mix(in srgb, var(--gold) 65%, transparent);
  transition: transform 0.4s var(--spring), box-shadow 0.4s;
}
.t-body h4 { margin: 0 0 4px; font-size: 15.5px; font-weight: 800; letter-spacing: 0.2px; }
.t-body p { margin: 0; color: var(--muted); font-size: 13.5px; text-wrap: pretty; }

/* — Variante desplegable — */
.t-item.expandable { display: block; padding: 0; }
.t-item.expandable .t-head {
  display: grid; grid-template-columns: 86px 18px 1fr auto;
  gap: 14px; align-items: start;
  padding: 16px 0;
  cursor: pointer;
  background: none; border: 0; width: 100%; text-align: left;
  font: inherit; color: inherit;
  transition: opacity 0.3s;
}
.t-item.expandable .t-head:hover .t-body h4 { color: var(--gold-light); }
.t-item.expandable .t-head .t-body h4 { transition: color 0.3s; display: flex; align-items: center; gap: 9px; }
.t-item.expandable .t-rail::before { top: 0; bottom: 0; height: auto; }
.t-item.expandable:first-child .t-rail::before { top: 9px; }
.t-chev {
  align-self: center;
  width: 26px; height: 26px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold);
  transition: transform 0.45s var(--spring), background 0.3s, border-color 0.3s;
}
.t-item.expandable.open .t-chev { transform: rotate(180deg); background: color-mix(in srgb, var(--gold) 12%, transparent); border-color: var(--gold); }
.t-item.expandable.open .t-dot { transform: scale(1.5); box-shadow: 0 0 16px color-mix(in srgb, var(--gold) 85%, transparent); }
.t-tag {
  font-family: var(--font); font-size: 9.5px; font-weight: 800;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--gold); opacity: 0.7;
}

.t-expand {
  max-height: 0; overflow: hidden;
  transition: max-height 0.6s var(--ease);
}
.t-expand-inner {
  display: grid; grid-template-columns: 150px 1fr; gap: 18px;
  margin: 0 0 8px 100px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  background: color-mix(in srgb, var(--gold) 4%, rgba(255,255,255,0.015));
  transform: translateY(10px); opacity: 0;
  transition: transform 0.55s var(--ease) 0.05s, opacity 0.55s var(--ease) 0.05s;
}
.t-item.expandable.open .t-expand-inner { transform: translateY(0); opacity: 1; }
.t-expand-inner image-slot, .t-expand-inner img {
  width: 100%; height: 130px; object-fit: cover;
  border-radius: 11px; display: block;
}
.t-expand-detail h5 { margin: 0 0 6px; font-size: 13.5px; font-weight: 800; color: var(--gold-light); letter-spacing: 0.3px; }
.t-expand-detail p { margin: 0 0 10px; color: var(--muted); font-size: 13px; line-height: 1.6; text-wrap: pretty; }
.t-expand-detail p:last-child { margin-bottom: 0; }
.t-expand-detail .t-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.t-expand-detail .t-chips span {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.4px;
  color: var(--text);
  border: 1px solid var(--line-soft);
  border-radius: 999px; padding: 4px 11px;
}
@media (max-width: 560px) {
  .t-item.expandable .t-head { grid-template-columns: 60px 16px 1fr auto; gap: 10px; }
  .t-time { font-size: 16px; }
  .t-expand-inner { grid-template-columns: 1fr; margin-left: 0; }
  .t-expand-inner image-slot, .t-expand-inner img { height: 170px; }
}

.sys-quote {
  margin-top: 26px;
  padding: 22px 26px;
  font-size: 15.5px; font-weight: 600; line-height: 1.6;
  color: var(--text);
}
.sys-quote em { font-style: normal; color: var(--gold); }

.sys-portrait { position: sticky; top: 110px; }
.sys-portrait figure { margin: 0; }
.sys-portrait img { width: 100%; display: block; border-radius: calc(var(--radius) - 6px); }
.sys-portrait .portrait-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px 14px;
}
.sys-portrait .portrait-meta strong { display: block; font-size: 15px; }
.sys-portrait .portrait-meta .role { font-size: 12px; color: var(--muted); }
.sys-portrait .portrait-meta .uni {
  font-family: var(--font-display); font-size: 14px; letter-spacing: 2px;
  color: var(--gold); border: 1px solid var(--line); border-radius: 10px; padding: 6px 12px;
}
.sys-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.sys-stats .stat { padding: 16px 14px; text-align: center; }
.sys-stats .n { font-family: var(--font-display); font-size: 27px; color: var(--gold-light); display: block; line-height: 1; }
.sys-stats .n .suf { font-size: 17px; color: var(--gold); }
.sys-stats .l { font-size: 10.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); display: block; margin-top: 7px; }

/* SECCIÓN 04 — Programas ------------------------------------------------------- */
.prog-switch {
  position: relative;
  display: inline-grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  padding: 5px;
  margin: 0 auto 44px;
  isolation: isolate;
}
.prog-switch-row { display: flex; justify-content: center; }
.prog-switch button {
  position: relative; z-index: 1;
  appearance: none; border: 0; background: transparent;
  font-family: var(--font); font-weight: 800; font-size: 13px; letter-spacing: 0.4px;
  color: var(--muted);
  padding: 12px 26px; border-radius: 999px;
  cursor: pointer;
  transition: color 0.35s;
  white-space: nowrap;
}
.prog-switch button.active { color: #0a0a0b; }
.prog-switch .switch-thumb {
  position: absolute; z-index: 0;
  top: 5px; bottom: 5px; left: 5px;
  width: calc(50% - 5px);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: var(--glow);
  transition: transform 0.55s cubic-bezier(0.34, 1.45, 0.5, 1);
}
.prog-switch[data-active="1"] .switch-thumb { transform: translateX(100%); }

.prog-viewport { overflow: hidden; margin: 0 -8px; padding: 8px; }
.prog-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.3, 1.25, 0.45, 1);
}
.prog-panel { flex: 0 0 100%; min-width: 0; padding: 0 0; opacity: 0.25; transform: scale(0.96); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.prog-panel.active { opacity: 1; transform: scale(1); }

.prog-card {
  max-width: 880px; margin: 0 auto;
  padding: clamp(30px, 4vw, 48px);
  display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(24px, 3.5vw, 44px);
}
@media (max-width: 820px) { .prog-card { grid-template-columns: 1fr; } }
.prog-card .ptag {
  align-self: flex-start; justify-self: start;
  font-size: 10.5px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--line-soft);
  background: color-mix(in srgb, var(--gold) 7%, transparent);
  border-radius: 999px; padding: 6px 13px;
  margin-bottom: 16px; display: inline-block;
}
.prog-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 0.5px; text-transform: uppercase; line-height: 1.05;
}
.prog-card h3 em { font-style: normal; color: var(--gold); }
.prog-card .prog-desc { color: var(--muted); font-size: 14.5px; margin: 0 0 22px; text-wrap: pretty; }
.prog-feats { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.prog-feats li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--text); }
.prog-feats .ic { color: var(--gold); display: inline-flex; flex: none; margin-top: 2px; }

.prog-side {
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
  border-left: 1px solid var(--line-soft);
  padding-left: clamp(20px, 3vw, 40px);
}
@media (max-width: 820px) { .prog-side { border-left: 0; border-top: 1px solid var(--line-soft); padding-left: 0; padding-top: 24px; } }
.prog-price .desde { font-size: 11.5px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 4px; }
.prog-price .amount { font-family: var(--font-display); font-size: clamp(40px, 4.6vw, 56px); line-height: 1; color: var(--gold-light); }
.prog-price .per { font-size: 13px; color: var(--muted); font-weight: 700; }
.prog-note { font-size: 12px; color: var(--muted); }

/* SECCIÓN 04b — Planes (3 niveles: Gratis / Básico / Premium) ---------------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 940px) { .plans { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }

.plan {
  position: relative;
  padding: 32px 28px 30px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.4s, background 0.4s;
}
.plan:hover { transform: translateY(-7px); border-color: var(--line); box-shadow: 0 34px 74px rgba(0,0,0,0.6); }
.plan.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, color-mix(in srgb, var(--gold) 12%, var(--panel-solid)), var(--panel-solid));
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), var(--glow);
}
@media (min-width: 941px) { .plan.featured { transform: scale(1.035); } .plan.featured:hover { transform: scale(1.035) translateY(-7px); } }
.plan.featured::before {
  content: 'Más completo';
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  font-size: 10px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase;
  color: #0a0a0b;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 6px 14px; border-radius: 999px;
  box-shadow: var(--glow);
  white-space: nowrap;
}
.plan-head { display: flex; flex-direction: column; gap: 6px; padding-bottom: 18px; border-bottom: 1px solid var(--line-soft); }
.plan-tier { font-size: 10.5px; font-weight: 800; letter-spacing: 2.2px; text-transform: uppercase; color: var(--gold); }
.plan-name { font-family: var(--font-display); font-weight: 400; font-size: clamp(22px, 2.2vw, 27px); letter-spacing: 0.4px; text-transform: uppercase; line-height: 1.05; margin: 2px 0 0; }
.plan-name em { font-style: normal; color: var(--gold); }
.plan-sub { font-size: 12.5px; color: var(--muted); }

.plan-price { display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.plan-price .desde { width: 100%; font-size: 10.5px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.plan-price .amount { font-family: var(--font-display); font-size: clamp(34px, 3.6vw, 46px); line-height: 1; color: var(--gold-light); }
.plan-price .per { font-size: 12.5px; color: var(--muted); font-weight: 700; }
.plan-price.free .amount { color: var(--gold-light); }

.plan-feats { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; flex: 1; }
.plan-feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--text); text-wrap: pretty; }
.plan-feats li.muted { color: var(--muted); }
.plan-feats .ic { color: var(--gold); display: inline-flex; flex: none; margin-top: 2px; }
.plan-feats .ic.dim { color: var(--muted); }

.plan .btn-primary, .plan .btn-ghost { width: 100%; justify-content: center; }

.plans-team {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  margin-top: 18px;
  padding: 20px 26px;
}
.plans-team .pt-text strong { display: block; font-size: 15px; }
.plans-team .pt-text span { font-size: 13px; color: var(--muted); }
@media (max-width: 560px) { .plans-team { flex-direction: column; align-items: stretch; text-align: center; } }

/* SECCIÓN 05 — Resultados -------------------------------------------------------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card { padding: 28px 26px; display: flex; flex-direction: column; gap: 18px; }
.testi-card blockquote { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--text); text-wrap: pretty; }
.testi-card .quote-mark { font-family: var(--font-display); font-size: 44px; line-height: 0.6; color: var(--gold); display: block; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-who .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; color: #0a0a0b;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  flex: none;
}
.testi-who strong { display: block; font-size: 14px; }
.testi-who span span { font-size: 12px; color: var(--muted); }
.testi-card .meter { gap: 11px; padding-top: 14px; border-top: 1px solid var(--line-soft); margin-top: auto; }

/* SECCIÓN 06 — CTA final ----------------------------------------------------------- */
.final-panel {
  text-align: center;
  padding: clamp(48px, 7vw, 90px) clamp(24px, 5vw, 70px);
  background:
    radial-gradient(ellipse 70% 90% at 50% -10%, color-mix(in srgb, var(--gold) 13%, transparent), transparent 60%),
    var(--panel);
}
.final-panel .title { font-size: clamp(34px, 5.6vw, 66px); }
.final-panel .lead { margin-left: auto; margin-right: auto; }
.final-ctas { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.final-meta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 30px; }
.meta-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; color: var(--text); text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 999px; padding: 9px 16px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.meta-chip:hover { border-color: var(--gold); transform: translateY(-2px); }
.meta-chip .ic { color: var(--gold); display: inline-flex; }
.plazas {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11.5px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 26px;
}
.plazas .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
@media (prefers-reduced-motion: no-preference) { .plazas .dot { animation: dotPulse 2s infinite; } }

/* Footer ----------------------------------------------------------------------------- */
footer {
  display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
  padding: 30px clamp(20px, 5vw, 48px) 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12.5px; color: var(--muted);
}
.foot-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--text); }
.foot-brand img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line-soft); }
.foot-links { display: flex; gap: 18px; }
.foot-links a { color: var(--muted); text-decoration: none; transition: color 0.25s; }
.foot-links a:hover { color: var(--gold-light); }
.foot-cross {
  width: 100%; text-align: center;
  padding-top: 18px; margin-top: 6px;
  border-top: 1px dashed rgba(255, 255, 255, 0.06);
}
.foot-cross a { color: var(--muted); text-decoration: none; font-size: 12px; letter-spacing: 0.4px; transition: color 0.25s; }
.foot-cross a em { font-style: normal; color: var(--gold); }
.foot-cross a:hover { color: var(--text); }
