:root {
  color-scheme: dark;
  --bg: #050719;
  --bg-deep: #030414;
  --panel: rgba(18, 20, 53, 0.78);
  --panel-strong: rgba(22, 24, 62, 0.9);
  --panel-soft: rgba(255, 255, 255, 0.035);
  --line: rgba(167, 154, 255, 0.18);
  --line-strong: rgba(169, 119, 255, 0.45);
  --text: #f8f7ff;
  --muted: #a7a5c0;
  --muted-2: #777797;
  --violet: #8a46ff;
  --violet-2: #b065ff;
  --pink: #ef57d8;
  --pink-2: #ff4b8d;
  --blue: #69a8ff;
  --green: #62f0a2;
  --danger: #ee2f6a;
  --danger-2: #ff4f7d;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 52%, rgba(105, 40, 255, 0.23), transparent 23rem),
    radial-gradient(circle at 23% 20%, rgba(105, 168, 255, 0.08), transparent 19rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(159, 118, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(159, 118, 255, 0.03) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 78%);
}

.bg-wave {
  position: absolute;
  width: 330px;
  height: 220px;
  opacity: 0.5;
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(116, 68, 255, 0.55) 7% 9%, transparent 9% 12%) 0 50% / 34px 80px repeat-x;
  filter: blur(0.2px) drop-shadow(0 0 24px rgba(129, 71, 255, 0.45));
}

.bg-wave-left {
  left: 10px;
  top: 50px;
  transform: scaleX(0.42);
}

.bg-wave-right {
  right: 12px;
  top: 350px;
  transform: scaleX(0.75);
}

.app-shell {
  width: min(100% - 28px, 1920px);
  margin: 0 auto;
  padding: 16px 0 40px;
}

.top-nav {
  min-height: 118px;
  padding: 20px 28px;
  display: grid;
  grid-template-columns: minmax(380px, 1fr) auto minmax(380px, 1fr);
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(8, 10, 35, 0.74);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.brand,
.mobile-logo {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-waves {
  width: 74px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--violet);
}

.brand-waves span {
  width: 4px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 18px rgba(138, 70, 255, 0.65);
}

.brand-waves span:nth-child(1),
.brand-waves span:nth-child(5) {
  height: 14px;
  opacity: 0.55;
}

.brand-waves span:nth-child(2),
.brand-waves span:nth-child(4) {
  height: 28px;
  opacity: 0.8;
}

.brand-waves span:nth-child(3) {
  height: 42px;
}

.brand-orb {
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #f97dff;
  border: 2px solid rgba(143, 66, 255, 0.9);
  background:
    radial-gradient(circle, rgba(232, 71, 255, 0.24), rgba(8, 10, 35, 0.9) 62%),
    linear-gradient(145deg, rgba(143, 66, 255, 0.12), rgba(255, 89, 210, 0.08));
  box-shadow:
    inset 0 0 0 12px rgba(12, 10, 48, 0.72),
    0 0 35px rgba(143, 66, 255, 0.45);
}

.brand-orb svg {
  width: 46px;
  height: 46px;
  stroke-width: 2.8;
}

.brand-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.brand-copy strong {
  font-size: 28px;
  line-height: 1;
  letter-spacing: 4px;
  white-space: nowrap;
}

.brand-copy strong span {
  color: #d665ff;
}

.brand-copy small {
  color: var(--muted);
  font-size: 18px;
  white-space: nowrap;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.nav-actions {
  justify-content: flex-end;
  gap: 28px;
}

.nav-link {
  min-height: 54px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--muted);
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

.nav-link svg {
  color: #a5a3c5;
}

.nav-link.is-active {
  color: #c077ff;
  border-color: rgba(138, 70, 255, 0.55);
  background: rgba(86, 45, 184, 0.28);
  box-shadow: inset 0 0 28px rgba(138, 70, 255, 0.12);
}

.nav-link:hover {
  color: var(--text);
}

.profile-chip {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--violet-2);
  background: rgba(113, 59, 255, 0.24);
}

.mobile-brand {
  display: none;
}

.screen {
  display: none;
}

.screen.is-active {
  display: block;
}

.screen-filter {
  position: relative;
  min-height: calc(100vh - 162px);
  padding: 54px 0 0 126px;
}

.filter-card,
.conversation-card {
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background:
    radial-gradient(circle at 16% 10%, rgba(119, 76, 255, 0.18), transparent 24rem),
    linear-gradient(150deg, rgba(20, 22, 62, 0.92), rgba(9, 11, 37, 0.94));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.filter-card {
  width: min(1280px, calc(100vw - 430px));
  min-height: 838px;
  padding: 28px 32px 34px;
}

.section-heading {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 138px;
}

.heading-icon,
.panel-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #c47aff;
  background: linear-gradient(145deg, rgba(138, 70, 255, 0.48), rgba(92, 49, 171, 0.42));
  box-shadow: 0 18px 42px rgba(68, 37, 168, 0.25);
}

.heading-icon {
  width: 84px;
  height: 84px;
}

.heading-icon svg {
  width: 44px;
  height: 44px;
  stroke-width: 2.8;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 23px;
}

.headset-art {
  position: absolute;
  right: 16px;
  top: 0;
  width: 154px;
  height: 138px;
  filter: drop-shadow(0 18px 28px rgba(143, 66, 255, 0.35));
}

.headset-art .headset-band,
.large-band {
  position: absolute;
  left: 28px;
  top: 20px;
  width: 104px;
  height: 92px;
  border: 10px solid #6542d9;
  border-bottom: 0;
  border-radius: 70px 70px 0 0;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.headset-art span {
  position: absolute;
  top: 70px;
  width: 34px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(180deg, #7f5cff, #33206d);
}

.headset-art span:nth-of-type(1) {
  left: 16px;
  transform: rotate(8deg);
}

.headset-art span:nth-of-type(2) {
  right: 8px;
  transform: rotate(-8deg);
}

.filter-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  margin-top: 20px;
}

.filter-stack {
  display: grid;
  gap: 22px;
}

.glass-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(12, 15, 49, 0.72);
  box-shadow: inset 0 0 36px rgba(255, 255, 255, 0.025);
}

.age-panel {
  min-height: 442px;
  padding: 32px 24px;
}

.city-panel,
.gender-panel {
  min-height: 224px;
  padding: 28px 26px;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.panel-title strong {
  color: var(--text);
  font-size: 24px;
}

.panel-icon {
  width: 56px;
  height: 56px;
  position: relative;
}

.calendar-icon::before,
.pin-icon::before,
.user-icon::before {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.calendar-icon::before {
  content: "▣";
}

.pin-icon::before {
  content: "●";
}

.user-icon::before {
  content: "♟";
  transform: translateY(-1px);
}

.age-badge {
  margin-left: auto;
  min-width: 164px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #b979ff;
  background: rgba(8, 10, 35, 0.62);
  font-size: 22px;
  font-weight: 700;
}

.range-control {
  position: relative;
  margin-top: 92px;
  padding: 0 0 62px;
}

.range-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 17px;
  height: 10px;
  border-radius: 999px;
  background: rgba(133, 132, 166, 0.18);
}

.range-track span {
  position: absolute;
  left: var(--min);
  right: calc(100% - var(--max));
  top: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #7b48ff, #bd5cff);
  box-shadow: 0 0 18px rgba(138, 70, 255, 0.42);
}

.range-control input[type="range"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 42px;
  margin: 0;
  appearance: none;
  pointer-events: none;
  background: transparent;
}

.range-control input[type="range"]::-webkit-slider-thumb {
  width: 34px;
  height: 34px;
  appearance: none;
  pointer-events: auto;
  border: 5px solid #5e38d0;
  border-radius: 50%;
  background: #ddd6ff;
  box-shadow:
    0 0 0 4px rgba(196, 122, 255, 0.2),
    0 0 18px rgba(138, 70, 255, 0.7);
  cursor: pointer;
}

.range-control input[type="range"]::-moz-range-thumb {
  width: 26px;
  height: 26px;
  pointer-events: auto;
  border: 5px solid #5e38d0;
  border-radius: 50%;
  background: #ddd6ff;
  box-shadow:
    0 0 0 4px rgba(196, 122, 255, 0.2),
    0 0 18px rgba(138, 70, 255, 0.7);
  cursor: pointer;
}

.range-labels {
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 22px;
}

.range-labels span {
  position: relative;
}

.range-labels span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -38px;
  width: 2px;
  height: 18px;
  background: rgba(167, 154, 255, 0.14);
}

.range-summary {
  display: block;
  margin-top: 42px;
  color: #a764ff;
  text-align: center;
  font-size: 23px;
}

.city-field {
  min-height: 70px;
  margin-top: 18px;
  padding: 0 16px 0 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 10, 35, 0.54);
}

