/* ============================================================
   FOUNDERS LAB · MASTERCLASS · MARCA · CONTENIDO · IA
   Editorial dark system — inspired by The Order Club
   Mobile-first · No frameworks · Plain CSS
   ============================================================ */

:root {
  /* color */
  --bg:        #0E0E0D;
  --bg-2:      #161615;
  --surface:   #1A1A18;
  --surface-2: #232321;
  --line:      rgba(243, 244, 227, 0.10);
  --line-2:    rgba(243, 244, 227, 0.18);

  --text:      #F3F4E3;
  --text-dim:  rgba(243, 244, 227, 0.72);
  --text-mute: rgba(243, 244, 227, 0.50);

  --accent:    #E46731;          /* Order Club orange */
  --accent-2:  #F08A4B;
  --accent-3:  #F5C56A;          /* warm gold for highlights */
  --yellow:    #F3C84C;
  --whatsapp:  #25D366;

  /* type */
  --f-display: 'Archivo', 'Inter', system-ui, sans-serif;
  --f-body:    'Inter', system-ui, sans-serif;
  --f-serif:   'Instrument Serif', Georgia, serif;

  /* layout */
  --maxw:      1240px;
  --gutter:    clamp(20px, 5vw, 56px);
  --radius:    14px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }
*::selection { background: var(--accent); color: var(--bg); }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100vw;
}

/* prevent unintended horizontal overflow from any descendant */
.hero, .gifts, .truth, .for-you, .instructors, .final, .footer, .nav, .marquee {
  max-width: 100%;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
em, .em { font-style: italic; font-family: var(--f-serif); font-weight: 400; }
.serif { font-family: var(--f-serif); font-style: italic; font-weight: 400; }
strong, b { font-weight: 700; color: var(--text); }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* subtle texture overlay (film grain feel) */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(228,103,49,0.06) 1px, transparent 1px),
    radial-gradient(rgba(243,244,227,0.03) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 2px;
  opacity: .6;
  mix-blend-mode: overlay;
  z-index: 100;
}

/* ─────────── KICKER (section labels) ─────────── */
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  min-width: 0;
  max-width: 100%;
}
.kicker--cream { color: var(--text); }

/* Centered kickers: stack the number above the text, both centered.
   Cleaner than the line-text-line approach because there's nothing
   pulling the visual weight off-axis:
                     02
            SOLO POR ENTRAR TE LLEVAS                                      */
.kicker--center,
.section-head:not(.section-head--left) .kicker {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}
.kicker--center .kicker__line,
.section-head:not(.section-head--left) .kicker .kicker__line {
  display: none;
}
.kicker--center .kicker__num,
.section-head:not(.section-head--left) .kicker .kicker__num {
  font-size: 11px;
  letter-spacing: 0.16em;
}
.kicker--center .kicker__text,
.section-head:not(.section-head--left) .kicker .kicker__text {
  white-space: normal;
  overflow: visible;
}
.kicker__num {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 800;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0;
  flex: 0 0 auto;
}
.kicker__line {
  flex: 0 0 36px;
  height: 1px;
  background: var(--line-2);
}
.kicker__text {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ─────────── EVENT STRIP ─────────── */
.event-strip {
  background: var(--yellow);
  color: #1a1a18;
  position: relative;
  z-index: 50;
}
.event-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px var(--gutter);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}
.event-strip__inner strong {
  color: #1a1a18;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.event-strip .sep { opacity: .5; padding: 0 4px; }
.event-strip .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #1a1a18;
  flex: 0 0 7px;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(.7);  opacity: .35; }
}

