/* ═══════════════ SMILE VOLATILITY · componentes ═══════════════ */

/* ── NAV ── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .5s var(--ease), border-color .5s var(--ease),
              backdrop-filter .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.stuck {
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--hairline);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6); height: 74px;
}
.brand { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }
.brand__mark { width: 30px; height: 30px; color: var(--accent); transition: color .5s var(--ease); }
.brand__word {
  font-family: var(--font-display); font-weight: 800;
  font-size: var(--text-sm); letter-spacing: -.03em; text-transform: lowercase;
}
.brand__word em { font-style: normal; color: var(--ink-3); }

.nav__links { display: flex; gap: var(--space-8); }
.nav__links a {
  font-family: var(--font-display); font-size: var(--text-sm);
  font-weight: 500; color: var(--ink-2); position: relative; padding: var(--space-1) 0;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--accent); transition: width .4s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__act { display: flex; align-items: center; gap: var(--space-3); }
.pill {
  font-family: var(--font-display); font-size: var(--text-xs); font-weight: 600;
  letter-spacing: .04em; padding: var(--space-2) var(--space-4);
  border-radius: 99px; transition: all .35s var(--ease); white-space: nowrap;
}
.pill--ghost {
  border: 1px solid var(--hairline-2); color: var(--ink-2);
  display: flex; align-items: center; gap: var(--space-2);
}
.pill--ghost:hover { border-color: var(--accent); color: var(--ink); }
.pill--ghost .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  transition: background .5s var(--ease); flex-shrink: 0;
}
.pill--solid { background: var(--ink); color: var(--void); }
.pill--solid:hover { background: var(--accent); color: var(--void); }

/* ── BOTONES ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: var(--text-sm); font-weight: 600;
  letter-spacing: .02em; padding: var(--space-4) var(--space-8);
  border-radius: 2px; transition: all .4s var(--ease); position: relative; overflow: hidden;
}
.btn--fill { background: var(--accent); color: var(--void); }
.btn--fill:hover { background: var(--ink); transform: translateY(-2px); }
.btn--line { border: 1px solid var(--hairline-2); color: var(--ink); }
.btn--line:hover { border-color: var(--accent); background: rgba(255,255,255,.04); transform: translateY(-2px); }
.btn--lg { padding: var(--space-5) var(--space-12); font-size: var(--text-base); }

/* ── HERO ── */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end;
        overflow: hidden; padding-bottom: var(--space-24); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 64% 22%;
  animation: heroIn 1.8s var(--ease-out) both;
}
@keyframes heroIn { from { transform: scale(1.07); opacity: .3 } to { transform: none; opacity: 1 } }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, #000 4%, rgba(0,0,0,.72) 34%, rgba(0,0,0,.2) 66%, rgba(0,0,0,.55) 100%),
    linear-gradient(to right, #000 0%, rgba(0,0,0,.6) 38%, transparent 72%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .35;
  background-image:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 70% 60% at 25% 70%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 25% 70%, #000 20%, transparent 78%);
}
.hero__body { position: relative; z-index: 2; max-width: 900px; }
.hero__kicker { animation: up 1s var(--ease-out) .3s both; }
.hero__title { font-size: var(--text-hero); margin: var(--space-5) 0 var(--space-6); }
.hero__title span { display: block; }
.hero__title .l1 { animation: up 1.1s var(--ease-out) .45s both; }
.hero__title .l2 { animation: up 1.1s var(--ease-out) .6s both; }
.hero__title em { font-style: normal; color: var(--accent); transition: color .5s var(--ease); }
.hero__lede {
  font-size: var(--text-lg); color: var(--ink-2); max-width: 54ch; line-height: 1.6;
  animation: up 1.1s var(--ease-out) .78s both;
}
.hero__cta {
  display: flex; gap: var(--space-4); flex-wrap: wrap; margin-top: var(--space-8);
  animation: up 1.1s var(--ease-out) .95s both;
}
@keyframes up { from { opacity: 0; transform: translateY(34px) } to { opacity: 1; transform: none } }

.hero__ticker {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  border-top: 1px solid var(--hairline); background: rgba(0,0,0,.6);
  backdrop-filter: blur(10px); overflow: hidden; padding: var(--space-3) 0;
}
.ticker__track {
  display: flex; align-items: center; gap: var(--space-6); white-space: nowrap;
  animation: slide 34s linear infinite; width: max-content;
}
.ticker__track span {
  font-family: var(--font-display); font-size: var(--text-xs); font-weight: 600;
  letter-spacing: .2em; color: var(--ink-3);
}
.ticker__track i { color: var(--accent); font-style: normal; transition: color .5s var(--ease); }
@keyframes slide { to { transform: translateX(-50%) } }

/* ── SECTION HEADS ── */
.sec__head { max-width: 760px; margin-bottom: var(--space-20); scroll-margin-top: 110px; }

/* Offset para que los títulos no queden bajo el nav fijo */
section[id] { scroll-margin-top: 74px; }
.sec__title { font-size: var(--text-2xl); margin: var(--space-4) 0 var(--space-5); }
.sec__title em { font-style: normal; color: var(--accent); }
.sec__lede { font-size: var(--text-lg); color: var(--ink-2); line-height: 1.6; max-width: 58ch; }