.city-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: 22px;
}

.city-field input::placeholder {
  color: var(--muted-2);
}

.city-field svg {
  color: #ad68ff;
  width: 34px;
  height: 34px;
  stroke-width: 2.4;
}

.city-panel small {
  display: block;
  margin: 13px 0 0 8px;
  color: var(--muted-2);
  font-size: 18px;
}

.gender-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.gender-option {
  min-height: 74px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(8, 10, 35, 0.45);
  font-size: 18px;
  cursor: pointer;
}

.gender-option span {
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

.gender-option.is-selected {
  color: var(--text);
  border-color: #e66aff;
  background:
    radial-gradient(circle at 50% 0%, rgba(239, 87, 216, 0.22), transparent 80%),
    rgba(64, 21, 84, 0.56);
  box-shadow:
    inset 0 0 22px rgba(239, 87, 216, 0.1),
    0 0 20px rgba(239, 87, 216, 0.18);
}

.gender-option.is-selected span {
  color: #ff6ce4;
}

.filter-actions {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 24px;
  margin-top: 26px;
}

.primary-action,
.secondary-action,
.hang-action {
  min-height: 88px;
  border-radius: 13px;
  border: 1px solid transparent;
  font-size: 28px;
  font-weight: 800;
  cursor: pointer;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: #fff;
  background: linear-gradient(100deg, #7139ff, #e044d4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 42px rgba(165, 63, 255, 0.22);
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  background: rgba(8, 10, 35, 0.46);
  border-color: var(--line);
}

.secondary-action svg {
  width: 32px;
  height: 32px;
}

.primary-action:hover,
.secondary-action:hover,
.control-button:hover,
.hang-action:hover {
  transform: translateY(-1px);
}

.primary-action,
.secondary-action,
.control-button,
.hang-action,
.round-nav,
.nav-link,
.gender-option {
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.sound-bars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
}

.sound-bars i {
  width: 4px;
  border-radius: 999px;
  background: #fff;
}

.sound-bars i:nth-child(1),
.sound-bars i:nth-child(4) {
  height: 18px;
}

.sound-bars i:nth-child(2) {
  height: 30px;
}

.sound-bars i:nth-child(3) {
  height: 24px;
}

.privacy-note,
.privacy-strip,
.hold-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
}

.privacy-note {
  margin-top: 36px;
  font-size: 18px;
}

.privacy-note svg {
  width: 30px;
  height: 30px;
  color: #8d56ff;
  fill: rgba(141, 86, 255, 0.28);
}

.hero-visual {
  position: absolute;
  right: 36px;
  top: 196px;
  width: min(440px, 25vw);
  height: 610px;
}

.headphones-large {
  position: absolute;
  inset: 0;
  filter: drop-shadow(0 26px 52px rgba(125, 55, 255, 0.44));
}

.headphones-large::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 4%;
  bottom: 20px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(139, 58, 255, 0.42), transparent 62%);
  border: 1px solid rgba(139, 58, 255, 0.18);
}

.large-band {
  left: 22%;
  top: 148px;
  width: 55%;
  height: 230px;
  border-width: 20px;
  border-color: #6e4cff;
  border-radius: 190px 190px 0 0;
  transform: rotate(8deg);
}

.ear {
  position: absolute;
  top: 300px;
  width: 84px;
  height: 178px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 68%, rgba(255, 62, 215, 0.65), transparent 42%),
    linear-gradient(180deg, #7a52ff, #24164c);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.12),
    0 0 30px rgba(231, 68, 255, 0.5);
}

.ear.left {
  left: 16%;
  transform: rotate(9deg);
}

.ear.right {
  right: 5%;
  transform: rotate(-8deg);
}

