:root {
  color-scheme: light;
  --page: #ffd8e5;
  --page-deep: #ff8db4;
  --hero-a: #ed4e96;
  --hero-b: #ff7d86;
  --pink: #ef2f93;
  --hot: #ff5f71;
  --cream: #fff8fb;
  --card: rgba(255, 250, 252, 0.92);
  --ink: #231927;
  --muted: #7f6d83;
  --purple: #743263;
  --line: #f4c7d8;
  --yellow: #ffe578;
  --green: #0b9c5f;
  --shadow: 0 26px 60px rgba(220, 48, 116, 0.2);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--page);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff1f7 0, #ffd8e5 420px, #ff93b8 100%);
  overflow-x: hidden;
}

body.is-dark {
  background:
    linear-gradient(180deg, #2b1731 0, #643553 420px, #b94b79 100%);
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  inset-inline-start: 1rem;
  top: 0.5rem;
  z-index: 20;
  transform: translateY(-150%);
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: white;
  color: var(--pink);
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #f2d8e3;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1220px, calc(100% - 34px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 1000;
  white-space: nowrap;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(198, 49, 255, 0.22);
}

.brand strong {
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 1.7vw, 1.45rem);
  font-size: 0.9rem;
  font-weight: 900;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.moon,
.lang-switch,
.nav-cta {
  min-height: 44px;
  border: 1px solid #f2d8e3;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 1000;
  box-shadow: 0 12px 30px rgba(200, 65, 125, 0.1);
}

.moon {
  width: 44px;
  color: #0d1020;
  cursor: pointer;
}

.lang-switch {
  padding: 0 1rem;
  cursor: pointer;
}

.nav-cta {
  padding: 0 1.4rem;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--hot));
}

main {
  width: min(1220px, calc(100% - 34px));
  margin: 0 auto;
}

.hero-shell {
  position: relative;
  min-height: 840px;
  margin-top: 34px;
  padding: 48px 34px 128px;
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(420px, 560px) 220px;
  grid-template-areas: "copy room side";
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.3rem);
  border-radius: 3px;
  background:
    radial-gradient(circle at 36% 18%, rgba(255, 255, 255, 0.18), transparent 18rem),
    linear-gradient(135deg, var(--hero-a), var(--hero-b));
  overflow: visible;
}

.hero-bg-mark {
  position: absolute;
  top: 0;
  left: 37%;
  color: rgba(255, 255, 255, 0.11);
  font-size: 19rem;
  font-weight: 1000;
  line-height: 0.75;
  pointer-events: none;
}

.side-rail {
  grid-area: side;
  display: grid;
  gap: 1.2rem;
  align-self: start;
  transform: translateY(58px);
}

.chat-card,
.rtl-card {
  padding: 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 40px rgba(154, 28, 88, 0.12);
}

.chat-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
}

.chat-tabs span {
  min-height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #7c6b7f;
  font-size: 0.78rem;
  font-weight: 1000;
}

.chat-tabs span:first-child {
  color: var(--pink);
  background: #ffe9f2;
}

.chat-row,
.chat-input {
  min-height: 52px;
  margin-top: 0.55rem;
  padding: 0.7rem 0.8rem;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  background: white;
  color: #8a758b;
  font-size: 0.78rem;
}

.chat-row strong {
  color: #342639;
}

.chat-input {
  grid-template-columns: 1fr 34px;
  color: #a99aad;
}

.chat-input b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: white;
}

.rtl-card {
  text-align: center;
}

.rtl-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.rtl-lines {
  width: 82px;
  height: 68px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #ffe4ee;
}

.rtl-lines span {
  width: 48px;
  height: 8px;
  display: block;
  border-radius: 999px;
  background: #ff8dbb;
}

.rtl-card p {
  color: var(--muted);
  font-size: 0.86rem;
}

.rtl-card button {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 0 1rem;
  background: white;
  color: var(--pink);
  cursor: pointer;
  font-weight: 1000;
}

.hero-copy {
  grid-area: copy;
  color: white;
  min-width: 0;
}

.community-pill,
.agent-label {
  width: max-content;
  max-width: 100%;
  min-height: 42px;
  margin: 0 0 1.1rem;
  padding: 0.45rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #1d2028;
  font-size: 0.9rem;
  font-weight: 1000;
}