/* ── LÍNEAS ── */
.lines { padding: var(--space-32) 0; border-top: 1px solid var(--hairline); }
.lines .sec__head, .cat .sec__head, .specs .sec__head { padding-top: var(--space-4); }
.lines__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; background: var(--hairline);
  border: 1px solid var(--hairline);
}
.lcard {
  position: relative; background: var(--surface-1); padding: var(--space-10) var(--space-8);
  display: flex; flex-direction: column; gap: var(--space-6);
  transition: background .5s var(--ease), transform .5s var(--ease);
  cursor: pointer; overflow: hidden;
}
.lcard::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 0%, var(--accent), transparent 72%);
  opacity: 0; transition: opacity .6s var(--ease); pointer-events: none;
}
.lcard:hover { background: var(--surface-2); }
.lcard:hover::before { opacity: .1; }
.lcard--feature { background: var(--surface-2); }
.lcard--feature::before { opacity: .07; }

.lcard__logo {
  width: 86px; height: 86px; display: grid; place-items: center;
  transition: transform .6s var(--ease);
}
.lcard:hover .lcard__logo { transform: scale(1.08) rotate(-3deg); }
.lcard__logo img { width: 100%; height: 100%; object-fit: contain; }

.lcard__tag {
  font-family: var(--font-display); font-size: var(--text-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em; color: var(--accent);
  margin: 0 0 var(--space-2);
}
.lcard__name { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.lcard__who {
  font-family: var(--font-display); font-size: var(--text-xs); color: var(--ink-3);
  margin: 0 0 var(--space-4); letter-spacing: .02em;
}
.lcard__desc { font-size: var(--text-sm); color: var(--ink-2); line-height: 1.65; margin: 0; }
.lcard__meta {
  display: flex; gap: var(--space-8); margin-top: auto; padding-top: var(--space-6);
  border-top: 1px solid var(--hairline);
}
.lcard__meta > div { display: flex; flex-direction: column; gap: 2px; }
.lcard__meta .k {
  font-family: var(--font-display); font-size: var(--text-xs);
  text-transform: uppercase; letter-spacing: .14em; color: var(--ink-4);
}
.lcard__meta .v { font-family: var(--font-display); font-size: var(--text-sm); font-weight: 700; }
.lcard__swatch {
  position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease);
}
.lcard:hover .lcard__swatch, .lcard--feature .lcard__swatch { transform: scaleX(1); }

/* ── EDITORIAL SPLIT ── */
.ed {
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch;
  border-top: 1px solid var(--hairline); background: var(--surface-1);
}
.ed__media { position: relative; overflow: hidden; min-height: 620px; }
.ed__media img { width: 100%; height: 100%; object-fit: cover; }
.ed__body { display: flex; align-items: center; padding: var(--space-24) var(--gutter); }
.ed__inner { max-width: 46ch; }
.ed__title { font-size: var(--text-2xl); margin: var(--space-4) 0 var(--space-6); }
.ed__title em { font-style: normal; color: var(--accent); }
.ed__text { font-size: var(--text-base); color: var(--ink-2); line-height: 1.75; }
.ed__list { list-style: none; padding: 0; margin: var(--space-8) 0; }
.ed__list li {
  display: flex; align-items: baseline; gap: var(--space-4);
  padding: var(--space-3) 0; border-bottom: 1px solid var(--hairline);
  font-family: var(--font-display); font-size: var(--text-sm); color: var(--ink-2);
}
.ed__list span {
  font-weight: 800; color: var(--accent); min-width: 4.5ch; font-size: var(--text-base);
}
.ed__list span::before { content: '$'; opacity: .55; font-size: .8em; }

/* ── CATÁLOGO ── */
.cat { padding: var(--space-32) 0; border-top: 1px solid var(--hairline); }
.cat__grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: var(--space-6);
}
/* Composición editorial sin huecos: 3+3 arriba con la wide, luego 2+4 */
.cat__grid > :nth-child(1) { grid-column: span 3; }
.cat__grid > :nth-child(2) { grid-column: span 3; }
.cat__grid > :nth-child(3) { grid-column: span 2; }
.cat__grid > :nth-child(4) { grid-column: span 2; }
.cat__grid > :nth-child(5) { grid-column: span 2; }
.pcard {
  position: relative; background: var(--surface-1); border: 1px solid var(--hairline);
  overflow: hidden; transition: border-color .5s var(--ease), transform .5s var(--ease);
  display: flex; flex-direction: column;
}
.pcard:hover { border-color: var(--accent); transform: translateY(-4px); }
.pcard__img { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--void); }
.pcard--wide .pcard__img { aspect-ratio: 16/10; }
.pcard__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease), filter .6s var(--ease);
}
.pcard:hover .pcard__img img { transform: scale(1.05); }
.pcard__info {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--space-4); padding: var(--space-6); margin-top: auto;
}
.pcard__info > div { min-width: 0; }
.pcard__line {
  font-family: var(--font-display); font-size: var(--text-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: .16em; color: var(--accent);
  margin: 0 0 var(--space-2);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pcard__name {
  font-size: var(--text-base); margin-bottom: var(--space-1); letter-spacing: -.02em;
  text-wrap: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pcard__spec { font-size: var(--text-xs); color: var(--ink-3); margin: 0; line-height: 1.5; }
.pcard__price {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1rem + .5vw, 1.375rem);
  font-weight: 800; margin: 0; white-space: nowrap; flex-shrink: 0;
  line-height: 1;
}
.pcard__price::before { content: '$'; font-size: .62em; opacity: .5; vertical-align: .3em; }
.cat__note {
  text-align: center; margin-top: var(--space-16); color: var(--ink-3);
  font-family: var(--font-display); font-size: var(--text-xs);
  letter-spacing: .16em; text-transform: uppercase;
}

/* ── SPECS ── */
.specs { padding: var(--space-32) 0; border-top: 1px solid var(--hairline); background: var(--surface-1); }
.specs__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: var(--space-12);
}
.spec { border-top: 2px solid var(--accent); padding-top: var(--space-6); }
.spec__n {
  font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 900;
  line-height: .85; letter-spacing: -.05em; margin: 0;
}
.spec__u {
  font-family: var(--font-display); font-size: var(--text-xs); font-weight: 600;
  text-transform: uppercase; letter-spacing: .2em; color: var(--accent);
  margin: var(--space-2) 0 var(--space-4);
}
.spec__d { font-size: var(--text-sm); color: var(--ink-2); line-height: 1.65; margin: 0; }

/* ── MANIFIESTO ── */
.mani { padding: var(--space-32) 0; border-top: 1px solid var(--hairline); }
.mani__wrap { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-10); }
.mani__mark { width: 74px; color: var(--accent); transition: color .5s var(--ease); }
.mani__q { margin: 0; max-width: 24ch; }
.mani__q p {
  font-family: var(--font-body); font-size: var(--text-xl); line-height: 1.45;
  color: var(--ink); max-width: 30ch; margin-inline: auto;
}
.mani__q em { font-style: italic; color: var(--accent); }
.mani__q footer {
  font-family: var(--font-display); font-size: var(--text-xs); font-weight: 600;
  text-transform: uppercase; letter-spacing: .2em; color: var(--ink-3);
  margin-top: var(--space-8);
}