/* ─────────── NAV ─────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(14,14,13, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  transition: opacity .2s ease;
}
.brand:hover { opacity: .85; }
@media (max-width: 720px) {
  .brand { display: none; }
  .nav__inner { justify-content: flex-end; }
}
.brand__word {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1;
}
.brand__word sup {
  font-size: 9px;
  vertical-align: super;
  margin-left: 3px;
  color: var(--accent);
  opacity: 1;
  font-weight: 700;
}

.nav__meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.meta-pill {
  display: none;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 5px 10px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  color: var(--text-dim);
}
.nav__cta {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 13px;
  padding: 9px 14px;
  border-radius: 100px;
  background: var(--accent);
  color: #1a1a18;
  transition: transform .2s ease, background .2s ease;
}
.nav__cta:hover { background: var(--accent-2); transform: translateY(-1px); }

@media (min-width: 720px) {
  .meta-pill { display: inline-block; }
}

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 32px var(--gutter) 0;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.hero__copy, .hero__visual { min-width: 0; }

.h1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(42px, 11vw, 84px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 18px 0 18px;
  color: var(--text);
  overflow-wrap: break-word;
  hyphens: manual;
}
@media (min-width: 720px) {
  .h1 { font-size: clamp(48px, 7vw, 84px); }
}
.h1 em {
  font-family: var(--f-serif);
  font-weight: 400;
  font-style: italic;
  color: inherit;
  letter-spacing: -0.01em;
  /* Hairline accent underline replaces the gold color —
     keeps editorial flair, ties the phrase to the orange money values,
     but reserves the bold orange weight exclusively for $5K / $10K. */
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
  text-decoration-skip-ink: none;
}
.h1__money {
  color: var(--accent);
  font-family: var(--f-display);
}
.h1__paren {
  display: block;
  font-family: var(--f-body);
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 500;
  font-style: italic;
  color: var(--text-dim);
  letter-spacing: 0;
  margin-top: 14px;
  line-height: 1.4;
}

.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--text-dim);
  max-width: 56ch;
  line-height: 1.55;
  margin: 0 0 28px;
}
.lede strong { color: var(--text); }

.hero__cta-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.date-card {
  display: grid;
  place-items: center;
  width: 88px;
  padding: 10px 8px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
}
.date-card__day {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.date-card__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  margin: 2px 0 2px;
  color: var(--text);
}
.date-card__month {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-dim);
}
.pull {
  margin: 0;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.01em;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}
.pull em { color: var(--accent-3); font-weight: 500; }

/* ─────────── FORM ─────────── */
.form {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  /* offset for the sticky .nav so anchor jumps land at the form's top */
  scroll-margin-top: 90px;
}
.form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.form__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.form__arrow {
  animation: bob 1.6s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(-2px); } 50% { transform: translateY(2px); } }

.field {
  display: block;
  margin-bottom: 12px;
}
.field__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 6px;
}
.field input,
.field select {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 15px;
  padding: 13px 14px;
  border-radius: 10px;
  transition: border-color .15s ease, background .15s ease;
  line-height: 1.2;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  background: #1f1f1c;
}
.field input::placeholder { color: var(--text-mute); }

.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 34px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F3F4E3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='.55'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.field select::-ms-expand { display: none; }
.field select option {
  background: var(--bg-2);
  color: var(--text);
  font-size: 14px;
  padding: 8px;
}

.field__phone {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 8px;
}
.field__phone select {
  padding-left: 12px;
  padding-right: 28px;
  font-variant-numeric: tabular-nums;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--text-mute);
  margin: 14px 0 16px;
  line-height: 1.45;
}
.consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

.cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
  border-radius: 12px;
  padding: 18px 22px;
  background: var(--accent);
  color: #1a1a18;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform .15s ease, box-shadow .25s ease, background .2s ease;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.15) inset,
    0 12px 30px -10px rgba(228,103,49,.45);
}
.cta:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.20) inset,
    0 18px 40px -10px rgba(228,103,49,.55);
}
.cta:active { transform: translateY(1px); }
.cta__arrow {
  font-size: 18px;
  transition: transform .2s ease;
}
.cta:hover .cta__arrow { transform: translateX(4px); }

.microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin: 14px 0 0;
  letter-spacing: 0.04em;
}
.microcopy strong { color: var(--text); font-weight: 700; }
.microcopy__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 6px;
  animation: pulse 1.6s ease-in-out infinite;
}

/* ─────────── HERO VISUAL / DUAL PORTRAIT ─────────── */
.hero__visual { position: relative; }
.portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background:
    radial-gradient(circle at 70% 30%, rgba(228,103,49,.12), transparent 55%),
    linear-gradient(180deg, #1a1a18, #0d0d0c);
  aspect-ratio: 4/5;
  width: 100%;
}
@media (min-width: 960px) {
  .portrait { min-height: 520px; aspect-ratio: 5/6; }
}

/* Editorial cover composition for the hero — pure SVG + type */
.cover {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 55%, rgba(228,103,49,.10), transparent 60%),
    linear-gradient(180deg, #1a1a18 0%, #0d0d0c 100%);
}
@media (min-width: 960px) {
  .cover { aspect-ratio: 5/6; min-height: 540px; }
}

.cover__triangle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cover__center {
  position: absolute;
  /* triangle centroid is at viewBox (200, 293) ≈ 50% / 61% */
  top: 61%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.cover__monogram {
  display: block;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(38px, 5.4vw, 56px);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}
.cover__motto {
  display: block;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
  line-height: 1.5;
  margin-top: 12px;
}

.cover__node {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 3px;
  text-align: center;
  font-family: var(--f-display);
  white-space: nowrap;
}
.cover__node-num {
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.cover__node-name {
  font-weight: 900;
  font-size: clamp(12px, 1.4vw, 15px);
  letter-spacing: 0.06em;
  color: var(--text);
}
/* Triangle vertices in viewBox 400x480:
   apex (200,80) → 50% / 16.6%
   bottom-right (360,400) → 90% / 83.3%
   bottom-left (40,400) → 10% / 83.3%
   Labels are placed just outside each vertex.                              */
.cover__node--top {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}
.cover__node--br {
  top: 88%;
  left: 84%;
  transform: translateX(-50%);
}
.cover__node--bl {
  top: 88%;
  left: 16%;
  transform: translateX(-50%);
}

.cover__corner {
  position: absolute;
  z-index: 3;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.20em;
  color: var(--text-mute);
}
.cover__corner em {
  font-style: normal;
  color: var(--accent);
  margin-left: 2px;
}
.cover__corner--tl { top: 16px; left: 18px; color: var(--accent); }
.cover__corner--tr { top: 16px; right: 18px; }
.cover__corner--bl { bottom: 16px; left: 18px; }
.cover__corner--br { bottom: 16px; right: 18px; color: var(--text); }

.portrait__caption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-mute);
  font-style: italic;
  font-family: var(--f-serif);
}
.diag { color: var(--accent); }

/* ─────────── AUTHORITY ─────────── */
.authority {
  margin: 36px calc(var(--gutter) * -1) 0;
  padding: 22px var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(243,244,227,0.02);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  text-align: center;
}
.authority__item {
  display: grid;
  gap: 4px;
}
.authority__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--text);
  letter-spacing: -0.01em;
}
.authority__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.authority__sep { display: none; }

