/* ==============================================
   THEONX — CSS
   DA : Bordeaux #1a0810 → #8b1f3f → #c0607a
   Typo : Permanent Marker (logo) + Barlow Condensed (titres)
   ============================================== */

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; }

/* ── VARIABLES ─────────────────────────────── */
:root {
  /* Couleurs DA */
  --c-bg:        #1a0810;
  --c-bg2:       #220c14;
  --c-bg3:       #2c101c;
  --c-mid:       #5c1528;
  --c-accent:    #8b1f3f;
  --c-rose:      #c0607a;
  --c-white:     #f5eaed;
  --c-white50:   rgba(245,234,237,.5);
  --c-white12:   rgba(245,234,237,.12);
  --c-white06:   rgba(245,234,237,.06);

  /* Réseaux */
  --c-twitch:  #9147ff;
  --c-tiktok:  #ff0050;
  --c-insta:   #e1306c;

  /* Typo */
  --f-logo:    'Permanent Marker', cursive;
  --f-title:   'Barlow Condensed', sans-serif;
  --f-body:    'Barlow', sans-serif;

  /* Misc */
  --radius: 12px;
  --max-w:  1100px;
  --nav-h:  70px;
}

/* ── BASE ──────────────────────────────────── */
body {
  background: var(--c-bg);
  color: var(--c-white);
  font-family: var(--f-body);
  overflow-x: hidden;
}

/* ── GRAIN ─────────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .035;
}

/* ── NAV ───────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(26,8,16,.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-white06);
  transition: background .3s;
}
.nav.solid { background: rgba(26,8,16,.97); }

.nav__logo {
  font-family: var(--f-logo);
  font-size: 1.6rem;
  color: var(--c-white);
  text-shadow: 2px 2px 0 var(--c-accent);
  letter-spacing: .04em;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav__links a {
  font-family: var(--f-title);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-white50);
  transition: color .25s;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.nav__links a:hover { color: var(--c-white); }

.tag-soon {
  display: inline-block;
  font-family: var(--f-title);
  font-weight: 900;
  font-size: .55rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--c-rose);
  color: var(--c-bg);
  padding: 2px 6px;
  border-radius: 3px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: all .3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(26,8,16,.95) 0%, rgba(26,8,16,.5) 55%, rgba(26,8,16,.92) 100%);
}

.hero__blobs {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 0 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding-top: var(--nav-h);
  animation: fadeUp .9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--f-title);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--c-rose);
  margin-bottom: 1.6rem;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-rose);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .3; }
}

.hero__title {
  margin-bottom: 1.4rem;
  line-height: 1;
}
.hero__name {
  display: block;
  font-family: var(--f-logo);
  font-size: clamp(4.5rem, 15vw, 11rem);
  color: var(--c-white);
  text-shadow: 3px 3px 0 var(--c-accent), 0 0 60px rgba(139,31,63,.5);
  margin-bottom: .2rem;
}
.hero__sub {
  display: block;
  font-family: var(--f-title);
  font-weight: 700;
  font-size: clamp(1.6rem, 4.5vw, 3.5rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-white50);
  line-height: 1.15;
}
.hero__sub b {
  display: block;
  color: var(--c-white);
  font-weight: 900;
}

.hero__desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--c-white50);
  line-height: 1.7;
  margin-bottom: 2.4rem;
  max-width: 440px;
}

.hero__btns {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
}

/* ── BOUTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.6rem;
  border-radius: 6px;
  font-family: var(--f-title);
  font-weight: 900;
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: transform .25s, box-shadow .25s, background .25s;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-3px); }

.btn--twitch {
  background: var(--c-twitch);
  color: #fff;
  box-shadow: 0 4px 22px rgba(145,71,255,.35);
}
.btn--twitch:hover { box-shadow: 0 8px 32px rgba(145,71,255,.55); }

.btn--tiktok {
  background: var(--c-tiktok);
  color: #fff;
  box-shadow: 0 4px 22px rgba(255,0,80,.35);
}
.btn--tiktok:hover { box-shadow: 0 8px 32px rgba(255,0,80,.55); }

.btn--insta {
  background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
  color: #fff;
  box-shadow: 0 4px 22px rgba(225,48,108,.3);
}
.btn--insta:hover { box-shadow: 0 8px 32px rgba(225,48,108,.5); }

.btn--outline {
  background: transparent;
  color: var(--c-white);
  border-color: var(--c-white12);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.btn--outline:hover {
  border-color: var(--c-rose);
  color: var(--c-rose);
  transform: translateY(-2px);
}

/* ── SCROLL INDICATOR ──────────────────────── */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-family: var(--f-title);
  font-weight: 700;
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-white50);
  writing-mode: vertical-rl;
}
.hero__scroll-bar {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--c-rose), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); opacity: 1; }
  60%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ── STATS ─────────────────────────────────── */
