:root {
  --bg: #1c2133;
  --panel: #21273b;
  --panel-2: #282f45;
  --line: rgba(196, 204, 224, 0.1);
  --text: #c4cce0;
  --white: #f4f7ff;
  --muted: #8b94ad;
  --blue: #178be3;
  --blue-soft: #67c3f2;
  --purple: #8522c1;
  --green: #39b96f;
  --radius: 12px;
  --max: 1280px;
  --font: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(23, 139, 227, 0.12), transparent 42%),
    radial-gradient(ellipse at 90% 8%, rgba(133, 34, 193, 0.12), transparent 40%),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header */
.top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem clamp(0.9rem, 3vw, 1.5rem);
  background: rgba(28, 33, 51, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--blue-soft);
}

.brand img {
  width: 2.4rem;
}

.top__nav {
  display: none;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-left: auto;
  margin-right: 0.35rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.86rem;
}

.top__nav a:hover {
  color: var(--white);
}

@media (min-width: 980px) {
  .top__nav {
    display: flex;
  }
}

.top__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.55rem 1.1rem;
  border-radius: 10px;
  border: 0;
  font: inherit;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn--login {
  background: var(--blue);
}

.btn--register {
  background: var(--purple);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--white);
}

.btn--lg {
  min-height: 3rem;
  padding-inline: 1.25rem;
}

/* Layout */
.wrap {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 1rem clamp(0.9rem, 3vw, 1.5rem) 2.5rem;
  display: grid;
  gap: 1.1rem;
}

/* Hero */
.hero {
  display: grid;
  gap: 1.25rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(23, 139, 227, 0.22), transparent 35%),
    radial-gradient(circle at 10% 80%, rgba(133, 34, 193, 0.2), transparent 40%),
    var(--panel);
}

.hero h1 {
  margin: 0 0 0.75rem;
  color: var(--white);
  font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero__lead {
  margin: 0 0 1.15rem;
  color: var(--muted);
  max-width: 58rem;
  font-size: 1.02rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero__side {
  display: grid;
  gap: 0.85rem;
  justify-items: start;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid var(--line);
}

.hero__logo {
  width: 4.5rem;
}

.hero__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  width: 100%;
}

.hero__bullets li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--blue);
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.5fr 0.85fr;
    align-items: center;
  }
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.stat {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
}

.stat b {
  color: var(--blue-soft);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
}

.stat span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

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

@media (min-width: 1100px) {
  .stats {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

/* Modes */
.modes {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 109px;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.35rem 0 0.25rem;
  scrollbar-width: thin;
}

@media (min-width: 900px) {
  .modes {
    grid-auto-flow: dense;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    grid-auto-columns: unset;
    overflow: visible;
  }

  .mode {
    width: auto;
  }
}

.mode {
  display: grid;
  grid-template-rows: 48px auto;
  justify-items: center;
  align-content: center;
  gap: 0.35rem;
  width: 109px;
  height: 90px;
  padding: 0.45rem 0.35rem 0.4rem;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.mode:hover {
  background: #272e45;
  border-color: rgba(23, 139, 227, 0.35);
}

.mode__badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #3a425c;
}

.mode--yellow .mode__badge {
  background: #d4a017;
}
.mode--purple .mode__badge {
  background: #7b3db8;
}
.mode--blue .mode__badge {
  background: #2a7fd4;
}
.mode--green .mode__badge {
  background: #2f9d57;
}
.mode--red .mode__badge {
  background: #c43c3c;
}
.mode--gray .mode__badge {
  background: #4a536e;
}

.mode__badge img {
  width: 26px;
  height: auto;
}

.mode__text {
  display: grid;
  justify-items: center;
  line-height: 1.15;
  text-align: center;
}

.mode__text b {
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 800;
}

.mode__text small {
  font-size: 0.7rem;
  color: var(--muted);
}

/* Banners */
.banners {
  display: grid;
  gap: 0.75rem;
}

.banners__track {
  position: relative;
  width: 100%;
  aspect-ratio: 2990 / 440;
  min-height: 110px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}

.banner {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: opacity 0.35s ease;
}

.banner.is-active {
  opacity: 1;
  pointer-events: auto;
}

.banner__cta {
  position: absolute;
  left: 1rem;
  bottom: 0.85rem;
  font-weight: 800;
  color: #fff;
  background: var(--blue);
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.85rem;
}

.banners__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.banners__btn {
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: var(--panel-2);
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.banners__dots {
  display: flex;
  gap: 0.35rem;
}

.banners__dots span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #3a425c;
}

.banners__dots span.is-active {
  background: var(--blue);
}

.promo-pair {
  display: grid;
  gap: 0.75rem;
}

.promo-card {
  display: grid;
  gap: 0.35rem;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.promo-card:hover {
  border-color: rgba(23, 139, 227, 0.4);
  transform: translateY(-2px);
}

.promo-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.1rem;
}

.promo-card p {
  margin: 0;
  color: var(--muted);
}

.promo-card > span {
  margin-top: 0.35rem;
  color: var(--blue-soft);
  font-weight: 700;
}

@media (min-width: 800px) {
  .promo-pair {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .banner__cta {
    left: 0.7rem;
    bottom: 0.55rem;
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
  }
}

/* Panels */
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}

.eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-soft);
}