@media (min-width: 760px) {
  .authority {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ─────────── MARQUEE ─────────── */
.marquee {
  margin-top: 36px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: -0.01em;
  color: var(--text);
}
.marquee__track span:nth-child(odd) { color: var(--text); }
.marquee__track span:nth-child(even) { color: var(--accent); }
.marquee__bullet {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent) !important;
  display: inline-block;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────── SECTION HEAD ─────────── */
.section-head {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 760px;
}
.section-head--left {
  text-align: left;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.section-head--left .kicker { justify-content: flex-start; }
.section-head .kicker { justify-content: center; margin-bottom: 18px; }
.section-head--left .kicker { justify-content: flex-start; margin-bottom: 18px; }
.h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(26px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--text);
  overflow-wrap: break-word;
  hyphens: manual;
}
.h2--big { font-size: clamp(36px, 7vw, 76px); }
.section-head__sub {
  font-size: 15px;
  color: var(--text-dim);
  margin: 0 auto;
  max-width: 56ch;
  line-height: 1.55;
}

/* ─────────── GIFTS / TIMELINE ─────────── */
.gifts {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 88px var(--gutter) 40px;
}
.gifts .section-head { margin-bottom: 16px; }
/* Single editorial composition replacing the per-day timeline cards */
.gifts__showcase {
  margin: 0 auto 40px;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 0;
}
.gifts__showcase-img {
  display: block;
  width: 100%;
  height: auto;
  /* the source PNG has transparent space at the top — pull the image
     up slightly so the rendered subjects sit closer to the section
     header without changing the asset itself. */
  margin-top: -6%;
  margin-bottom: -2%;
  /* glow that follows the cutout (not the bounding box) */
  filter:
    drop-shadow(0 24px 60px rgba(228,103,49,.18))
    drop-shadow(0 4px 20px rgba(0,0,0,.5));
}
.gifts__showcase-cap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.gifts__pill {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
}
.gifts__pill--accent {
  color: var(--accent);
  border-color: rgba(228,103,49,.45);
  background: rgba(228,103,49,.06);
}

.timeline {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin: 0 0 56px;
  position: relative;
}
.t-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 60px;
  position: relative;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.t-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-2);
  background: var(--surface-2);
}
.t-card__day {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  padding: 5px 10px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  margin-bottom: 16px;
}
.t-card__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--text);
}
.t-card__title span {
  display: block;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: 0;
}
.t-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}
.t-card__tag {
  position: absolute;
  bottom: 18px; right: 18px;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.t-card--accent {
  background: linear-gradient(180deg, rgba(228,103,49,.10), var(--surface) 60%);
  border-color: rgba(228,103,49,.30);
}
.t-card--accent .t-card__tag { color: var(--accent); border-color: rgba(228,103,49,.40); }

@media (min-width: 760px) {
  .timeline {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }
}

/* bonus grid — editorial numbered list */
.bonus-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}
/* Mobile-only: Kloutt raffle appears BEFORE the bonus list */
@media (max-width: 879px) {
  .bonus-grid .raffle { order: 1; }
  .bonus-grid .bonus  { order: 2; }
}
.bonus {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.bonus::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228,103,49,.45), transparent);
}
.bonus__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.bonus__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.bonus__count {
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  white-space: nowrap;
  flex: 0 0 auto;
}
.bonus__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(26px, 2.8vw, 34px);
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--text);
  line-height: 1.05;
}

.bonus__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
}
.bonus__item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .2s ease, background .2s ease;
  position: relative;
}
.bonus__item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity .25s ease, left .25s ease;
}
.bonus__item:hover {
  padding-left: 8px;
}
.bonus__item:hover::before {
  opacity: 1;
  left: -20px;
}
.bonus__item:last-child {
  border-bottom: none;
}
.bonus__num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
  align-self: start;
  padding-top: 3px;
}
.bonus__text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.45;
}
.bonus__text em {
  color: var(--text-dim);
  font-style: italic;
  font-family: var(--f-serif);
  font-weight: 400;
}
.bonus__tag {
  font-family: var(--f-display);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  white-space: nowrap;
}

.bonus__list--muted .bonus__num { color: var(--text-mute); }
.bonus__list--muted .bonus__text { color: var(--text-dim); font-size: 14px; }

.bonus__split {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0 6px;
}
.bonus__split-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.bonus__split-label {
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--text-mute);
}

@media (max-width: 540px) {
  .bonus__item { grid-template-columns: 28px 1fr; }
  .bonus__tag { grid-column: 2; justify-self: start; margin-top: 4px; }
}

.raffle {
  background:
    radial-gradient(circle at 50% 0%, rgba(228,103,49,.15), transparent 60%),
    var(--surface);
  border: 1px solid rgba(228,103,49,.30);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  color: var(--accent);
}

