:root {
  color-scheme: dark;
  --bg: #07030c;
  --panel: rgba(13, 13, 22, 0.78);
  --panel-strong: rgba(17, 17, 29, 0.92);
  --ink: #fff9ff;
  --muted: #cfc4d6;
  --soft: #8d8098;
  --pink: #ff2b9c;
  --violet: #b02cff;
  --purple: #7427ff;
  --green: #26d984;
  --line: rgba(255, 255, 255, 0.14);
  --glow: 0 0 42px rgba(190, 47, 255, 0.34);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 43, 156, 0.24), transparent 22rem),
    radial-gradient(circle at 24% 12%, rgba(116, 39, 255, 0.22), transparent 28rem),
    linear-gradient(160deg, #040207 0%, #090311 42%, #020204 100%);
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -8rem;
  z-index: 100;
  border: 1px solid var(--pink);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: #000;
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 4, 9, 0.84);
  backdrop-filter: blur(18px);
}

.nav,
main,
footer {
  width: min(100% - 48px, 1260px);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
}

.brand img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 0 18px rgba(255, 47, 210, 0.36));
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.35rem;
  background: rgba(0, 0, 0, 0.42);
  color: var(--ink);
  cursor: pointer;
}

.lang-toggle span,
.lang-toggle b {
  display: grid;
  place-items: center;
  min-width: 72px;
  min-height: 46px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 900;
}

.lang-toggle span,
.lang-toggle b {
  color: #f7efff;
}

body[data-lang="en"] .lang-toggle span,
body[data-lang="ur"] .lang-toggle b {
  background: linear-gradient(135deg, #ff35bb, #8c28ff);
  color: #fff;
  box-shadow: var(--glow);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(390px, 1.12fr);
  grid-template-areas:
    "copy media"
    "strip strip";
  align-items: center;
  gap: 1.35rem 2.2rem;
  min-height: calc(100svh - 80px);
  padding: 2.5rem 0 2rem;
}

.hero::before {
  position: absolute;
  inset: 0 0 auto auto;
  z-index: -1;
  width: min(52vw, 700px);
  height: min(70vw, 800px);
  content: "";
  background:
    radial-gradient(circle at 54% 42%, rgba(255, 43, 156, 0.32), transparent 34%),
    radial-gradient(circle at 62% 58%, rgba(116, 39, 255, 0.34), transparent 42%);
  filter: blur(4px);
}

.hero-copy {
  grid-area: copy;
  position: relative;
  z-index: 3;
}

.signal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  border: 1px solid rgba(255, 43, 156, 0.7);
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  background: rgba(0, 0, 0, 0.36);
  color: #fff;
  font-weight: 800;
}

.signal-badge::before {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  content: "";
  background: radial-gradient(circle at 38% 40%, white 0 22%, transparent 23%), #0b6b35;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 7.4ch;
  margin-bottom: 1.05rem;
  font-size: 5.35rem;
  line-height: 0.94;
  letter-spacing: 0;
}

h1 span,
h1 em,
h1 strong {
  display: block;
}

h1 em {
  color: #df42ff;
  font-style: normal;
}

h1 strong {
  color: #fff;
}

.lede {
  max-width: 450px;
  margin-bottom: 1.35rem;
  color: #e7ddec;
  font-size: 1.38rem;
  line-height: 1.6;
}

.lede strong,
.pink-word {
  color: #e84cff;
}

.hero-actions {
  display: grid;
  gap: 0.85rem;
  max-width: 620px;
}

.btn {
  display: grid;
  grid-template-columns: 54px 1fr 42px;
  align-items: center;
  min-height: 74px;
  border-radius: 8px;
  padding: 0 1.25rem;
  font-size: 1.2rem;
  font-weight: 950;
}

.btn i {
  font-style: normal;
  font-size: 1.9rem;
}

.btn-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
}

.btn-icon.group {
  font-size: 0.8rem;
  letter-spacing: -0.2rem;
  color: #f052ff;
  background: transparent;
}

