/* === TOKENS === */
:root {
  --bg: #12091E;
  --bg-mid: #1A0F2E;
  --bg-card: #22143A;
  --pink: #FF2D8B;
  --pink-light: #FF6EB4;
  --purple: #7C3AED;
  --rose: #FF4D6D;
  --amber: #FF8C00;
  --white: #FFFFFF;
  --muted: #9980B8;
  --radius: 16px;
  --radius-sm: 10px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* === ACCENTS === */
.pink-text { color: var(--pink); }
.hero-accent { background: linear-gradient(90deg, var(--pink) 0%, var(--rose) 50%, var(--amber) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* === NAV === */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(18,9,30,0.92); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,45,139,0.12); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-icon { width: 36px; height: 36px; border-radius: 10px; }
.brand-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; }
.brand-pink { color: var(--pink); }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 0.9rem; color: var(--muted); }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: linear-gradient(135deg, var(--pink), var(--rose)); color: var(--white); padding: 8px 20px; border-radius: 24px; font-weight: 600; font-size: 0.85rem; font-family: 'Inter', sans-serif; transition: opacity 0.2s, transform 0.2s; }
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* === HERO === */
.hero { min-height: 95vh; display: flex; align-items: center; padding: 80px 24px 60px; position: relative; overflow: hidden; background: var(--bg); }
.hero-bg-glow { position: absolute; top: -100px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,45,139,0.12) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-eyebrow { display: inline-block; background: rgba(255,45,139,0.1); border: 1px solid rgba(255,45,139,0.3); color: var(--pink-light); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; padding: 7px 14px; border-radius: 24px; margin-bottom: 20px; font-family: 'Inter', sans-serif; }
h1 { font-size: clamp(3rem, 6vw, 5rem); font-weight: 900; line-height: 1.05; margin-bottom: 20px; letter-spacing: -0.01em; }
.hero-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.hero-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.badge-btn { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); padding: 12px 22px; border-radius: 12px; transition: transform 0.2s, background 0.2s; }
.badge-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,0.1); }
.badge-text { display: flex; flex-direction: column; }
.badge-sub { font-size: 0.62rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.badge-main { font-size: 1rem; font-weight: 600; color: var(--white); font-family: 'Inter', sans-serif; }
.hero-note { font-size: 0.75rem; color: var(--muted); margin-bottom: 32px; }
.hero-stats { display: flex; align-items: center; gap: 20px; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-n { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--pink); }
.stat-l { font-size: 0.72rem; color: var(--muted); }
.sdiv { width: 1px; height: 32px; background: rgba(255,255,255,0.08); }

/* HERO PHONE */
.hero-phone { display: flex; justify-content: center; }
.phone-tilt { transform: perspective(1000px) rotateY(-8deg) rotateX(2deg); box-shadow: 0 30px 80px rgba(255,45,139,0.2), 0 10px 40px rgba(0,0,0,0.6); border-radius: 28px; overflow: hidden; width: 100%; max-width: 300px; }
.phone-tilt img { width: 100%; display: block; }

/* === CARDS STRIP === */
.cards-strip { overflow: hidden; padding: 20px 0; background: var(--bg-mid); border-top: 1px solid rgba(255,45,139,0.1); border-bottom: 1px solid rgba(255,45,139,0.1); }
.strip-inner { display: flex; gap: 16px; animation: stripScroll 25s linear infinite; width: max-content; }
@keyframes stripScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.strip-card { flex-shrink: 0; padding: 12px 18px; border-radius: 40px; font-size: 0.82rem; font-weight: 500; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.strip-card.purple { background: rgba(124,58,237,0.2); border: 1px solid rgba(124,58,237,0.35); color: #C4B5FD; }
.strip-card.pink { background: rgba(255,45,139,0.2); border: 1px solid rgba(255,45,139,0.35); color: #FF9DD8; }
.strip-card.rose { background: rgba(255,77,109,0.2); border: 1px solid rgba(255,77,109,0.35); color: #FFA0B4; }
.strip-card.amber { background: rgba(255,140,0,0.2); border: 1px solid rgba(255,140,0,0.35); color: #FFD08A; }
.strip-card strong { font-weight: 700; letter-spacing: 0.06em; font-size: 0.72rem; }

/* === CONTAINER === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag { display: inline-block; background: rgba(255,45,139,0.1); border: 1px solid rgba(255,45,139,0.25); color: var(--pink-light); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 24px; margin-bottom: 16px; font-family: 'Inter', sans-serif; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.6; margin-bottom: 40px; max-width: 600px; }

/* === HOW IT WORKS === */
.how { padding: 100px 24px; background: var(--bg); }
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 20px; align-items: center; margin-top: 48px; }
.step { background: var(--bg-card); border: 1px solid rgba(255,45,139,0.12); border-radius: var(--radius); padding: 32px 24px; text-align: center; }
.step-num { font-family: 'Playfair Display', serif; font-size: 0.8rem; color: var(--pink); letter-spacing: 0.12em; margin-bottom: 12px; font-weight: 700; }
.step-icon { font-size: 2.4rem; margin-bottom: 14px; }
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
.step-arrow { font-size: 1.5rem; color: var(--pink); opacity: 0.5; }

/* === SHOWCASE === */
.showcase { padding: 100px 24px; }
.sc-dark { background: var(--bg-mid); }
.sc-mid { background: var(--bg); }
.sc-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sc-flip { direction: rtl; }
.sc-flip > * { direction: ltr; }
.sc-text h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
.sc-text p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--muted); }
.check-list li::before { content: '✓'; color: var(--pink); font-weight: 700; flex-shrink: 0; }
.sc-phone { display: flex; justify-content: center; }
.sc-phone img { width: 100%; max-width: 300px; border-radius: 28px; box-shadow: 0 20px 60px rgba(255,45,139,0.15), 0 10px 40px rgba(0,0,0,0.5); }

/* PAIRED PHONES */
.sc-phone--pair { position: relative; width: 320px; height: 420px; flex-shrink: 0; }
.phone-back-img { position: absolute; right: 0; top: 40px; width: 220px; border-radius: 22px; box-shadow: 0 16px 50px rgba(0,0,0,0.5); transform: rotate(4deg); z-index: 1; }
.phone-front-img { position: absolute; left: 0; top: 0; width: 230px; border-radius: 22px; box-shadow: 0 20px 60px rgba(255,45,139,0.2), 0 10px 40px rgba(0,0,0,0.6); z-index: 2; }

/* === FEATURES GRID === */
.features { padding: 100px 24px; background: var(--bg-mid); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 48px; }
.feat-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius); padding: 28px; transition: border-color 0.2s, transform 0.2s; }
.feat-card:hover { border-color: rgba(255,45,139,0.3); transform: translateY(-3px); }
.feat-primary { border-color: rgba(255,45,139,0.2); background: linear-gradient(135deg, rgba(255,45,139,0.08), var(--bg-card)); }
.feat-icon { font-size: 1.8rem; margin-bottom: 14px; }
.feat-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.feat-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }
.feat-card strong { color: var(--white); }

