/* Cbet — hoja de estilos principal */

/* ---- fuentes (auto-alojadas) ---- */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('/vault-55/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('/vault-55/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('/vault-55/inter-700.woff2') format('woff2'); }
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-display: swap; src: url('/vault-55/roboto-400.woff2') format('woff2'); }
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 500; font-display: swap; src: url('/vault-55/roboto-500.woff2') format('woff2'); }
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 700; font-display: swap; src: url('/vault-55/roboto-700.woff2') format('woff2'); }

/* ---- tokens de diseño ---- */
:root {
  --root: #2ccd81;
  --punch: #ffffff;
  --accent-pressed: #efefef;
  --field: #101625;
  --raised: #1b2336;
  --glyph: #ffffff;
  --subtle: #bfbebd;
  --hairline: rgba(255,255,255,0.12);
  --stroke-heavy: rgba(255,255,255,0.28);
  --grad-1: #ffffff;
  --fade-bottom: #ffffff;
  --notice: #b02a37;

  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;

  --capsule: 999px; --dot: 50%;
  --r-1: 2px; --r-2: 4px; --r-3: 6px; --r-4: 10px; --r-5: 14px; --r-6: 18px; --r-7: 22px; --r-8: 28px;

  --lead: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --copy: 'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --display-1: clamp(1.9rem, 5vw, 3rem);
  --display-2: clamp(1.5rem, 3.6vw, 2.15rem);
  --h3: clamp(1.25rem, 2.4vw, 1.6rem);
  --sub-2: 1.25rem;
  --sm-2: 1.08rem;
  --h6: 0.92rem;
  --normal: 1.02rem;
  --petite: 0.9rem;
  --micro: 0.76rem;

  --dense: 1.12; --even: 1.55; --open: 1.72;
  --book: 400; --semi: 600; --bold: 700;
  --tight: -0.01em; --e-normal: 0em; --loose: 0.06em;

  --d-1: 0 1px 2px rgba(0,0,0,0.25);
  --d-2: 0 2px 4px rgba(0,0,0,0.3);
  --d-3: 0 4px 10px rgba(0,0,0,0.32);
  --d-4: 0 8px 20px rgba(0,0,0,0.38);
  --d-5: 0 14px 34px rgba(0,0,0,0.42);
  --d-6: 0 20px 48px rgba(0,0,0,0.46);
  --d-7: 0 26px 60px rgba(0,0,0,0.5);
  --d-8: 0 34px 80px rgba(0,0,0,0.55);

  --swift: 153ms; --base: 280ms; --long: 435ms;
  --release: cubic-bezier(0.28,0.68,0.46,1);
  --launch: cubic-bezier(0.42,0,1,1);
  --x-even: cubic-bezier(0.51,0,0.38,0.92);
  --overshoot: cubic-bezier(0.21,1.55,0.71,1.25);

  --max: 1200px;
  --text: 1200px;
  --pad-lg: 28px;
  --edge-mid: 22px;
  --inset-mobile: 18px;
  --slim: 1px; --regular: 2px; --b-bold: 3px;
  --tall: 58px; --h-sm: 56px;

  --cb-narrow: 670px;
  --cb-secy: 46px;
  --cb-panel: #151d30;
  --cb-rgh: 40px;
}