/* ── END CTA ── */
.end {
  padding: var(--space-32) 0; border-top: 1px solid var(--hairline);
  background:
    radial-gradient(ellipse 80% 100% at 50% 100%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 70%),
    var(--void);
}
.end__wrap { text-align: center; }
.end__title { font-size: var(--text-3xl); margin-bottom: var(--space-6); }
.end__title em { font-style: normal; color: var(--accent); }
.end__lede { font-size: var(--text-lg); color: var(--ink-2); margin-bottom: var(--space-10); }
.end__cta { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.foot { border-top: 1px solid var(--hairline); padding-top: var(--space-20); background: var(--surface-1); }
.foot__grid {
  display: grid; grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: var(--space-12); padding-bottom: var(--space-16);
}
.foot__brand .brand__word { font-size: var(--text-lg); display: block; margin-bottom: var(--space-4); }
.foot__brand p { font-size: var(--text-sm); color: var(--ink-3); line-height: 1.7; }
.foot__col { display: flex; flex-direction: column; gap: var(--space-3); }
.foot__col .eyebrow { margin-bottom: var(--space-2); }
.foot__col a {
  font-family: var(--font-display); font-size: var(--text-sm); color: var(--ink-2);
  transition: color .3s var(--ease);
}
.foot__col a:hover { color: var(--accent); }
.foot__base {
  display: flex; justify-content: space-between; gap: var(--space-6); flex-wrap: wrap;
  padding: var(--space-6) 0; border-top: 1px solid var(--hairline);
}
.foot__base p {
  margin: 0; font-family: var(--font-display); font-size: var(--text-xs); color: var(--ink-4);
  letter-spacing: .06em;
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .cat__grid { grid-template-columns: repeat(2, 1fr); }
  .cat__grid > * { grid-column: span 1 !important; }
  .cat__grid > :nth-child(1) { grid-column: span 2 !important; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .ed { grid-template-columns: 1fr; }
  .ed__media { min-height: 460px; }
  .ed__body { padding: var(--space-16) var(--gutter); }
  .hero { padding-bottom: var(--space-20); }
  .lines, .cat, .specs, .mani, .end { padding: var(--space-20) 0; }
  .sec__head { margin-bottom: var(--space-12); }
  .specs__grid { gap: var(--space-8); }
}
@media (max-width: 560px) {
  .cat__grid { grid-template-columns: 1fr; }
  .cat__grid > * { grid-column: span 1 !important; }
  .pcard--wide .pcard__img { aspect-ratio: 4/5; }
  .hero__media img { object-position: 68% 20%; }
  .nav__act .pill--ghost { display: none; }
  .foot__grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .lcard { padding: var(--space-8) var(--space-6); }
  .pcard__info { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
  .btn { width: 100%; }
  .hero__cta, .end__cta { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════
   LOCKUP OFICIAL · construcción del manual
   curva → wordmark → línea de acento 50×2 → tagline Lora Italic
   ═══════════════════════════════════════════════════════════ */
.sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.lockup { text-align: center; margin-bottom: var(--space-10); }

/* ── Curva: se dibuja sola ── */
.lockup__curve {
  width: clamp(200px, 34vw, 420px); margin: 0 auto var(--space-6);
  overflow: visible;
}
.lockup__path {
  stroke-dasharray: 118; stroke-dashoffset: 118;
  animation: draw 1.9s var(--ease-out) .25s forwards,
             breathe 5.5s ease-in-out 2.6s infinite;
}
.lockup__tick {
  opacity: 0; animation: tickIn .7s var(--ease-el) 2s forwards;
}
@keyframes draw   { to { stroke-dashoffset: 0 } }
@keyframes tickIn { from { opacity: 0; transform: scaleY(0) } to { opacity: .85; transform: none } }
@keyframes breathe {
  0%,100% { filter: none }
  50%     { filter: brightness(1.35) }
}

/* ── Wordmark: Poppins Bold uppercase, letra por letra ── */
.lockup__word {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.9rem, 6.4vw, 5.2rem);
  letter-spacing: .09em; line-height: 1;
  display: flex; align-items: flex-start; justify-content: center;
  gap: .34em; flex-wrap: wrap; margin: 0;
  text-transform: uppercase;
}
.lockup__smile, .lockup__vol { display: inline-flex; }
.lockup__smile i, .lockup__vol i {
  font-style: normal; display: inline-block;
  opacity: 0; transform: translateY(.5em) rotateX(-55deg);
  animation: letterIn .82s var(--ease-out) forwards;
}
.lockup__smile i { color: var(--title-terra); }
.lockup__vol i   { color: var(--warm-white); }
@keyframes letterIn { to { opacity: 1; transform: none } }

/* Cascada: SMILE primero, luego VOLATILITY */
.lockup__smile i:nth-child(1){animation-delay:1.15s}
.lockup__smile i:nth-child(2){animation-delay:1.21s}
.lockup__smile i:nth-child(3){animation-delay:1.27s}
.lockup__smile i:nth-child(4){animation-delay:1.33s}
.lockup__smile i:nth-child(5){animation-delay:1.39s}
.lockup__vol i:nth-child(1){animation-delay:1.48s}
.lockup__vol i:nth-child(2){animation-delay:1.54s}
.lockup__vol i:nth-child(3){animation-delay:1.60s}
.lockup__vol i:nth-child(4){animation-delay:1.66s}
.lockup__vol i:nth-child(5){animation-delay:1.72s}
.lockup__vol i:nth-child(6){animation-delay:1.78s}
.lockup__vol i:nth-child(7){animation-delay:1.84s}
.lockup__vol i:nth-child(8){animation-delay:1.90s}
.lockup__vol i:nth-child(9){animation-delay:1.96s}
.lockup__vol i:nth-child(10){animation-delay:2.02s}

.lockup__tm {
  font-size: .24em; color: var(--muted); font-weight: 500;
  align-self: flex-start; margin-left: -.16em; margin-top: .3em;
  opacity: 0; animation: letterIn .7s var(--ease-out) 2.2s forwards;
}

/* ── Línea de acento 50px × 2px ── */
.lockup__rule {
  transform: scaleX(0); transform-origin: center;
  animation: ruleIn .9s var(--ease-out) 2.3s forwards;
}
@keyframes ruleIn { to { transform: scaleX(1) } }

/* ── Tagline Lora Italic, 22–33px ── */
.lockup__tag {
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  margin: 0; opacity: 0;
  animation: up 1s var(--ease-out) 2.5s forwards;
}

.hero__lede { animation: up 1s var(--ease-out) 2.75s both; }
.hero__cta  { animation: up 1s var(--ease-out) 2.92s both; }
.hero__whisper {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--text-xs); letter-spacing: .3em; text-transform: uppercase;
  color: var(--whisper); margin: var(--space-10) 0 0;
  opacity: 0; animation: up 1s var(--ease-out) 3.1s forwards;
}

/* ── Marca del nav ── */
.brand__curve { width: 34px; color: var(--accent); overflow: visible; transition: color .5s var(--ease); }
.brand__word {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--text-xs); letter-spacing: .16em; text-transform: uppercase;
  white-space: nowrap;
}
.brand__word b { font-weight: 700; color: var(--accent); transition: color .5s var(--ease); }
.brand__word sup { font-size: .62em; color: var(--muted); margin-left: .12em; }
.brand { flex-direction: column; align-items: flex-start; gap: 3px; }

/* ═══════════════════════════════════════════════════════════
   CARAS TEENS · exclusivo Young Traders Division
   ═══════════════════════════════════════════════════════════ */
.faces {
  padding: var(--space-32) 0; border-top: 1px solid var(--hairline);
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(253,225,0,.055), transparent 68%),
    var(--surface-1);
  overflow: hidden;
}
.faces__head { text-align: center; margin-inline: auto; }
.faces__head .sec__lede { margin-inline: auto; }

.faces__strip {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4); margin-top: var(--space-12);
}
.face {
  position: relative; aspect-ratio: 1; padding: var(--space-4);
  border: 1px solid var(--hairline); background: var(--void);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--space-3); overflow: hidden;
  transition: border-color .5s var(--ease), transform .6s var(--ease-el),
              background .5s var(--ease);
  opacity: 0; transform: translateY(26px) scale(.92);
  animation: faceIn .85s var(--ease-el) forwards;
}
.faces__strip .face:nth-child(1){animation-delay:.05s}
.faces__strip .face:nth-child(2){animation-delay:.14s}
.faces__strip .face:nth-child(3){animation-delay:.23s}
.faces__strip .face:nth-child(4){animation-delay:.32s}
.faces__strip .face:nth-child(5){animation-delay:.41s}
.faces__strip .face:nth-child(6){animation-delay:.50s}
@keyframes faceIn { to { opacity: 1; transform: none } }

