:root {
  --bg: #f5f7ff;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #10131f;
  --muted: #5d6475;
  --border: rgba(255, 255, 255, 0.45);
  --shadow: 0 20px 60px rgba(22, 31, 72, 0.14);
  --shadow-soft: 0 12px 35px rgba(24, 31, 77, 0.08);

  --primary: #6f5cff;
  --primary-2: #8f7cff;
  --accent: #ff7b72;
  --accent-2: #ffb36b;
  --success: #19c37d;
  --dark: #0e1220;
  --white: #ffffff;

  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(111, 92, 255, 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 123, 114, 0.12), transparent 24%),
    linear-gradient(180deg, #f7f8ff 0%, #eef2ff 100%);
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

button,
input,
select {
  font-family: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(900px, calc(100% - 32px));
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}

.orb-1 {
  width: 280px;
  height: 280px;
  background: rgba(111, 92, 255, 0.22);
  top: 80px;
  left: -70px;
  animation: floatOrb 12s ease-in-out infinite;
}

.orb-2 {
  width: 340px;
  height: 340px;
  background: rgba(255, 123, 114, 0.18);
  right: -90px;
  top: 150px;
  animation: floatOrb 14s ease-in-out infinite reverse;
}

.orb-3 {
  width: 240px;
  height: 240px;
  background: rgba(255, 179, 107, 0.15);
  bottom: 140px;
  left: 20%;
  animation: floatOrb 10s ease-in-out infinite;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-20px) translateX(16px); }
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.logo span {
  color: var(--primary);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 26px;
}

.nav-menu a {
  color: #3a4050;
  font-weight: 600;
  font-size: 0.96rem;
}

.nav-btn {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(111, 92, 255, 0.22);
}

.hero {
  position: relative;
  z-index: 1;
  padding: 58px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 34px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  color: #2a3145;
  font-weight: 600;
  margin-bottom: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(25, 195, 125, 0.12);
}

.hero-left h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  font-weight: 800;
  max-width: 650px;
}

.hero-left h1 span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  margin-top: 18px;
  max-width: 620px;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--muted);
}

.live-counter-box {
  margin-top: 28px;
  display: inline-block;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.counter-label {
  color: #5c6374;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.counter-number {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.counter-meta {
  margin-top: 8px;
  color: #70778a;
  font-size: 0.88rem;
}

.hero-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-mini-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #3b4255;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.hero-right {
  position: relative;
}

.video-stage {
  position: relative;
  min-height: 580px;
}

.video-card {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.main-video-card {
  position: absolute;
  inset: 20px 40px 70px 20px;
  border-radius: 34px;
  padding: 18px;
  overflow: hidden;
}

.video-card-top,
.video-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cam-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #293146;
  font-size: 0.92rem;
  font-weight: 700;
}

.cam-status i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
}

.video-tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14, 18, 32, 0.86);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
}

.video-preview {
  position: relative;
  margin: 18px 0;
  height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 24%),
    linear-gradient(135deg, #5e4fff 0%, #7f74ff 30%, #ff8f7a 100%);
}

.preview-glow {
  position: absolute;
  inset: auto auto 30px 50%;
  width: 260px;
  height: 260px;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  filter: blur(36px);
}

.preview-person {
  position: absolute;
  bottom: 0;
  width: 42%;
  height: 78%;
  border-radius: 160px 160px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(13,19,40,0.25));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

.person-left {
  left: 7%;
}

.person-right {
  right: 7%;
  height: 72%;
}

.preview-person::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}

.preview-ui {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ui-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.fake-controls {
  display: flex;
  gap: 8px;
}

.fake-controls span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(14, 18, 32, 0.22);
}

.preview-text {
  color: #52596c;
  font-size: 0.92rem;
  font-weight: 600;
}

.mini-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  min-width: 190px;
}

.mini-card strong {
  display: block;
  font-size: 0.95rem;
  color: #1a2031;
}

.mini-card small {
  color: #6d7386;
}

.mini-left {
  left: 0;
  bottom: 28px;
}

.mini-right {
  right: 0;
  top: 56px;
}

.mini-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9a8b, #ff6b6b);
}