.community-pill span {
  width: 24px;
  height: 24px;
  border: 5px solid white;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.agent-label {
  min-height: 34px;
  margin-bottom: 0.6rem;
  color: var(--pink);
  background: rgba(255, 255, 255, 0.9);
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  overflow-wrap: normal;
}

.agent-name {
  display: block;
  max-width: 100%;
  color: white;
  font-size: clamp(3.6rem, 4.9vw, 5.05rem);
  font-weight: 1000;
  line-height: 0.9;
  letter-spacing: 0;
}

.agent-name > span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.agent-name i {
  font-style: normal;
  filter: drop-shadow(0 8px 10px rgba(135, 22, 42, 0.34));
}

h1 em {
  display: block;
  margin-top: 0.35rem;
  color: var(--yellow);
  font-style: normal;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 1000;
  line-height: 0.95;
}

.hero-lede {
  max-width: 30rem;
  margin: 1.25rem 0 1.7rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.03rem, 1.55vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  width: min(100%, 250px);
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.btn {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  padding: 0 1rem;
  border-radius: 10px;
  color: white;
  font-weight: 1000;
  box-shadow: 0 18px 34px rgba(183, 28, 110, 0.18);
}

.btn span,
.final-actions span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
}

.btn-agent,
.final-actions a:first-child {
  background: linear-gradient(135deg, #e127b7, #ff6b54);
}

.btn-host,
.final-actions a:last-child {
  border: 2px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.13);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  max-width: 430px;
}

.mini-stats article {
  min-width: 0;
}

.mini-stats b {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 0.6rem;
  border-radius: 50%;
  background: rgba(218, 31, 132, 0.58);
  color: white;
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.mini-stats strong {
  font-size: 0.9rem;
  line-height: 1.05;
}

.mini-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  line-height: 1.25;
}

.room-card {
  grid-area: room;
  position: relative;
  z-index: 1;
  min-height: 510px;
  width: 100%;
  padding: 1.5rem 1.5rem 1.25rem;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: #753160;
  color: white;
  box-shadow: 0 28px 70px rgba(97, 16, 66, 0.32);
}

.room-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-weight: 1000;
}

.live-badge {
  padding: 0.52rem 0.75rem;
  border-radius: 8px;
  background: #ff334c;
}

.count {
  padding: 0.52rem 0.72rem;
  border-radius: 8px;
  background: #3d2445;
}

.room-top b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0aa35f;
}

.room-body {
  position: relative;
  margin-top: 1.5rem;
}

.rail-pills {
  position: absolute;
  inset-inline-start: 0;
  top: 94px;
  display: grid;
  gap: 0.55rem;
}

.rail-pills span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
  font-weight: 900;
}

.speaker-grid {
  position: relative;
  min-height: 320px;
  margin-inline-start: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 150px 160px;
  align-items: center;
  justify-items: center;
}

.speaker {
  width: 110px;
  text-align: center;
  font-weight: 1000;
}