.panel h2,
.panel h3,
.section-bar h2,
.cta h2,
.how h3,
.why h3 {
  margin: 0 0 0.45rem;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.2;
}

.panel p {
  margin: 0;
  color: var(--muted);
}

.panel > a {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--blue-soft);
  font-weight: 700;
}

.section-lead {
  margin: -0.35rem 0 1rem;
  color: var(--muted);
  max-width: 60rem;
}

.clan {
  display: grid;
  gap: 1.25rem;
  background:
    radial-gradient(circle at 90% 20%, rgba(133, 34, 193, 0.3), transparent 42%),
    var(--panel);
}

.clan__prize {
  margin: 0 0 0.85rem !important;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--blue-soft) !important;
  line-height: 1.1;
}

.clan__list {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.clan__list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text);
}

.clan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--purple);
}

.clan__side {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.5rem;
}

@media (min-width: 900px) {
  .clan {
    grid-template-columns: 1.4fr 0.7fr;
    align-items: center;
  }
}

/* Split */
.split {
  display: grid;
  gap: 0.75rem;
}

.split__card {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.split__card .btn {
  justify-self: start;
  margin-top: 0.35rem;
}

.ticks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.ticks li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text);
  font-weight: 600;
}

.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 800;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

/* Games */
.section-bar {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.section-bar h2 {
  font-size: 1.35rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.chip {
  padding: 0.4rem 0.8rem;
  border-radius: 10px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
  font-size: 0.86rem;
}

.chip--active,
.chip:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.game {
  display: grid;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.game:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 139, 227, 0.45);
}

.game img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--panel-2);
}

.game__meta {
  display: grid;
  gap: 0.1rem;
  padding: 0.55rem 0.65rem 0.7rem;
}

.game__meta strong {
  color: var(--white);
  font-size: 0.84rem;
  line-height: 1.25;
}

.game__meta span {
  color: var(--muted);
  font-size: 0.72rem;
}

.more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.9rem;
  min-height: 2.8rem;
  border-radius: 10px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  font-weight: 800;
  color: var(--white);
}

.more:hover {
  border-color: rgba(23, 139, 227, 0.45);
}

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

@media (min-width: 980px) {
  .games__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .section-bar {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .chips {
    justify-content: flex-end;
  }
}

/* Providers */
.providers__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.prov {
  display: grid;
  place-items: center;
  min-height: 3.2rem;
  border-radius: 10px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  color: var(--white);
  font-weight: 800;
  font-size: 0.92rem;
}

@media (min-width: 700px) {
  .providers__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Mode guide */
.guide__list {
  display: grid;
  gap: 0.75rem;
}

.guide__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
}

.guide__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #3a425c;
  flex-shrink: 0;
}

.guide__icon.mode--gray {
  background: #4a536e;
}
.guide__icon.mode--yellow {
  background: #d4a017;
}
.guide__icon.mode--purple {
  background: #7b3db8;
}
.guide__icon.mode--blue {
  background: #2a7fd4;
}
.guide__icon.mode--green {
  background: #2f9d57;
}
.guide__icon.mode--red {
  background: #c43c3c;
}

.guide__icon img {
  width: 28px;
  height: auto;
}

.guide__item h3 {
  margin-bottom: 0.4rem;
}

.guide__item p {
  margin: 0 0 0.55rem;
}

.guide__for {
  color: var(--text) !important;
  font-weight: 600;
  font-size: 0.92rem;
}

.guide__item a {
  display: inline-block;
  margin-top: 0.2rem;
  color: var(--blue-soft);
  font-weight: 700;
}

@media (min-width: 900px) {
  .guide__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* How */
.how__grid {
  display: grid;
  gap: 0.75rem;
}

.how__step {
  position: relative;
  padding-top: 1.35rem;
}

.how__n {
  display: inline-grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  margin-bottom: 0.55rem;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
}

@media (min-width: 800px) {
  .how__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .how__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Info */
.info-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* Why */
.why__grid {
  display: grid;
  gap: 0.85rem;
}

.why__grid article {
  padding: 0.85rem 0.95rem;
  border-radius: 10px;
  background: var(--panel-2);
  border: 1px solid var(--line);
}

.why__grid p {
  margin: 0;
  color: var(--muted);
}

@media (min-width: 800px) {
  .why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* FAQ */
.faq__item {
  border-top: 1px solid var(--line);
  padding: 0.85rem 0;
}

.faq__item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq__item summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 800;
  font-size: 1.02rem;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--blue-soft);
  font-weight: 800;
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  max-width: 58rem;
}

/* CTA */
.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background:
    radial-gradient(circle at 0% 50%, rgba(23, 139, 227, 0.22), transparent 40%),
    radial-gradient(circle at 100% 50%, rgba(133, 34, 193, 0.22), transparent 40%),
    var(--panel);
}

