/* ============================================
   PAGEFUL — Shopify Design System
   Aesthetic: Purple / Lavender / Teal — Playful Minimalism meets Kawaii
   Inspired by: Urban Outfitters + Anthropologie
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap');

:root {
  --purple: #823597;
  --lavender: #E7E6EF;
  --teal: #359781;
  --purple-light: #B592C2;
  --teal-light: #A8D5C8;
  --bg: #E7E6EF;
  --bg-alt: #F5F3F9;
  --bg-section: #F0EDFA;
  --fg: #2D1B3D;
  --fg-muted: #7B5A8A;
  --fg-light: #B0A0C0;
  --border: #D8D0E8;
  --card-bg: #FFFFFF;
  --radius: 40px;
  --radius-sm: 20px;
  --max-w: 1100px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

::selection { background: var(--purple); color: #fff; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(231, 230, 239, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: -0.03em;
}

.nav-logo span { color: var(--teal); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.6rem;
  background: var(--purple);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 40px;
  text-decoration: none;
  border: none;
  box-shadow: none;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover { background: var(--teal); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  padding: 5rem 2.5rem 5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 0.35rem 0.9rem;
  border-radius: 40px;
  margin-bottom: 1.5rem;
  border: none;
  box-shadow: none;
}

.hero-headline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 430px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--teal);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  border: none;
  box-shadow: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--purple);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.btn-secondary:hover { color: var(--purple); }

/* Hero visual */
.hero-visual { position: relative; }

.hero-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: none;
  box-shadow: none;
}

.card-mockup { position: relative; overflow: hidden; aspect-ratio: 4/3; }

.card-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.card-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.85rem;
  border-radius: 40px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  box-shadow: none;
}

.card-meta {
  padding: 1.4rem 1.6rem;
  border-top: 1px solid var(--border);
}

.card-meta-inner { display: flex; justify-content: space-between; align-items: center; }

.card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

.card-sub { font-size: 0.78rem; color: var(--fg-muted); }

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.stat { display: flex; flex-direction: column; gap: 0.2rem; padding: 0 3rem; }
.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: -0.02em;
}

.stat-label { font-size: 0.8rem; color: var(--fg-muted); }

.stat-divider { width: 1px; height: 3rem; background: var(--border); }

/* ── PRODUCT / WHAT'S INSIDE ── */
.product {
  background: var(--bg-section);
  padding: 7rem 2.5rem;
}

.product-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--lavender);
  padding: 0.35rem 0.9rem;
  border-radius: 40px;
  margin-bottom: 1.25rem;
  border: none;
  box-shadow: none;
}

.product-headline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.product-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.product-checklist { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

.product-checklist li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--fg);
  font-weight: 500;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: none;
  box-shadow: none;
}

/* Page grid */
.page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.page-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: none;
  box-shadow: none;
  position: relative;
}

.page-card.p1 { grid-column: span 2; }

.page-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.page-card.p1 .page-img { height: 230px; }

.page-cap {
  padding: 0.9rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--card-bg);
  border-top: 1px solid var(--border);
}

/* ── FEATURES ── */
.features {
  padding: 7rem 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.features-header { margin-bottom: 4rem; }

.features-headline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: none;
  transition: transform 0.2s;
}

.feature:hover {
  transform: translateY(-3px);
}

.feature-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 40px;
  background: var(--lavender);
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
}

.feature-text h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.feature-text p { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.65; }

/* ── VIBE / QUOTE ── */
.vibe {
  background: var(--bg-alt);
  padding: 7rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.vibe-bg {
  position: absolute;
  inset: 0;
  background: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_177846/472c9051-ffa8-46b2-98c5-611fa9e761f1.jpg') center/cover no-repeat;
  opacity: 0.06;
}

.vibe-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.vibe-quote blockquote {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  font-style: normal;
  color: var(--fg);
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.vibe-attr {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--purple);
  padding: 6rem 2.5rem;
  text-align: center;
}

.cta-band-inner { max-width: 600px; margin: 0 auto; }

.cta-band h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  background: var(--teal);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 40px;
  text-decoration: none;
  border: none;
  box-shadow: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-cta:hover {
  background: var(--lavender);
  color: var(--purple);
  transform: translateY(-2px);
}

.cta-note {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ── FOOTER ── */
.footer {
  padding: 4rem 2.5rem 3rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.footer-tagline { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 0.5rem; }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 40px;
  background: var(--lavender);
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.social-link:hover { background: var(--purple); color: #fff; }

.footer-copy { font-size: 0.75rem; color: var(--fg-light); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-tagline { display: none; }

  .hero { padding: 3rem 1.5rem 3.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-headline { font-size: 2.2rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .stat { padding: 0; }
  .stat-divider { display: none; }

  .product { padding: 4.5rem 1.5rem; }
  .product-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .page-grid { grid-template-columns: 1fr 1fr; }

  .features { padding: 4.5rem 1.5rem; }
  .feature-list { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature { padding: 1.25rem; }

  .vibe { padding: 4.5rem 1.5rem; }
  .cta-band { padding: 4.5rem 1.5rem; }

  .footer { padding: 3rem 1.5rem 2rem; }
}

@media (max-width: 480px) {
  .page-grid { grid-template-columns: 1fr; }
  .page-card.p1 { grid-column: span 1; }
}