/* PixIt Shared Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@1,700;1,800;1,900&display=swap');

:root {
  --cream: #EDEADE;
  --black: #1A1A1A;
  --pink: #E8185A;
  --lime: #C8F135;
  --salmon: #E8A898;
  --blue: #9BBDE8;
  --olive: #6B7D2A;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

@media (hover: hover) {
  body { cursor: none; }
  a, button, [role="button"] { cursor: none; }
}

/* ── Cursor ────────────────────────────────── */
.cursor-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: white;
  mix-blend-mode: difference;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: background 0.2s ease, transform 0.1s ease;
}
.cursor-ring {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid white;
  mix-blend-mode: difference;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.cursor-dot.expanded { transform: translate(-50%,-50%) scale(0); }
.cursor-ring.expanded { width: 52px; height: 52px; background: rgba(232,24,90,0.08); border-color: var(--pink); }

/* ── PixIt Wordmark ────────────────────────── */
.pixit {
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
  text-decoration: none;
}
.pixit-pix {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.03em;
}
.pixit-it {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-style: italic;
  color: var(--pink);
  letter-spacing: -0.01em;
}

/* ── Navigation ────────────────────────────── */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  width: calc(100% - 48px);
  max-width: 1120px;
}
.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px 13px 28px;
  border-radius: 100px;
  background: rgba(237,234,222,0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(26,26,26,0.07);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.nav-pill.opaque {
  background: rgba(237,234,222,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
  border-color: rgba(26,26,26,0.1);
}
.nav-logo { font-size: 21px; }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  opacity: 0.55;
  letter-spacing: 0.01em;
  transition: opacity 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--black);
  transition: width 0.25s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { opacity: 1; }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--black);
  color: white;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.nav-cta:hover { background: var(--pink); transform: scale(1.04); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 100px;
  background: var(--black);
  color: white;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-ig svg { width: 18px; height: 18px; }
.nav-ig:hover { background: var(--pink); transform: scale(1.06); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ───────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 490;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-size: 36px;
  font-weight: 900;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}
.mobile-menu a:hover { color: var(--pink); }
.mobile-menu .mobile-cta {
  margin-top: 16px;
  background: var(--black);
  color: white;
  padding: 16px 40px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
}

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  letter-spacing: 0.005em;
}
.btn:hover { transform: translateY(-2px); }
.btn-black { background: var(--black); color: white; }
.btn-black:hover { box-shadow: 0 10px 30px rgba(26,26,26,0.3); }
.btn-outline-black { background: transparent; color: var(--black); border: 1.5px solid var(--black); }
.btn-outline-black:hover { background: var(--black); color: white; }
.btn-outline-white { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: white; color: var(--black); }
.btn-pink { background: var(--pink); color: white; }
.btn-pink:hover { box-shadow: 0 10px 30px rgba(232,24,90,0.35); }
.btn-lime { background: var(--lime); color: var(--black); }
.btn-lime:hover { box-shadow: 0 10px 30px rgba(200,241,53,0.4); }

/* ── Section Basics ────────────────────────── */
.section { padding: 120px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 20px;
}
.section-heading {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.section-heading em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--pink);
  font-weight: 800;
}
.section-sub {
  font-size: 17px;
  line-height: 1.65;
  opacity: 0.55;
  max-width: 580px;
}

/* ── Polaroid ──────────────────────────────── */
.polaroid-wrap {
  position: relative;
  display: inline-block;
}
.polaroid {
  background: white;
  padding: 10px 10px 38px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  transition: box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.polaroid:hover { box-shadow: 0 20px 70px rgba(0,0,0,0.18); }
.polaroid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.polaroid-caption {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 11.5px;
  color: #999;
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.03em;
}

/* ── Marquee ───────────────────────────────── */
.marquee-bar {
  overflow: hidden;
  background: var(--black);
  padding: 16px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marqueeScroll 22s linear infinite;
}
.marquee-bar:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.marquee-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Scroll Progress ───────────────────────── */
.scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--pink);
  z-index: 600;
  width: 0%;
  transition: width 0.05s linear;
}

/* ── Reveal Animations ─────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right.in { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* ── Footer ────────────────────────────────── */
footer {
  background: var(--black);
  color: white;
  padding: 72px 48px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 64px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.4;
  margin-top: 16px;
  max-width: 220px;
}
.footer-col h4 {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.28;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  opacity: 0.6;
  margin-bottom: 13px;
  transition: opacity 0.2s ease, padding-left 0.2s ease;
}
.footer-col a:hover { opacity: 1; padding-left: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; opacity: 0.28; }
.footer-bottom a { color: white; text-decoration: none; opacity: 0.4; font-size: 13px; transition: opacity 0.2s; }
.footer-bottom a:hover { opacity: 0.7; }