/* ---- reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: clip; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--field);
  color: var(--glyph);
  font-family: var(--copy);
  font-size: var(--normal);
  line-height: var(--even);
  font-weight: var(--book);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main { flex: 1 0 auto; }
img { max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--lead);
  line-height: var(--dense);
  overflow-wrap: anywhere;
  margin: 0;
}
h1 { font-size: var(--display-1); font-weight: var(--bold); letter-spacing: var(--tight); }
h2 { font-size: var(--display-2); font-weight: var(--bold); }
h3 { font-size: var(--h3); font-weight: var(--bold); }
p { margin: 0 0 var(--s-4); }

/* ---- a11y ---- */
.skiphop:not(:focus) { position: absolute; top: -200px; left: 0; }
.skiphop:focus { position: absolute; top: var(--s-3); left: var(--s-3); z-index: 200; background: var(--root); color: var(--field); padding: var(--s-2) var(--s-4); border-radius: var(--r-3); font-weight: var(--semi); }
.srOnly { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
:focus-visible { outline: 2px solid var(--root); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---- shared section inner (widths) ---- */
.l15-hold, .n98-hold, .c31-hold, .l08-hold, .k39-hold, .x55-hold, .f29-hold, .s92-hold, .q10-hold, .e87-hold, .j74-hold, .h78-hold, .z83-hold, .m63-hold {
  max-width: calc(var(--max) + 2 * var(--pad-lg));
  margin-inline: auto;
  padding-inline: var(--pad-lg);
  width: 100%;
}

/* ---- banda 18+ (RG-05) ---- */
.rg-band {
  display: block;
  text-align: center;
  background: var(--notice);
  color: #ffffff;
  font-size: var(--petite);
  line-height: 1.35;
  padding: var(--s-2) var(--s-4);
  margin: 0;
  min-height: var(--cb-rgh);
}
.rg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--notice);
  font-weight: var(--bold);
  font-size: var(--micro);
  border-radius: var(--r-2);
  padding: 1px 6px;
  margin-inline-end: var(--s-2);
}
.rg-route { color: #ffffff; text-decoration: underline; font-weight: var(--semi); }
.rg-route:hover { color: #ffffff; text-decoration-thickness: 2px; }

/* ---- header (HEAD-SPLIT) ---- */
.o98 {
  background: var(--field);
  border-bottom: var(--slim) solid var(--hairline);
  position: relative;
  z-index: 40;
}
.o98-shell {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  height: 58px;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--pad-lg);
}
.o98-emblem { display: inline-flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.o98-emblem-plate {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-4);
  padding: 4px 10px;
}
.o98-emblem-art { display: block; height: 42px; width: auto; }

.o98-tap {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  width: 44px;
  height: 44px;
  padding: 9px;
  margin-inline-start: auto;
  order: 5;
  background: transparent;
  border: var(--slim) solid var(--stroke-heavy);
  border-radius: var(--r-3);
  cursor: pointer;
}
.o98-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 3px; width: 100%; height: 100%; }
.o98-grid span { display: block; background: var(--glyph); border-radius: 1px; }

.o98-links {
  display: none;
  margin-inline: auto;
  min-width: 0;
}
.o98-set { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: var(--s-3); }
.o98-node { position: relative; }
.o98-node[hidden] { display: none; }
.o98-path {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--subtle);
  font-family: var(--lead);
  font-size: 15px;
  font-weight: 400;
  font-variant: small-caps;
  letter-spacing: var(--e-normal);
  white-space: nowrap;
  padding: 6px 4px;
  border-left: 3px solid transparent;
  padding-left: 8px;
  transition: color var(--swift) var(--release), transform var(--swift) var(--release);
}
.o98-path:hover { color: var(--glyph); transform: translateY(-2px); }
.o98-node[aria-current='page'] .o98-path,
.o98-path[aria-current='page'] { color: var(--glyph); border-left-color: var(--root); }

.o98-more { position: relative; }
.o98-more-opener {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  color: var(--subtle);
  font-family: var(--lead);
  font-size: 15px;
  font-variant: small-caps;
  cursor: pointer;
  padding: 6px 4px;
}
.o98-more-opener:hover { color: var(--glyph); }
.o98-more-pane {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--raised);
  border: var(--slim) solid var(--hairline);
  border-radius: var(--r-4);
  box-shadow: var(--d-5);
  padding: var(--s-2);
  min-width: 200px;
  max-height: 70vh;
  overflow-y: auto;
  z-index: 60;
  list-style: none;
  margin: 0;
}
.o98-more-pane.is-open { display: block; }
.o98-more-pane .o98-path { display: flex; border-left: none; padding-left: 6px; color: var(--subtle); }
.o98-more-pane .o98-path:hover { color: var(--glyph); transform: none; }

