/* ============================================================
   Base reset + shared layout (header / footer)
   Same as about.css base
   ============================================================ */

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

#home-landpage {
  font-size: 14px;
  font-family: Helvetica, Arial, sans-serif;
  width: 100%;
  background: #200532;
  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;
}

/* 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;
}

/* ============================================================
   Safety — Page Specific Styles
   ============================================================ */

a {
  color: inherit;
}

/* Hero Banner */
.sf-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: url(/images/safety/s1-bg.png) left top no-repeat, #200532;
  background-size: contain;
}

.sf-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.sf-hero-content {
  max-width: 480px;
  text-align: center;
}

.sf-hero-content h1 {
  font-size: 44px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}

.sf-hero-content h1 strong {
  font-size: 83px;
  font-weight: 700;
  position: relative;
}

.sf-hero-content h1 strong::before {
  content: '';
  background: url(/images/safety/s1-line.png) center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: -20%;
  height: 24px;
  width: 150%;
  z-index: -1;
}

.sf-hero-content p {
  font-size: 14px;
  line-height: 1.7;
  opacity: .85;
  margin-bottom: 16px;
}

.sf-btn-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 16px 32px;
  border-radius: 30px;
  background: linear-gradient(90deg, #933CFB 0%, #D9A9FF 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

/* Shared tag / pill */
.sf-tag,
.sf-pill {
  display: inline-block;
  padding: 5px 20px;
  background: #933CFB;
  font-size: 51px;
  font-weight: 100;
}


/* Common inner container */
.sf-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.sf-section {
  padding: 80px 0;
}

.sf-section h2 {
  font-size: 51px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.sf-section p {
  font-size: 14px;
  line-height: 1.6;
  opacity: .85;
  margin-bottom: 12px;
}

.sf-section-warning {
  background: url(/images/safety/s3-bg.png) center top no-repeat;
  padding-top: 220px;
}

.sf-avatars {
  max-width: 1140px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.sf-avatars img {
  width: 100%;
  display: block;
}

/* Feature sections (two-column) */
.sf-feature {
  display: flex;
  align-items: center;
  padding: 60px 20px;
}

.sf-feature-content {
  width: 450px;
  flex-shrink: 0;
  text-align: left;
}

.sf-feature-content h2 {
  font-size: 51px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.sf-feature-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.sf-feature-content p {
  font-size: 13px;
  line-height: 1.8;
  opacity: .85;
  margin-bottom: 12px;
}

.sf-feature-img {
  flex: 0 0 630px;
  max-width: 630px;
}

.sf-feature-img img {
  width: 100%;
  display: block;
}

.sf-feature-reverse {
  flex-direction: row-reverse;
}

/* Respect / Safer section */
.sf-feature-bot {
  background: linear-gradient(180deg, #ffffff00 0%, #ffffff00 440px, #000 100%), url(/images/safety/s4-bg.png) center top no-repeat;
  background-size: cover;
  position: relative;
  padding: 445px 0 60px;
}


.sf-feature-bot-inner {

  display: flex;
  gap: 40px;
}

.sf-feature-bot-col {
  flex: 1;
  text-align: left;
}

.sf-feature-bot-col .sf-tag {
  margin-bottom: 12px;
}

.sf-feature-bot-col h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 8px 0 16px;
  line-height: 1.3;
}

.sf-feature-bot-col p {
  font-size: 12px;
  line-height: 1.7;
  opacity: .85;
  margin-bottom: 10px;
}


/* ============================================================
   FAQ Section (same as anonymous-video-chat)
   ============================================================ */

.avc-faq {
  padding: 80px 0;
  background: #200532 url(/images/safety/s3-bg.png) bottom center no-repeat;
  background-size: 100% 500px;
}

.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;
}

.au-inner {
  max-width: 800px;
  margin: 70px auto 0;
  padding: 0 24px;
  text-align: center;
}


.au-inner h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
}

.au-inner p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* ============================================================
   Mobile Responsive
   ============================================================ */
@media screen and (max-width: 768px) {

  /* Header mobile */
  .hp-header {
    padding: 10px 0;
    background: #00000010;
  }

  .hp-header-inner {
    padding: 0 14px;
  }

  .hp-header-inner .hp-nav {
    display: none;
  }

  /* Footer mobile */
  .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 mobile */
  .sf-hero {
    padding: 100px 0 40px;
    background: url(/images/safety/s1-bg-m.png) center top no-repeat, #200532;
    background-size: 100% auto;
  }

  .sf-hero-inner {
    padding: 0 20px;
  }

  .sf-hero-content {
    max-width: 100%;
    padding-top: 240px;
  }

  .sf-hero-content h1 {
    font-size: 36px;
  }

  .sf-hero-content h1 strong {
    font-size: 36px;
  }

  .sf-section {
    padding: 30px 0;
  }

  /* Sections mobile */
  .sf-section-warning {
    padding: 110px 0 0;
    background-size: 120% 128px;
  }

  .sf-tag,
  .sf-pill {
    font-size: 40px;
    padding: 2px 10px;
  }

  .sf-inner {
    padding: 0 20px;
  }

  .sf-section h2 {
    font-size: 36px;
  }

  .sf-avatars {
    padding: 0 10px;
  }

  /* Feature sections mobile */
  .sf-feature {
    flex-direction: column;
    gap: 24px;
    padding: 40px 20px;
  }

  .sf-feature-reverse {
    flex-direction: column;
  }

  .sf-feature-content {
    text-align: left;
    max-width: 100%;
  }

  .sf-feature-content h2 {
    font-size: 46px;
  }

  .sf-feature-img {
    flex: none;
    max-width: 100%;

  }

  .sf-feature-bot {
    background-size: 100%;
    padding-top: 280px;
  }

  /* Respect / Safer mobile */
  .sf-feature-bot-inner {
    position: static;
    flex-direction: column;
    gap: 24px;
    padding: 24px 20px;
  }


  /* FAQ mobile */
  .avc-faq {
    padding: 50px 0;
    background-size: 100% 250px;
  }

  .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;
  }

  .au-inner {
    margin: 40px 0;
  }

  .au-inner h2 {
    font-size: 30px;
  }
}