/* ───── Kloutt brand variant ───── */
.raffle--kloutt {
  --kloutt-bg-1: #0E1A0D;
  --kloutt-bg-2: #050C04;
  --kloutt-accent: #C5FF4A;
  --kloutt-accent-dim: rgba(197, 255, 74, 0.30);

  background:
    radial-gradient(circle at 50% 0%, rgba(197,255,74,.12), transparent 60%),
    linear-gradient(180deg, var(--kloutt-bg-1) 0%, var(--kloutt-bg-2) 100%);
  border: 1px solid var(--kloutt-accent-dim);
  color: var(--kloutt-accent);
}
.raffle--kloutt::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--kloutt-accent), transparent);
  opacity: .7;
}

.raffle__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid currentColor;
  border-radius: 100px;
  color: inherit;
  margin-bottom: 14px;
}
.raffle__circle {
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  width: 180px; height: 180px;
}
.raffle__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--text);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.raffle__brand {
  position: relative;
  white-space: nowrap;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  padding-right: 0.18em;
}
.raffle__brand-dot {
  display: inline-block;
  width: 0.22em;
  height: 0.22em;
  border-radius: 50%;
  background: currentColor;
  vertical-align: baseline;
  margin-left: 3px;
}
.raffle--kloutt .raffle__brand-dot { background: var(--kloutt-accent); }
.raffle__copy {
  margin: 0 0 10px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
}
.raffle__copy strong { color: var(--text); }
.raffle__copy--note {
  font-size: 13px;
  color: var(--text-mute);
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}
.raffle__copy--note em {
  color: currentColor;
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.raffle__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 9px 16px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 100px;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.raffle--kloutt .raffle__link {
  border-color: var(--kloutt-accent-dim);
}
.raffle__link:hover {
  background: var(--accent);
  color: #1a1a18;
  border-color: var(--accent);
  transform: translateY(-1px);
}
.raffle--kloutt .raffle__link:hover {
  background: var(--kloutt-accent);
  color: #0E1A0D;
  border-color: var(--kloutt-accent);
}
.raffle__link span:last-child { font-size: 14px; }

@media (min-width: 880px) {
  /* bonus list wider on the left; raffle (Kloutt) narrower on the right */
  .bonus-grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); align-items: stretch; }
}

/* ─────────── HERO LAYOUT (desktop) ─────────── */
@media (min-width: 960px) {
  .hero { padding-top: 56px; }
  .hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 64px;
  }
  .hero__visual { position: sticky; top: 100px; }
}

/* ─────────── TRUTH SECTION ─────────── */
.truth {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 96px var(--gutter);
  position: relative;
  overflow: hidden;
}
.truth::before, .truth::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
.truth__inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.truth__inner .kicker { margin-bottom: 20px; }
.truth__body {
  text-align: left;
  margin-top: 28px;
  display: grid;
  gap: 18px;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.6;
}
.truth__body .muted { color: var(--text-mute); }
.truth__body .hl {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--text);
  font-size: clamp(18px, 1.8vw, 22px);
  margin-top: 14px;
}

.skills {
  display: grid;
  gap: 18px;
  margin: 16px 0 22px;
  counter-reset: skill;
}
.skills li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .25s ease;
}
.skills li:hover { border-color: rgba(228,103,49,.40); }
.skills__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.skills h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.skills p { margin: 0; color: var(--text-dim); font-size: 15px; line-height: 1.55; }

.closer {
  text-align: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 28px);
  margin: 8px 0 0;
  color: var(--text-dim);
}
.closer--accent { color: var(--text); }