.o98-deck { display: flex; align-items: center; gap: var(--s-3); flex-shrink: 0; order: 6; }
.o98-press-ghost {
  display: none;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  background: #182034;
  color: #ffffff;
  border: var(--slim) solid var(--stroke-heavy);
  border-radius: var(--capsule);
  padding: 9px var(--s-5);
  font-family: var(--lead);
  font-size: 14px;
  font-weight: var(--semi);
}
.o98-press-ghost:hover { background: #202a44; color: #ffffff; }

/* drawer móvil */
.o98-panel {
  display: none;
  background: var(--raised);
  border-top: var(--slim) solid var(--hairline);
  padding: var(--s-4) var(--pad-lg) var(--s-6);
}
.o98-panel.is-open { display: block; }
.o98-panel .o98-set { flex-direction: column; align-items: stretch; gap: 0; }
.o98-panel .o98-node { border-bottom: var(--slim) solid var(--hairline); }
.o98-panel .o98-path {
  display: flex;
  border-left: none;
  padding: var(--s-4) 0;
  color: var(--glyph);
  font-size: 1.05rem;
  font-variant: normal;
}
.o98-panel .o98-path[aria-current='page'] { color: var(--root); }

/* ---- hero (HERO-10 letterform) ---- */
.l15 {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(520px, calc(100vh - 98px), 760px);
  background: radial-gradient(120% 120% at 82% 15%, #17203a 0%, var(--field) 60%);
  overflow: hidden;
}
.l15-glyph {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  font-family: var(--lead);
  font-weight: var(--bold);
  font-size: 60vh;
  line-height: 1;
  color: var(--glyph);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}
.l15-hold { position: relative; z-index: 2; }
.l15-shift { padding-block: var(--s-8); padding-left: 34%; max-width: 74%; }
.l15-lead {
  max-width: var(--cb-narrow);
  color: var(--subtle);
  font-size: var(--sm-2);
  line-height: var(--even);
  margin: var(--s-5) 0 var(--s-6);
}
.l15 h1 { margin-bottom: var(--s-3); }

/* ---- page-header (PHEAD-07) ---- */
.n98 { padding-block: var(--cb-secy); }
.n98-frame { display: grid; grid-template-columns: 110px 1fr; gap: var(--s-5); align-items: start; }
.n98-index { font-family: var(--lead); font-weight: var(--bold); font-size: calc(var(--display-1) * 1.35); color: var(--root); line-height: 1; }
.n98-title { }
.n98-lead { max-width: var(--cb-narrow); color: var(--subtle); font-size: var(--sm-2); margin-top: var(--s-4); }

/* ---- prose (PROSE-14) ---- */
.c31 { padding-block: var(--cb-secy); }
.c31-part { padding-block: var(--s-4); }
.c31-fill { background: var(--cb-panel); }
.c31 h2 { margin-block: var(--s-2) var(--s-4); }
.c31-para { color: var(--subtle); line-height: var(--open); max-width: none; }
.c31-para strong { color: var(--glyph); font-weight: var(--bold); }
.c31-para em { font-style: italic; color: var(--glyph); }
.c31-para a, .c31-set a { color: var(--root); text-decoration: underline; text-underline-offset: 2px; }
.c31-para a:hover, .c31-set a:hover { color: var(--root); text-decoration-thickness: 2px; }
.c31-set { color: var(--subtle); line-height: var(--open); padding-left: 1.4em; margin: 0 0 var(--s-4); }
.c31-set li { margin-bottom: var(--s-2); }
.c31-fig {
  margin: var(--s-6) auto;
  width: fit-content;
  max-width: 100%;
  background: var(--raised);
  border: var(--slim) solid var(--hairline);
  border-radius: var(--r-5);
  padding: var(--s-3);
}
.c31-fig img { display: block; width: auto; height: auto; max-width: 100%; max-height: 56vh; object-fit: contain; border-radius: var(--r-4); }
.c31-hail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3) var(--s-5);
  margin: var(--s-5) 0;
  padding: var(--s-4);
  background: var(--raised);
  border-radius: var(--r-5);
}
.c31-terms { display: block; color: var(--subtle); font-size: var(--petite); }