/* ── Stat Cards ────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(26,26,26,0.09);
}
.stat-card {
  padding: 56px 44px;
  border-right: 1px solid rgba(26,26,26,0.09);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.stat-card:last-child { border-right: none; }
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.stat-card:hover::before { transform: translateY(0); }
.stat-card:hover .stat-number,
.stat-card:hover .stat-label { color: white; }
.stat-number {
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  transition: color 0.3s ease;
}
.stat-suffix { color: var(--pink); }
.stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
  position: relative;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.stat-card:hover .stat-label { opacity: 0.6; }

/* ── Download Section ──────────────────────── */
.download-section {
  background: var(--cream);
  padding: 120px 48px;
  text-align: center;
  border-top: 1px solid rgba(26,26,26,0.07);
}
.store-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 30px;
  border-radius: 16px;
  background: var(--black);
  color: white;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
}
.store-badge:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
.badge-text { text-align: left; }
.badge-sub { font-size: 10px; opacity: 0.5; display: block; letter-spacing: 0.05em; }
.badge-name { font-size: 17px; font-weight: 700; display: block; }
.badge-icon { opacity: 0.9; }

/* ── Tab Toggle ────────────────────────────── */
.tab-toggle {
  display: inline-flex;
  background: rgba(26,26,26,0.06);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 56px;
}
.tab-btn {
  padding: 10px 26px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--black);
  opacity: 0.45;
  transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}
.tab-btn.active {
  background: var(--black);
  color: white;
  opacity: 1;
}

/* ── Steps ─────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step-num {
  font-size: 80px;
  font-weight: 900;
  color: var(--black);
  opacity: 0.05;
  line-height: 1;
  margin-bottom: -12px;
}
.step-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--black);
}
.step-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--black);
  opacity: 0.5;
}

/* ── Page Hero (non-home) ──────────────────── */
.page-hero {
  padding: 180px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 24px;
}
.page-hero-heading {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 28px;
}
.page-hero-heading em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--pink);
  font-weight: 800;
}
.page-hero-sub {
  font-size: 18px;
  line-height: 1.65;
  opacity: 0.5;
  max-width: 600px;
  margin-bottom: 40px;
}

/* ── Split Sections ────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split-card {
  padding: 80px 64px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.split-card-label {
  position: absolute;
  top: 48px; left: 64px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.4;
}
.split-card h2 {
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 18px;
}
.split-card p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 32px;
  opacity: 0.7;
}

/* ── Feature Grid ──────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(26,26,26,0.08);
}
.feature-card {
  background: var(--cream);
  padding: 48px 44px;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 44px;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width 0.4s ease;
}
.feature-card:hover::after { width: calc(100% - 88px); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.feature-card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14.5px;
  line-height: 1.65;
  opacity: 0.5;
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(26,26,26,0.09); }
  .stat-card:last-child { border-bottom: none; }
  .split-section { grid-template-columns: 1fr; }
  .split-card { min-height: 380px; padding: 56px 40px; }
  .split-card-label { left: 40px; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 24px; }
  footer { padding: 64px 24px 36px; }
  .footer-bottom { padding-top: 24px; }
  .page-hero { padding: 160px 24px 80px; }
  .download-section { padding: 80px 24px; }
}

@media (max-width: 600px) {
  .nav { width: calc(100% - 32px); top: 16px; }
  .nav-pill { padding: 11px 16px 11px 22px; }
  .nav-logo { font-size: 19px; }
  .nav-cta { display: none; }
  .nav-ig { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .store-badges { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
}

/* ── Legal pages (privacy, terms, cookies) ─── */
.legal-hero {
  padding: 180px 24px 60px;
  max-width: 720px;
  margin: 0 auto;
}
.legal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}
.legal-hero h1 {
  font-size: clamp(44px, 8vw, 92px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-wrap: balance;
}
.legal-hero h1 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 800;
  color: var(--pink);
}
.legal-stamp {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1.5px solid rgba(26, 26, 26, 0.14);
  font-size: 13px;
  font-weight: 500;
  color: rgba(26, 26, 26, 0.6);
  line-height: 1.6;
}
.legal-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 120px;
}
.legal-section { margin-bottom: 52px; }
.legal-section h2 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.legal-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--pink);
  flex-shrink: 0;
}
.legal-section p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.78);
  margin-bottom: 14px;
}
.legal-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.legal-section li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.78);
}
.legal-section li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
}
.legal-section strong { font-weight: 700; color: var(--black); }
.legal-section a { color: var(--pink); font-weight: 600; }

/* A figure that carries a term: the number is the point, so it leads. */
.legal-figures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5px;
  background: rgba(26, 26, 26, 0.14);
  border: 1.5px solid rgba(26, 26, 26, 0.14);
  border-radius: 14px;
  overflow: hidden;
  margin: 22px 0 6px;
}
.legal-figure { background: var(--cream); padding: 20px; }
.legal-figure b {
  display: block;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--black);
  margin-bottom: 4px;
}
.legal-figure span {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(26, 26, 26, 0.6);
}

.legal-contact {
  margin-top: 8px;
  padding: 28px;
  background: var(--black);
  color: var(--cream);
  border-radius: 18px;
}
.legal-contact p { color: rgba(237, 234, 222, 0.78); }
.legal-contact strong { color: var(--cream); }
.legal-contact a { color: var(--lime); }

.legal-note {
  margin-top: 22px;
  padding-left: 16px;
  border-left: 3px solid var(--pink);
}
.legal-note p { margin-bottom: 0; font-size: 15px; }

@media (max-width: 640px) {
  .legal-hero { padding: 140px 24px 44px; }
  .legal-section h2 { flex-direction: column; gap: 6px; }
}