.wave-line {
  position: absolute;
  left: 42%;
  top: 360px;
  width: 130px;
  height: 70px;
  background:
    linear-gradient(90deg, transparent 0 8%, #df55ff 8% 11%, transparent 11% 16%) 0 50% / 28px 62px repeat-x;
  filter: drop-shadow(0 0 18px rgba(223, 85, 255, 0.8));
}

.mic-stick {
  position: absolute;
  right: 16%;
  top: 455px;
  width: 104px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3d2c7b, #8a46ff);
  transform: rotate(30deg);
}

.screen-chat.is-active {
  display: grid;
  place-items: center;
  padding-top: 34px;
}

.conversation-card {
  width: min(1615px, calc(100vw - 220px));
  min-height: 872px;
  padding: 28px 32px 18px;
}

.conversation-header {
  display: grid;
  grid-template-columns: 72px 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 94px;
}

.round-nav {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #d8d3ef;
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.round-nav svg {
  width: 34px;
  height: 34px;
  stroke-width: 2.5;
}

.round-nav:hover {
  border-color: rgba(190, 113, 255, 0.55);
  background: rgba(138, 70, 255, 0.16);
}

h2 {
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: 0;
}

.conversation-header p {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 18px;
}

.conversation-header p svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.call-time {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
}

.call-time span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--pink-2);
  box-shadow: 0 0 18px rgba(255, 75, 141, 0.7);
}

.call-time strong {
  min-width: 74px;
  font-size: 25px;
  font-weight: 500;
}

.online-pill {
  min-width: 92px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #caa9ff;
  background: rgba(138, 70, 255, 0.14);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.voice-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 92px 1fr;
  gap: 68px;
  margin-top: 22px;
  padding: 0 0 22px;
}

.speaker-card {
  position: relative;
  min-height: 462px;
  padding: 24px;
  display: grid;
  justify-items: center;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 10%, rgba(141, 86, 255, 0.15), transparent 45%),
    rgba(12, 15, 49, 0.7);
  overflow: hidden;
}

.speaker-badge {
  position: absolute;
  left: 24px;
  top: 24px;
  padding: 7px 13px;
  border: 1px solid rgba(148, 68, 255, 0.58);
  border-radius: 10px;
  color: #b16bff;
  background: rgba(82, 35, 171, 0.45);
  font-size: 18px;
}

.speaker-partner .speaker-badge {
  color: #ff73df;
  border-color: rgba(239, 87, 216, 0.58);
  background: rgba(161, 42, 141, 0.34);
}

.avatar-ring {
  width: 206px;
  height: 206px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 5px solid #8a46ff;
  background:
    radial-gradient(circle at 50% 20%, rgba(138, 70, 255, 0.28), rgba(8, 10, 35, 0.8) 62%),
    rgba(6, 8, 30, 0.86);
  box-shadow:
    0 0 30px rgba(138, 70, 255, 0.42),
    inset 0 0 0 10px rgba(255, 255, 255, 0.035);
}

.speaker-partner .avatar-ring {
  border-color: var(--pink);
  box-shadow:
    0 0 30px rgba(239, 87, 216, 0.4),
    inset 0 0 0 10px rgba(255, 255, 255, 0.035);
}

.avatar-shape {
  position: relative;
  width: 110px;
  height: 126px;
}

.avatar-shape::before,
.avatar-shape::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #b68cff, #7544ff);
}

