/* ── LANDING PAGE ────────────────────────────────────────────────────────── */
.landing-page { overflow-x: hidden; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ──────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(8,8,16,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo span {
  background: linear-gradient(135deg, #c084fc, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-cta-wpp {
  background: #25D366;
  color: #fff !important;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta-wpp:hover { background: #1db954; transform: translateY(-1px); }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  cursor: pointer;
  margin-left: auto;
}
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 16px;
  gap: 4px;
  border-top: 1px solid var(--border);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 15px;
  color: var(--text-dim);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-menu a:last-child { border-bottom: none; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 96px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero-orb--1 { width:600px;height:600px;top:-150px;left:-200px;background:rgba(124,58,237,0.22);animation:orb-drift 14s ease-in-out infinite alternate; }
.hero-orb--2 { width:500px;height:500px;bottom:-100px;right:-100px;background:rgba(37,211,102,0.12);animation:orb-drift 18s ease-in-out infinite alternate-reverse; }
.hero-orb--3 { width:300px;height:300px;top:30%;left:35%;background:rgba(245,158,11,0.07);animation:orb-drift 22s ease-in-out infinite alternate; }

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Hero text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #4ade80;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, #c084fc 0%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}
.hero-trust span { display: flex; align-items: center; gap: 4px; }

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn-land {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}
.btn-land:active { transform: scale(0.97); }

.btn-land--wpp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 0 28px rgba(37,211,102,0.3);
}
.btn-land--wpp:hover {
  background: #1db954;
  box-shadow: 0 0 40px rgba(37,211,102,0.5);
  transform: translateY(-2px);
}
.btn-land--wpp.btn-land--lg {
  padding: 16px 36px;
  font-size: 17px;
  border-radius: 10px;
}

.btn-land--ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
}
.btn-land--ghost:hover {
  border-color: var(--border-hover);
  color: var(--text);
  background: var(--surface-2);
}

.btn-land--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
  padding: 12px 24px;
  font-size: 14px;
}
.btn-land--outline:hover { background: var(--surface-3); }

/* ── PHONE MOCKUP ─────────────────────────────────────────────────────────── */
.hero-visual { display: flex; justify-content: center; }
.sticker-preview { position: relative; }

.sticker-phone {
  width: 280px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(124,58,237,0.15);
}
.phone-notch {
  width: 80px; height: 22px;
  background: var(--surface-2);
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
}
.phone-screen { padding-bottom: 16px; }
.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.phone-avatar {
  width: 34px; height: 34px;
  background: rgba(124,58,237,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.phone-name { font-size: 13px; font-weight: 600; color: var(--text); }
.phone-status { font-size: 11px; color: #4ade80; }

.phone-chat {
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pchat-msg { display: flex; }
.pchat-msg--user { justify-content: flex-end; }
.pchat-msg--bot  { justify-content: flex-start; }
.pchat-bubble {
  background: #25D366;
  color: #fff;
  border-radius: 10px 10px 2px 10px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 500;
}
.pchat-sticker {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 10px 10px 10px 2px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sticker-emoji { font-size: 20px; }
.sticker-label { font-size: 11px; color: var(--green); font-weight: 600; }

/* Floating stickers */
.float-sticker {
  position: absolute;
  font-size: 28px;
  animation: float-bounce 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.float-sticker--1 { top: -20px; right: -20px; animation-delay: 0s; }
.float-sticker--2 { top: 40%;   left: -30px;  animation-delay: 0.8s; }
.float-sticker--3 { bottom: 10%; right: -28px; animation-delay: 1.4s; }
.float-sticker--4 { bottom: -16px; left: 20px;  animation-delay: 0.4s; }

@keyframes float-bounce {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-10px) rotate(5deg); }
}

/* ── SECTION BASE ─────────────────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section--dark {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4ade80;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.8px;
  color: var(--text);
  margin-bottom: 14px;
}
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 56px;
}

/* ── STEPS ────────────────────────────────────────────────────────────────── */
.steps-grid {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}
.step-card {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.25s;
  opacity: 0;
  transform: translateY(16px);
  position: relative;
}
.step-card.visible { opacity: 1; transform: translateY(0); }
.step-card:hover { border-color: rgba(37,211,102,0.3); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(37,211,102,0.08); }

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(37,211,102,0.6);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.step-icon { font-size: 36px; margin-bottom: 14px; }
.step-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.step-arrow {
  font-size: 22px;
  color: var(--border-hover);
  flex-shrink: 0;
  padding-bottom: 20px;
}

.steps-cta { text-align: center; }

/* ── MEDIA CARDS ──────────────────────────────────────────────────────────── */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.media-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.25s;
  opacity: 0;
  transform: translateY(16px);
}
.media-card.visible { opacity: 1; transform: translateY(0); }
.media-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }

.media-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.media-icon-wrap--purple { background: var(--primary-dim); }
.media-icon-wrap--cyan   { background: var(--cyan-dim); }
.media-icon-wrap--amber  { background: var(--amber-dim); }

.media-info h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.media-info p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.media-tag {
  display: inline-flex;
  padding: 4px 10px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  width: fit-content;
}

/* ── EXTRAS GRID ──────────────────────────────────────────────────────────── */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.extra-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.25s;
  opacity: 0;
  transform: translateY(12px);
}
.extra-item.visible { opacity: 1; transform: translateY(0); }
.extra-item:hover { border-color: var(--border-hover); }
.extra-icon { font-size: 26px; flex-shrink: 0; }
.extra-item strong { display: block; font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.extra-item p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }
.extra-item code {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 12px;
  color: #c084fc;
}

/* ── CTA SECTION ──────────────────────────────────────────────────────────── */
.cta-section { background: var(--bg); }
.cta-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(37,211,102,0.08);
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-orb--1 { width:400px;height:400px;top:-100px;left:-100px;background:rgba(124,58,237,0.12); }
.cta-orb--2 { width:300px;height:300px;bottom:-80px;right:-80px;background:rgba(37,211,102,0.08); }

.cta-emoji-row {
  font-size: 28px;
  margin-bottom: 20px;
  position: relative;
  letter-spacing: 6px;
}
.cta-card h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.8px;
  line-height: 1.25;
  position: relative;
}
.cta-card > p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
  position: relative;
}
.cta-card .btn-land { position: relative; }
.cta-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px !important;
  margin-bottom: 0 !important;
}