.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2.2rem 2.5rem;
  background: var(--c-bg2);
  border-top:    1px solid var(--c-white06);
  border-bottom: 1px solid var(--c-white06);
  position: relative;
  z-index: 2;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(139,31,63,.15), transparent 70%);
  pointer-events: none;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  position: relative;
  z-index: 1;
}
.stats__item--link {
  text-decoration: none;
  color: inherit;
  transition: transform .25s;
}
.stats__item--link:hover { transform: translateY(-3px); }
.stats__item--link:hover .stats__lbl { color: var(--c-white); }
.stats__ico {
  width: 32px; height: 32px;
  color: var(--c-rose);
  margin-bottom: .2rem;
}
.stats__lbl {
  font-family: var(--f-title);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: .04em;
  color: var(--c-white);
  line-height: 1;
  transition: color .25s;
}
.stats__platform {
  font-family: var(--f-title);
  font-weight: 700;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-white50);
}
.stats__bolt {
  font-size: 1.4rem;
  opacity: .25;
  position: relative;
  z-index: 1;
}

/* ── SECTIONS COMMUNES ─────────────────────── */
.section {
  padding: 7rem 2.5rem;
  position: relative;
  z-index: 2;
}
.section__head {
  text-align: center;
  margin-bottom: 4rem;
}
.section__tag {
  font-family: var(--f-title);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-rose);
  margin-bottom: .6rem;
}
.section__title {
  font-family: var(--f-title);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: .95;
  color: var(--c-white);
}

/* ── CARDS RÉSEAUX ─────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--c-bg3);
  border: 1px solid var(--c-white06);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 1.8rem;
  gap: .6rem;
  transition: transform .35s cubic-bezier(.23,1,.32,1), border-color .35s, box-shadow .35s;
  position: relative;
}

/* Glow intérieur au hover */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.card:hover { transform: translateY(-7px); border-color: rgba(192,96,122,.3); }
.card:hover::before { opacity: 1; }

.card--twitch::before { background: radial-gradient(ellipse at top left, rgba(145,71,255,.12), transparent 60%); }
.card--tiktok::before { background: radial-gradient(ellipse at top left, rgba(255,0,80,.12), transparent 60%); }
.card--insta::before  { background: radial-gradient(ellipse at top left, rgba(225,48,108,.12), transparent 60%); }

.card--twitch:hover { box-shadow: 0 20px 50px rgba(145,71,255,.2); }
.card--tiktok:hover { box-shadow: 0 20px 50px rgba(255,0,80,.2); }
.card--insta:hover  { box-shadow: 0 20px 50px rgba(225,48,108,.2); }

.card__header {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .4rem;
}
.card__ico {
  width: 36px; height: 36px;
  flex-shrink: 0;
}
.card--twitch .card__ico { color: var(--c-twitch); }
.card--tiktok .card__ico { color: var(--c-tiktok); }
.card--insta  .card__ico { color: var(--c-insta); }

.card__platform {
  font-family: var(--f-title);
  font-weight: 700;
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-white50);
}

.card__handle {
  font-family: var(--f-title);
  font-weight: 900;
  font-size: 1.7rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--c-white);
  display: block;
}

.card__desc {
  font-family: var(--f-body);
  font-size: .88rem;
  font-weight: 300;
  color: var(--c-white50);
  line-height: 1.6;
  flex: 1;
}

.card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: .4rem;
  border-top: 1px solid var(--c-white06);
  font-family: var(--f-title);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-white50);
}
.card__arrow {
  transition: transform .3s;
  color: var(--c-rose);
}
.card:hover .card__arrow { transform: translateX(5px); }

/* ── ABOUT ─────────────────────────────────── */
.about {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-white06);
  padding: 7rem 2.5rem;
  position: relative;
  z-index: 2;
}
.about__wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Photo */
.about__visual {
  position: relative;
}
.about__photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--c-bg3);
  border: 1px solid var(--c-white06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about__photo span {
  font-family: var(--f-title);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: .2em;
  color: var(--c-white50);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.about__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,31,63,.2), rgba(92,21,40,.1));
}
/* Cadre décoratif décalé */
.about__deco-frame {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 75%; height: 75%;
  border: 1px solid rgba(192,96,122,.25);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 0;
}
.about__deco-bolt {
  position: absolute;
  top: -1rem; right: -1rem;
  font-size: 2.5rem;
  opacity: .18;
  pointer-events: none;
}
.about__deco-plus {
  position: absolute;
  bottom: 2rem; left: -1.2rem;
  font-size: 2rem;
  color: var(--c-rose);
  opacity: .25;
  font-family: var(--f-title);
  font-weight: 900;
  pointer-events: none;
}

/* Texte */
.about__title {
  font-family: var(--f-title);
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: .95;
  color: var(--c-white);
  margin: .6rem 0 1.4rem;
}
.about__text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--c-white50);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}
.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.about__tags li {
  font-family: var(--f-title);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--c-rose);
  border: 1px solid rgba(192,96,122,.35);
  border-radius: 4px;
  padding: .3rem .75rem;
  text-transform: uppercase;
}