.speaker-partner .avatar-shape::before,
.speaker-partner .avatar-shape::after {
  background: linear-gradient(180deg, #f063e1, #a027b4);
}

.avatar-shape::before {
  top: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.avatar-shape::after {
  bottom: 0;
  width: 102px;
  height: 75px;
  border-radius: 55px 55px 26px 26px;
}

.speaker-card strong {
  margin-top: 24px;
  font-size: 30px;
  line-height: 1;
}

.speaker-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 20px;
  text-align: center;
}

.speaker-card small {
  margin-top: 14px;
  color: #a961ff;
  font-size: 20px;
}

.speaker-partner small {
  color: #ff58b5;
}

.voice-wave {
  height: 58px;
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.voice-wave i {
  width: 6px;
  border-radius: 999px;
  animation: wavePulse 1150ms ease-in-out infinite;
}

.voice-wave i:nth-child(1),
.voice-wave i:nth-child(7) {
  height: 18px;
}

.voice-wave i:nth-child(2),
.voice-wave i:nth-child(6) {
  height: 34px;
  animation-delay: 90ms;
}

.voice-wave i:nth-child(3),
.voice-wave i:nth-child(5) {
  height: 46px;
  animation-delay: 180ms;
}

.voice-wave i:nth-child(4) {
  height: 58px;
  animation-delay: 270ms;
}

.purple-wave i {
  background: #9657ff;
  box-shadow: 0 0 18px rgba(150, 87, 255, 0.6);
}

.pink-wave i {
  background: #ff58b5;
  box-shadow: 0 0 18px rgba(255, 88, 181, 0.58);
}

@keyframes wavePulse {
  0%,
  100% {
    transform: scaleY(0.6);
    opacity: 0.65;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.call-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.call-bridge span {
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: linear-gradient(180deg, #b859ff, #6c45ff);
  box-shadow: 0 0 18px rgba(138, 70, 255, 0.68);
  animation: dotPulse 1200ms ease-in-out infinite;
}

.call-bridge span:nth-child(2) {
  animation-delay: 140ms;
}

.call-bridge span:nth-child(3) {
  animation-delay: 280ms;
}

@keyframes dotPulse {
  50% {
    transform: translateY(-7px);
  }
}

.privacy-strip {
  min-height: 54px;
  border: 1px solid rgba(167, 154, 255, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 18px;
}

.privacy-strip svg {
  width: 24px;
  height: 24px;
}

.text-chat-panel {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(167, 154, 255, 0.14);
  border-radius: 18px;
  background: rgba(8, 10, 35, 0.44);
}

.chat-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.chat-panel-head strong {
  font-size: 20px;
}

.chat-panel-head span {
  color: var(--muted-2);
  font-size: 14px;
}

.message-list {
  display: grid;
  gap: 8px;
  max-height: 92px;
  overflow: auto;
  padding-right: 4px;
}

.message {
  justify-self: start;
  max-width: min(72%, 660px);
  padding: 10px 13px;
  border: 1px solid rgba(167, 154, 255, 0.12);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-size: 15px;
  line-height: 1.35;
}

.message.me {
  justify-self: end;
  border-color: rgba(225, 89, 255, 0.32);
  background: linear-gradient(100deg, rgba(113, 57, 255, 0.78), rgba(224, 68, 212, 0.72));
}

.text-chat {
  display: grid;
  grid-template-columns: 1fr 54px;
  gap: 10px;
  margin-top: 12px;
}

.text-chat input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: 0;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  padding: 0 16px;
}

.text-chat input::placeholder {
  color: var(--muted-2);
}

.text-chat button {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(225, 89, 255, 0.34);
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #7139ff, #e044d4);
  cursor: pointer;
}

.text-chat button svg {
  width: 23px;
  height: 23px;
}

.control-dock {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr)) minmax(300px, 1.65fr);
  gap: 18px;
  margin-top: 18px;
}

.control-button {
  min-height: 108px;
  padding: 16px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.control-button svg {
  width: 34px;
  height: 34px;
  stroke-width: 2.5;
}

.control-button span {
  font-size: 18px;
}

.control-button small {
  color: var(--muted-2);
  font-size: 15px;
}

.control-button.is-primary {
  border-color: rgba(178, 78, 255, 0.78);
  background:
    radial-gradient(circle at 50% 0%, rgba(138, 70, 255, 0.38), transparent 78%),
    rgba(82, 35, 171, 0.52);
  box-shadow: 0 0 24px rgba(138, 70, 255, 0.28);
}

.control-button.is-muted {
  border-color: rgba(255, 89, 210, 0.72);
  background: rgba(164, 42, 126, 0.42);
}

.hang-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #fff;
  background: linear-gradient(145deg, var(--danger-2), var(--danger));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 42px rgba(238, 47, 106, 0.24);
}

.hang-action svg {
  width: 42px;
  height: 42px;
  stroke-width: 3;
}

.hold-note {
  display: none;
  margin-top: 18px;
  font-size: 18px;
}

.chat-safe {
  margin-top: 20px;
}

@media (max-width: 1500px) {
  .top-nav {
    grid-template-columns: 1fr auto;
  }

  .nav-actions {
    display: none;
  }

  .filter-card {
    width: min(1120px, calc(100vw - 340px));
  }

  .hero-visual {
    width: 340px;
  }

  .conversation-card {
    width: min(1400px, calc(100vw - 80px));
  }
}

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

  .mobile-brand {
    min-height: 232px;
    display: grid;
    place-items: center;
    position: relative;
    padding-top: 24px;
  }

  .mobile-logo {
    display: grid;
    justify-items: center;
    gap: 12px;
  }

  .mobile-logo .brand-waves {
    position: absolute;
    top: 72px;
    width: 410px;
    transform: scaleX(1.2);
  }

  .mobile-logo .brand-orb {
    width: 116px;
    height: 116px;
    position: relative;
    z-index: 1;
  }

  .mobile-logo .brand-copy {
    justify-items: center;
  }

  .mobile-logo .brand-copy strong {
    font-size: 31px;
    letter-spacing: 6px;
  }

  .mobile-logo .brand-copy small {
    font-size: 19px;
  }

  .close-button {
    position: absolute;
    right: 36px;
    top: 36px;
    width: 88px;
    height: 88px;
  }

  .app-shell {
    width: 100%;
    padding: 0 0 34px;
  }

  .screen-filter,
  .screen-chat.is-active {
    min-height: auto;
    padding: 0 46px;
  }

  .filter-card,
  .conversation-card {
    width: 100%;
    min-height: 0;
    border-radius: 42px;
  }

  .filter-card {
    padding: 34px 36px 30px;
  }

  .hero-visual {
    display: none;
  }

  .section-heading {
    min-height: 190px;
    align-items: flex-start;
    gap: 28px;
  }

  .heading-icon {
    width: 84px;
    height: 84px;
    margin-top: 2px;
  }

  h1 {
    font-size: 49px;
  }

  .section-heading p {
    max-width: 410px;
    font-size: 26px;
    line-height: 1.45;
  }

  .headset-art {
    right: 16px;
    top: 18px;
    width: 176px;
    height: 154px;
  }

  .filter-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .age-panel,
  .city-panel,
  .gender-panel {
    padding: 28px;
    border-radius: 22px;
  }

  .age-panel {
    min-height: 280px;
  }

  .city-panel,
  .gender-panel {
    min-height: 218px;
  }

  .filter-actions {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 34px;
  }

  .primary-action,
  .secondary-action {
    min-height: 106px;
    border-radius: 18px;
    font-size: 32px;
  }

  .conversation-card {
    padding: 36px 36px 28px;
  }

  .conversation-header {
    grid-template-columns: 72px 1fr auto;
    border-bottom: 1px solid rgba(167, 154, 255, 0.12);
    padding-bottom: 30px;
  }

  .online-pill {
    display: none;
  }

  h2 {
    font-size: 50px;
  }

  .conversation-header p {
    font-size: 25px;
  }

  .call-time strong {
    font-size: 31px;
  }

  .voice-grid {
    grid-template-columns: 1fr 54px 1fr;
    gap: 44px;
    margin-top: 42px;
  }

  .speaker-card {
    min-height: 600px;
    padding: 24px 18px;
    border-radius: 32px;
  }

  .avatar-ring {
    width: 238px;
    height: 238px;
  }

  .speaker-card strong {
    font-size: 35px;
  }

  .speaker-card p,
  .speaker-card small {
    font-size: 25px;
  }

  .privacy-strip {
    min-height: 68px;
    margin-top: 38px;
    font-size: 25px;
  }

  .control-dock {
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 42px;
  }

  .control-button {
    min-height: 170px;
    border-radius: 24px;
  }

  .control-button svg {
    width: 56px;
    height: 56px;
  }

  .control-button span {
    font-size: 23px;
  }

  .control-button small {
    font-size: 20px;
  }

  .hang-action {
    grid-column: 1 / -1;
    min-height: 116px;
    border-radius: 18px;
    font-size: 31px;
  }

  .hold-note {
    display: flex;
  }

  .chat-safe {
    display: none;
  }
}

@media (max-width: 760px) {
  .mobile-brand {
    min-height: 196px;
  }

  .mobile-logo .brand-waves {
    width: 260px;
    top: 60px;
  }

  .mobile-logo .brand-orb {
    width: 84px;
    height: 84px;
  }

  .mobile-logo .brand-orb svg {
    width: 42px;
    height: 42px;
  }

  .mobile-logo .brand-copy strong {
    font-size: 25px;
    letter-spacing: 4px;
  }

  .mobile-logo .brand-copy small {
    font-size: 16px;
  }

  .close-button {
    right: 22px;
    top: 24px;
    width: 58px;
    height: 58px;
  }

  .screen-filter,
  .screen-chat.is-active {
    padding: 0 14px;
  }

  .filter-card,
  .conversation-card {
    border-radius: 28px;
  }

  .filter-card {
    padding: 24px 18px;
  }

  .section-heading {
    min-height: 130px;
    gap: 16px;
  }

  .heading-icon {
    width: 62px;
    height: 62px;
  }

  .heading-icon svg {
    width: 32px;
    height: 32px;
  }

  h1 {
    font-size: 35px;
  }

  .section-heading p {
    max-width: 230px;
    margin-top: 10px;
    font-size: 18px;
  }

  .headset-art {
    right: 0;
    top: 16px;
    width: 104px;
    height: 92px;
    transform: scale(0.82);
    transform-origin: top right;
  }

  .panel-title {
    gap: 14px;
  }

  .panel-title strong {
    font-size: 22px;
  }

  .panel-icon {
    width: 48px;
    height: 48px;
  }

  .age-badge {
    min-width: 126px;
    min-height: 50px;
    font-size: 18px;
  }

  .range-control {
    margin-top: 48px;
  }

  .range-labels {
    font-size: 17px;
  }

  .range-summary {
    margin-top: 22px;
    font-size: 20px;
  }

  .city-field {
    min-height: 58px;
  }

  .city-field input {
    font-size: 18px;
  }

  .city-panel small {
    font-size: 15px;
  }

  .gender-options {
    grid-template-columns: 1fr;
  }

  .gender-option {
    min-height: 60px;
    font-size: 18px;
  }

  .primary-action,
  .secondary-action {
    min-height: 76px;
    font-size: 24px;
  }

  .privacy-note {
    font-size: 15px;
    text-align: center;
  }

  .conversation-card {
    padding: 24px 16px;
  }

  .conversation-header {
    grid-template-columns: 48px 1fr auto;
    gap: 10px;
    padding-bottom: 22px;
  }

  .conversation-header .round-nav {
    width: 46px;
    height: 46px;
  }

  .conversation-header .round-nav svg {
    width: 26px;
    height: 26px;
  }

  h2 {
    font-size: 39px;
  }

  .conversation-header p {
    font-size: 17px;
  }

  .call-time strong {
    min-width: 58px;
    font-size: 23px;
  }

  .voice-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .call-bridge {
    order: 2;
    min-height: 36px;
  }

  .speaker-partner {
    order: 3;
  }

  .speaker-card {
    min-height: 390px;
    border-radius: 22px;
  }

  .speaker-badge {
    left: 16px;
    top: 16px;
    font-size: 15px;
  }

  .avatar-ring {
    width: 164px;
    height: 164px;
  }

  .avatar-shape {
    transform: scale(0.78);
  }

  .speaker-card strong {
    font-size: 27px;
  }

  .speaker-card p,
  .speaker-card small {
    font-size: 17px;
  }

  .privacy-strip {
    min-height: 58px;
    margin-top: 18px;
    padding: 0 14px;
    font-size: 15px;
    text-align: center;
  }

  .text-chat-panel {
    margin-top: 14px;
    padding: 12px;
  }

  .chat-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .message-list {
    max-height: 128px;
  }

  .message {
    max-width: 90%;
  }

  .control-dock {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 18px;
  }

  .control-button {
    min-height: 116px;
    border-radius: 18px;
  }

  .control-button svg {
    width: 36px;
    height: 36px;
  }

  .control-button span {
    font-size: 18px;
  }

  .control-button small {
    font-size: 15px;
  }

  .hang-action {
    min-height: 82px;
    font-size: 23px;
  }

  .hang-action svg {
    width: 34px;
    height: 34px;
  }

  .hold-note {
    margin-top: 14px;
    font-size: 15px;
    text-align: center;
  }
}

/* Current design adjustments */
.app-shell {
  width: min(100% - 28px, 1720px);
  padding-top: 14px;
}

.top-nav {
  min-height: 96px;
  grid-template-columns: minmax(330px, 1fr) auto;
  padding: 14px 24px;
}

.brand-orb {
  width: 74px;
  height: 74px;
}

.brand-orb svg {
  width: 38px;
  height: 38px;
}

.brand-copy strong {
  font-size: 24px;
}

.brand-copy small {
  font-size: 16px;
}

.nav-links {
  justify-content: flex-end;
  gap: 18px;
}

.nav-link {
  min-height: 48px;
  font-size: 16px;
}

.screen-filter {
  min-height: calc(100vh - 130px);
  padding: 44px 0 0 86px;
}

.filter-card {
  width: min(1120px, calc(100vw - 390px));
  min-height: 0;
  padding: 24px 28px 28px;
}

.section-heading {
  min-height: 116px;
}

h1 {
  font-size: 36px;
}

.section-heading p {
  margin-top: 12px;
  font-size: 20px;
}

.heading-icon {
  width: 70px;
  height: 70px;
}

.heading-icon svg {
  width: 36px;
  height: 36px;
}

.headset-art-img {
  position: absolute;
  right: 18px;
  top: 6px;
  width: 112px;
  height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(143, 66, 255, 0.35));
}

.filter-layout {
  gap: 20px;
  margin-top: 16px;
}

.age-panel {
  min-height: 382px;
  padding: 26px 22px;
}

.city-panel,
.gender-panel {
  min-height: 174px;
  padding: 22px;
}

.looking-panel {
  min-height: 166px;
}

.filter-stack {
  gap: 16px;
}

.panel-title strong {
  font-size: 21px;
}

.panel-icon {
  width: 48px;
  height: 48px;
}

.calendar-icon::before {
  content: "▣";
}

.pin-icon::before {
  content: "●";
}

.user-icon::before {
  content: "♟";
}

.search-user-icon::before {
  content: "⌕";
  font-size: 28px;
  font-weight: 800;
}

.age-badge {
  min-width: 142px;
  min-height: 50px;
  font-size: 19px;
}

.range-control {
  margin-top: 72px;
}

.range-labels {
  font-size: 19px;
}

.range-summary {
  margin-top: 28px;
  font-size: 20px;
}

.city-field {
  min-height: 58px;
  margin-top: 14px;
}

.city-field select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: 19px;
  appearance: none;
  cursor: pointer;
}