.btn.primary {
  background: linear-gradient(135deg, #ff2b91 0%, #ab2eff 100%);
  box-shadow: 0 20px 70px rgba(255, 43, 156, 0.34);
}

.btn.secondary {
  border: 1px solid rgba(197, 54, 255, 0.84);
  background: rgba(2, 2, 8, 0.56);
}

.hero-media {
  grid-area: media;
  position: relative;
  align-self: end;
  min-height: 690px;
}

.hero-media img {
  position: absolute;
  right: -1rem;
  bottom: -2rem;
  width: min(620px, 100%);
  max-height: 760px;
  object-fit: cover;
  object-position: 52% 24%;
  border-radius: 8px;
  filter: drop-shadow(0 0 42px rgba(222, 42, 255, 0.36));
  mask-image: linear-gradient(to bottom, black 0 78%, transparent 100%);
}

.live-sign {
  position: absolute;
  right: 0.8rem;
  top: 1rem;
  z-index: 3;
  transform: rotate(-4deg);
  border: 8px solid rgba(255, 45, 141, 0.88);
  border-radius: 8px;
  padding: 0.25rem 1.35rem 0.4rem;
  color: #ff6cb7;
  font-size: 3.7rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-shadow: 0 0 18px rgba(255, 43, 156, 0.8);
  box-shadow: 0 0 30px rgba(255, 43, 156, 0.52), inset 0 0 28px rgba(255, 43, 156, 0.24);
}

.live-sign::after {
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 0.28rem;
  border-radius: 999px;
  content: "";
  background: #b042ff;
  box-shadow: 0 0 22px rgba(176, 66, 255, 0.85);
}

.signal-strip {
  grid-area: strip;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: -0.8rem;
}

.signal-strip article,
.rooms,
.paths,
.support,
.final-cta,
.room-card,
.path-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  backdrop-filter: blur(16px);
}

.signal-strip article {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem;
}

.signal-strip span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e836a8, #7434ff);
}

.signal-strip span::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.signal-strip strong {
  align-self: end;
  font-size: 1.08rem;
}

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