/* ─────────── FOR YOU ─────────── */
.for-you {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px var(--gutter);
}
.avatars {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}
.avatar-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform .25s ease, border-color .25s ease;
}
.avatar-card:hover { transform: translateY(-3px); border-color: var(--line-2); }
.avatar-card__index {
  position: absolute;
  top: 16px; right: 18px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.16em;
}
.avatar-card__icon {
  color: var(--accent);
  margin-bottom: 18px;
}
.avatar-card h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--text);
}
.avatar-card p { margin: 0; font-size: 15px; color: var(--text-dim); line-height: 1.55; }

@media (min-width: 820px) {
  .avatars { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ─────────── INSTRUCTORS ─────────── */
.instructors {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 96px var(--gutter);
  position: relative;
}
.instructors > .section-head { padding: 0 var(--gutter); }
.instructor-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 56px;
}
.bio {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.bio__content { min-width: 0; }
.bio__photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background:
    radial-gradient(ellipse at 50% 72%, rgba(228,103,49,.22), transparent 60%),
    linear-gradient(180deg, #1c1c1a 0%, #0d0d0c 100%);
}
.bio__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 82%;
  display: block;
  z-index: 1;
  /* subtle warm tone to match the dark editorial mood */
  filter: contrast(1.03) saturate(1.05);
}
/* Vignette so the cutout edges blend into the dark backdrop */
.bio__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, transparent 50%, rgba(14,14,13,.55) 100%),
    linear-gradient(180deg, rgba(14,14,13,.45) 0%, transparent 18%, transparent 70%, rgba(14,14,13,.55) 100%);
  pointer-events: none;
  z-index: 2;
}
/* Legacy placeholder (kept for fallback if no img is provided) */
.bio__placeholder {
  position: absolute;
  inset: 16px;
  border: 1px dashed var(--line-2);
  border-radius: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 6px;
  color: var(--text-mute);
  z-index: 1;
}
.bio__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.bio__name {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 64px);
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}
.bio__placeholder small { font-size: 11px; letter-spacing: 0.08em; }
.bio__index {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.2em;
  z-index: 3;
}
.bio__head {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}
.bio__head h3 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 52px);
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--text);
}
.bio__num {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 0.5em;
  letter-spacing: 0.02em;
  color: var(--accent);
  vertical-align: 0.3em;
  margin-left: 0.18em;
}
.bio__role {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 700;
}
.bio__lede {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.3;
}
.bio__content p { color: var(--text-dim); margin: 0 0 18px; font-size: 15px; line-height: 1.6; }
.bio__content strong { color: var(--text); font-weight: 700; }

/* Manifesto-style closer for the bio */
.bio__motto {
  margin: 22px 0 0 !important;
  padding: 18px 20px;
  background: rgba(228,103,49,0.05);
  border-left: 2px solid var(--accent);
  border-radius: 0 8px 8px 0;
  display: grid;
  gap: 8px;
}
.bio__motto-label {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.bio__motto em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.bio__motto em strong {
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
}
.bio__wins { display: grid; gap: 8px; margin-top: 10px; }
.bio__wins li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 6px;
  font-size: 14px;
  color: var(--text-dim);
}
.bio__wins li span { color: var(--accent); font-weight: 800; }

.instructors__closer {
  text-align: center;
  margin: 64px auto 0;
  font-family: var(--f-display);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.instructors__closer em { color: var(--accent-3); }

@media (min-width: 880px) {
  .bio { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 56px; }
  .bio--reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
  .bio--reverse .bio__photo { order: 2; }
}

/* ─────────── FINAL ─────────── */
.final {
  background:
    radial-gradient(circle at 80% 20%, rgba(228,103,49,.10), transparent 50%),
    var(--bg);
  padding: 96px var(--gutter);
  border-top: 1px solid var(--line);
}
.final__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.final__copy { min-width: 0; }
.h1--final {
  font-size: clamp(32px, 5.4vw, 60px);
  margin-top: 20px;
}
.final__note {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.5;
}
@media (min-width: 960px) {
  .final__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 80px; }
}