.city-field select option {
  color: #111322;
}

.city-field svg {
  width: 28px;
  height: 28px;
}

.city-panel small {
  font-size: 15px;
}

.gender-options {
  gap: 10px;
  margin-top: 20px;
}

.gender-option {
  min-height: 58px;
  padding: 0 12px;
  font-size: 16px;
}

.gender-option span {
  font-size: 28px;
}

.gender-option.male.is-selected {
  border-color: rgba(105, 168, 255, 0.9);
  background:
    radial-gradient(circle at 50% 0%, rgba(105, 168, 255, 0.28), transparent 80%),
    rgba(28, 64, 122, 0.56);
  box-shadow: 0 0 20px rgba(105, 168, 255, 0.2);
}

.gender-option.male.is-selected span {
  color: #7bb6ff;
}

.gender-option.female.is-selected {
  border-color: #e66aff;
  background:
    radial-gradient(circle at 50% 0%, rgba(239, 87, 216, 0.24), transparent 80%),
    rgba(74, 24, 86, 0.6);
  box-shadow: 0 0 20px rgba(239, 87, 216, 0.18);
}

.gender-option.female.is-selected span {
  color: #ff6ce4;
}

.gender-option.any.is-selected {
  border-color: rgba(120, 242, 191, 0.72);
  background:
    radial-gradient(circle at 50% 0%, rgba(98, 240, 162, 0.2), transparent 80%),
    rgba(26, 88, 78, 0.42);
  box-shadow: 0 0 20px rgba(98, 240, 162, 0.14);
}