.rooms,
.paths,
.support,
.final-cta {
  margin-bottom: 1.4rem;
  padding: 1.1rem;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-head p,
.path-intro p,
.support > div > p:first-child,
.final-cta span {
  margin: 0;
  color: #e24aff;
  font-size: 0.9rem;
  font-weight: 950;
}

.section-head a {
  color: var(--green);
  font-weight: 900;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.room-card {
  padding: 1rem;
}

.room-top,
.avatar-row,
.final-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.room-top {
  justify-content: space-between;
}

.room-top span {
  border-radius: 5px;
  padding: 0.3rem 0.55rem;
  background: linear-gradient(135deg, #ff2b91, #b338ff);
  font-size: 0.8rem;
  font-weight: 950;
}

.room-top b {
  border-radius: 999px;
  padding: 0.26rem 0.62rem;
  background: #05050b;
}

.avatar-row {
  margin: 0.85rem 0;
}

.avatar-row img,
.avatar-row i {
  width: 48px;
  height: 48px;
  border: 2px solid #f347e5;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 28%, #f6d9ff, #9a35ff 45%, #161021);
}

.wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 54px;
  margin: 0.4rem 0 0.7rem;
}

.wave i {
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff7cf2, #8d28ff);
}

.wave.rose i {
  background: linear-gradient(180deg, #ff5b9c, #7a203f);
}

.wave.violet i {
  background: linear-gradient(180deg, #ff5bf2, #642bff);
}

.wave i:nth-child(1),
.wave i:nth-child(7) { height: 18px; }
.wave i:nth-child(2),
.wave i:nth-child(6) { height: 28px; }
.wave i:nth-child(3),
.wave i:nth-child(5) { height: 40px; }
.wave i:nth-child(4) { height: 52px; }

.room-card h2 {
  margin-bottom: 0.25rem;
  font-size: 1.45rem;
}

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

.paths {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 1rem;
  background:
    linear-gradient(90deg, rgba(111, 35, 255, 0.24), transparent 55%),
    var(--panel);
}

.path-intro {
  min-height: 260px;
  padding: 1.35rem;
  background:
    linear-gradient(90deg, rgba(10, 2, 20, 0.2), rgba(12, 3, 21, 0.82)),
    url("assets/rouf-studio-signal-preview.jpg") center / cover;
  border-radius: 8px;
}

.path-intro h2,
.support h2,
.final-cta h2 {
  margin: 0.75rem 0;
  font-size: 2.45rem;
  line-height: 1;
}

.path-intro span,
.path-card p,
.support p,
.faq-list p,
footer span {
  color: var(--muted);
  line-height: 1.65;
}

.path-card {
  padding: 1.15rem;
  background: rgba(8, 7, 15, 0.72);
}

.path-card > span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.path-card h3 {
  margin: 0.65rem 0;
  font-size: 1.45rem;
}

.path-card a,
.final-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 1rem;
  font-weight: 950;
}

.path-card.host a,
.final-actions a:first-child {
  background: linear-gradient(135deg, #ff2b91, #a42fff);
}

.path-card.agent a,
.final-actions a:nth-child(2) {
  border: 1px solid rgba(197, 54, 255, 0.84);
  background: rgba(0, 0, 0, 0.3);
}

.support {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-list details {
  padding: 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 950;
}

.final-cta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.final-actions {
  flex-wrap: wrap;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.3rem 0 3rem;
}

footer strong {
  color: #fff;
}

[dir="rtl"] body {
  font-family: Tahoma, Arial, sans-serif;
}

[dir="rtl"] .nav,
[dir="rtl"] .hero,
[dir="rtl"] .signal-strip,
[dir="rtl"] .room-grid,
[dir="rtl"] .paths,
[dir="rtl"] .support,
[dir="rtl"] .final-cta {
  direction: rtl;
}

[dir="rtl"] .hero-copy,
[dir="rtl"] .rooms,
[dir="rtl"] .path-card,
[dir="rtl"] .support,
[dir="rtl"] .final-cta,
[dir="rtl"] footer {
  text-align: right;
}

[dir="rtl"] .hero-media img {
  left: -1rem;
  right: auto;
}

[dir="rtl"] .live-sign {
  left: 0.8rem;
  right: auto;
}

[dir="rtl"] .btn,
[dir="rtl"] .final-actions {
  direction: rtl;
}

[dir="rtl"] .btn i {
  transform: scaleX(-1);
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "strip";
    min-height: auto;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-media img {
    right: 50%;
    transform: translateX(50%);
  }

  [dir="rtl"] .hero-media img {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .room-grid,
  .paths,
  .support {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav,
  main,
  footer {
    width: min(100% - 24px, 430px);
  }

  .nav {
    padding: 0.75rem 0;
  }

  .brand img {
    height: 36px;
    max-width: 172px;
    object-fit: contain;
    object-position: left center;
  }

  .lang-toggle span,
  .lang-toggle b {
    min-width: 54px;
    min-height: 38px;
    font-size: 0.86rem;
  }

  .hero {
    gap: 0.85rem;
    padding: 1.35rem 0 1.3rem;
  }

  .signal-badge {
    margin-bottom: 0.9rem;
    padding: 0.48rem 0.68rem;
    font-size: 0.9rem;
  }

  h1 {
    max-width: 7ch;
    margin-bottom: 0.75rem;
    font-size: 3.45rem;
  }

  .lede {
    margin-bottom: 1rem;
    font-size: 1.13rem;
  }

  .btn {
    grid-template-columns: 42px 1fr 32px;
    min-height: 62px;
    padding: 0 0.9rem;
    font-size: 1rem;
  }

  .btn-icon {
    width: 34px;
    height: 34px;
  }

  .hero-media {
    min-height: 420px;
    overflow: hidden;
  }

  .hero-media img {
    bottom: -4rem;
    width: min(420px, 110%);
    max-height: 560px;
  }

  .live-sign {
    right: 0.2rem;
    top: 0.2rem;
    border-width: 5px;
    padding: 0.18rem 0.8rem 0.28rem;
    font-size: 2.1rem;
  }

  [dir="rtl"] .live-sign {
    left: 0.2rem;
  }

  .signal-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .rooms,
  .paths,
  .support,
  .final-cta {
    padding: 0.85rem;
  }

  .room-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .room-card {
    min-width: 0;
  }

  .path-intro {
    min-height: 260px;
  }

  .path-intro h2,
  .support h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  .final-cta,
  footer {
    display: grid;
  }

  .final-actions {
    display: grid;
  }

  .final-actions a {
    width: 100%;
  }
}

/* Rouf concept 3 fidelity pass: poster-like stage, dense hero, and live room strip. */
.nav,
main,
footer {
  width: min(100% - 48px, 980px);
}

.site-header {
  background: rgba(3, 3, 8, 0.94);
}

.nav {
  padding: 1.4rem 0;
}

.brand img {
  height: 64px;
}

.hero {
  isolation: isolate;
  display: block;
  min-height: 940px;
  margin-bottom: 1.75rem;
  padding: 3.15rem 1rem 2.1rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 3, 9, 0.98) 0%, rgba(8, 5, 15, 0.9) 32%, rgba(11, 5, 18, 0.36) 62%, rgba(7, 3, 11, 0.18) 100%),
    radial-gradient(circle at 74% 36%, rgba(255, 43, 156, 0.36), transparent 24rem),
    radial-gradient(circle at 45% 23%, rgba(116, 39, 255, 0.3), transparent 26rem);
}

.hero::before {
  inset: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 38px 38px;
  filter: none;
  opacity: 0.7;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 42%;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 0%, rgba(4, 3, 9, 0.78) 54%, #040309 100%);
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(520px, 58%);
  padding-top: 0.2rem;
}

.signal-badge {
  margin-bottom: 1.45rem;
  border-color: rgba(255, 56, 150, 0.78);
  border-radius: 999px;
  padding: 0.85rem 1.22rem;
  background: rgba(2, 2, 7, 0.66);
  font-size: 1.22rem;
  box-shadow: 0 0 34px rgba(255, 43, 156, 0.16);
}

h1 {
  max-width: 510px;
  margin-bottom: 1.05rem;
  font-size: clamp(4.6rem, 8vw, 6.15rem);
  line-height: 0.98;
}

h1 em,
h1 span {
  display: inline;
}

h1 em::after {
  content: " ";
}

h1 strong {
  display: block;
}

.lede {
  max-width: 420px;
  margin-bottom: 1.35rem;
  font-size: 1.62rem;
  line-height: 1.54;
}

.lede::first-letter {
  color: var(--ink);
}

.hero-actions {
  max-width: 470px;
  gap: 0.8rem;
}

.btn {
  grid-template-columns: 70px 1fr 54px;
  min-height: 88px;
  border-radius: 18px;
  padding: 0 1.35rem;
  font-size: 1.58rem;
  box-shadow: 0 24px 90px rgba(184, 36, 255, 0.24);
}

.btn.secondary {
  border-color: rgba(216, 49, 255, 0.95);
  background: rgba(3, 3, 9, 0.72);
}

.btn-icon {
  width: 54px;
  height: 54px;
}

.btn i {
  font-size: 2.55rem;
}

.hero-media {
  position: absolute;
  top: 0;
  right: -4rem;
  bottom: auto;
  left: 20rem;
  z-index: 1;
  height: 880px;
  min-height: 0;
  pointer-events: none;
}

.hero-media img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(850px, 88vw);
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: 54% 46%;
  border-radius: 0;
  filter: brightness(1.1) contrast(1.05) drop-shadow(0 0 58px rgba(222, 42, 255, 0.38));
  mask-image: linear-gradient(to bottom, black 0 84%, transparent 100%);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, #050309 0%, rgba(5, 3, 9, 0.86) 13%, rgba(5, 3, 9, 0.18) 31%, transparent 52%),
    linear-gradient(to bottom, #050309 0%, rgba(5, 3, 9, 0.5) 6%, transparent 20%, transparent 68%, rgba(4, 3, 9, 0.72) 100%);
}

.live-sign {
  right: 3.8rem;
  top: 3rem;
  z-index: 4;
  border-width: 7px;
  border-radius: 12px;
  padding: 0.28rem 1.35rem 0.44rem;
  color: #ff67b7;
  font-size: 4.35rem;
}

.signal-strip {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 2.2rem;
  z-index: 6;
  margin: 0;
  gap: 0.78rem;
}

.signal-strip article {
  min-height: 112px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 1.12rem 1rem;
  background: rgba(8, 8, 16, 0.66);
}

.signal-strip span {
  width: 60px;
  height: 60px;
}

.signal-strip strong {
  font-size: 1.32rem;
}

.rooms {
  margin-top: 0;
  border-radius: 24px;
  padding: 1.15rem;
  background: rgba(9, 10, 18, 0.78);
}

.section-head {
  padding: 0.25rem 0.35rem 0;
}

.section-head p {
  position: relative;
  padding-left: 2.3rem;
  color: var(--ink);
  font-size: 1.85rem;
}

.section-head p::before {
  position: absolute;
  left: 0;
  top: 0.18rem;
  color: var(--green);
  content: "(((";
  font-size: 1.25rem;
  letter-spacing: -0.25rem;
}

.section-head a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.18rem;
}

.section-head a::after {
  content: "→";
  font-size: 1.6rem;
}

.room-grid {
  gap: 0.72rem;
}

.room-card {
  border-radius: 18px;
  padding: 1.18rem;
  background: rgba(10, 10, 19, 0.78);
}

.room-top span {
  border-radius: 7px;
  padding: 0.42rem 0.66rem;
  font-size: 0.95rem;
}

.room-top b::before {
  content: "👥 ";
  font-size: 0.9rem;
}

.avatar-row {
  margin: 0.95rem 0 0.8rem;
}

.avatar-row img,
.avatar-row i {
  width: 58px;
  height: 58px;
  margin-right: -0.38rem;
  border-color: #f238d8;
  box-shadow: 0 0 18px rgba(255, 43, 156, 0.28);
}

.wave {
  height: 58px;
  justify-content: flex-start;
  gap: 4px;
}

.wave i {
  width: 4px;
}

.room-card h2 {
  margin-bottom: 0.32rem;
  font-size: 1.65rem;
}

.mini-row {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.mini-row img,
.mini-row span {
  width: 36px;
  height: 36px;
  margin-right: -0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background:
    radial-gradient(circle at 40% 34%, #ffe5f8 0 17%, transparent 18%),
    radial-gradient(circle at 50% 78%, #1a1224 0 29%, transparent 30%),
    linear-gradient(135deg, #ff4aa8, #7639ff);
  box-shadow: 0 0 0 2px rgba(5, 5, 12, 0.84);
}

.mini-row img {
  object-fit: cover;
}

.mini-row b {
  display: grid;
  place-items: center;
  min-width: 54px;
  height: 38px;
  margin-left: 0.34rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(11, 11, 18, 0.92);
}

.paths {
  border-color: rgba(176, 44, 255, 0.65);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(58, 18, 104, 0.58), rgba(10, 7, 18, 0.9)),
    var(--panel);
}

@media (min-width: 761px) {
  [dir="rtl"] .hero {
    gap: 1rem 2.2rem;
    padding-top: 1.45rem;
    padding-bottom: 1.45rem;
  }

  [dir="rtl"] .signal-badge {
    margin-bottom: 0.75rem;
  }

  [dir="rtl"] .hero-copy {
    width: min(480px, 55%);
  }

  [dir="rtl"] h1 {
    max-width: 500px;
    margin-bottom: 0.5rem;
    font-size: clamp(3.35rem, 5.6vw, 4.25rem);
    line-height: 0.96;
  }

  [dir="rtl"] .lede {
    max-width: 430px;
    margin-bottom: 0.55rem;
    font-size: 1.16rem;
    line-height: 1.38;
  }

  [dir="rtl"] .hero-actions {
    max-width: 450px;
    gap: 0.65rem;
  }

  [dir="rtl"] .hero-actions .btn {
    grid-template-columns: 46px 1fr 36px;
    min-height: 68px;
    padding: 0 1rem;
    font-size: 1.08rem;
  }
}

@media (max-width: 760px) {
  .nav,
  main,
  footer {
    width: min(100% - 20px, 430px);
  }

  .nav {
    padding: 0.65rem 0;
  }

  .brand img {
    height: 38px;
  }

  .hero {
    min-height: auto;
    padding: 1rem 0 0;
    background:
      radial-gradient(circle at 74% 20%, rgba(255, 43, 156, 0.3), transparent 14rem),
      radial-gradient(circle at 23% 14%, rgba(116, 39, 255, 0.24), transparent 12rem),
      linear-gradient(160deg, #050309 0%, #080411 100%);
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    width: 100%;
    padding: 0 0.2rem;
  }

  .signal-badge {
    margin-bottom: 0.85rem;
    padding: 0.5rem 0.7rem;
    font-size: 0.9rem;
  }

  h1 {
    max-width: 360px;
    margin-bottom: 0.7rem;
    font-size: 3.85rem;
  }

  .lede {
    max-width: 340px;
    margin-bottom: 0.92rem;
    font-size: 1.06rem;
  }

  .hero-actions {
    max-width: none;
    gap: 0.52rem;
  }

  .btn {
    grid-template-columns: 44px 1fr 34px;
    min-height: 58px;
    border-radius: 8px;
    padding: 0 0.72rem;
    font-size: 0.98rem;
  }

  .btn-icon {
    width: 34px;
    height: 34px;
  }

  .btn i {
    font-size: 1.7rem;
  }

  .hero-media {
    position: relative;
    inset: auto;
    height: 420px;
    left: auto;
    right: auto;
    margin-top: 0.7rem;
    overflow: hidden;
  }

  .hero-media img {
    right: 50%;
    bottom: -1.4rem;
    width: min(430px, 112%);
    height: 460px;
    transform: translateX(50%);
    object-position: 62% 48%;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(5, 3, 9, 0.34), transparent 34%),
      linear-gradient(to bottom, transparent 0%, transparent 68%, #050309 100%);
  }

  .live-sign {
    right: 0.65rem;
    top: 0.55rem;
    border-width: 4px;
    padding: 0.14rem 0.72rem 0.22rem;
    font-size: 2.15rem;
  }

  [dir="rtl"] .live-sign {
    left: 0.65rem;
    right: auto;
  }

  .signal-strip {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 0.2rem;
    padding: 0 0.2rem;
  }

  .signal-strip article {
    min-height: 76px;
    border-radius: 8px;
    padding: 0.78rem;
  }

  .signal-strip span {
    width: 44px;
    height: 44px;
  }

  .signal-strip strong {
    font-size: 1rem;
  }

  .rooms {
    margin-top: 1rem;
    border-radius: 8px;
    padding: 0.85rem;
  }

  .section-head p {
    padding-left: 0;
    font-size: 1rem;
  }

  .section-head p::before {
    display: none;
  }

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

  .avatar-row img,
  .avatar-row i {
    width: 50px;
    height: 50px;
  }

  .paths {
    border-radius: 8px;
  }
}
