:root{
  --bg: #0b1020;
  --bg-soft: #10172d;
  --panel: rgba(255,255,255,0.08);
  --panel-strong: rgba(255,255,255,0.12);
  --white: #ffffff;
  --text: #d7deee;
  --muted: #97a3bf;
  --line: rgba(255,255,255,0.12);
  --primary: #6c63ff;
  --primary-2: #8b7cff;
  --accent: #ff4fa0;
  --accent-2: #ff7ab8;
  --success: #22c55e;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1200px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(108,99,255,0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255,79,160,0.06), transparent 25%),
    #07101d;
  color:var(--white);
  overflow-x:hidden;
}

a{
  text-decoration:none;
}

button,
input,
select{
  font:inherit;
}

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

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(8,13,25,0.72);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,0.06);
}

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

.logo{
  color:var(--white);
  font-size:24px;
  font-weight:800;
  letter-spacing:0.2px;
  flex-shrink:0;
}

.logo span{
  color:#8d84ff;
}

.nav{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav a{
  color:#dbe3f7;
  font-size:15px;
  font-weight:600;
  transition:0.25s ease;
}

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

.header-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.header-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 20px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--primary), var(--accent));
  color:var(--white);
  font-weight:700;
  box-shadow:0 14px 35px rgba(108,99,255,0.32);
  transition:transform .25s ease, box-shadow .25s ease;
}

.header-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 38px rgba(108,99,255,0.4);
}

.mobile-start-link{
  display:none;
}

.hamburger{
  width:50px;
  height:50px;
  border:none;
  border-radius:14px;
  background:rgba(255,255,255,0.08);
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  transition:0.25s ease;
}

.hamburger span{
  width:22px;
  height:2px;
  background:#fff;
  border-radius:10px;
  transition:0.25s ease;
}

.hamburger.active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2){
  opacity:0;
}
.hamburger.active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  padding:88px 0 56px;
}

.hero-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
}

.orb{
  position:absolute;
  border-radius:50%;
  filter:blur(80px);
  opacity:0.8;
}

.orb-1{
  width:320px;
  height:320px;
  top:40px;
  left:-60px;
  background:rgba(108,99,255,0.25);
  animation:floatOrbOne 11s ease-in-out infinite alternate;
}

.orb-2{
  width:380px;
  height:380px;
  right:-80px;
  top:80px;
  background:rgba(255,79,160,0.18);
  animation:floatOrbTwo 13s ease-in-out infinite alternate;
}

.orb-3{
  width:260px;
  height:260px;
  left:40%;
  bottom:-60px;
  background:rgba(106,210,255,0.12);
  animation:floatOrbThree 12s ease-in-out infinite alternate;
}

.grid-lines{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size:56px 56px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 85%);
}

@keyframes floatOrbOne{
  from{ transform:translate3d(0,0,0); }
  to{ transform:translate3d(60px,-30px,0); }
}
@keyframes floatOrbTwo{
  from{ transform:translate3d(0,0,0); }
  to{ transform:translate3d(-40px,35px,0); }
}
@keyframes floatOrbThree{
  from{ transform:translate3d(0,0,0); }
  to{ transform:translate3d(20px,-35px,0); }
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(340px, 430px);
  gap:42px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  color:#f2f5ff;
  font-size:14px;
  font-weight:700;
  margin-bottom:22px;
  box-shadow:0 12px 30px rgba(0,0,0,0.18);
}

.live-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--success);
  box-shadow:0 0 0 0 rgba(34,197,94,0.6);
  animation:pulseLive 1.8s infinite;
}

@keyframes pulseLive{
  0%{ box-shadow:0 0 0 0 rgba(34,197,94,0.6); }
  70%{ box-shadow:0 0 0 12px rgba(34,197,94,0); }
  100%{ box-shadow:0 0 0 0 rgba(34,197,94,0); }
}

.hero-content h1{
  max-width:680px;
  font-size:clamp(42px, 6vw, 72px);
  line-height:1.02;
  letter-spacing:-1.6px;
  margin-bottom:20px;
}

.hero-content h1 span{
  display:block;
  background:linear-gradient(135deg, #ffffff 0%, #9b8cff 35%, #ff76bb 75%, #ffffff 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.hero-description{
  max-width:640px;
  color:var(--text);
  font-size:18px;
  line-height:1.75;
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:32px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:60px;
  padding:0 28px;
  border-radius:16px;
  font-weight:800;
  font-size:17px;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow:0 18px 42px rgba(108,99,255,0.34);
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 46px rgba(108,99,255,0.42);
}

.btn-secondary{
  color:#fff;
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(255,255,255,0.06);
}

.btn-secondary:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,0.1);
}

