/* ============================================================
   SellSexyPhotos — landing page styles
   One stylesheet shared by every language version.
   ============================================================ */

:root {
  --bg:            #0d0b14;
  --bg-soft:       #15121f;
  --card:          #1b1726;
  --card-border:   #2c2640;
  --text:          #f4f1fa;
  --text-soft:     #b8b2c9;
  --muted:         #8c86a0;
  --accent:        #ff3d77;
  --accent-2:      #a855f7;
  --accent-grad:   linear-gradient(135deg, #ff3d77 0%, #a855f7 100%);
  --ring:          rgba(255, 61, 119, 0.45);
  --radius:        16px;
  --radius-sm:     10px;
  --maxw:          1080px;
  --shadow:        0 18px 50px -20px rgba(0, 0, 0, 0.7);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
          Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px;
}

h1, h2, h3 { line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }

/* ---------- Age / disclosure top bar ---------- */
.topbar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--card-border);
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  padding: 7px 16px;
}
.topbar b { color: var(--text-soft); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 11, 20, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--card-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.brand:hover { text-decoration: none; }
.brand .dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent-grad);
  box-shadow: 0 0 0 4px rgba(255, 61, 119, 0.15);
}

/* ---------- Language switcher ---------- */
.lang-switch { position: relative; }
.lang-switch summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-soft);
  background: var(--card);
  user-select: none;
}
.lang-switch summary::-webkit-details-marker { display: none; }
.lang-switch summary:hover { border-color: var(--accent-2); color: var(--text); }
.lang-switch summary .chev { transition: transform .2s; opacity: .7; }
.lang-switch[open] summary .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  right: 0;
  margin-top: 8px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  min-width: 190px;
  padding: 6px;
  z-index: 60;
}
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--text-soft);
  font-size: 14.5px;
}
.lang-menu a:hover { background: var(--bg-soft); color: var(--text); text-decoration: none; }
.lang-menu a[aria-current="true"] { color: var(--text); font-weight: 700; }
.lang-menu a .flag { font-size: 16px; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: var(--pad-y) 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  border: 0;
  text-align: center;
  transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-primary {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 12px 30px -10px var(--ring);
}
.btn-primary:hover {
  text-decoration: none;
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 18px 40px -12px var(--ring);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--card-border);
}
.btn-ghost:hover { border-color: var(--accent-2); text-decoration: none; }
.btn-lg { --pad-y: 18px; font-size: 18.5px; padding-inline: 34px; }
.btn-block { display: flex; width: 100%; }

/* ---------- Hero (full-bleed, image background) ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(88vh, 780px);
  padding: clamp(72px, 11vw, 130px) 0 clamp(48px, 7vw, 80px);
  overflow: hidden;
  background-color: #0d0b14;
  background-image:
    linear-gradient(90deg,
      rgba(10, 8, 16, 0.95) 0%,
      rgba(10, 8, 16, 0.88) 34%,
      rgba(13, 11, 20, 0.55) 64%,
      rgba(13, 11, 20, 0.30) 100%),
    url("../hero-bg.jpg"),
    url("../hero-bg.svg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.hero::after {
  /* bottom fade so the hero melts into the page */
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 600px;
  margin-inline: 0;     /* hug the left, leaving the photo subject visible on the right */
}
.hero h1 {
  font-size: clamp(33px, 5.6vw, 58px);
  margin: 0 0 18px;
  max-width: 18ch;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}