/* ── FOOTER ────────────────────────────────── */
.footer {
  padding: 3.5rem 2.5rem;
  border-top: 1px solid var(--c-white06);
  text-align: center;
  position: relative;
  z-index: 2;
}
.footer__logo {
  font-family: var(--f-logo);
  font-size: 2rem;
  color: var(--c-white);
  text-shadow: 2px 2px 0 var(--c-accent);
  margin-bottom: 1.5rem;
  opacity: .8;
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.footer__links a {
  font-family: var(--f-title);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-white50);
  transition: color .25s;
}
.footer__links a:hover { color: var(--c-rose); }
.footer__copy {
  font-size: .75rem;
  font-family: var(--f-title);
  color: var(--c-white50);
  letter-spacing: .1em;
}

/* ── SHOP PAGE ─────────────────────────────── */
.shop-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.shop-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(139,31,63,.18), transparent 70%);
  pointer-events: none;
}
.shop-hero__inner { position: relative; z-index: 1; }

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 1.4rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 2;
}

.pcard {
  background: var(--c-bg3);
  border: 1px solid var(--c-white06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.pcard:hover {
  transform: translateY(-6px) rotate(.4deg);
  border-color: rgba(192,96,122,.3);
}
.pcard__img {
  aspect-ratio: 1;
  background: var(--c-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}
.pcard__lock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: rgba(26,8,16,.7);
  backdrop-filter: blur(4px);
}
.pcard__lock-icon { font-size: 1.8rem; }
.pcard__lock-label {
  font-family: var(--f-title);
  font-weight: 900;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-rose);
}
.pcard__info {
  padding: 1.3rem 1.5rem;
  border-top: 1px solid var(--c-white06);
}
.pcard__name {
  font-family: var(--f-title);
  font-weight: 900;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .25rem;
}
.pcard__price {
  font-family: var(--f-title);
  font-weight: 700;
  font-size: .85rem;
  color: var(--c-white50);
}

/* Notify */
.notify {
  max-width: 520px;
  margin: 4rem auto;
  padding: 2.5rem;
  background: var(--c-bg3);
  border: 1px solid rgba(192,96,122,.2);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  z-index: 2;
}
.notify h3 {
  font-family: var(--f-title);
  font-weight: 900;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .5rem;
}
.notify p {
  font-size: .9rem;
  color: var(--c-white50);
  margin-bottom: 1.4rem;
}
.notify__row {
  display: flex;
  gap: .7rem;
}
.notify__input {
  flex: 1;
  padding: .8rem 1rem;
  background: var(--c-bg2);
  border: 1px solid var(--c-white12);
  border-radius: 6px;
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: .9rem;
  outline: none;
  transition: border-color .3s;
}
.notify__input:focus { border-color: var(--c-rose); }
.notify__btn {
  padding: .8rem 1.4rem;
  background: var(--c-rose);
  color: var(--c-bg);
  border-radius: 6px;
  font-family: var(--f-title);
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .25s, transform .25s;
}
.notify__btn:hover { background: #d4758a; transform: translateY(-2px); }
.notify__msg {
  margin-top: 1rem;
  font-family: var(--f-title);
  font-size: .8rem;
  letter-spacing: .1em;
  min-height: 1.2rem;
}

/* ── REVEAL ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.23,1,.32,1);
}
.reveal.in { opacity: 1; transform: none; }

/* ── PILIERS ───────────────────────────────── */
.pillars {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.pillar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  padding: 1.2rem .8rem;
  background: var(--c-bg);
  border: 1px solid var(--c-white06);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color .3s, transform .3s;
}
.pillar:hover {
  border-color: rgba(192,96,122,.4);
  transform: translateY(-4px);
}
.pillar__icon { font-size: 1.8rem; }
.pillar__name {
  font-family: var(--f-title);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-white);
}
.pillar__desc {
  font-size: .75rem;
  font-weight: 300;
  color: var(--c-white50);
  letter-spacing: .05em;
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .about__wrap { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual { display: none; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(26,8,16,.98);
    padding: 2rem 2.5rem;
    gap: 1.6rem;
    border-bottom: 1px solid var(--c-white06);
  }
  .nav__burger { display: flex; }
  .hero__content { padding: 0 1.4rem; padding-top: var(--nav-h); }
  .hero__btns { flex-direction: column; max-width: 260px; }
  .btn { justify-content: center; }
  .stats { flex-direction: column; gap: 1.5rem; }
  .stats__bolt { display: none; }
  .section, .about { padding: 5rem 1.4rem; }
  .notify { margin: 2rem 1.4rem; }
  .notify__row { flex-direction: column; }
  .products { padding: 0 1.4rem; }
  .hero__scroll { display: none; }
}
