/* ═══════════════════════════════════════════
   Eldoria Online — Landing
   Dark fantasy · gold · pixel atmosphere
═══════════════════════════════════════════ */

:root {
  --bg: #080706;
  --bg-elevated: #12100d;
  --panel: rgba(18, 14, 10, 0.72);
  --gold: #d4b056;
  --gold-bright: #f0d78c;
  --gold-dim: #8a6f2e;
  --bronze: #5c4a28;
  --ink: #f3e9d4;
  --muted: #a8987c;
  --line: rgba(212, 176, 86, 0.22);
  --health: #c94a3a;
  --mana: #3d7ec9;
  --forest: #2a5c3a;
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(8, 7, 6, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.nav__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-bright);
}

.nav__rune {
  color: var(--gold);
  animation: pulse-rune 3s ease-in-out infinite;
}

@keyframes pulse-rune {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.92); }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.25s;
}

.nav__links a:hover {
  color: var(--ink);
}

.nav__cta {
  padding: 0.55rem 1.15rem !important;
  border: 1px solid var(--gold-dim);
  background: linear-gradient(180deg, rgba(212, 176, 86, 0.18), rgba(212, 176, 86, 0.05));
  color: var(--gold-bright) !important;
  border-radius: 2px;
}

.nav__cta:hover {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212, 176, 86, 0.3), rgba(212, 176, 86, 0.1));
}

.nav__toggle {
  display: none;
  width: 2rem;
  height: 1.5rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.2rem 0;
}

.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav__toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, border-color 0.3s;
}

.btn--gold {
  background: linear-gradient(180deg, #e8c96a 0%, #b8923a 48%, #8a6a24 100%);
  color: #1a1408;
  box-shadow: 0 0 0 1px rgba(240, 215, 140, 0.35), 0 8px 28px rgba(180, 130, 40, 0.35);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(240, 215, 140, 0.55), 0 12px 36px rgba(180, 130, 40, 0.5);
}

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(8, 7, 6, 0.35);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.05rem 2.25rem;
  font-size: 1rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(1.25rem, 5vw, 4.5rem) clamp(4rem, 10vh, 7rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  animation: hero-drift 28s ease-in-out infinite alternate;
  image-rendering: auto;
}

@keyframes hero-drift {
  from { transform: scale(1.06) translate(0, 0); }
  to { transform: scale(1.1) translate(-1.5%, -1%); }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.88) 0%, rgba(8, 7, 6, 0.45) 42%, rgba(8, 7, 6, 0.2) 70%),
    linear-gradient(0deg, rgba(8, 7, 6, 0.95) 0%, rgba(8, 7, 6, 0.25) 45%, rgba(8, 7, 6, 0.55) 100%);
}

.hero__vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 120px 40px rgba(8, 7, 6, 0.7);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 38rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.85rem, 4.5vw, 3.25rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-shadow: 0 0 40px rgba(212, 176, 86, 0.35), 0 2px 0 rgba(0, 0, 0, 0.5);
  margin-bottom: 0.85rem;
  line-height: 1.1;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.hero__lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 22px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero__scroll span {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.hero .reveal {
  opacity: 0;
  animation: hero-in 1s var(--ease) forwards;
}

.hero .reveal-delay-1 { animation-delay: 0.15s; }
.hero .reveal-delay-2 { animation-delay: 0.3s; }
.hero .reveal-delay-3 { animation-delay: 0.45s; }

@keyframes hero-in {
  to { opacity: 1; transform: none; }
}

/* ── Pulse bar ── */
.pulse {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent, rgba(212, 176, 86, 0.06), transparent),
    var(--bg-elevated);
}

.pulse__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: 1.35rem clamp(1rem, 4vw, 2rem);
  max-width: 1100px;
  margin: 0 auto;
}

.pulse__stat {
  text-align: center;
  min-width: 6rem;
}

.pulse__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
}

.pulse__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.pulse__divider {
  width: 1px;
  height: 2.2rem;
  background: var(--line);
}

.pulse__stat--live {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.pulse__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf6a;
  box-shadow: 0 0 0 0 rgba(76, 175, 106, 0.5);
  animation: live-ping 2s ease infinite;
}

@keyframes live-ping {
  0% { box-shadow: 0 0 0 0 rgba(76, 175, 106, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(76, 175, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 175, 106, 0); }
}

/* ── Sections ── */
.section {
  padding: clamp(4.5rem, 10vh, 7.5rem) clamp(1.25rem, 5vw, 4.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.section__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section__sub {
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
}

/* ── Modes ── */
.modes {
  max-width: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(90, 50, 20, 0.25), transparent 60%),
    var(--bg);
}

.modes .section__head,
.modes__grid {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.modes__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding: 0 clamp(1.25rem, 5vw, 4.5rem);
}

.mode {
  position: relative;
  padding: 1.75rem 1.25rem 1.5rem;
  background: linear-gradient(165deg, rgba(28, 22, 14, 0.9), rgba(12, 10, 8, 0.95));
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
  overflow: hidden;
}

.mode::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(212, 176, 86, 0.06));
  opacity: 0;
  transition: opacity 0.35s;
}