.gender-option.any.is-selected span {
  color: #78f2bf;
}

.filter-actions {
  margin-top: 22px;
}

.primary-action,
.secondary-action,
.hang-action {
  min-height: 72px;
  font-size: 24px;
}

.privacy-note {
  margin-top: 24px;
  font-size: 16px;
}

.hero-visual {
  right: 28px;
  top: 165px;
  width: min(360px, 23vw);
  height: 560px;
  display: grid;
  place-items: center;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 32px 54px rgba(125, 55, 255, 0.44));
}

.conversation-card {
  width: min(1380px, calc(100vw - 170px));
  min-height: 0;
  padding: 24px 28px 18px;
}

.conversation-header {
  min-height: 78px;
}

.round-nav {
  width: 58px;
  height: 58px;
}

.round-nav svg {
  width: 30px;
  height: 30px;
}

h2 {
  font-size: 32px;
}

.conversation-header p {
  margin-top: 8px;
  font-size: 16px;
}

.voice-grid {
  grid-template-columns: 1fr 70px 1fr;
  gap: 42px;
  margin-top: 18px;
}

.speaker-card {
  min-height: 360px;
}

.avatar-ring {
  width: 164px;
  height: 164px;
}

.avatar-shape {
  transform: scale(0.78);
}

.speaker-card strong {
  font-size: 25px;
}

.speaker-card p,
.speaker-card small {
  font-size: 17px;
}

.voice-wave {
  height: 46px;
  margin-top: 16px;
}

.privacy-strip {
  min-height: 48px;
  font-size: 16px;
}

.text-chat-panel {
  margin-top: 12px;
  padding: 12px;
}

.message-list {
  max-height: 78px;
}

.control-dock {
  grid-template-columns: repeat(3, minmax(130px, 1fr)) minmax(260px, 1.55fr);
  gap: 14px;
  margin-top: 14px;
}

.control-button {
  min-height: 92px;
  padding: 12px;
}

.control-button svg {
  width: 30px;
  height: 30px;
}

.control-button span {
  font-size: 16px;
}

.control-button small {
  font-size: 14px;
}

.modal-layer {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 4, 18, 0.72);
  backdrop-filter: blur(14px);
}

.modal-layer[hidden] {
  display: none;
}

.modal-card {
  display: none;
  width: min(560px, 100%);
  position: relative;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(138, 70, 255, 0.22), transparent 18rem),
    linear-gradient(150deg, rgba(20, 22, 62, 0.98), rgba(8, 10, 35, 0.98));
  box-shadow: var(--shadow);
}

.modal-card.is-active {
  display: block;
}