/* === INTENSITY === */
.intensity { padding: 100px 24px; background: var(--bg); }
.intensity-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.int-text h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
.int-text p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.int-levels { display: flex; flex-direction: column; gap: 12px; }
.int-level { display: flex; align-items: center; gap: 14px; background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-sm); padding: 14px 18px; transition: border-color 0.2s; }
.int-level:hover { border-color: rgba(255,45,139,0.3); }
.int-emoji { font-size: 1.6rem; flex-shrink: 0; }
.int-level div { display: flex; flex-direction: column; gap: 2px; }
.int-level strong { font-size: 0.95rem; font-weight: 600; color: var(--white); }
.int-level span { font-size: 0.8rem; color: var(--muted); }
.int-level.timid { border-left: 3px solid #F9A8D4; }
.int-level.flirty { border-left: 3px solid #FBBF24; }
.int-level.spicy { border-left: 3px solid #EF4444; }
.int-level.romantic { border-left: 3px solid var(--pink); }
.int-phone img { width: 100%; max-width: 300px; border-radius: 28px; box-shadow: 0 20px 60px rgba(255,45,139,0.15), 0 10px 40px rgba(0,0,0,0.5); margin: 0 auto; display: block; }

/* === SCREENSHOTS GALLERY === */
.screenshots { padding: 100px 0; background: var(--bg-mid); overflow: hidden; }
.screenshots .container { padding-bottom: 0; }
.screenshots .section-tag, .screenshots .section-title { padding: 0 24px; }
.scroll-gallery { display: flex; gap: 20px; overflow-x: auto; padding: 32px 24px 20px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: rgba(255,45,139,0.3) transparent; }
.scroll-gallery::-webkit-scrollbar { height: 4px; }
.scroll-gallery::-webkit-scrollbar-thumb { background: rgba(255,45,139,0.3); border-radius: 2px; }
.sg-item { flex-shrink: 0; scroll-snap-align: start; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.sg-item img { width: 200px; border-radius: 20px; box-shadow: 0 12px 40px rgba(255,45,139,0.15), 0 6px 20px rgba(0,0,0,0.5); transition: transform 0.2s; }
.sg-item img:hover { transform: scale(1.03); }
.sg-item p { font-size: 0.78rem; color: var(--muted); text-align: center; }

/* === CTA === */
.cta-section { padding: 120px 24px; background: var(--bg); position: relative; overflow: hidden; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 400px; background: radial-gradient(ellipse, rgba(255,45,139,0.1) 0%, transparent 70%); pointer-events: none; }
.cta-inner { max-width: 600px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; position: relative; }
.cta-icon { width: 88px; height: 88px; border-radius: 22px; box-shadow: 0 8px 30px rgba(255,45,139,0.3); }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; }
.cta-inner p { color: var(--muted); font-size: 1rem; line-height: 1.6; }
.cta-badges { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.cta-note { font-size: 0.75rem; color: var(--muted); }

/* === FOOTER === */
.footer { padding: 48px 24px 24px; background: var(--bg-mid); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; flex-wrap: wrap; gap: 24px; }
.footer-brand { display: flex; align-items: flex-start; gap: 12px; }
.footer-icon { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; }
.footer-brand p { color: var(--muted); font-size: 0.82rem; margin-top: 4px; font-family: 'Inter', sans-serif; }
.footer-links { display: flex; gap: 24px; align-items: center; }
.footer-links a { color: var(--muted); font-size: 0.85rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }
.footer-bottom p { color: var(--muted); font-size: 0.78rem; line-height: 1.5; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-badges { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-phone { display: none; }
  .phone-tilt { transform: none; }
  .sc-inner { grid-template-columns: 1fr; gap: 40px; }
  .sc-flip { direction: ltr; }
  .sc-phone { order: -1; }
  .intensity-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .nav-links a:not(.nav-cta) { display: none; }
}
@media (max-width: 600px) {
  .how, .showcase, .features, .intensity, .cta-section { padding: 60px 20px; }
  .sc-phone--pair { width: 260px; height: 340px; }
  .phone-back-img { width: 180px; }
  .phone-front-img { width: 190px; }
  .sg-item img { width: 160px; }
}