.face::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, var(--fc), transparent 68%);
  opacity: 0; transition: opacity .6s var(--ease); pointer-events: none;
}
.face:hover, .face.is-on { border-color: var(--fc); transform: translateY(-7px); }
.face:hover::before { opacity: .14; }
.face.is-on::before { opacity: .1; }

.face img {
  width: 78%; height: auto;
  filter: drop-shadow(0 0 0 transparent);
  transition: transform .7s var(--ease-el), filter .6s var(--ease);
}
.face:hover img, .face.is-on img {
  transform: scale(1.09) rotate(-4deg);
  filter: drop-shadow(0 6px 26px var(--fc));
}
.face__n {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--text-xs); letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-3); transition: color .4s var(--ease);
}
.face:hover .face__n, .face.is-on .face__n { color: var(--fc); }

.faces__note {
  text-align: center; margin-top: var(--space-16);
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--text-xs); letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-4);
}

@media (max-width: 900px) { .faces__strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .faces__strip { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); } }

/* ═══════════════ MOTION EXTRA ═══════════════ */
/* Marquee del ticker más vivo */
.ticker__track span { transition: color .4s var(--ease); }
.hero__ticker:hover .ticker__track { animation-play-state: paused; }

/* Cards de línea: entrada escalonada con rotación sutil */
.lcard { will-change: transform; }
.lcard.reveal { transform: translateY(34px) rotate(-.6deg); }
.lcard.reveal.in { transform: none; }