/* ---- items-grid (GRID-07 editorial) ---- */
.l08 { padding-block: var(--cb-secy); }
.l08 h2 { margin-bottom: var(--s-6); }
.l08-set { display: flex; flex-direction: column; gap: var(--s-7); list-style: none; margin: 0; padding: 0; }
.l08-entry { display: block; }
.l08-mark { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--r-4); background: var(--raised); border: var(--slim) solid var(--hairline); margin-bottom: var(--s-3); }
.l08-mark svg, .l08-ico { width: 22px; height: 22px; fill: none; stroke: var(--root); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.l08-heading { margin-bottom: var(--s-3); }
.l08-bar { display: block; width: 60px; height: 2px; background: var(--root); margin: 0 0 var(--s-3); border: 0; }
.l08-para { color: var(--subtle); line-height: var(--open); max-width: none; margin: 0; }

/* ---- reviews (REV-08 avatar-initials) ---- */
.k39 { padding-block: var(--cb-secy); }
.k39 h2 { margin-bottom: var(--s-6); }
.k39-set { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-5); list-style: none; margin: 0; padding: 0; }
.k39-plate { background: var(--raised); border: var(--slim) solid var(--hairline); border-radius: var(--r-5); padding: var(--s-5); box-shadow: var(--d-2); transition: box-shadow var(--base) var(--release); }
.k39-plate:hover { box-shadow: var(--d-5); }
.k39-top { display: flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-3); }
.k39-badge { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: var(--dot); background: var(--root); color: var(--field); font-family: var(--lead); font-weight: var(--bold); font-size: var(--sm-2); flex-shrink: 0; }
.k39-who { display: flex; flex-direction: column; }
.k39-author { font-weight: var(--semi); color: var(--glyph); }
.k39-posted { color: var(--subtle); font-size: var(--micro); }
.k39-stars { color: var(--root); font-size: var(--petite); letter-spacing: 1px; margin-bottom: var(--s-3); }
.k39-stars span { color: var(--subtle); margin-left: 6px; letter-spacing: 0; }
.k39-blurb { color: var(--subtle); line-height: var(--even); margin: 0; }

/* ---- faq (FAQ-09 magazine Q/R) ---- */
.x55 { padding-block: var(--cb-secy); }
.x55 h2 { margin-bottom: var(--s-6); }
.x55-set { display: flex; flex-direction: column; gap: var(--s-5); }
.x55-entry { padding-block: var(--s-3); border: 0; }
.x55-entry > summary { list-style: none; cursor: pointer; display: block; }
.x55-entry > summary::-webkit-details-marker { display: none; }
.x55-heading { display: inline; font-family: var(--lead); font-weight: var(--bold); font-size: var(--sm-2); font-style: italic; color: var(--glyph); }
.x55-tag { font-family: var(--lead); font-weight: var(--bold); color: var(--root); font-size: var(--sm-2); margin-inline-end: var(--s-2); }
.x55-blurb { color: var(--subtle); line-height: var(--open); margin: var(--s-3) 0 0; }