.mode:hover {
  border-color: var(--gold-dim);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.mode:hover::before {
  opacity: 1;
}

.mode__icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.mode__icon svg {
  width: 100%;
  height: 100%;
}

.mode h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.55rem;
  color: var(--gold-bright);
}

.mode p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  position: relative;
}

.mode--pvp { border-top: 2px solid #c94a3a; }
.mode--dungeon { border-top: 2px solid #6b5cff; }
.mode--boss { border-top: 2px solid #e07030; }
.mode--guild { border-top: 2px solid var(--gold); }
.mode--daily { border-top: 2px solid #3d9e6f; }

/* ── Classes ── */
.classes {
  background: transparent;
}

.classes__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.class-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.35rem 0.75rem;
  border: 1px solid var(--line);
  background: rgba(18, 14, 10, 0.6);
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
  text-align: center;
}

.class-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}

.class-card.is-active {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212, 176, 86, 0.18), rgba(18, 14, 10, 0.85));
  box-shadow: 0 0 0 1px rgba(212, 176, 86, 0.15), inset 0 0 24px rgba(212, 176, 86, 0.08);
}

.class-card__glyph {
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 0.35rem;
  color: var(--gold);
  display: flex;
}

.class-card__glyph svg {
  width: 100%;
  height: 100%;
}

.class-card.is-active .class-card__glyph {
  color: var(--gold-bright);
}

.class-card__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.class-card__tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.class-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  padding: 2rem 2.25rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(40, 28, 14, 0.5), transparent 50%),
    rgba(12, 10, 8, 0.85);
  border-radius: 4px;
  align-items: center;
}

.class-detail__bars {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.bar {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.bar__track {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(212, 176, 86, 0.12);
}

.bar__track i {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-bright));
  border-radius: 1px;
  transition: width 0.7s var(--ease);
  box-shadow: 0 0 12px rgba(212, 176, 86, 0.35);
}

.class-detail__copy h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
  margin-bottom: 0.65rem;
}

.class-detail__copy p {
  color: var(--muted);
  margin-bottom: 1.15rem;
  font-size: 1rem;
}

.class-detail__copy ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.class-detail__copy li {
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
  background: rgba(212, 176, 86, 0.08);
  color: var(--ink);
  border-radius: 2px;
}

/* ── World ── */
.world {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1200px;
}

.world__visual {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.world__visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center top;
}

.world__glow {
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(212, 176, 86, 0.2), transparent 70%);
  pointer-events: none;
}

.world__list {
  list-style: none;
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.world__list li {
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold-dim);
  color: var(--muted);
  font-size: 0.98rem;
}

.world__list strong {
  color: var(--gold-bright);
  font-weight: 600;
}

.world .section__title {
  text-align: left;
}

.world .eyebrow {
  text-align: left;
}

.world .section__sub {
  text-align: left;
}

/* ── Gallery ── */
.gallery {
  max-width: 1200px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: #000;
}

.gallery__item--wide {
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.8s var(--ease);
}

.gallery__item--wide img {
  min-height: 100%;
  aspect-ratio: 3 / 4;
  object-position: center;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.15rem 1rem;
  background: linear-gradient(transparent, rgba(8, 7, 6, 0.92));
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
}

/* ── Play CTA ── */
.play {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.play__bg {
  position: absolute;
  inset: 0;
}

.play__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.85);
  transform: scale(1.05);
}

.play__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(8, 7, 6, 0.35), rgba(8, 7, 6, 0.92)),
    linear-gradient(180deg, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%);
}

.play__content {
  position: relative;
  z-index: 2;
  max-width: 36rem;
}

.play__content .hero__brand {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.play__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.play__content > p {
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.play__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.play__meta {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* ── Footer ── */
.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1.25rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.footer__brand {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a:hover {
  color: var(--gold-bright);
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .modes__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mode:last-child {
    grid-column: span 2;
  }

  .classes__track {
    grid-template-columns: repeat(3, 1fr);
  }

  .world {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__item--wide {
    grid-row: auto;
  }

  .gallery__item--wide img {
    aspect-ratio: 16 / 10;
    min-height: 240px;
  }
}

@media (max-width: 720px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: rgba(8, 7, 6, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s;
  }

  .nav__links.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links a {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(212, 176, 86, 0.08);
  }

  .nav__cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .hero {
    align-items: center;
    padding-bottom: 5rem;
  }

  .hero__veil {
    background:
      linear-gradient(0deg, rgba(8, 7, 6, 0.92) 0%, rgba(8, 7, 6, 0.55) 50%, rgba(8, 7, 6, 0.7) 100%);
  }

  .modes__grid {
    grid-template-columns: 1fr;
  }

  .mode:last-child {
    grid-column: auto;
  }

  .classes__track {
    grid-template-columns: repeat(2, 1fr);
  }

  .class-detail {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .bar {
    grid-template-columns: 5rem 1fr;
  }

  .pulse__divider {
    display: none;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__img {
    transform: none;
    animation: none;
  }
}