.speaker span {
  width: 92px;
  height: 92px;
  display: block;
  margin: 0 auto 0.45rem;
  border: 4px solid #ff79b4;
  border-radius: 50%;
  background:
    radial-gradient(circle at 62% 24%, white 0 8px, transparent 9px),
    radial-gradient(circle at 58% 34%, #2d3540 0 24px, transparent 25px),
    linear-gradient(135deg, #ff77b6, #ec2ea0 52%, #ff9e45);
  box-shadow: 0 0 18px rgba(255, 102, 180, 0.42);
}

.s2 span {
  background:
    radial-gradient(circle at 62% 24%, white 0 8px, transparent 9px),
    radial-gradient(circle at 58% 34%, #2d3540 0 24px, transparent 25px),
    linear-gradient(135deg, #ff8c4a, #171b24 54%, #38d3a7);
}

.s4 span {
  background:
    radial-gradient(circle at 62% 24%, white 0 8px, transparent 9px),
    radial-gradient(circle at 58% 34%, #2d3540 0 24px, transparent 25px),
    linear-gradient(135deg, #3ad69f, #0e806a 52%, #ff7ec1);
}

.speaker small {
  display: block;
  font-size: 0.78rem;
  opacity: 0.86;
}

.mic {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ee2aa4;
  box-shadow: 0 0 0 10px rgba(238, 42, 164, 0.18);
}

.mic i {
  width: 42px;
  height: 56px;
  border-radius: 22px 22px 26px 26px;
  background: white;
  position: relative;
}

.mic i::after {
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 44px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  content: "";
  background: white;
}

.room-bottom {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  padding-top: 0.75rem;
}

.room-bottom span {
  min-width: 58px;
  padding: 0.65rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 1000;
}

.cards-panel,
.split-section,
.faq-section,
.final-cta {
  position: relative;
  z-index: 2;
  width: min(1000px, calc(100% - 68px));
  margin: 0 auto;
  border-radius: 8px;
  background: rgba(255, 250, 252, 0.93);
  box-shadow: var(--shadow);
}

.cards-panel {
  margin-top: -104px;
  padding: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-card {
  min-height: 250px;
  padding: 1.35rem;
  display: grid;
  grid-template-columns: 76px 1fr;
  grid-template-areas: "icon title" "icon text" "icon cta";
  align-items: center;
  column-gap: 1rem;
  border: 1px solid #f0cbd9;
  border-radius: 6px;
  background: white;
}

.feature-icon {
  grid-area: icon;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 1000;
}

.pink { color: #f04499; background: #ffe1ec; }
.purple { color: #9a54fb; background: #efe0ff; }
.peach { color: #f4a12f; background: #ffefd1; }
.mint { color: #0a9b5d; background: #dff6ea; }

.feature-card h2 {
  grid-area: title;
  margin: 0;
  color: var(--pink);
  font-size: 1.35rem;
  line-height: 1.05;
}

.feature-card p {
  grid-area: text;
  margin: 0.75rem 0;
  color: #827286;
  line-height: 1.35;
}

.feature-card a {
  grid-area: cta;
  color: var(--pink);
  font-weight: 1000;
}

.wide-stats {
  width: min(780px, 100%);
  margin: 1.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #f0cbd9;
  border-radius: 8px;
  background: white;
  overflow: hidden;
}

.wide-stats article {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 0.7rem;
  text-align: center;
  border-inline-start: 1px solid #f0cbd9;
}

.wide-stats article:first-child {
  border-inline-start: 0;
}

.wide-stats strong {
  color: var(--pink);
  font-size: 1.5rem;
  line-height: 1;
}

.wide-stats span {
  color: #4e4054;
  font-size: 0.78rem;
  font-weight: 900;
}

.split-section,
.faq-section,
.final-cta {
  width: 100%;
  margin-top: 68px;
  padding: clamp(2rem, 5vw, 3.2rem);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.split-copy p:first-child,
.faq-section > p,
.final-cta p {
  margin: 0 0 1rem;
  color: var(--pink);
  font-weight: 1000;
  letter-spacing: 0.08em;
}

.split-copy h2,
.faq-section h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: 1.08;
}

.split-copy p:last-child,
.final-cta span {
  display: block;
  margin-top: 1.2rem;
  color: #827286;
  font-size: 1.05rem;
  line-height: 1.55;
}

.reason-list {
  display: grid;
  gap: 1rem;
}

.reason-list article {
  min-height: 82px;
  padding: 1rem 1.2rem;
  border: 1px solid #f0cbd9;
  border-radius: 8px;
  background: white;
}

.reason-list strong,
.reason-list span {
  display: block;
}

.reason-list strong {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.reason-list span {
  color: #827286;
}

.faq-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

details {
  min-height: 82px;
  border: 1px solid #f0cbd9;
  border-radius: 8px;
  background: white;
}

summary {
  cursor: pointer;
  padding: 1rem;
  font-weight: 1000;
}

details p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: #827286;
  line-height: 1.45;
}

.final-cta {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  background:
    radial-gradient(circle at 74% 30%, rgba(255, 229, 120, 0.55), transparent 12rem),
    rgba(255, 250, 252, 0.95);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.final-actions a {
  min-height: 56px;
  min-width: 190px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0 1rem;
  border-radius: 8px;
  color: white;
  font-weight: 1000;
}

.final-actions a:last-child {
  color: var(--pink);
  background: white;
  border: 1px solid #f3c5d6;
}

.mobile-actions {
  position: fixed;
  inset: auto 12px 12px;
  z-index: 9;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.55rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 40px rgba(160, 39, 90, 0.22);
}

.mobile-actions a {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-weight: 1000;
}

.mobile-actions a:first-child { color: white; background: linear-gradient(135deg, #e127b7, #ff6b54); }
.mobile-actions a:last-child { color: var(--pink); background: white; border: 1px solid #f3c5d6; }

footer {
  width: min(1220px, calc(100% - 34px));
  margin: 0 auto;
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #7f687e;
  font-size: 0.82rem;
}

[dir="rtl"] body {
  font-family:
    "Noto Nastaliq Urdu", "Noto Naskh Arabic", Tahoma, Inter, ui-sans-serif,
    system-ui, sans-serif;
}

[dir="rtl"] .nav {
  direction: rtl;
}

[dir="rtl"] .hero-shell {
  direction: rtl;
  grid-template-areas: "copy room side";
  grid-template-columns: minmax(300px, 380px) minmax(420px, 560px) 220px;
}

[dir="rtl"] .hero-copy,
[dir="rtl"] .feature-card,
[dir="rtl"] .split-section,
[dir="rtl"] .faq-section,
[dir="rtl"] .final-cta,
[dir="rtl"] footer {
  text-align: right;
}

[dir="rtl"] .agent-name {
  direction: ltr;
  text-align: right;
}

[dir="rtl"] .hero-lede {
  max-width: 25rem;
  font-size: 1rem;
  line-height: 1.85;
}

[dir="rtl"] .hero-actions {
  justify-items: stretch;
}

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

[dir="rtl"] .mini-stats {
  direction: rtl;
}

[dir="rtl"] .mini-stats strong {
  font-size: 0.78rem;
  line-height: 1.32;
}

[dir="rtl"] .mini-stats span {
  font-size: 0.65rem;
  line-height: 1.45;
}

[dir="rtl"] .side-rail {
  transform: none;
}

[dir="rtl"] .chat-row {
  grid-template-columns: 1fr 0.72fr;
}

[dir="rtl"] .cards-panel,
[dir="rtl"] .split-section,
[dir="rtl"] .faq-section,
[dir="rtl"] .final-cta {
  direction: rtl;
}

[dir="rtl"] .feature-card {
  grid-template-columns: 1fr;
  grid-template-areas: "icon" "title" "text" "cta";
  justify-items: center;
  align-content: start;
  text-align: center;
  row-gap: 0.65rem;
}

[dir="rtl"] .feature-card h2 {
  font-size: 1.12rem;
  line-height: 1.55;
}

[dir="rtl"] .feature-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.75;
}

[dir="rtl"] .feature-card a {
  font-size: 0.88rem;
  line-height: 1.5;
}

[dir="rtl"] .reason-list article,
[dir="rtl"] details p {
  line-height: 1.85;
}

[dir="rtl"] .wide-stats article:first-child {
  border-inline-start: 1px solid #f0cbd9;
}

[dir="rtl"] .wide-stats article:last-child {
  border-inline-start: 0;
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
    grid-template-areas: "copy room" "side room";
    min-height: 0;
    padding-bottom: 138px;
  }

  [dir="rtl"] .hero-shell {
    grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1fr);
    grid-template-areas: "room copy" "room side";
  }

  .side-rail {
    grid-template-columns: 1fr 1fr;
    align-self: stretch;
  }

  .cards-panel {
    margin-top: -86px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav {
    width: min(100% - 22px, 1220px);
    min-height: 68px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    font-size: 1.15rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .moon,
  .nav-cta {
    display: none;
  }

  main {
    width: 100%;
  }

  .hero-shell {
    width: 100%;
    margin-top: 0;
    padding: 2rem 12px 130px;
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "room" "side";
    gap: 1.4rem;
    border-radius: 0;
  }

  [dir="rtl"] .hero-shell {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "room" "side";
  }

  .hero-bg-mark {
    left: 24%;
    font-size: 11rem;
  }

  .community-pill,
  .agent-label {
    min-height: 36px;
    font-size: 0.82rem;
  }

  .agent-name {
    max-width: 100%;
    font-size: clamp(3rem, 12.4vw, 3.45rem);
  }

  h1 em {
    font-size: clamp(2rem, 10vw, 3.35rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .mini-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .room-card {
    min-height: 420px;
    padding: 1rem;
    border-width: 2px;
    transform: none;
  }

  .room-top {
    gap: 0.45rem;
    font-size: 0.75rem;
  }

  .speaker-grid {
    min-height: 270px;
    margin-inline-start: 34px;
    grid-template-rows: 128px 128px;
  }

  .speaker {
    width: 84px;
    font-size: 0.8rem;
  }

  .speaker span {
    width: 66px;
    height: 66px;
  }

  .mic {
    width: 86px;
    height: 86px;
  }

  .mic i {
    width: 30px;
    height: 42px;
  }

  .room-bottom {
    gap: 0.35rem;
  }

  .room-bottom span {
    min-width: 0;
    padding: 0.55rem 0.6rem;
    font-size: 0.66rem;
  }

  .side-rail {
    grid-template-columns: 1fr;
    transform: none;
  }

  .cards-panel,
  .split-section,
  .faq-section,
  .final-cta {
    width: calc(100% - 24px);
  }

  .cards-panel {
    margin-top: -82px;
    padding: 1rem;
  }

  .feature-grid,
  .faq-grid,
  .split-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .wide-stats {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-actions {
    display: grid;
  }

  footer {
    width: calc(100% - 24px);
    padding-bottom: 82px;
    display: grid;
  }
}