.hero-stats{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:34px;
}

.stat-card{
  min-width:140px;
  padding:18px 20px;
  border-radius:18px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 18px 42px rgba(0,0,0,0.18);
}

.stat-card strong{
  display:block;
  font-size:28px;
  font-weight:800;
  color:#fff;
  margin-bottom:4px;
}

.stat-card span{
  color:var(--muted);
  font-size:14px;
  font-weight:600;
}

/* CHAT PANEL */
.chat-panel{
  position:relative;
  padding:28px;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.07));
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
}

.chat-panel::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:28px;
  padding:1px;
  background:linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.03));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}

.panel-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  color:#eef2ff;
  font-size:13px;
  font-weight:700;
  margin-bottom:16px;
}

.panel-badge-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--success);
}

.chat-panel h2{
  font-size:34px;
  line-height:1.1;
  margin-bottom:8px;
}

.panel-text{
  color:var(--text);
  line-height:1.65;
  margin-bottom:24px;
}

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

.form-group label{
  display:block;
  color:#f4f6fd;
  font-size:14px;
  font-weight:700;
  margin-bottom:12px;
}

.gender-switch{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}

.gender-btn{
  min-height:58px;
  border:none;
  border-radius:16px;
  background:rgba(255,255,255,0.07);
  color:#eef2ff;
  font-size:16px;
  font-weight:800;
  letter-spacing:0.1px;
  cursor:pointer;
  transition:transform .2s ease, background .2s ease, box-shadow .2s ease;
  border:1px solid rgba(255,255,255,0.08);
}

.gender-btn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,0.12);
}

.gender-btn.active{
  background:linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow:0 14px 28px rgba(108,99,255,0.28);
  color:#fff;
}

.input-wrap{
  position:relative;
}

.input-wrap select,
.input-wrap input{
  width:100%;
  min-height:58px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.1);
  background:rgba(255,255,255,0.07);
  padding:0 18px;
  color:#fff;
  outline:none;
  transition:border-color .2s ease, background .2s ease, box-shadow .2s ease;
  appearance:none;
}

.input-wrap select{
  cursor:pointer;
}

.input-wrap select:focus,
.input-wrap input:focus{
  border-color:rgba(140,128,255,0.85);
  background:rgba(255,255,255,0.09);
  box-shadow:0 0 0 4px rgba(108,99,255,0.14);
}

.input-wrap input::placeholder{
  color:#a7b3cf;
}

.chat-start-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:64px;
  margin-top:10px;
  border-radius:18px;
  background:linear-gradient(135deg, #ff4fa0, #ff8ac4);
  color:#fff;
  font-size:18px;
  font-weight:800;
  letter-spacing:0.1px;
  box-shadow:0 18px 36px rgba(255,79,160,0.28);
  transition:transform .25s ease, box-shadow .25s ease;
}

.chat-start-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 40px rgba(255,79,160,0.36);
}

.panel-footer{
  display:flex;
  align-items:center;
  gap:8px;
  color:#d9e1f4;
  font-size:14px;
  font-weight:600;
  margin-top:16px;
}

.mini-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--success);
}

/* SECTION HEADING */
.section-heading{
  text-align:center;
  max-width:760px;
  margin:0 auto 38px;
}

.section-heading.left{
  text-align:left;
  max-width:none;
  margin:0 0 28px;
}

.section-kicker{
  display:inline-block;
  color:#a892ff;
  font-size:13px;
  font-weight:800;
  letter-spacing:1.4px;
  text-transform:uppercase;
  margin-bottom:12px;
}

.section-heading h2{
  font-size:clamp(30px, 4vw, 46px);
  line-height:1.12;
  letter-spacing:-0.8px;
  margin-bottom:14px;
}

.section-heading p{
  color:var(--text);
  line-height:1.75;
  font-size:17px;
}

/* FEATURES */
.features{
  padding:72px 0;
}

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

.feature-card{
  padding:28px;
  border-radius:24px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 20px 40px rgba(0,0,0,0.16);
  transition:transform .25s ease, background .25s ease;
}

.feature-card:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,0.08);
}

.feature-icon{
  width:62px;
  height:62px;
  border-radius:18px;
  display:grid;
  place-items:center;
  font-size:28px;
  background:linear-gradient(135deg, rgba(108,99,255,0.18), rgba(255,79,160,0.12));
  border:1px solid rgba(255,255,255,0.08);
  margin-bottom:18px;
}

.feature-card h3{
  font-size:24px;
  margin-bottom:10px;
}