.mini-avatar.alt {
  background: linear-gradient(135deg, #6f5cff, #42c5ff);
}

.floating-bubble {
  position: absolute;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  color: #2b3144;
  font-weight: 700;
  font-size: 0.9rem;
}

.bubble-1 {
  top: 28px;
  left: 34px;
  animation: floatBubble 5s ease-in-out infinite;
}

.bubble-2 {
  top: 210px;
  right: 8px;
  animation: floatBubble 6s ease-in-out infinite 0.4s;
}

.bubble-3 {
  bottom: 120px;
  right: 40px;
  animation: floatBubble 5.5s ease-in-out infinite 0.8s;
}

@keyframes floatBubble {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.hero-form-wrap {
  margin-top: 20px;
}

.chat-panel {
  border-radius: 30px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.panel-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

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

.chat-form {
  margin-top: 22px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2b3144;
}

.gender-group {
  margin-bottom: 18px;
}

.gender-select {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gender-btn {
  border: none;
  outline: none;
  cursor: pointer;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  color: #2e3548;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.25s ease;
}

.gender-btn span {
  font-size: 0.92rem;
}

.gender-btn:hover,
.gender-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  transform: translateY(-2px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 16px;
}

.select-wrap {
  position: relative;
}

select,
input {
  width: 100%;
  height: 58px;
  border: none;
  outline: none;
  border-radius: 16px;
  padding: 0 18px;
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow-soft);
  color: #22293a;
  font-size: 0.98rem;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
}

.select-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #656d80;
  pointer-events: none;
  font-size: 1.1rem;
}

input::placeholder {
  color: #8a90a1;
}

.panel-actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.start-btn {
  border: none;
  cursor: pointer;
  padding: 16px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--dark), #252c42);
  color: white;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(16, 19, 31, 0.18);
}

.panel-note {
  color: #6d7385;
  font-weight: 600;
}

.features,
.content-section,
.faq-section {
  position: relative;
  z-index: 1;
  padding: 88px 0;
}

.section-title {
  margin-bottom: 28px;
}

.section-title.center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-box {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.56);
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(111, 92, 255, 0.14), rgba(255, 123, 114, 0.12));
  margin-bottom: 16px;
}

.feature-box h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.feature-box p,
.content-section p,
.footer-text,
.faq-answer p {
  color: var(--muted);
  line-height: 1.8;
}

.content-section p + p {
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.56);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: #1d2436;
}

.faq-plus {
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  max-height: 180px;
  padding: 0 22px 22px;
}

.faq-item.active .faq-plus {
  transform: rotate(45deg);
}

.footer {
  position: relative;
  z-index: 1;
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.48);
  backdrop-filter: blur(14px);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #32394b;
  font-weight: 700;
}

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

  .hero-right {
    order: -1;
  }

  .video-stage {
    min-height: 520px;
  }

  .main-video-card {
    inset: 20px 20px 70px 20px;
  }

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

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

  .hero {
    padding-top: 30px;
  }

  .video-stage {
    min-height: 420px;
  }

  .main-video-card {
    inset: 12px 10px 55px 10px;
    border-radius: 24px;
  }

  .video-preview {
    height: 250px;
    border-radius: 20px;
  }

  .mini-card,
  .floating-bubble {
    transform: scale(0.9);
  }

  .mini-right {
    right: -4px;
    top: 34px;
  }

  .mini-left {
    left: -2px;
    bottom: 10px;
  }

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

  .chat-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .panel-actions {
    align-items: stretch;
  }

  .start-btn {
    width: 100%;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .container,
  .narrow {
    width: min(100% - 20px, 100%);
  }

  .nav-wrap {
    min-height: 70px;
  }

  .nav-btn {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .hero-left h1 {
    font-size: 2.2rem;
  }

  .status-badge,
  .hero-mini-points span {
    font-size: 0.82rem;
  }

  .counter-number {
    font-size: 2.1rem;
  }

  .video-stage {
    min-height: 360px;
  }

  .preview-text {
    font-size: 0.84rem;
  }

  .mini-card {
    min-width: 155px;
    padding: 12px;
  }

  .mini-card strong {
    font-size: 0.88rem;
  }

  .mini-card small {
    font-size: 0.76rem;
  }

  .floating-bubble {
    font-size: 0.78rem;
    padding: 10px 12px;
  }

  .gender-btn {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }
}
@media (max-width: 1080px){

.hero{
display:flex;
flex-direction:column;
}

.hero-grid{
order:1;
}

.hero-form-wrap{
order:0;
margin-bottom:30px;
}

}
.hero{
padding:40px 0 10px;
}
.chat-panel{
max-width:900px;
margin:auto;
}
.hero-chat{

padding:30px;

border-radius:28px;

background:rgba(255,255,255,0.75);

backdrop-filter:blur(18px);

box-shadow:0 30px 70px rgba(0,0,0,0.15);

max-width:420px;

margin-left:auto;

}

.hero-chat .panel-head h2{

font-size:26px;

margin-bottom:5px;

}

.hero-chat .panel-head p{

color:#666;

margin-bottom:20px;

}

.big-start{

width:100%;

padding:18px;

font-size:18px;

margin-top:10px;

border-radius:14px;

background:linear-gradient(135deg,#111,#333);

}

.live-users{

margin-top:15px;

font-size:14px;

color:#555;

text-align:center;

}

.responsive-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 20px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
  object-fit: cover;
}

@media (max-width: 600px) {
  .responsive-image {
    max-width: 100%;
    border-radius: 8px;
    margin: 15px 0;
  }
}