/* ---- cta-block (CTA-05 dual action) ---- */
.f29 { background: var(--field); border-top: var(--slim) solid var(--hairline); border-bottom: var(--slim) solid var(--hairline); padding-block: var(--cb-secy); }
.f29-hold { text-align: center; }
.f29 h2 { margin-bottom: var(--s-3); }
.f29-para { color: var(--subtle); max-width: var(--cb-narrow); margin: 0 auto var(--s-5); }
.f29-deck { display: flex; flex-wrap: wrap; gap: var(--s-4); justify-content: center; }
.f29-goto { display: inline-flex; align-items: center; text-decoration: none; background: #1b2336; color: #ffffff; border: var(--slim) solid var(--stroke-heavy); border-radius: var(--capsule); padding: 13px var(--s-6); font-family: var(--lead); font-weight: var(--semi); }
.f29-goto:hover { background: #232d47; color: #ffffff; border-color: var(--glyph); }

/* ---- data-table (TABLE-03 card-per-row) ---- */
.s92 { padding-block: var(--cb-secy); }
.s92 h2 { margin-bottom: var(--s-5); }
.s92-scroll { width: 100%; }
.s92-grid { width: 100%; border-collapse: collapse; background: var(--raised); border-radius: var(--r-5); overflow: hidden; }
.s92-grid thead { background: #222c46; }
.s92-grid th { text-align: left; font-family: var(--lead); color: var(--glyph); font-size: var(--petite); text-transform: uppercase; letter-spacing: var(--loose); padding: var(--s-4); }
.s92-grid td { padding: var(--s-4); color: var(--subtle); border-top: var(--slim) solid var(--hairline); }
.s92-grid tbody { }
@media (max-width: 640px) {
  .s92-grid, .s92-grid thead, .s92-grid tbody, .s92-grid tr, .s92-grid th, .s92-grid td { display: block; }
  .s92-grid thead { display: none; }
  .s92-grid tr { margin-bottom: var(--s-4); padding: var(--s-4); background: var(--raised); border-radius: var(--r-4); }
  .s92-grid td { border-top: 0; padding: var(--s-2) 0; }
  .s92-grid td::before { content: attr(data-label); display: block; color: var(--glyph); font-weight: var(--semi); font-size: var(--micro); text-transform: uppercase; letter-spacing: var(--loose); margin-bottom: 2px; }
}

/* ---- legal-section (LEGAL-01) ---- */
.q10 { padding-block: var(--cb-secy); }
.q10-intro { font-size: var(--sm-2); color: var(--glyph); line-height: var(--even); margin-bottom: var(--s-5); }
.q10-posted { display: block; font-size: var(--micro); text-transform: uppercase; letter-spacing: var(--loose); color: var(--subtle); margin-bottom: var(--s-6); }
.q10-part { border-top: var(--slim) solid var(--hairline); padding-top: var(--s-5); margin-top: var(--s-5); }
.q10-part:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.q10-heading { margin-bottom: var(--s-3); }
.q10-para { color: var(--subtle); line-height: var(--open); margin-bottom: var(--s-4); }
.q10-help { background: var(--raised); border-radius: var(--r-4); padding: var(--s-5); margin-top: var(--s-6); }
.q10-help h3 { margin-bottom: var(--s-3); }
.q10-help ul { margin: 0; padding-left: 1.2em; color: var(--subtle); }
.q10-help a { color: var(--root); }
.q10-note { background: rgba(176,42,55,0.12); border-left: var(--b-bold) solid var(--notice); border-radius: var(--r-2); padding: var(--s-4); font-size: var(--petite); color: var(--subtle); margin-top: var(--s-6); }

/* ---- contact-form (FORM-08) ---- */
.e87 { padding-block: var(--cb-secy); }
.e87-intro { color: var(--subtle); max-width: var(--cb-narrow); margin-bottom: var(--s-5); }
.e87-shell { background: var(--raised); border: var(--slim) solid var(--hairline); border-radius: var(--r-5); padding: var(--s-6); max-width: 720px; }
.e87-line { display: flex; flex-direction: column; gap: var(--s-2); margin-bottom: var(--s-4); }
.e87-chip { font-family: var(--lead); font-weight: var(--semi); color: var(--glyph); font-size: var(--petite); }
.e87-line input, .e87-line textarea { background: var(--field); border: var(--slim) solid var(--stroke-heavy); border-radius: var(--r-3); color: var(--glyph); font-family: var(--copy); font-size: var(--normal); padding: var(--s-3); width: 100%; }
.e87-line textarea { min-height: 140px; resize: vertical; }
.e87-send { width: 100%; height: 72px; background: var(--root); color: var(--field); border: 0; border-radius: var(--r-4); font-family: var(--lead); font-weight: var(--bold); font-size: var(--sub-2); text-transform: uppercase; letter-spacing: var(--loose); cursor: pointer; transition: background var(--swift) var(--release); }
.e87-send:hover { background: #45d894; }
.e87-done { background: var(--raised); border: var(--slim) solid var(--root); border-radius: var(--r-4); padding: var(--s-5); color: var(--glyph); margin-top: var(--s-4); }

/* ---- author-card (AUTH-02) ---- */
.j74 { padding-block: var(--cb-secy); }
.j74-hold { }
.j74-plate { max-width: 600px; margin-inline: auto; text-align: center; }
.j74-shot { width: 140px; height: 140px; border-radius: var(--dot); object-fit: cover; margin: 0 auto var(--s-5); display: block; }
.j74-job { font-size: var(--petite); text-transform: uppercase; letter-spacing: var(--loose); color: var(--root); margin-bottom: var(--s-2); }
.j74-author { font-size: var(--display-2); margin-bottom: var(--s-4); }
.j74-blurb { color: var(--subtle); line-height: var(--open); margin-bottom: var(--s-4); }
.j74-tags { display: flex; flex-wrap: wrap; gap: var(--s-2); justify-content: center; list-style: none; padding: 0; margin: 0; }
.j74-chip { background: var(--raised); border: var(--slim) solid var(--hairline); border-radius: var(--capsule); padding: 6px var(--s-4); font-size: var(--petite); color: var(--subtle); }
.j74-more { max-width: 600px; margin: var(--s-7) auto 0; }
.j74-more h2 { font-size: var(--h3); text-align: center; margin-bottom: var(--s-4); }
.j74-more ul { list-style: none; padding: 0; margin: 0; }
.j74-more li { border-top: var(--slim) solid var(--hairline); padding: var(--s-3) 0; color: var(--subtle); }

/* ---- author-byline (BYLINE-06) ---- */
.h78 { padding-block: var(--s-6); }
.h78-hold { }
.h78-wrap { display: flex; align-items: center; gap: var(--s-4); max-width: var(--cb-narrow); margin-inline: auto; padding-top: var(--s-4); border-top: var(--slim) solid var(--hairline); }
.h78-para { flex: 1; font-size: var(--petite); font-style: italic; color: var(--subtle); margin: 0; }
.h78-author { color: var(--root); text-decoration: underline; }
.h78-author:hover { text-decoration-thickness: 2px; }
.h78-sep { margin: 0 6px; }
.h78-shot { width: 40px; height: 40px; border-radius: var(--dot); object-fit: cover; flex-shrink: 0; }

/* ---- cookie-banner (COOK-03 corner card) ---- */
.t80 {
  position: fixed;
  inset-block-end: var(--s-4);
  inset-inline: auto var(--s-4);
  width: 360px;
  max-width: calc(100vw - 2 * var(--s-4));
  background: var(--raised);
  border: var(--slim) solid var(--stroke-heavy);
  border-radius: var(--r-6);
  box-shadow: var(--d-6);
  padding: var(--s-5);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: transform var(--long) var(--x-even), opacity var(--long) var(--x-even);
}
.t80[hidden] { display: none; }
.t80.is-gone { transform: translateX(120%); opacity: 0; visibility: hidden; pointer-events: none; }
.t80-heading { display: flex; align-items: center; gap: var(--s-2); font-family: var(--lead); font-weight: var(--bold); font-size: var(--sm-2); text-transform: uppercase; color: var(--root); margin: 0; }
.t80-sign { display: inline-flex; }
.t80-sign svg, .t80-ico { width: 20px; height: 20px; fill: none; stroke: var(--root); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.t80-blurb { font-size: var(--petite); line-height: var(--even); color: var(--subtle); margin: 0; }
.t80-deck { display: flex; gap: var(--s-3); }
.t80-approve, .t80-no { flex: 1; height: 40px; border-radius: var(--r-3); font-family: var(--lead); font-weight: var(--semi); font-size: var(--petite); cursor: pointer; border: var(--slim) solid var(--stroke-heavy); }
.t80-approve { background: var(--root); color: var(--field); border-color: var(--root); }
.t80-approve:hover { background: #45d894; color: var(--field); }
.t80-no { background: #1b2336; color: var(--glyph); }
.t80-no:hover { background: #232d47; color: var(--glyph); }

/* ---- error-block (ERR-01) ---- */
.z83 { padding-block: var(--s-8); flex: 1 0 auto; display: flex; }
.z83-core { width: 100%; display: flex; flex-direction: column; align-items: center; gap: var(--s-5); text-align: center; }
.z83-code { font-family: var(--lead); font-weight: var(--bold); font-size: clamp(80px, 18vw, 200px); line-height: 1; color: var(--root); }
.z83-title { max-width: var(--cb-narrow); }
.z83-para { max-width: 600px; font-size: var(--sm-2); color: var(--subtle); }
.z83-goto { display: inline-flex; align-items: center; height: 52px; padding-inline: var(--s-6); background: var(--root); color: var(--field); text-decoration: none; font-family: var(--lead); font-weight: var(--bold); text-transform: uppercase; letter-spacing: var(--loose); border-radius: var(--r-4); }
.z83-goto:hover { background: #45d894; color: var(--field); }

/* ---- footer (FOOT-10 sectioned) ---- */
.m63 { background: var(--field); border-top: var(--slim) solid var(--hairline); padding-block: var(--s-7); }
.m63-brand { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-4); padding-bottom: var(--s-5); border-bottom: var(--slim) solid var(--hairline); }
.m63-emblem-art { height: 40px; width: auto; }
.m63-slogan { color: var(--subtle); font-size: var(--petite); max-width: 420px; }
.m63-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); padding-block: var(--s-6); border-bottom: var(--slim) solid var(--hairline); }
.m63-track h3 { font-size: var(--h6); text-transform: uppercase; letter-spacing: var(--loose); color: var(--glyph); margin-bottom: var(--s-3); }
.m63-links { list-style: none; margin: 0; padding: 0; }
.m63-links li { margin-bottom: var(--s-2); }
.m63-path { color: var(--subtle); text-decoration: none; font-size: var(--petite); }
.m63-path:hover { color: var(--glyph); }
.m63-note { padding-block: var(--s-4); border-bottom: var(--slim) solid var(--hairline); color: var(--subtle); font-size: var(--micro); line-height: var(--even); }
.m63-note a { color: var(--root); }
.m63-seal { padding-top: var(--s-4); display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-5); align-items: center; justify-content: space-between; }
.m63-small { color: var(--subtle); font-size: var(--micro); margin: 0; }
.m63-legal { display: flex; flex-wrap: wrap; gap: var(--s-4); list-style: none; margin: 0; padding: 0; }

/* ---- oferta: geometría base del botón (color/animación vienen de cta-style) ---- */
.betline-act {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 30px;
  border: 0;
  border-radius: var(--capsule);
  font-family: var(--lead);
  font-weight: var(--bold);
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
}
.o98-deck .betline-act { min-height: 44px; padding: 9px var(--s-5); font-size: 14px; }

/* ---- responsive ---- */
@media (min-width: 1025px) {
  .o98-links { display: block; }
  .o98-tap { display: none; }
  .o98-panel { display: none; }
  .o98-press-ghost { display: inline-flex; }
}
@media (max-width: 1024px) {
  .l15-shift { padding-left: var(--pad-lg); max-width: 100%; }
  .l15-glyph { display: none; }
  .k39-set { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .m63-grid { grid-template-columns: repeat(2, 1fr); }
  .n98-frame { grid-template-columns: 70px 1fr; gap: var(--s-4); }
}
@media (max-width: 700px) {
  .k39-set { grid-template-columns: 1fr; }
  .m63-grid { grid-template-columns: 1fr 1fr; }
  .l15 { min-height: auto; padding-block: var(--s-7); }
  .n98-frame { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .o98-shell { flex-wrap: wrap; height: auto; min-height: 58px; row-gap: var(--s-2); padding-block: var(--s-2); }
  .o98-deck { order: 7; flex-basis: 100%; }
  .o98-deck .betline-act { width: 100%; }
}
@media (max-width: 480px) {
  .m63-grid { grid-template-columns: 1fr; }
  .t80 { inset-inline: var(--s-4); width: auto; }
}
.betline-act{display:inline-flex;align-items:center;justify-content:center;padding:0 var(--s-6);min-height:52px;border-radius:var(--r-4);font-weight:var(--bold);letter-spacing:var(--loose)}
.betline-act{
  background:#C026D3;color:#FFFFFF;text-decoration:none;text-transform:uppercase;
  transition:background 0.26s ease-out,box-shadow 0.26s ease-out;}
.betline-act.betline-act{color:#FFFFFF;text-decoration:none;}
.betline-act:hover{background:#A21CAF;color:#FFFFFF;animation:none}
.betline-act.betline-act:hover{color:#FFFFFF;text-decoration:none}
.betline-act:hover::after{animation:none}
.betline-act:active{background:#86198F;color:#FFFFFF}
.betline-act:focus-visible{outline:3px solid #101625;outline-offset:3px}
.betline-act{animation:betline-beat 1.84s ease-in-out infinite}
@keyframes betline-beat{0%{transform:translate(0,0)}13.043%{transform:translate(2px,2px)}34.783%,100%{transform:translate(0,0)}}
@media (prefers-reduced-motion:reduce){.betline-act,.betline-act::after{animation:none!important;transition:none!important}}

@media (max-width: 492px) {
  .o98-links,
  .o98-press-ghost { display: none !important; }
  .o98-more-opener { display: inline-flex !important; }
}