/* ── OWN BOT SECTION ──────────────────────────────────────────────────────── */
.own-bot-section { background: var(--surface); border-top: 1px solid var(--border); }
.own-bot-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(6,182,212,0.06));
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius);
  padding: 48px;
}
.own-bot-badge {
  display: inline-block;
  background: var(--primary-dim);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #c084fc;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.own-bot-left h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}
.own-bot-left p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 420px;
}
.own-bot-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  min-width: 220px;
}
.obf-item {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 500;
}

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
  flex: 1;
}
.footer-logo span {
  background: linear-gradient(135deg, #c084fc, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 13px; color: var(--text-muted); text-align: right; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.footer-bottom strong { color: var(--text-dim); }
.footer-sep { opacity: 0.4; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-content   { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-desc      { margin: 0 auto 32px; }
  .hero-actions   { justify-content: center; }
  .hero-trust     { justify-content: center; }
  .hero-visual    { order: 1; }
  .media-grid     { grid-template-columns: 1fr; }
  .extras-grid    { grid-template-columns: repeat(2, 1fr); }
  .nav-links      { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-cta-wpp    { display: none; }
  .own-bot-card   { grid-template-columns: 1fr; }
  .own-bot-features { width: 100%; }
}
@media (max-width: 640px) {
  .hero { padding-top: 96px; }
  .section { padding: 64px 0; }
  .steps-grid  { flex-direction: column; }
  .step-arrow  { transform: rotate(90deg); padding: 0; }
  .extras-grid { grid-template-columns: 1fr; }
  .cta-card    { padding: 48px 24px; }
  .own-bot-card { padding: 28px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-copy  { text-align: center; }
  .float-sticker { display: none; }
}