.cta img {
  width: 3.5rem;
  margin-bottom: 0.5rem;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Footer */
.footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 1.75rem clamp(0.9rem, 3vw, 1.5rem) 2.75rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer__grid {
  display: grid;
  gap: 1.4rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
  color: var(--blue-soft);
  font-weight: 800;
}

.footer__brand img {
  width: 1.6rem;
}

.footer h4 {
  margin: 0 0 0.55rem;
  color: var(--white);
  font-size: 0.95rem;
}

.age {
  display: inline-grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  margin-left: 0.25rem;
  border: 1.5px solid var(--muted);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.75rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.95rem;
  margin: 0;
}

.footer__links a:hover {
  color: var(--blue-soft);
}

@media (min-width: 800px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

/* Mobile sticky CTA — hidden on desktop */
.mbar {
  display: none;
}

.hero__lead--short {
  display: none;
}

/* ========== Mobile ========== */
@media (max-width: 820px) {
  html,
  body {
    overflow-x: hidden;
    font-size: 14px;
  }

  .top {
    padding: 0.65rem 0.85rem;
    gap: 0.5rem;
  }

  .brand span {
    font-size: 1.05rem;
  }

  .brand img {
    width: 2.1rem;
  }

  .top__actions .btn {
    min-height: 2.3rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.86rem;
  }

  .top__actions .btn--login {
    display: none;
  }

  .wrap {
    padding: 0.75rem 0.85rem 5.5rem;
    gap: 0.85rem;
  }

  .panel {
    padding: 0.95rem 0.95rem;
    border-radius: 14px;
  }

  .hero {
    gap: 0.9rem;
  }

  .hero h1 {
    font-size: 1.45rem;
    margin-bottom: 0.55rem;
  }

  .hero__lead--full {
    display: none;
  }

  .hero__lead--short {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 2.75rem;
    padding-inline: 0.6rem;
    font-size: 0.9rem;
  }

  .hero__actions .btn--ghost {
    grid-column: 1 / -1;
  }

  .hero__side {
    padding: 0.85rem;
  }

  .hero__logo {
    width: 3.4rem;
  }

  .hero__bullets {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 0.65rem;
  }

  .hero__bullets li {
    font-size: 0.82rem;
    padding-left: 0.95rem;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .stat {
    padding: 0.75rem 0.8rem;
  }

  .stat b {
    font-size: 1.15rem;
  }

  .stat span {
    font-size: 0.78rem;
  }

  .modes {
    margin: 0 -0.85rem;
    padding: 0.2rem 0.85rem;
    gap: 0.45rem;
    grid-auto-columns: 96px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .mode {
    width: 96px;
    height: 86px;
    scroll-snap-align: start;
  }

  .mode__badge {
    width: 44px;
    height: 44px;
  }

  .banners__track {
    aspect-ratio: auto;
    height: clamp(140px, 38vw, 190px);
    min-height: 140px;
  }

  .banner {
    background-size: cover;
    background-position: center;
  }

  .banner__cta {
    left: 0.65rem;
    bottom: 0.65rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }

  .section-bar h2,
  .panel h2 {
    font-size: 1.15rem;
  }

  .chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -0.15rem;
    padding-bottom: 0.15rem;
  }

  .chip {
    flex: 0 0 auto;
    font-size: 0.8rem;
    padding: 0.38rem 0.7rem;
  }

  .games__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .game__meta {
    padding: 0.45rem 0.5rem 0.55rem;
  }

  .game__meta strong {
    font-size: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .guide__item {
    grid-template-columns: 44px 1fr;
    gap: 0.7rem;
  }

  .guide__icon {
    width: 44px;
    height: 44px;
  }

  .guide__icon img {
    width: 22px;
  }

  .guide__item h3 {
    font-size: 1.05rem;
  }

  .guide__for {
    font-size: 0.86rem;
  }

  .split__card .btn,
  .clan__side .btn {
    width: 100%;
  }

  .cta {
    gap: 0.9rem;
  }

  .cta__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cta__actions .btn {
    width: 100%;
  }

  .footer {
    padding: 1.25rem 0.85rem 6rem;
  }

  .faq__item summary {
    font-size: 0.95rem;
    padding-right: 1.4rem;
  }

  .faq__item summary::after {
    float: none;
    position: absolute;
    right: 0;
  }

  .faq__item {
    position: relative;
  }

  .mbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
    background: rgba(28, 33, 51, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }

  .mbar .btn {
    min-height: 2.75rem;
    width: 100%;
  }
}

@media (max-width: 380px) {
  .brand span {
    display: none;
  }

  .hero h1 {
    font-size: 1.3rem;
  }

  .hero__bullets {
    grid-template-columns: 1fr;
  }

  .top__actions .btn--register {
    padding-inline: 0.65rem;
  }
}
