/* =============================================
   LANDING CSS — pleasuremanuals.com
   Adult audience — dark, explicit, premium
   ============================================= */

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

:root {
  --red: #e8002d;
  --crimson: #c0003b;
  --gold: #f5c518;
  --amber: #ff9500;
  --dark: #080608;
  --darker: #050305;
  --card-bg: rgba(255,255,255,.04);
  --border: rgba(255,255,255,.07);
  --text: rgba(255,255,255,.85);
  --muted: rgba(255,255,255,.45);
  --radius: 20px;
  --iw-color: #ff3366;
  --sc-color: #ff4d00;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--darker);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; }

.gradient-text {
  background: linear-gradient(90deg, #e8002d, #ff9500, #e8002d);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: flow 4s linear infinite;
}

.gold-text {
  background: linear-gradient(90deg, #f5c518, #ffaa00, #f5c518);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: flow 3s linear infinite;
}

@keyframes flow { to { background-position: 200% center; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 2rem;
  background: rgba(5,3,5,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232,0,45,.15);
}
.navbar-brand { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 800; }
.navbar-links { display: flex; gap: 1.2rem; align-items: center; }
.navbar-links a { color: var(--muted); text-decoration: none; font-size: .9rem; font-weight: 500; transition: color .2s; }
.navbar-links a:hover { color: #fff; }
.navbar-cta {
  background: linear-gradient(135deg, var(--red), var(--crimson));
  color: #fff !important; padding: .45rem 1.2rem; border-radius: 999px;
  font-weight: 700 !important; font-size: .85rem !important;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 7rem 1.5rem 5rem;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,0,45,.2) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 85% 85%, rgba(255,77,0,.12) 0%, transparent 50%),
              var(--darker);
}
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-particles span { position: absolute; opacity: .12; animation: float linear infinite; }
.hero-content { position: relative; z-index: 2; max-width: 860px; }

.hero-badge {
  display: inline-block;
  background: rgba(232,0,45,.12); border: 1px solid rgba(232,0,45,.35);
  color: #ff3355; font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .35rem 1rem; border-radius: 999px;
  margin-bottom: 1.5rem; animation: fadeIn .6s ease both;
}
.hero h1 { font-size: clamp(2.8rem, 8vw, 5.5rem); font-weight: 900; margin-bottom: 1.2rem; animation: fadeUp .7s .1s ease both; }
.hero-sub { font-size: clamp(1.05rem, 2.5vw, 1.3rem); color: var(--text); max-width: 640px; margin: 0 auto 2.5rem; animation: fadeUp .7s .2s ease both; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeUp .7s .3s ease both; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem; border-radius: 999px;
  font-size: 1rem; font-weight: 700; text-decoration: none;
  transition: transform .2s, box-shadow .2s; cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--crimson));
  color: #fff; box-shadow: 0 4px 24px rgba(232,0,45,.4);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(232,0,45,.6); }

.btn-iw {
  background: linear-gradient(135deg, #ff3366, #e8002d);
  color: #fff; box-shadow: 0 4px 20px rgba(255,51,102,.35);
}
.btn-iw:hover { box-shadow: 0 8px 28px rgba(255,51,102,.55); }

.btn-sc {
  background: linear-gradient(135deg, #ff4d00, #ff9500);
  color: #fff; box-shadow: 0 4px 20px rgba(255,77,0,.35);
}
.btn-sc:hover { box-shadow: 0 8px 28px rgba(255,77,0,.55); }

.btn-ghost {
  background: transparent; border: 1px solid var(--border); color: var(--text);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); }

.hero-stats { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; margin-top: 3rem; animation: fadeUp .7s .4s ease both; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 2rem; font-weight: 800; font-family: 'Playfair Display', serif; }
.hero-stat-label { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

.scroll-cue { margin-top: 3.5rem; color: var(--muted); font-size: .85rem; display: flex; flex-direction: column; align-items: center; gap: .4rem; animation: fadeIn 1s 1s ease both; }
.scroll-cue svg { animation: float 2s ease infinite; }

/* ---- SECTION COMMONS ---- */
section { padding: 6rem 1.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-tag {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: .3rem .9rem; border-radius: 999px; margin-bottom: 1rem;
}
.tag-iw { background: rgba(255,51,102,.12); border: 1px solid rgba(255,51,102,.3); color: #ff3366; }
.tag-sc { background: rgba(255,77,0,.12); border: 1px solid rgba(255,77,0,.3); color: #ff6500; }
.tag-18 { background: rgba(232,0,45,.15); border: 1px solid rgba(232,0,45,.35); color: #ff3355; }
.tag-free { background: rgba(80,230,120,.1); border: 1px solid rgba(80,230,120,.25); color: #50e678; }

.section-title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; margin-bottom: 1rem; }
.section-sub { font-size: 1.1rem; color: var(--muted); max-width: 600px; margin-bottom: 3rem; }

.site-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--red), var(--amber), transparent); opacity: .3; }

/* ---- PLATFORM CARDS ---- */
.platforms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 700px) { .platforms-grid { grid-template-columns: 1fr; } }

.platform-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem 2rem;
  transition: transform .3s, border-color .3s;
  text-decoration: none; color: inherit; display: block;
}
.platform-card:hover { transform: translateY(-6px); }
.platform-card.iw:hover { border-color: rgba(255,51,102,.4); }
.platform-card.sc:hover { border-color: rgba(255,77,0,.4); }
.platform-logo { font-size: 3.5rem; margin-bottom: 1rem; }
.platform-name { font-size: 1.6rem; font-weight: 800; margin-bottom: .5rem; }
.platform-tagline { color: var(--muted); font-size: .95rem; margin-bottom: 1.5rem; }
.platform-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.platform-pill { font-size: .75rem; padding: .25rem .7rem; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid var(--border); color: var(--muted); }

/* ---- FEATURES GRID ---- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.feature-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.5rem; transition: transform .3s, border-color .3s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card.iw:hover { border-color: rgba(255,51,102,.3); }
.feature-card.sc:hover { border-color: rgba(255,77,0,.3); }
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.feature-title { font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; color: #fff; }
.feature-desc { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* ---- SHOWCASE ---- */
.showcase { background: linear-gradient(180deg, var(--darker) 0%, #0d0508 50%, var(--darker) 100%); }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.showcase-grid.reverse { direction: rtl; }
.showcase-grid.reverse > * { direction: ltr; }
@media (max-width: 768px) { .showcase-grid { grid-template-columns: 1fr; } .showcase-grid.reverse { direction: ltr; } }

.showcase-media {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  aspect-ratio: 16/9; background: #111; position: relative;
}
.showcase-media img, .showcase-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.showcase-media-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(0,0,0,.75); backdrop-filter: blur(8px); border: 1px solid var(--border);
  padding: .3rem .8rem; border-radius: 999px; font-size: .75rem; font-weight: 700; color: #fff;
}
.showcase-text { padding: 1rem; }
.showcase-text h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: .8rem; }
.showcase-text p { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; line-height: 1.7; }
.showcase-list { list-style: none; margin-bottom: 1.5rem; }
.showcase-list li { padding: .4rem 0; color: var(--text); font-size: .9rem; display: flex; align-items: flex-start; gap: .6rem; }
.showcase-list li::before { content: '✦'; color: var(--red); font-size: .7rem; margin-top: .3rem; flex-shrink: 0; }

/* ---- MODES GRID ---- */
.modes-section { background: #0d0508; }
.modes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.mode-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.2rem; transition: transform .2s, border-color .3s;
  text-decoration: none; color: inherit; display: block;
}
.mode-card:hover { transform: translateY(-3px); border-color: rgba(232,0,45,.35); }
.mode-emoji { font-size: 2rem; margin-bottom: .5rem; display: block; }
.mode-name { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: .3rem; }
.mode-desc { font-size: .78rem; color: var(--muted); line-height: 1.5; }
.mode-badge { display: inline-block; margin-top: .5rem; font-size: .65rem; padding: .15rem .5rem; border-radius: 999px; background: rgba(232,0,45,.15); color: #ff3355; border: 1px solid rgba(232,0,45,.3); }

/* ---- QUIZ ---- */
.quiz-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.quiz-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.4rem; transition: transform .2s;
  text-decoration: none; color: inherit;
}
.quiz-card:hover { transform: translateY(-3px); border-color: rgba(232,0,45,.3); }
.quiz-card-emoji { font-size: 2.2rem; margin-bottom: .6rem; }
.quiz-card-name { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.quiz-card-level { font-size: .72rem; color: var(--red); letter-spacing: .06em; text-transform: uppercase; margin-bottom: .5rem; }
.quiz-card-desc { font-size: .82rem; color: var(--muted); line-height: 1.5; }

/* ---- HOW IT WORKS ---- */
.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.how-step { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; }
.how-step-num { font-size: 3rem; font-weight: 900; background: linear-gradient(135deg, var(--red), var(--amber)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: .5rem; font-family: 'Playfair Display', serif; }
.how-step-icon { font-size: 2rem; margin-bottom: .7rem; display: block; }
.how-step-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .4rem; }
.how-step-desc { font-size: .85rem; color: var(--muted); }

/* ---- TESTIMONIALS ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: .8rem; }
.testimonial-text { font-size: .9rem; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.testimonial-avatar { font-size: 2rem; }
.testimonial-name { font-size: .9rem; font-weight: 700; }
.testimonial-loc { font-size: .78rem; color: var(--muted); }

/* ---- FINAL CTA ---- */
.final-cta {
  background: linear-gradient(135deg, rgba(232,0,45,.12), rgba(255,77,0,.08));
  border-top: 1px solid rgba(232,0,45,.15); border-bottom: 1px solid rgba(232,0,45,.15);
  text-align: center; padding: 7rem 1.5rem;
}
.final-cta h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 1rem; }
.final-cta p { font-size: 1.1rem; color: var(--muted); margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.final-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
footer { background: var(--dark); border-top: 1px solid var(--border); padding: 3rem 1.5rem; text-align: center; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-links a { color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { color: var(--muted); font-size: .78rem; }

/* ---- 18+ BANNER ---- */
.age-banner {
  background: rgba(232,0,45,.08); border-bottom: 1px solid rgba(232,0,45,.2);
  text-align: center; padding: .6rem 1rem;
  font-size: .78rem; color: rgba(255,255,255,.5); letter-spacing: .06em;
}
.age-banner strong { color: #ff3355; }

/* ---- REVEAL ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .navbar-links { display: none; }
  section { padding: 4rem 1rem; }
  .showcase-text { padding: 0; }
  .hero-stats { gap: 1.5rem; }
}
@media (max-width: 480px) {
  .hero-ctas, .final-cta-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}