/* Producto: overlay de precio que sube al hover */
.pcard__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--void) 0%, transparent 42%);
  opacity: .55; transition: opacity .6s var(--ease);
}
.pcard:hover .pcard__img::after { opacity: .25; }

/* Números de specs: cuenta visual con glow */
.spec__n { transition: color .5s var(--ease), text-shadow .5s var(--ease); }
.spec:hover .spec__n { color: var(--accent); text-shadow: 0 0 34px var(--accent); }

/* Manifiesto: la curva respira */
.mani__mark svg { animation: floaty 7s ease-in-out infinite; }
@keyframes floaty {
  0%,100% { transform: translateY(0) }
  50%     { transform: translateY(-9px) }
}

/* ── FIX: nav brand no debe cortarse ── */
.nav__inner { height: auto; min-height: 76px; padding-block: var(--space-3); }
.brand { padding-top: 2px; }
.brand__curve { width: 30px; margin-bottom: 1px; }

/* ── FIX: lockup y texto del hero comparten eje ── */
.hero__body { max-width: 1000px; }
.lockup { text-align: center; }
.hero__lede, .hero__cta, .hero__whisper { text-align: center; margin-inline: auto; }
.hero__lede { max-width: 56ch; }
.hero__cta { justify-content: center; }
.hero { align-items: center; padding-block: var(--space-32) var(--space-24); }
.hero__scrim {
  background:
    linear-gradient(to top, var(--bg-dark) 3%, rgba(10,5,4,.86) 30%, rgba(10,5,4,.68) 60%, rgba(10,5,4,.8) 100%),
    radial-gradient(ellipse 60% 55% at 50% 42%, rgba(215,105,58,.1), transparent 70%);
}
.hero__media img { object-position: 50% 18%; opacity: .5; }
.hero__grid {
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 15%, transparent 72%);
}

/* ── FIX: el wordmark en una línea cuando cabe ── */
@media (min-width: 1000px) {
  .lockup__word { flex-wrap: nowrap; font-size: clamp(2.6rem, 4.6vw, 4.4rem); }
}

/* ── FIX: caras más grandes y legibles ── */
.face { padding: var(--space-5) var(--space-4); }
.face img { width: 88%; }
.face__n { font-size: .8rem; letter-spacing: .2em; }
.faces__strip { gap: var(--space-5); }
@media (min-width: 1200px) { .faces__strip { gap: var(--space-6); } }

/* ── Tarjetas de división: curva oficial tematizada ── */
.lcard__logo { width: 100%; height: auto; display: block; }
.lcard__curve { width: 88px; color: var(--accent); overflow: visible; transition: color .5s var(--ease); }
.lcard:hover .lcard__curve { filter: drop-shadow(0 0 18px var(--accent)); }

/* ═══════════════════════════════════════════════════════════
   SMILE ENGINE · canvas de fondo y curva de progreso
   ═══════════════════════════════════════════════════════════ */
#smileField {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  width: 100vw; height: 100vh; opacity: .85;
}
body > *:not(#smileField) { position: relative; z-index: 1; }

#scrollSmile {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 84px; height: auto; color: var(--accent);
  pointer-events: none; opacity: .6;
  filter: drop-shadow(0 0 12px currentColor);
  transition: color .5s var(--ease), opacity .4s var(--ease);
}
@media (max-width: 640px) { #scrollSmile { width: 58px; bottom: 16px; right: 16px; } }

/* ── Divisor: sonrisa que se traza ── */
.divider {
  padding: var(--space-16) 0 var(--space-8);
  color: var(--accent); transition: color .5s var(--ease);
  display: flex; justify-content: center;
}
.divider svg { width: min(320px, 42vw); overflow: visible; }
.divider__path { opacity: .55; }

/* ═══════════════════════════════════════════════════════════
   COLECCIONES · retícula editorial
   ═══════════════════════════════════════════════════════════ */
.cols {
  padding: var(--space-32) 0 var(--space-24);
  border-top: 1px solid var(--hairline);
}
.cols__head { text-align: center; margin-inline: auto; }
.cols__head .sec__lede { margin-inline: auto; }

.cols__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: var(--space-6); margin-top: var(--space-16);
}