.modal-card h3 {
  margin: 0 42px 18px 0;
  font-size: 26px;
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.rule-list {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.help-grid {
  display: grid;
  gap: 14px;
}

.help-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.help-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.help-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.report-form {
  display: grid;
  gap: 14px;
}

.report-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.report-form select,
.report-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  color: var(--text);
  background: rgba(8, 10, 35, 0.72);
  padding: 14px;
}

.report-form select option {
  color: #111322;
}

.report-form textarea {
  min-height: 96px;
  resize: vertical;
}

.compact-action {
  min-height: 56px;
  font-size: 18px;
}

.form-status {
  min-height: 22px;
  color: var(--green);
  font-size: 14px;
}

@media (max-width: 1500px) {
  .filter-card {
    width: min(1020px, calc(100vw - 320px));
  }

  .conversation-card {
    width: min(1240px, calc(100vw - 80px));
  }
}

@media (max-width: 1180px) {
  .headset-art-img {
    right: 16px;
    top: 20px;
    width: 130px;
    height: 130px;
  }

  .filter-card {
    padding: 28px 30px;
  }

  .filter-layout {
    grid-template-columns: 1fr;
  }

  .age-panel,
  .city-panel,
  .gender-panel {
    min-height: auto;
  }

  .control-dock {
    grid-template-columns: repeat(3, 1fr);
  }

  .hang-action {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .headset-art-img {
    right: 2px;
    top: 12px;
    width: 86px;
    height: 86px;
  }

  .city-field select {
    font-size: 17px;
  }

  .control-dock {
    grid-template-columns: 1fr;
  }

  .control-button {
    min-height: 84px;
  }

  .modal-card {
    padding: 22px;
  }
}

/* Mobile app layout */
.mobile-actions {
  display: none;
}

@media (max-width: 1180px) {
  body {
    background:
      radial-gradient(circle at 50% 8%, rgba(138, 70, 255, 0.22), transparent 14rem),
      radial-gradient(circle at 80% 42%, rgba(239, 87, 216, 0.12), transparent 16rem),
      linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  }

  .mobile-brand {
    min-height: 210px;
    padding: 22px 18px 18px;
  }

  .mobile-actions {
    width: min(100%, 520px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .mobile-actions button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.045);
  }

  .mobile-actions svg {
    width: 20px;
    height: 20px;
    color: #b065ff;
  }

  .screen-filter,
  .screen-chat.is-active {
    width: 100%;
    padding: 0 16px 28px;
  }

  .filter-card,
  .conversation-card {
    max-width: 720px;
    margin: 0 auto;
  }

  .filter-layout {
    gap: 16px;
  }

  .filter-stack {
    gap: 14px;
  }

  .gender-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gender-option {
    min-width: 0;
    white-space: nowrap;
  }

  .voice-grid {
    grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
    gap: 14px;
  }

  .speaker-card {
    min-width: 0;
    min-height: 360px;
  }

  .speaker-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .call-bridge {
    align-self: center;
  }
}

@media (max-width: 640px) {
  .app-shell {
    width: 100%;
  }

  .mobile-brand {
    min-height: 182px;
    padding-top: 16px;
  }

  .mobile-logo .brand-waves {
    width: 232px;
    top: 48px;
  }

  .mobile-logo .brand-orb {
    width: 78px;
    height: 78px;
    box-shadow:
      inset 0 0 0 9px rgba(12, 10, 48, 0.72),
      0 0 28px rgba(143, 66, 255, 0.42);
  }

  .mobile-logo .brand-copy strong {
    font-size: 22px;
    letter-spacing: 3px;
  }

  .mobile-logo .brand-copy small {
    font-size: 14px;
  }

  .close-button {
    width: 46px;
    height: 46px;
    right: 14px;
    top: 16px;
  }

  .mobile-actions {
    width: 100%;
    max-width: 360px;
    gap: 8px;
    margin-top: 12px;
  }

  .mobile-actions button {
    min-height: 40px;
    border-radius: 12px;
    font-size: 14px;
  }

  .screen-filter,
  .screen-chat.is-active {
    padding: 0 10px 24px;
  }

  .filter-card,
  .conversation-card {
    border-radius: 24px;
    padding: 18px 12px;
  }

  .section-heading {
    min-height: 104px;
    gap: 12px;
  }

  .heading-icon {
    width: 52px;
    height: 52px;
  }

  .heading-icon svg {
    width: 27px;
    height: 27px;
  }

  h1 {
    font-size: 28px;
  }

  .section-heading p {
    max-width: 190px;
    font-size: 15px;
    line-height: 1.35;
  }

  .headset-art-img {
    width: 68px;
    height: 68px;
    top: 16px;
  }

  .glass-panel {
    border-radius: 18px;
  }

  .age-panel,
  .city-panel,
  .gender-panel {
    padding: 16px 14px;
  }

  .panel-title {
    gap: 10px;
  }

  .panel-title strong {
    font-size: 18px;
  }

  .panel-icon {
    width: 40px;
    height: 40px;
  }

  .age-badge {
    min-width: 112px;
    min-height: 42px;
    padding: 0 10px;
    font-size: 15px;
  }

  .range-control {
    margin-top: 40px;
    padding-bottom: 48px;
  }

  .range-track {
    height: 8px;
  }

  .range-control input[type="range"]::-webkit-slider-thumb {
    width: 28px;
    height: 28px;
    border-width: 4px;
  }

  .range-control input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-width: 4px;
  }

  .range-labels {
    top: 50px;
    font-size: 13px;
  }

  .range-summary {
    margin-top: 12px;
    font-size: 17px;
  }

  .city-field {
    min-height: 50px;
    padding-left: 14px;
  }

  .city-field select {
    font-size: 16px;
  }

  .city-panel small {
    margin-left: 0;
    font-size: 13px;
    line-height: 1.35;
  }

  .gender-options {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .gender-option {
    min-height: 48px;
    font-size: 16px;
  }

  .gender-option span {
    font-size: 24px;
  }

  .filter-actions {
    gap: 10px;
    margin-top: 16px;
  }

  .primary-action,
  .secondary-action {
    min-height: 60px;
    border-radius: 15px;
    font-size: 20px;
  }

  .privacy-note {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.35;
  }

  .conversation-header {
    grid-template-columns: 42px 1fr auto;
    gap: 8px;
    padding-bottom: 16px;
  }

  .conversation-header .round-nav {
    width: 40px;
    height: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .conversation-header p {
    gap: 7px;
    font-size: 13px;
  }

  .conversation-header p svg {
    width: 18px;
    height: 18px;
  }

  .call-time {
    gap: 8px;
  }

  .call-time span {
    width: 10px;
    height: 10px;
  }

  .call-time strong {
    min-width: 48px;
    font-size: 18px;
  }

  .voice-grid {
    grid-template-columns: 1fr 28px 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .speaker-card {
    min-height: 260px;
    padding: 14px 8px;
    border-radius: 18px;
  }

  .speaker-badge {
    left: 10px;
    top: 10px;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
  }

  .avatar-ring {
    width: 104px;
    height: 104px;
    border-width: 3px;
  }

  .avatar-shape {
    transform: scale(0.5);
  }

  .speaker-card strong {
    margin-top: 14px;
    font-size: 20px;
  }

  .speaker-card p,
  .speaker-card small {
    font-size: 13px;
  }

  .voice-wave {
    height: 32px;
    gap: 4px;
    margin-top: 12px;
  }

  .voice-wave i {
    width: 4px;
  }

  .call-bridge {
    gap: 5px;
  }

  .call-bridge span {
    width: 8px;
    height: 8px;
    border-radius: 3px;
  }

  .privacy-strip {
    min-height: 48px;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.35;
  }

  .text-chat-panel {
    padding: 10px;
  }

  .chat-panel-head strong {
    font-size: 17px;
  }

  .chat-panel-head span {
    font-size: 12px;
  }

  .message-list {
    max-height: 110px;
  }

  .text-chat {
    grid-template-columns: 1fr 46px;
    gap: 8px;
  }

  .text-chat input,
  .text-chat button {
    min-height: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .control-dock {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
  }

  .control-button {
    min-height: 74px;
    border-radius: 15px;
    gap: 2px;
  }

  .control-button svg {
    width: 26px;
    height: 26px;
  }

  .control-button span {
    font-size: 15px;
  }

  .control-button small {
    font-size: 12px;
  }

  .hang-action {
    grid-column: 1 / -1;
    min-height: 62px;
    font-size: 19px;
  }

  .hang-action svg {
    width: 26px;
    height: 26px;
  }

  .modal-layer {
    padding: 12px;
    align-items: end;
  }

  .modal-card {
    width: 100%;
    max-height: calc(100vh - 24px);
    overflow: auto;
    border-radius: 22px;
    padding: 20px 16px;
  }

  .modal-card h3 {
    font-size: 22px;
  }

  .rule-list,
  .help-grid p,
  .report-form {
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .call-bridge {
    min-height: 28px;
  }

  .speaker-partner {
    order: 3;
  }

  .speaker-card {
    min-height: 240px;
  }
}

/* Final responsive override: keep this block at the end of the file. */
@media (max-width: 1180px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  body {
    min-width: 0;
  }

  .app-shell {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 0 28px !important;
  }

  .top-nav {
    display: none !important;
  }

  .mobile-brand {
    display: grid !important;
  }

  .screen-filter,
  .screen-chat.is-active {
    width: 100% !important;
    min-height: auto !important;
    padding: 0 clamp(10px, 3.8vw, 28px) 28px !important;
  }

  .filter-card,
  .conversation-card {
    width: 100% !important;
    max-width: 760px !important;
    min-height: 0 !important;
    margin: 0 auto !important;
  }

  .hero-visual {
    display: none !important;
  }

  .filter-layout {
    grid-template-columns: 1fr !important;
  }

  .filter-stack,
  .filter-layout,
  .filter-actions {
    width: 100%;
  }
}

@media (min-width: 641px) and (max-width: 1180px) {
  .mobile-brand {
    min-height: 210px;
  }

  .filter-card,
  .conversation-card {
    padding: 30px !important;
    border-radius: 34px !important;
  }

  .gender-options {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .voice-grid {
    grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr) !important;
    gap: 18px !important;
  }

  .speaker-card {
    min-height: 390px !important;
  }

  .control-dock {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .hang-action {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 640px) {
  .mobile-brand {
    min-height: 176px !important;
    padding: 14px 12px 12px !important;
  }

  .mobile-logo .brand-waves {
    width: min(230px, 70vw) !important;
    top: 46px !important;
  }

  .mobile-logo .brand-orb {
    width: clamp(70px, 20vw, 84px) !important;
    height: clamp(70px, 20vw, 84px) !important;
  }

  .brand-copy strong {
    font-size: clamp(20px, 6vw, 25px) !important;
    letter-spacing: 3px !important;
  }

  .brand-copy small {
    font-size: clamp(13px, 3.8vw, 16px) !important;
  }

  .close-button {
    width: 44px !important;
    height: 44px !important;
    right: 12px !important;
    top: 14px !important;
  }

  .mobile-actions {
    max-width: 360px !important;
    gap: 8px !important;
    margin-top: 10px !important;
  }

  .mobile-actions button {
    min-height: 38px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
  }

  .filter-card,
  .conversation-card {
    padding: clamp(14px, 4vw, 18px) clamp(10px, 3.5vw, 14px) !important;
    border-radius: 24px !important;
  }

  .section-heading {
    min-height: 100px !important;
    gap: 10px !important;
  }

  .heading-icon {
    width: 50px !important;
    height: 50px !important;
  }

  h1 {
    font-size: clamp(26px, 8vw, 32px) !important;
  }

  .section-heading p {
    max-width: min(210px, 58vw) !important;
    font-size: clamp(14px, 4vw, 17px) !important;
  }

  .headset-art-img {
    width: clamp(58px, 18vw, 78px) !important;
    height: clamp(58px, 18vw, 78px) !important;
    right: 0 !important;
    top: 12px !important;
  }

  .age-panel,
  .city-panel,
  .gender-panel {
    padding: clamp(14px, 4vw, 18px) !important;
  }

  .panel-title strong {
    font-size: clamp(17px, 5vw, 20px) !important;
  }

  .panel-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .age-badge {
    min-width: 106px !important;
    min-height: 40px !important;
    font-size: 14px !important;
  }

  .gender-options {
    grid-template-columns: 1fr !important;
  }

  .gender-option {
    min-height: 48px !important;
  }

  .primary-action,
  .secondary-action {
    min-height: 58px !important;
    font-size: clamp(18px, 5.6vw, 22px) !important;
  }

  .conversation-header {
    grid-template-columns: 40px minmax(0, 1fr) auto !important;
  }

  h2 {
    font-size: clamp(27px, 8vw, 34px) !important;
  }

  .connectionState,
  .conversation-header p {
    font-size: 13px !important;
  }

  .voice-grid {
    grid-template-columns: minmax(0, 1fr) 26px minmax(0, 1fr) !important;
    gap: 7px !important;
  }

  .speaker-card {
    min-height: clamp(238px, 70vw, 300px) !important;
    padding: 12px 7px !important;
    border-radius: 17px !important;
  }

  .avatar-ring {
    width: clamp(94px, 28vw, 116px) !important;
    height: clamp(94px, 28vw, 116px) !important;
  }

  .speaker-card strong {
    font-size: clamp(18px, 5.5vw, 22px) !important;
  }

  .speaker-card p,
  .speaker-card small {
    font-size: 12px !important;
  }

  .text-chat {
    grid-template-columns: minmax(0, 1fr) 44px !important;
  }

  .control-dock {
    grid-template-columns: 1fr 1fr !important;
  }

  .hang-action {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 390px) {
  .screen-filter,
  .screen-chat.is-active {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .voice-grid {
    grid-template-columns: 1fr !important;
  }

  .call-bridge {
    min-height: 24px !important;
    order: 2;
  }

  .speaker-partner {
    order: 3;
  }

  .speaker-card {
    min-height: 230px !important;
  }

  .control-dock {
    grid-template-columns: 1fr !important;
  }
}

/* Realtime header, support and call audio controls */
.top-nav {
  grid-template-columns: minmax(300px, 1fr) auto auto !important;
}

.nav-live,
.mobile-online {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid rgba(98, 240, 162, 0.24);
  border-radius: 999px;
  color: #dfffee;
  background:
    radial-gradient(circle at 20% 0%, rgba(98, 240, 162, 0.18), transparent 70%),
    rgba(10, 38, 36, 0.44);
  box-shadow: 0 0 24px rgba(98, 240, 162, 0.08);
  white-space: nowrap;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(98, 240, 162, 0.85);
}

.support-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(239, 87, 216, 0.38);
  border-radius: 14px;
  color: #ffd8f8;
  background:
    radial-gradient(circle at 50% 0%, rgba(239, 87, 216, 0.18), transparent 75%),
    rgba(62, 20, 72, 0.46);
  cursor: pointer;
  white-space: nowrap;
}

.support-link svg {
  width: 21px;
  height: 21px;
  color: #ff72df;
  fill: rgba(255, 114, 223, 0.2);
}

.partner-volume {
  width: min(100%, 310px);
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.partner-volume input {
  grid-column: 1 / -1;
  width: 100%;
  accent-color: var(--pink);
}

.partner-volume strong {
  color: #ff8be2;
  font-size: 14px;
}

.support-box {
  display: grid;
  gap: 18px;
}

.support-box p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .mobile-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .mobile-online {
    width: min(100%, 360px);
    margin-top: 10px;
  }
}

@media (max-width: 640px) {
  .mobile-actions {
    grid-template-columns: 1fr !important;
    max-width: 280px !important;
  }

  .mobile-online {
    min-height: 38px;
    font-size: 14px;
  }

  .partner-volume {
    max-width: 190px;
    margin-top: 10px;
    font-size: 12px;
  }
}