/* ─────────── FOOTER ─────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 48px var(--gutter) 56px;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 22px;
  align-items: start;
}
.footer__brand { display: grid; gap: 6px; }
.footer__brand p { margin: 0; color: var(--text-mute); font-size: 13px; }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: var(--text-dim);
}
.footer__links a:hover { color: var(--accent); }
.footer__copy {
  font-size: 12px;
  color: var(--text-mute);
  margin: 0;
  letter-spacing: 0.04em;
}
@media (min-width: 820px) {
  .footer { padding-bottom: 64px; }
  .footer__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
  .footer__copy { text-align: right; }
}

/* (Sticky mobile CTA removed — form is accessible inline) */

/* ─────────── REVEAL ANIMATIONS ─────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--delay, 0ms);
  }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* ============================================================
   THANK YOU PAGE — gracias.html
   ============================================================ */

.thanks {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px var(--gutter) 80px;
  text-align: center;
}
.progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 36px;
}
.progress__bar {
  flex: 1;
  height: 8px;
  background: var(--surface);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
}
.progress__fill {
  display: block;
  height: 100%;
  width: 90%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 100px;
  position: relative;
}
.progress__fill::after {
  content: '';
  position: absolute;
  top: -2px; right: -2px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(228,103,49,.25);
  animation: pulse 1.6s ease-in-out infinite;
}
.progress__label {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 14px;
  color: var(--accent);
}

.thanks__check {
  display: inline-grid;
  place-items: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(37,211,102,.18), transparent 70%);
  margin-bottom: 18px;
  color: var(--whatsapp);
}
.thanks__check svg { width: 36px; height: 36px; }

.thanks h1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(26px, 4.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--text);
}
.thanks__shout {
  display: block;
  font-family: var(--f-display);
  font-weight: 900;
  font-style: normal;
  font-size: clamp(48px, 9vw, 88px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 14px;
}
.thanks__sub {
  font-size: 16px;
  color: var(--text-dim);
  margin: 0 0 28px;
  max-width: 56ch;
  margin-left: auto; margin-right: auto;
}
.step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(228,103,49,.10);
  color: var(--accent);
  margin-bottom: 24px;
}

.wa-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 520px;
  padding: 18px 22px;
  background: var(--whatsapp);
  color: #06291a;
  border-radius: 14px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 8px auto;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.45);
  transition: transform .15s ease, box-shadow .25s ease, background .2s ease;
  white-space: nowrap;
}
.wa-cta:hover {
  transform: translateY(-1px);
  background: #2bea76;
  box-shadow: 0 18px 40px -8px rgba(37,211,102,.55);
}
.wa-cta svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-cta span { white-space: nowrap; }

/* Tighten for mobile so the label stays on one line */
@media (max-width: 480px) {
  .wa-cta {
    font-size: 13px;
    padding: 16px 14px;
    gap: 10px;
    letter-spacing: 0.04em;
  }
  .wa-cta svg { width: 20px; height: 20px; }
}
@media (max-width: 360px) {
  .wa-cta {
    font-size: 12px;
    padding: 14px 12px;
    gap: 8px;
  }
}

.vsl-wrap {
  margin: 40px 0 28px;
  text-align: left;
}

/* Directive block beneath the VSL — same visual weight as a section H2 */
.thanks__directive {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 8px 0 18px;
  text-align: center;
}
.thanks__directive-arrow {
  display: inline-block;
  color: var(--whatsapp);
  margin-left: 4px;
  animation: bob 1.6s ease-in-out infinite;
}
.vsl-frame {
  position: relative;
  background: linear-gradient(180deg, #1a1a18, #0d0d0c);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* fallback while VTurb player is still loading */
  min-height: 220px;
}
.vsl-frame vturb-smartplayer {
  display: block;
  width: 100%;
}

.date-reinforce {
  margin: 28px auto 0;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 520px;
  text-align: left;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}
.date-reinforce p {
  margin: 0;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}
.date-reinforce strong { color: var(--text); }

/* utility */
.u-center { text-align: center; }