.ccard {
  position: relative; overflow: hidden;
  border: 1px solid var(--hairline); background: var(--surface-1);
  display: flex; flex-direction: column;
  transition: border-color .55s var(--ease), transform .6s var(--ease);
}
.ccard:hover { border-color: var(--ca); transform: translateY(-6px); }

.ccard__media { position: relative; aspect-ratio: 16/11; overflow: hidden; background: var(--void); }
.ccard__media img {
  width: 100%; height: 100%; object-fit: cover; opacity: .62;
  transition: transform 1.3s var(--ease), opacity .6s var(--ease);
}
.ccard:hover .ccard__media img { transform: scale(1.07); opacity: .82; }
.ccard__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--surface-1) 2%, rgba(18,9,7,.5) 45%, transparent 85%);
}
.ccard__mark {
  position: absolute; left: var(--space-6); bottom: var(--space-5);
  width: 76px; color: var(--ca);
  transition: transform .7s var(--ease-el), filter .5s var(--ease);
}
.ccard:hover .ccard__mark {
  transform: translateY(-4px) scale(1.1);
  filter: drop-shadow(0 0 16px var(--ca));
}
.ccard__curve { overflow: visible; }

.ccard__body { padding: var(--space-6); display: flex; flex-direction: column; flex: 1; }
.ccard__kick {
  font-family: var(--font-display); font-weight: 500; font-size: var(--text-xs);
  text-transform: uppercase; letter-spacing: .2em; color: var(--ca);
  margin: 0 0 var(--space-2);
}
.ccard__name {
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg);
  text-transform: uppercase; letter-spacing: .04em; margin: 0 0 var(--space-3);
}
.ccard__blurb {
  font-size: var(--text-sm); color: var(--ink-2); line-height: 1.65;
  margin: 0 0 var(--space-5);
}
.ccard__subs {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--hairline); margin-top: auto;
}
.ccard__sub {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-3) 0; border-bottom: 1px solid var(--hairline);
  font-family: var(--font-display); font-size: var(--text-sm); font-weight: 500;
  color: var(--ink-2); transition: color .3s var(--ease), padding-left .35s var(--ease);
}
.ccard__sub:hover { color: var(--ca); padding-left: var(--space-2); }
.ccard__sub em { font-style: normal; font-size: var(--text-xs); color: var(--ink-4); }
.ccard__sub:hover em { color: var(--ca); }
.ccard__count {
  margin: var(--space-5) 0 0;
  font-family: var(--font-display); font-size: var(--text-xs); font-weight: 500;
  text-transform: uppercase; letter-spacing: .18em; color: var(--ink-4);
}
.ccard__count span { color: var(--ca); font-weight: 700; }

@media (max-width: 720px) {
  .cols__grid { grid-template-columns: 1fr; }
  .divider { padding: var(--space-10) 0 var(--space-4); }
}

/* ═══════════════════════════════════════════════════════════
   LOCKUP VECTORIAL OFICIAL
   ═══════════════════════════════════════════════════════════ */
.lockup__svg {
  width: min(760px, 88vw); height: auto; margin: 0 auto; display: block;
  pointer-events: none;
  opacity: 0; transform: translateY(24px);
  animation: lockIn 1.5s var(--ease-out) .3s forwards;
}
@keyframes lockIn { to { opacity: 1; transform: none } }

/* ═══════════════════════════════════════════════════════════
   SECCIÓN EDITORIAL · dos figuras + intro central
   ═══════════════════════════════════════════════════════════ */
.sx {
  padding: var(--space-32) var(--gutter);
  border-top: 1px solid var(--hairline);
  scroll-margin-top: 80px;
}
.sx__top {
  display: grid; grid-template-columns: 1fr 1.06fr 1fr;
  gap: var(--space-8); align-items: center;
  max-width: var(--max); margin-inline: auto;
}
.sx--flip .sx__fig--a { order: 3; }
.sx--flip .sx__fig--b { order: 1; }

.sx__fig {
  margin: 0; overflow: hidden; background: var(--void);
  aspect-ratio: 3/4; position: relative;
  border: 1px solid var(--hairline);
}
.sx__fig--b { aspect-ratio: 4/5; }
.sx__fig img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08); will-change: transform;
  transition: filter .7s var(--ease);
}
.sx__fig:hover img { filter: brightness(1.08) saturate(1.06); }

.sx__intro { text-align: center; padding: var(--space-6) var(--space-4); }
.sx__mk { display: block; width: 96px; margin: 0 auto var(--space-6); color: var(--sa); }
.sx__mk .mk { overflow: visible; filter: drop-shadow(0 0 18px var(--sa)); }
.sx__h {
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-2xl);
  text-transform: uppercase; letter-spacing: .04em; margin: var(--space-3) 0 var(--space-4);
}
.sx__b {
  font-size: var(--text-base); color: var(--ink-2); line-height: 1.7;
  max-width: 34ch; margin: 0 auto var(--space-8);
}
.sx__chips { display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; }
.chip {
  font-family: var(--font-display); font-weight: 500; font-size: var(--text-xs);
  text-transform: uppercase; letter-spacing: .12em;
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--hairline-2); border-radius: 99px; color: var(--ink-2);
  transition: all .4s var(--ease);
}
.chip:hover { border-color: var(--sa); color: var(--sa); transform: translateY(-2px); }

