/* ============================================================
   Base reset + shared layout (header / footer)
   ============================================================ */

* {
  margin: 0;
  padding: 0;
  list-style: none;
}

#home-landpage {
  font-size: 14px;
  font-family: Helvetica, Arial, sans-serif;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 200;
  background: #1a0a2e;
  color: #fff;
}
#home-landpage * {
  box-sizing: border-box;
}

/* Header */
.hp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 110;
  padding: 20px 0;
  backdrop-filter: blur(10px);
}
.hp-header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
}
.hp-logo {
  height: 48px;
}
.hp-nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 30px;
}
.hp-nav a {
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  color: inherit;
  opacity: .6;
  display: block;
  padding: 10px 0;
  position: relative;
}
.hp-nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 32px;
  margin-left: -20px;
  bottom: 0;
  height: 4px;
  border-radius: 20px;
  background: #fff;
  display: none;
}
.hp-nav a:hover {
  opacity: 1;
}
.hp-nav a.cur {
  font-weight: 600;
  font-size: 16px;
  opacity: 1;
}
.hp-nav a.cur::after {
  display: block;
}

.hp-btn-signin {
  background: #fff;
  padding: 12px 20px;
  border-radius: 20px;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* Primary Button */
.hp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  padding: 0 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hp-btn-primary .txt {
  flex: 1;
  padding: 0 40px;
}
.hp-btn-primary .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #933CFB;
  border-radius: 100px;
}
.hp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}

/* Footer */
.hp-footer {
  padding: 40px 0;
}
.hp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hp-footer-logo {
  height: 58px;
  margin-bottom: 30px;
}
.hp-footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.hp-footer-nav a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.hp-footer-nav a:hover {
  color: #fff;
}
.hp-footer .copy {
  font-size: 12px;
  opacity: .4;
  margin-top: 20px;
}

/* ============================================================
   Anonymous Video Chat — Hero
   ============================================================ */

.avc-hero {
  position: relative;
  padding: 140px 0 0;
  text-align: center;
  background: url(/images/about/box-bg.png) center no-repeat;
  background-size: cover;
  z-index:10;
}
.avc-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 40px;
  overflow-x: hidden;

}
.avc-hero-inner h1 {
  font-size: 52px;
  font-weight: 200;
  line-height: 1.2;
  margin-bottom: 24px;

}
.avc-hero-inner h1 strong {
  font-size: 74px;
  font-weight: 700;
}
.avc-hero-inner p {
  font-size: 14px;
  line-height: 1.8;
  opacity: .85;
  max-width: 600px;
  margin: 0 auto;
}
.avc-hero-banner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  width:100%;
  aspect-ratio: 10/2;

}
.avc-hero-banner img {
  position: absolute;
  left: -5%;
  width: 110%;
  display: block;
}
.box-one{
  overflow: hidden;
}

/* ============================================================
   Content Sections
   ============================================================ */

.avc-section {
  padding: 20px 0;
}

.avc-section.avc-section-conversations{
  padding-top: 200px;
}

.avc-section.avc-section-next {
  padding-bottom: 50px;
}

.avc-content-block {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.avc-content-reverse {
  flex-direction: row-reverse;
}

.avc-text {
  flex: 1;
}
.avc-text h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
.avc-text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 16px;
}
.avc-text p {
  font-size: 12px;
  line-height: 1.8;
  opacity: .85;
}
.avc-text p strong {
  opacity: 1;
}
.avc-text p a {
  color: inherit;
  text-decoration: underline;
}

.avc-img {
  max-width: 460px;
}
.avc-img img {
  width: 100%;
  display: block;
}

/* Dot list */
.avc-dot-list {
  margin: 16px 0;
  padding: 0;
}
.avc-dot-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
  font-style: italic;
  color: #FF48F4;
}
.avc-dot-list li img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================================
   FAQ Section
   ============================================================ */

.avc-faq {
  padding: 80px 0;
 background: url(/images/about/box-bg.png) center no-repeat;
 background-size: cover;
}
.avc-faq-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.avc-faq-inner h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.avc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.avc-faq-item {
  background: #00000020;
  border-radius: 12px;
  overflow: hidden;
  transition: background 0.2s;
}
.avc-faq-item[open] {
  background: #fff;
  border-color: #fff;
  color:#000;
}
.avc-faq-item summary {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.avc-faq-item summary::-webkit-details-marker {
  display: none;
}

.avc-faq-answer {
  padding: 0 24px 18px;
}
.avc-faq-answer p {
  font-size: 14px;
  line-height: 1.7;
  opacity: .8;
}

/* ============================================================
   Closing CTA (same as about.html au-section-cta)
   ============================================================ */

.au-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.au-section-cta {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
}
.au-section-cta h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
}
.au-section-cta p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* ============================================================
   Mobile Responsive
   ============================================================ */

@media screen and (max-width: 768px) {
  .hp-header {
    padding: 10px 0;
    background: #00000010;
  }
  .hp-header-inner {
    padding: 0 14px;
  }
  .hp-header-inner .hp-nav {
    display: none;
  }

  .hp-btn-primary {
    height: 70px;
    padding: 8px;
  }
  .hp-btn-primary .txt {
    padding: 0 24px;
    flex: none;
    font-size: 18px;
  }
  .hp-btn-primary .icon {
    width: 56px;
    height: 56px;
  }

  .hp-footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .hp-footer-logo {
    margin-bottom: 20px;
  }
  .hp-footer-nav {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  /* Hero */
  .avc-hero {
    padding: 110px 0 0;
  }
  .avc-hero-inner h1 {
    font-size: 32px;
  }
  .avc-hero-inner h1 strong {
    display: block;
    font-size: 48px;
    margin-top: 10px;
  }
  .avc-hero-inner p {
    font-size: 13px;
  }
  .avc-hero-banner {
    aspect-ratio: 10/3.5;
  }
  .avc-hero-banner img{
    width: 190%;
    left: -45%;
  }

  /* Content sections */
  .avc-section {
    padding: 20px 0;
  }

  .avc-section.avc-section-conversations {
    padding-top: 120px;
  }
  .avc-content-block {
    flex-direction: column;
    gap: 0px;
    padding: 0 14px;
  }
  .avc-content-reverse {
    flex-direction: column;
  }
  .avc-img {
    flex: none;
    max-width: auto;
    width:100%;
    margin: 0 auto;
  }
  .avc-text h2 {
    font-size: 36px;
  }

  /* FAQ */
  .avc-faq {
    padding: 50px 0;
  }
  .avc-faq-inner {
    padding: 0 16px;
  }
  .avc-faq-inner h2 {
    font-size: 26px;
    margin-bottom: 24px;
  }
  .avc-faq-item summary {
    padding: 14px 16px;
    font-size: 14px;
  }
  .avc-faq-answer {
    padding: 0 16px 14px;
  }

  /* CTA */
  .au-section-cta {
    padding: 60px 0;
  }
  .au-section-cta h2 {
    font-size: 30px;
  }
}
