/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #E8618C;
  --primary-dark: #d14a75;
  --accent-orange: #F4845F;
  --accent-teal: #5BC0BE;
  --bg: #FAFAFA;
  --bg-alt: #F3F0FF;
  --text: #1A1A2E;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --card-bg: #FFFFFF;
  --border: #E5E7EB;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.nav-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--text);
  color: white;
  padding: 8px 20px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
  padding: 140px 24px 80px;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 100vh;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent-orange));
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-sub {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 460px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 16px rgba(232, 97, 140, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 97, 140, 0.4);
}

.btn-large {
  padding: 18px 36px;
  font-size: 18px;
  border-radius: 16px;
}

.btn-icon {
  width: 22px;
  height: 22px;
}

.hero-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-phone {
  flex-shrink: 0;
}

.phone-frame {
  width: 300px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(0, 0, 0, 0.04);
  background: white;
}

.phone-screen {
  width: 100%;
  display: block;
}

/* ── Section Shared ── */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

section h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.6;
}

/* ── Before/After ── */
.before-after {
  padding: 100px 24px;
  background: white;
}

.before-after .container {
  text-align: center;
}

.before-after .section-sub {
  margin: 0 auto 48px;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.comparison-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: left;
}

.comparison-card.boring {
  background: #F9FAFB;
  border: 2px solid var(--border);
}

.comparison-card.vibey {
  background: linear-gradient(135deg, #FFF0F5, #FFF5F0);
  border: 2px solid var(--primary);
  box-shadow: 0 4px 24px rgba(232, 97, 140, 0.1);
}

.comparison-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vibey .comparison-label {
  color: var(--primary);
}

.vibe-badge {
  background: var(--primary);
  color: white;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 100px;
}

.comparison-input {
  font-size: 15px;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 12px;
}

.comparison-arrow {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.comparison-output {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 16px;
}

.comparison-verdict {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.vibey .comparison-verdict {
  color: var(--primary);
}

/* ── Features ── */
.features {
  padding: 100px 24px;
}

.features .container {
  text-align: center;
}

.features .section-sub {
  margin: 0 auto 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── Screenshots ── */
.screenshots {
  padding: 100px 0;
  background: white;
  overflow: hidden;
}

.screenshots .container {
  text-align: center;
  margin-bottom: 48px;
}

.screenshots-track {
  display: flex;
  gap: 24px;
  padding: 0 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: center;
}

.screenshots-track::-webkit-scrollbar {
  display: none;
}

.screenshot-item {
  flex-shrink: 0;
  width: 220px;
  scroll-snap-align: center;
  text-align: center;
}

.screenshot-item img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.screenshot-item:hover img {
  transform: scale(1.03);
}

.screenshot-caption {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ── Vibes ── */
.vibes {
  padding: 100px 24px;
}

.vibes .container {
  text-align: center;
}

.vibes-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.vibe-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s;
  cursor: default;
}

.vibe-pill:hover {
  border-color: var(--primary);
  background: #FFF0F5;
  transform: translateY(-2px);
}

.vibe-pill span {
  font-size: 20px;
}

.vibe-pill-custom {
  border-style: dashed;
  border-color: var(--primary);
  color: var(--primary);
  background: #FFF0F5;
}

/* ── Download CTA ── */
.download {
  padding: 100px 24px;
  background: linear-gradient(180deg, white 0%, #FFF5F8 100%);
  text-align: center;
}

.download-icon {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.download .section-sub {
  margin: 0 auto 36px;
}

.download-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ── Footer ── */
.footer {
  background: var(--text);
  color: white;
  padding: 48px 24px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 18px;
}

.footer-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Legal & Support Pages ── */
.legal-page {
  padding: 120px 24px 80px;
}

.legal-container {
  max-width: 720px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-page h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--text);
}

.legal-page p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-page a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.legal-page a:hover {
  text-decoration: underline;
}

/* Support page specifics */
.support-intro {
  font-size: 18px !important;
  color: var(--text-secondary);
  margin-bottom: 40px !important;
}

.support-contact {
  margin-bottom: 48px;
}

.support-contact-card {
  background: linear-gradient(135deg, #FFF0F5, #FFF5F0);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.support-contact-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.support-contact-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  margin-top: 0;
}

.support-contact-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.support-contact-card .btn {
  font-size: 14px;
  padding: 12px 24px;
}

.faq {
  margin-top: 24px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-top: 0;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }


  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 24px 60px;
    min-height: auto;
    gap: 40px;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .phone-frame {
    width: 260px;
  }

  .comparison {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screenshots-track {
    justify-content: flex-start;
    padding-left: 24px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 36px;
    letter-spacing: -1.5px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .phone-frame {
    width: 240px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    padding: 24px;
  }

  .screenshot-item {
    width: 180px;
  }

  section h2 {
    font-size: 28px;
  }
}