/* Retícula de producto de la sección */
.sx__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5); max-width: var(--max); margin: var(--space-16) auto 0;
}
.p {
  border: 1px solid var(--hairline); background: var(--surface-1); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .5s var(--ease), transform .5s var(--ease);
}
.p:hover { border-color: var(--sa); transform: translateY(-5px); }
.p__img { aspect-ratio: 1; overflow: hidden; background: var(--void); }
.p__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.p:hover .p__img img { transform: scale(1.06); }
.p__meta {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--space-3); padding: var(--space-5); margin-top: auto;
}
.p__meta > div { min-width: 0; }
.p__meta h4 {
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm);
  text-transform: uppercase; letter-spacing: .03em; margin: 0 0 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.p__meta p { font-size: var(--text-xs); color: var(--ink-3); margin: 0; line-height: 1.45; }
.p__price {
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-base);
  flex-shrink: 0; white-space: nowrap; color: var(--ink);
}

/* ═══════════════════════════════════════════════════════════
   TRADERS LIFESTYLE · galería NYC en mosaico
   ═══════════════════════════════════════════════════════════ */
.ls {
  padding: var(--space-32) 0; border-top: 1px solid var(--hairline);
  scroll-margin-top: 80px;
}
.ls__head { text-align: center; margin-inline: auto; }
.ls__head .sec__lede { margin-inline: auto; }
.ls__mk { display: block; width: 100px; margin: 0 auto var(--space-6); color: var(--accent); }
.ls__mk .mk { overflow: visible; filter: drop-shadow(0 0 20px var(--accent)); }

.ls__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px; gap: var(--space-4);
  padding: 0 var(--gutter); margin-top: var(--space-16);
  max-width: var(--max); margin-inline: auto;
}
.ls__t {
  margin: 0; position: relative; overflow: hidden; background: var(--void);
  border: 1px solid var(--hairline);
}
.ls__t--1 { grid-column: span 2; grid-row: span 2; }
.ls__t--2 { grid-column: span 1; grid-row: span 2; }
.ls__t--3 { grid-column: span 1; grid-row: span 1; }
.ls__t--4 { grid-column: span 1; grid-row: span 1; }
.ls__t--5 { grid-column: span 2; grid-row: span 1; }
.ls__t--6 { grid-column: span 2; grid-row: span 1; }

.ls__t img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08); will-change: transform;
  transition: filter .7s var(--ease);
}
.ls__t:hover img { filter: brightness(1.1) saturate(1.08); }
.ls__t figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: var(--space-8) var(--space-5) var(--space-5);
  background: linear-gradient(to top, rgba(10,5,4,.94), transparent);
  display: flex; flex-direction: column; gap: 2px;
}
.ls__t figcaption strong {
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm);
  text-transform: uppercase; letter-spacing: .1em;
}
.ls__t figcaption span {
  font-family: var(--font-display); font-weight: 500; font-size: var(--text-xs);
  letter-spacing: .12em; color: var(--accent); text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   COLORWAYS TEENS
   ═══════════════════════════════════════════════════════════ */
.fcs {
  padding: var(--space-24) 0; border-top: 1px solid var(--hairline);
  background: radial-gradient(ellipse 65% 50% at 50% 40%, rgba(253,225,0,.05), transparent 70%), var(--surface-1);
  scroll-margin-top: 80px;
}
.fcs__head { text-align: center; margin-inline: auto; }
.fcs__head .sec__lede { margin-inline: auto; }
.fcs__strip {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: var(--space-5); margin-top: var(--space-12);
}
.fc {
  position: relative; aspect-ratio: 1; padding: var(--space-5) var(--space-4);
  border: 1px solid var(--hairline); background: var(--void);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--space-3); overflow: hidden;
  transition: border-color .5s var(--ease), transform .6s var(--ease-el);
}
.fc::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, var(--fc), transparent 68%);
  opacity: 0; transition: opacity .6s var(--ease);
}
.fc:hover, .fc.is-on { border-color: var(--fc); transform: translateY(-7px); }
.fc:hover::before { opacity: .15; }
.fc.is-on::before { opacity: .1; }
.fc img { width: 88%; transition: transform .7s var(--ease-el), filter .6s var(--ease); }
.fc:hover img, .fc.is-on img { transform: scale(1.09) rotate(-4deg); filter: drop-shadow(0 6px 26px var(--fc)); }
.fc span {
  font-family: var(--font-display); font-weight: 500; font-size: .8rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3);
  transition: color .4s var(--ease);
}
.fc:hover span, .fc.is-on span { color: var(--fc); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .sx__top { grid-template-columns: 1fr; gap: var(--space-6); }
  .sx--flip .sx__fig--a, .sx--flip .sx__fig--b { order: initial; }
  .sx__fig { aspect-ratio: 16/11; }
  .sx__fig--b { display: none; }
  .sx__intro { padding: var(--space-8) 0; }
  .ls__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .ls__t--1 { grid-column: span 2; grid-row: span 2; }
  .ls__t--2, .ls__t--3, .ls__t--4 { grid-column: span 1; grid-row: span 1; }
  .ls__t--5, .ls__t--6 { grid-column: span 2; grid-row: span 1; }
  .fcs__strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .sx { padding: var(--space-20) var(--gutter); }
  .ls__grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .ls__t, .ls__t--1, .ls__t--5, .ls__t--6 { grid-column: span 1 !important; grid-row: span 1 !important; }
  .fcs__strip { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .sx__grid { grid-template-columns: 1fr; }
}
/* Hero con casting: menos scrim para que se vea la luz dorada */
.hero__media img { object-position: 50% 30%; opacity: .68; }
.hero__scrim {
  background:
    linear-gradient(to top, var(--bg-dark) 2%, rgba(10,5,4,.9) 26%, rgba(10,5,4,.55) 62%, rgba(10,5,4,.72) 100%),
    radial-gradient(ellipse 55% 50% at 50% 40%, rgba(215,105,58,.14), transparent 72%);
}

/* ═══════════════════════════════════════════════════════════
   I AM VOLATILITY · manifiesto
   ═══════════════════════════════════════════════════════════ */
.iam {
  padding: var(--space-32) 0; border-top: 1px solid var(--hairline);
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(215,105,58,.08), transparent 72%),
    var(--surface-1);
  scroll-margin-top: 80px;
}
.iam__top { text-align: center; max-width: 800px; margin: 0 auto var(--space-20); }
.iam__mk { display: block; width: 110px; margin: 0 auto var(--space-6); color: var(--accent); }
.iam__mk .mk { overflow: visible; filter: drop-shadow(0 0 22px var(--accent)); }
.iam__h {
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-2xl);
  text-transform: uppercase; letter-spacing: .04em;
  margin: var(--space-4) 0 var(--space-6);
}
.iam__h em { font-style: normal; color: var(--accent); }
.iam__slogan { font-size: var(--text-lg); margin: 0; }