.hero .lead {
  font-size: clamp(17px, 2.3vw, 20px);
  color: var(--text-soft);
  max-width: 52ch;
  margin: 0 0 6px;
}
.cta-group {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* ---------- Social proof (avatars + creator count) ---------- */
.social-proof {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 26px;
}
.avatars { display: inline-flex; flex-shrink: 0; }
.avatars span {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(1) { background: linear-gradient(135deg, #ff8fb4, #ff3d77); }
.avatars span:nth-child(2) { background: linear-gradient(135deg, #d8a8ff, #a855f7); }
.avatars span:nth-child(3) { background: linear-gradient(135deg, #ffd1e0, #ff7aa8); }
.avatars span:nth-child(4) { background: linear-gradient(135deg, #b993ff, #7c4dff); }
.avatars span:nth-child(5) { background: linear-gradient(135deg, #ff9a76, #ff3d77); }
.trust-creators { font-size: 14.5px; color: var(--text); font-weight: 600; }
.trust-creators strong { color: var(--accent); }

/* ---------- Trust badges ---------- */
.trust-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  margin: 20px 0 0;
}
.trust-badges li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 500;
}
.trust-badges li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--accent-grad);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ---------- Reassurance stats strip ---------- */
.stats-band { padding: 0 !important; margin-top: -34px; position: relative; z-index: 2; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat {
  text-align: center;
  background: linear-gradient(180deg, rgba(27,23,38,0.92), rgba(20,16,28,0.92));
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 18px 12px;
  box-shadow: var(--shadow);
}
.stat-num {
  display: block;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.1;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 5px;
}
@media (max-width: 600px) {
  .stats-band { margin-top: -18px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Sticky scroll CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  background: rgba(20, 16, 28, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-top: 1px solid var(--card-border);
  box-shadow: 0 -10px 34px -18px rgba(0, 0, 0, 0.8);
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.16,.84,.44,1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 12px;
}
.sticky-cta-msg {
  font-weight: 700;
  font-size: 15.5px;
  color: var(--text);
}
.sticky-cta .btn { flex-shrink: 0; }
@media (max-width: 600px) {
  /* mobile: a single full-width tap target converts best */
  .sticky-cta-msg { display: none; }
  .sticky-cta-inner { padding-block: 10px; }
  .sticky-cta .btn { width: 100%; }
}

/* ---------- Sections / prose ---------- */
main section { padding: clamp(40px, 6vw, 64px) 0; }
.section-narrow { max-width: 760px; margin-inline: auto; }
main h2 {
  font-size: clamp(24px, 3.6vw, 33px);
  margin: 0 0 18px;
}
main h2 .accent { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
main p { color: var(--text-soft); margin: 0 0 18px; }
main p strong, main li strong { color: var(--text); }
.divider { height: 1px; background: var(--card-border); border: 0; max-width: var(--maxw); margin: 0 auto; opacity: .6; }

/* ---------- Advantage cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 26px;
}
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px;
}
.card .ic {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(168, 85, 247, 0.14);
  margin-bottom: 14px;
  font-size: 20px;
}
.card h3 { font-size: 17px; margin: 0 0 7px; }
.card p { font-size: 15px; margin: 0; color: var(--text-soft); }

/* ---------- Generic bullet list ---------- */
.tick-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 13px; }
.tick-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text-soft);
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent-grad);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(180deg, rgba(168,85,247,0.10), rgba(255,61,119,0.08)),
    var(--bg-soft);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  text-align: center;
}
.cta-band h2 { margin-bottom: 10px; }
.cta-band p { max-width: 52ch; margin: 0 auto 26px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; margin-top: 26px; }
.faq details {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 4px 20px;
}
.faq details[open] { border-color: var(--accent-2); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-weight: 400;
  font-size: 26px;
  line-height: 1;
  color: var(--accent);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 18px; font-size: 15.5px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--card-border);
  padding: 44px 0 34px;
  font-size: 14px;
  color: var(--muted);
}
.site-footer .brand { margin-bottom: 14px; font-size: 17px; }
.footer-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 18px 0 22px;
}
.footer-langs a { color: var(--text-soft); font-size: 14px; }
.footer-disclaimer { max-width: 70ch; margin: 0 0 10px; }
.footer-disclaimer.age b { color: var(--accent); }
.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--card-border);
  color: var(--muted);
}

/* ---------- Verdict / rating box ---------- */
.verdict { padding: clamp(26px, 4vw, 40px) 0; }
.verdict-card {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow);
}
.verdict-score { text-align: center; flex-shrink: 0; }
.stars {
  display: block;
  position: relative;
  width: max-content;
  margin: 0 auto 8px;
  font-family: Arial, "Segoe UI Symbol", sans-serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 3px;
}
.stars::before { content: "\2605\2605\2605\2605\2605"; color: #3a3450; }
.stars::after {
  content: "\2605\2605\2605\2605\2605";
  color: #ffc83d;
  position: absolute;
  left: 0; top: 0;
  width: var(--pct);
  overflow: hidden;
  white-space: nowrap;
}
.verdict-num { font-size: 30px; font-weight: 800; color: var(--text); }
.verdict-out { font-size: 15px; font-weight: 600; color: var(--muted); }
.verdict-text { flex: 1 1 240px; }
.verdict-kicker {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
}
.verdict-platform { display: block; font-size: 20px; margin: 3px 0 5px; }
.verdict-text p { margin: 0 0 6px; color: var(--text-soft); font-size: 15px; }
.verdict-reviews { font-size: 13px; color: var(--muted); }
.verdict .btn { flex-shrink: 0; }
@media (max-width: 640px) {
  .verdict-card { flex-direction: column; align-items: flex-start; text-align: left; }
  .verdict-score { display: flex; align-items: center; gap: 12px; }
  .stars { margin: 0; }
  .verdict .btn { width: 100%; }
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  body { font-size: 16px; }
  .btn { width: 100%; }
  .cta-group { flex-direction: column; }
  .brand span.full { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