.feature-card p{
  color:var(--text);
  line-height:1.75;
}

/* CONTENT */
.content-section{
  padding:18px 0 72px;
}

.content-card{
  padding:34px;
  border-radius:28px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 20px 40px rgba(0,0,0,0.16);
}

.content-columns{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}

.content-columns p{
  color:var(--text);
  line-height:1.9;
  font-size:16px;
  margin-bottom:16px;
}

/* FAQ */
.faq-section{
  padding:0 0 78px;
}

.faq-list{
  max-width:920px;
  margin:0 auto;
  display:grid;
  gap:14px;
}

.faq-item{
  border-radius:22px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  overflow:hidden;
  transition:background .25s ease;
}

.faq-item.active{
  background:rgba(255,255,255,0.08);
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 24px;
  cursor:pointer;
  text-align:left;
}

.faq-title-wrap{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:17px;
  font-weight:800;
  line-height:1.5;
}

.faq-icon-symbol{
  width:42px;
  height:42px;
  flex-shrink:0;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:rgba(255,255,255,0.08);
}

.faq-toggle{
  font-size:28px;
  line-height:1;
  color:#cdd6f2;
  transition:transform .25s ease;
}

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

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}

.faq-item.active .faq-answer{
  max-height:220px;
}

.faq-answer p{
  padding:0 24px 22px 24px;
  color:var(--text);
  line-height:1.8;
}

/* FOOTER */
.site-footer{
  border-top:1px solid rgba(255,255,255,0.06);
  padding:28px 0 40px;
  background:rgba(255,255,255,0.02);
}

.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:28px;
}

.footer-brand{
  max-width:560px;
}

.footer-logo{
  display:inline-block;
  margin-bottom:14px;
}

.footer-brand p{
  color:var(--text);
  line-height:1.8;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-links a{
  color:#dbe3f7;
  font-weight:600;
}

.footer-links a:hover{
  color:#fff;
}

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

  .chat-panel{
    max-width:520px;
  }

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

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

@media (max-width: 860px){
  .nav{
    position:absolute;
    top:79px;
    left:16px;
    right:16px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    padding:18px;
    border-radius:20px;
    background:rgba(10,15,28,0.96);
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 18px 40px rgba(0,0,0,0.34);
  }

  .nav.active{
    display:flex;
  }

  .nav a{
    width:100%;
    padding:12px 10px;
    border-radius:12px;
  }

  .nav a:hover{
    background:rgba(255,255,255,0.06);
  }

  .mobile-start-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:0 18px;
    background:linear-gradient(135deg, var(--primary), var(--accent));
    border-radius:999px;
    color:#fff !important;
    margin-top:8px;
  }

  .header-cta{
    display:none;
  }

  .hamburger{
    display:flex;
  }

  .hero{
    padding-top:64px;
  }

  .hero-description{
    font-size:17px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:stretch;
  }

  .btn{
    width:100%;
  }

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

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

  .chat-panel{
    padding:22px;
  }

  .chat-panel h2{
    font-size:30px;
  }

  .section-heading h2{
    font-size:32px;
  }

  .faq-question{
    padding:18px;
  }

  .faq-answer p{
    padding:0 18px 18px;
  }

  .footer-inner{
    flex-direction:column;
  }
}

@media (max-width: 560px){
  .container{
    width:min(var(--container), calc(100% - 20px));
  }

  .header-inner{
    min-height:72px;
  }

  .logo{
    font-size:20px;
  }

  .hero-content h1{
    letter-spacing:-1.2px;
  }

  .eyebrow{
    font-size:13px;
    padding:9px 14px;
  }

  .btn{
    min-height:56px;
    font-size:16px;
    padding:0 20px;
  }

  .stat-card strong{
    font-size:24px;
  }

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

  .feature-card,
  .content-card{
    padding:22px;
  }

  .faq-title-wrap{
    font-size:15px;
    gap:10px;
  }

  .faq-icon-symbol{
    width:36px;
    height:36px;
    border-radius:12px;
  }
}
.content-section{
  padding:100px 0;
}

.content-header{
  text-align:center;
  max-width:900px;
  margin:auto;
}

.content-header h2{
  font-size:42px;
  margin:15px 0 15px;
}

.content-intro{
  color:#9aa3c0;
  font-size:18px;
  line-height:1.6;
}

.content-body{
  max-width:900px;
  margin:50px auto 0;
}

.content-body p{
  line-height:1.8;
  color:#b6bfdc;
  margin-bottom:18px;
}

.content-body h3{
  margin-top:35px;
  margin-bottom:10px;
  font-size:24px;
}
.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;
  }
}