.iam__lines {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; background: var(--hairline); border: 1px solid var(--hairline);
  max-width: 1180px; margin-inline: auto;
}
.iam__l {
  background: var(--void); padding: var(--space-8) var(--space-6);
  display: flex; gap: var(--space-5); align-items: flex-start;
  transition: background .5s var(--ease);
}
.iam__l:hover { background: var(--surface-2); }
.iam__n {
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-lg);
  color: var(--accent); flex-shrink: 0; line-height: 1;
}
.iam__l h4 {
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm);
  text-transform: uppercase; letter-spacing: .08em; margin: 0 0 var(--space-2);
}
.iam__l p { font-size: var(--text-sm); color: var(--ink-2); line-height: 1.6; margin: 0; }

.iam__tags {
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  justify-content: center; margin-top: var(--space-16);
}
.iam__tags span {
  font-family: var(--font-display); font-weight: 500; font-size: var(--text-xs);
  letter-spacing: .16em; color: var(--ink-4); text-transform: uppercase;
  transition: color .4s var(--ease);
}
.iam__tags span:hover { color: var(--accent); }

/* Logo oficial Young Traders Division */
.fcs__logo {
  width: min(280px, 62vw); margin: var(--space-10) auto var(--space-4);
  display: block; border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
  opacity: 0; transform: scale(.94);
  animation: ytdIn 1.1s var(--ease-out) .2s forwards;
}
@keyframes ytdIn { to { opacity: 1; transform: none } }

@media (max-width: 560px) {
  .iam { padding: var(--space-20) 0; }
  .iam__l { padding: var(--space-6) var(--space-5); }
}

/* ═══════════════════════════════════════════════════════════
   DOCTRINA SEGALL · IVE · STARCK
   "El whitespace es confianza. La tipografía ES el diseño."
   ═══════════════════════════════════════════════════════════ */

/* Un mensaje por pantalla. El hero respira. */
.hero { padding-block: var(--space-40) var(--space-32); }
.hero__lede {
  font-size: var(--text-lg); max-width: 44ch;
  margin: var(--space-12) auto var(--space-10);
  color: var(--ink-2);
}
.hero__cta { margin-top: 0; }
.lockup { margin-bottom: 0; }

/* Sin ticker: el hero termina limpio */
.hero__grid { opacity: .22; }

/* Más aire entre secciones. La restricción amplifica. */
.sx { padding-block: var(--space-40); }
.sx__top { gap: var(--space-12); }
.sx__grid { margin-top: var(--space-24); }
.ls, .iam, .fcs { padding-block: var(--space-40); }
.sec__head, .sx__intro { margin-bottom: var(--space-16); }

/* Tipografía como diseño: jerarquía por peso, no por adorno */
.sx__h { font-size: clamp(1.75rem, 1rem + 2.6vw, 3.25rem); }
.sx__b { font-size: var(--text-base); max-width: 32ch; }

/* El color comunica, nunca decora: los divisores bajan a susurro */
.divider__path { opacity: .3; }
.divider { padding: var(--space-20) 0 var(--space-10); }

/* El canvas de fondo es atmósfera, no protagonista */
#smileField { opacity: .5; }

@media (max-width: 700px) {
  .hero { padding-block: var(--space-24) var(--space-20); }
  .sx, .ls, .iam, .fcs { padding-block: var(--space-24); }
  .hero__lede { margin-block: var(--space-8) var(--space-8); }
}
