/* ========================================
   softpxl — screens, elevated.
   ======================================== */

/* ---- Theme Variables ---- */
[data-theme="dark"] {
  --bg: #050505;
  --bg-secondary: #0a0a0a;
  --bg-card: rgba(255, 255, 255, 0.025);
  --bg-card-hover: rgba(255, 255, 255, 0.05);
  --text: #e8e8e8;
  --text-secondary: #666;
  --text-tertiary: #444;
  --accent-rose: #e8b4b8;
  --accent-periwinkle: #b8c1e8;
  --accent-gradient: linear-gradient(135deg, #e8b4b8, #b8c1e8);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --nav-bg: rgba(5, 5, 5, 0.7);
  --phone-bezel: #1a1a1a;
  --phone-island: #000;
  --noise-opacity: 0.025;
  --orb-opacity: 0.25;
  --btn-text: #0a0a0a;
  --feature-icon-bg: rgba(232, 180, 184, 0.08);
  --card-preview-bg: #161616;
  --modal-bg: #0a0a0a;
}

[data-theme="light"] {
  --bg: #f8f8f8;
  --bg-secondary: #ffffff;
  --bg-card: rgba(0, 0, 0, 0.025);
  --bg-card-hover: rgba(0, 0, 0, 0.05);
  --text: #1a1a1a;
  --text-secondary: #666;
  --text-tertiary: #999;
  --accent-rose: #c4868c;
  --accent-periwinkle: #7b8ac4;
  --accent-gradient: linear-gradient(135deg, #d4969b, #8e9cd4);
  --border: rgba(0, 0, 0, 0.07);
  --border-hover: rgba(0, 0, 0, 0.14);
  --nav-bg: rgba(248, 248, 248, 0.8);
  --phone-bezel: #1a1a1a;
  --phone-island: #000;
  --noise-opacity: 0.015;
  --orb-opacity: 0.18;
  --btn-text: #fff;
  --feature-icon-bg: rgba(196, 134, 140, 0.1);
  --card-preview-bg: #efefef;
  --modal-bg: #f8f8f8;
}

/* ---- Reset ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background 0.5s ease, color 0.4s ease;
}

a { text-decoration: none; color: inherit; transition: opacity 0.3s ease; }
a:hover { opacity: 0.8; }

::selection { background: rgba(232, 180, 184, 0.3); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ---- Noise ---- */
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: var(--noise-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 256px 256px;
}

/* ---- Fade-in ---- */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- Navigation ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 48px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: var(--nav-bg); border-bottom: 1px solid var(--border);
  transition: background 0.5s ease, border-color 0.4s ease;
}
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: inline-flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 500; letter-spacing: 0.08em; color: var(--text); transition: color 0.4s ease; }
.logo-img { height: 22px; width: 22px; object-fit: contain; }
[data-theme="dark"] .logo-for-dark { display: block; }
[data-theme="dark"] .logo-for-light { display: none; }
[data-theme="light"] .logo-for-dark { display: none; }
[data-theme="light"] .logo-for-light { display: block; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-link { font-size: 13px; font-weight: 300; color: var(--text-secondary); letter-spacing: 0.03em; transition: color 0.3s ease; }
.nav-link:hover { color: var(--text); opacity: 1; }

/* ---- Theme Toggle ---- */
.theme-toggle {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--border); border-radius: 50%;
  cursor: pointer; color: var(--text-secondary); transition: all 0.3s ease; position: relative;
}
.theme-toggle:hover { color: var(--text); border-color: var(--border-hover); background: var(--bg-card); }
.theme-toggle .icon-sun, .theme-toggle .icon-moon {
  position: absolute; transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-theme="dark"] .icon-sun { opacity: 1; transform: rotate(0deg) scale(1); }
[data-theme="dark"] .icon-moon { opacity: 0; transform: rotate(-90deg) scale(0.6); }
[data-theme="light"] .icon-sun { opacity: 0; transform: rotate(90deg) scale(0.6); }
[data-theme="light"] .icon-moon { opacity: 1; transform: rotate(0deg) scale(1); }

.nav-cta {
  font-size: 12px; font-weight: 400; letter-spacing: 0.05em; padding: 8px 20px;
  border: 1px solid var(--border); border-radius: 100px; color: var(--text); transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--bg-card-hover); border-color: var(--border-hover); opacity: 1; }

/* ---- Hero ---- */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 120px 48px 80px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }

.gradient-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: var(--orb-opacity); transition: opacity 0.5s ease; }
.orb-1 { width: 400px; height: 400px; background: var(--accent-rose); top: 10%; left: 20%; animation: float-1 12s ease-in-out infinite; }
.orb-2 { width: 350px; height: 350px; background: var(--accent-periwinkle); top: 30%; right: 15%; animation: float-2 15s ease-in-out infinite; }
.orb-3 { width: 300px; height: 300px; background: #c4b5fd; bottom: 10%; left: 40%; animation: float-3 18s ease-in-out infinite; }
.orb-4 { width: 350px; height: 350px; background: var(--accent-rose); top: 20%; right: 20%; animation: float-1 14s ease-in-out infinite; }
.orb-5 { width: 300px; height: 300px; background: var(--accent-periwinkle); bottom: 20%; left: 25%; animation: float-2 16s ease-in-out infinite; }

@keyframes float-1 { 0%, 100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-40px) scale(1.05); } 66% { transform: translate(-20px,20px) scale(0.95); } }
@keyframes float-2 { 0%, 100% { transform: translate(0,0) scale(1); } 33% { transform: translate(-40px,30px) scale(0.95); } 66% { transform: translate(20px,-30px) scale(1.05); } }
@keyframes float-3 { 0%, 100% { transform: translate(0,0) scale(1); } 33% { transform: translate(20px,40px) scale(1.08); } 66% { transform: translate(-30px,-20px) scale(0.92); } }

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 640px; margin-bottom: 80px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-rose);
  padding: 6px 16px; border: 1px solid rgba(232,180,184,0.2); border-radius: 100px; margin-bottom: 40px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-rose); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

.hero h1 { font-size: clamp(40px, 7vw, 72px); font-weight: 200; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 24px; }
[data-theme="dark"] .hero h1 { background: linear-gradient(180deg, var(--text) 0%, rgba(232,232,232,0.6) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
[data-theme="light"] .hero h1 { background: linear-gradient(180deg, #1a1a1a 0%, rgba(26,26,26,0.65) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero-sub { font-size: 15px; font-weight: 300; color: var(--text-secondary); line-height: 1.7; margin-bottom: 40px; letter-spacing: 0.01em; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 400; letter-spacing: 0.04em; padding: 14px 28px;
  background: var(--accent-gradient); color: var(--btn-text); border: none; border-radius: 100px;
  cursor: pointer; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden;
}
.btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent); opacity: 0; transition: opacity 0.3s ease; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,180,184,0.25); opacity: 1; }
.btn-primary:hover::before { opacity: 1; }
.btn-large { padding: 16px 36px; font-size: 14px; }

.hero-stat { font-size: 12px; font-weight: 300; color: var(--text-tertiary); letter-spacing: 0.03em; }

/* ---- Hero Devices ---- */
.hero-devices { position: relative; z-index: 2; display: flex; align-items: flex-end; justify-content: center; gap: 24px; }
.phone-hero-1 { transform: rotate(-6deg) translateY(20px); }
.phone-hero-2 { transform: translateY(0); }
.phone-hero-3 { transform: rotate(6deg) translateY(20px); }

/* ---- Phone Mockup ---- */
.phone-bezel {
  width: 200px; aspect-ratio: 9 / 19.5; background: var(--phone-bezel);
  border-radius: 32px; padding: 8px; position: relative;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 2px 8px rgba(0,0,0,0.4), 0 12px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}
.dynamic-island { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 72px; height: 20px; background: var(--phone-island); border-radius: 10px; z-index: 3; }
.phone-screen { width: 100%; height: 100%; border-radius: 24px; overflow: hidden; position: relative; background: #000; }
.wallpaper-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }

/* ---- Social Proof ---- */
.social-proof { display: flex; align-items: center; justify-content: center; gap: 48px; padding: 80px 48px; max-width: 800px; margin: 0 auto; }
.proof-item { text-align: center; }
.proof-number { display: block; font-size: 32px; font-weight: 200; letter-spacing: -0.02em; color: var(--text); line-height: 1; margin-bottom: 8px; transition: color 0.4s ease; }
.proof-label { font-size: 12px; font-weight: 400; color: var(--text-tertiary); letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.4s ease; }
.proof-divider { width: 1px; height: 40px; background: var(--border); transition: background 0.4s ease; }

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag { display: inline-block; font-size: 11px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-rose); margin-bottom: 20px; transition: color 0.4s ease; }
.section-header h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 200; letter-spacing: -0.02em; margin-bottom: 16px; transition: color 0.4s ease; }
.section-sub { font-size: 14px; font-weight: 300; color: var(--text-secondary); letter-spacing: 0.01em; transition: color 0.4s ease; }

/* ---- Collection: Bundle Grid ---- */
.collection { padding: 120px 48px; max-width: 1200px; margin: 0 auto; }

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.bundle-card { cursor: pointer; }

.bundle-preview {
  background: var(--card-preview-bg);
  border-radius: 16px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 32px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bundle-card:hover .bundle-preview {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

/* Phone preview inside bundle card */
.preview-phone {
  max-height: 100%;
  display: flex;
  align-items: center;
}

.preview-phone .phone-bezel {
  width: 100px;
  border-radius: 20px;
  padding: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.preview-phone .dynamic-island {
  width: 40px;
  height: 12px;
  top: 10px;
  border-radius: 6px;
}

.preview-phone .phone-screen {
  border-radius: 15px;
}

/* Mac preview inside bundle card */
.preview-mac {
  position: relative;
  width: 75%;
}

.mac-frame {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.mac-wallpaper {
  position: absolute;
  top: 2.73%;
  left: 2.29%;
  width: 95.5%;
  height: 63.9%;
  z-index: 1;
  background-size: cover;
  background-position: center;
}

/* Coming soon overlay */
.coming-soon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  z-index: 5;
}

[data-theme="light"] .coming-soon-badge {
  background: rgba(255, 255, 255, 0.8);
  color: #333;
}

/* Bundle meta below card */
.bundle-meta { padding: 16px 4px 0; }

.bundle-name {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  transition: color 0.4s ease;
}

.bundle-details {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}

.bundle-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-tertiary);
}

/* ---- Bundle Modal ---- */
.bundle-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.bundle-modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

[data-theme="light"] .modal-overlay {
  background: rgba(255, 255, 255, 0.75);
}

.modal-content {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1050px;
  max-height: 90vh;
  background: var(--modal-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow-y: auto;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bundle-modal.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-content::-webkit-scrollbar { width: 4px; }
.modal-content::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.modal-top-bar {
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
}

.modal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.modal-back:hover { color: var(--text); }

/* Product Layout — two columns */
.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 500px;
}

/* Left: Preview */
.product-preview {
  background: var(--card-preview-bg);
  padding: 48px 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-radius: 0 0 0 24px;
}

.product-preview-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.product-preview-main .phone-bezel {
  width: 180px;
  border-radius: 30px;
  padding: 7px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.product-preview-main .dynamic-island {
  width: 64px;
  height: 18px;
  top: 15px;
  border-radius: 9px;
}

.product-preview-main .phone-screen {
  border-radius: 23px;
}

.product-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.thumb-swatch {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  background-size: cover;
}

.thumb-swatch:hover {
  transform: scale(1.1);
}

.thumb-swatch.active {
  border-color: var(--accent-rose);
  box-shadow: 0 0 0 2px rgba(232, 180, 184, 0.3);
}

/* Right: Details */
.product-details {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.product-details h2 {
  font-size: 32px;
  font-weight: 200;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.product-price {
  font-size: 20px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.01em;
}

.product-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.product-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.product-includes {
  margin-bottom: 32px;
}

.includes-label {
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  color: var(--text);
}

.product-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
}

.product-includes li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-rose);
  flex-shrink: 0;
}

.product-buy {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding: 16px 32px;
  font-size: 14px;
}

/* ---- Exclusives ---- */
.exclusives {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.exclusives-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.exclusive-card { cursor: pointer; }

.exclusive-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  background: var(--accent-gradient);
  color: var(--btn-text);
  border-radius: 100px;
  z-index: 5;
}

/* ---- Features ---- */
.features { padding: 120px 48px; max-width: 1000px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.feature-card {
  padding: 40px 32px; border: 1px solid var(--border); border-radius: 20px;
  background: var(--bg-card); text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover { background: var(--bg-card-hover); border-color: var(--border-hover); transform: translateY(-4px); }

.feature-icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; border-radius: 12px; background: var(--feature-icon-bg); color: var(--accent-rose);
  transition: background 0.4s ease, color 0.4s ease;
}
.feature-card h3 { font-size: 14px; font-weight: 400; letter-spacing: 0.03em; margin-bottom: 12px; transition: color 0.4s ease; }
.feature-card p { font-size: 13px; font-weight: 300; color: var(--text-secondary); line-height: 1.6; transition: color 0.4s ease; }

/* ---- Testimonials ---- */
.testimonials { padding: 120px 0; overflow: hidden; }
.testimonials .section-header { padding: 0 48px; }

.carousel-wrapper {
  width: 100%; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.carousel-track { display: flex; gap: 24px; animation: scroll-carousel 40s linear infinite; width: max-content; }
@keyframes scroll-carousel { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.carousel-track:hover { animation-play-state: paused; }

.testimonial-card {
  flex-shrink: 0; width: 340px; padding: 32px; border: 1px solid var(--border);
  border-radius: 20px; background: var(--bg-card); transition: all 0.3s ease;
}
.testimonial-card:hover { background: var(--bg-card-hover); border-color: var(--border-hover); }

.stars { display: flex; gap: 2px; color: var(--accent-rose); margin-bottom: 16px; transition: color 0.4s ease; }
.testimonial-text { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--text); margin-bottom: 24px; letter-spacing: 0.01em; transition: color 0.4s ease; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--accent-gradient); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 500; color: var(--btn-text); }
.author-name { display: block; font-size: 13px; font-weight: 400; color: var(--text); transition: color 0.4s ease; }
.author-handle { font-size: 11px; font-weight: 300; color: var(--text-tertiary); transition: color 0.4s ease; }

/* ---- Pricing ---- */
.pricing { padding: 120px 48px; max-width: 1100px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }

.pricing-card {
  padding: 40px 32px; border: 1px solid var(--border); border-radius: 28px;
  background: var(--bg-card); position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.pricing-card.popular { border-color: rgba(232,180,184,0.25); }
[data-theme="dark"] .pricing-card.popular { background: rgba(232,180,184,0.03); }
[data-theme="light"] .pricing-card.popular { background: rgba(196,134,140,0.04); }
.pricing-card.popular:hover { border-color: rgba(232,180,184,0.4); box-shadow: 0 0 80px rgba(232,180,184,0.08); }

.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 16px; background: var(--accent-gradient); color: var(--btn-text);
  border-radius: 100px; white-space: nowrap;
}

.pricing-header { text-align: center; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.pricing-name { font-size: 13px; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-secondary); display: block; margin-bottom: 16px; transition: color 0.4s ease; }
.pricing-amount { margin-bottom: 12px; }
.price { font-size: 40px; font-weight: 200; letter-spacing: -0.03em; color: var(--text); transition: color 0.4s ease; }
.pricing-desc { font-size: 13px; font-weight: 300; color: var(--text-tertiary); transition: color 0.4s ease; }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 300; color: var(--text-secondary); transition: color 0.4s ease; }
.pricing-features li svg { flex-shrink: 0; color: var(--accent-rose); transition: color 0.4s ease; }

.btn-checkout {
  display: block; width: 100%; padding: 14px; font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 400; letter-spacing: 0.04em; color: var(--text);
  background: transparent; border: 1px solid var(--border); border-radius: 100px;
  cursor: pointer; transition: all 0.3s ease;
}
.btn-checkout:hover { background: var(--bg-card-hover); border-color: var(--border-hover); }
.btn-checkout-primary { background: var(--accent-gradient); color: var(--btn-text); border-color: transparent; font-weight: 500; }
.btn-checkout-primary:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(232,180,184,0.25); background: var(--accent-gradient); border-color: transparent; }

/* ---- Final CTA ---- */
.final-cta { position: relative; padding: 160px 48px; text-align: center; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; overflow: hidden; }
.final-cta-content { position: relative; z-index: 2; }
.final-cta h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 200; letter-spacing: -0.02em; margin-bottom: 16px; transition: color 0.4s ease; }
.final-cta p { font-size: 14px; font-weight: 300; color: var(--text-secondary); margin-bottom: 40px; transition: color 0.4s ease; }

/* ---- Footer ---- */
.footer { padding: 0 48px; border-top: 1px solid var(--border); transition: border-color 0.4s ease; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 48px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 12px; font-weight: 300; color: var(--text-tertiary); margin-top: 4px; transition: color 0.4s ease; }
.footer-links { display: flex; gap: 32px; }
.footer-links a { font-size: 13px; font-weight: 300; color: var(--text-secondary); transition: color 0.3s ease; }
.footer-links a:hover { color: var(--text); opacity: 1; }
.footer-social { display: flex; gap: 16px; }
.social-link { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 50%; color: var(--text-secondary); transition: all 0.3s ease; }
.social-link:hover { color: var(--text); border-color: var(--border-hover); background: var(--bg-card); opacity: 1; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 24px 0; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 11px; font-weight: 300; color: var(--text-tertiary); letter-spacing: 0.03em; transition: color 0.4s ease; }

/* ---- Body lock when modal open ---- */
body.modal-open { overflow: hidden; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .bundle-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .hero { padding: 120px 24px 60px; }
  .collection { padding: 80px 24px; }
  .exclusives { padding: 80px 24px; }
  .exclusives-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .features { padding: 80px 24px; }
  .testimonials { padding: 80px 0; }
  .testimonials .section-header { padding: 0 24px; }
  .pricing { padding: 80px 24px; }
  .final-cta { padding: 120px 24px; }
  .footer { padding: 0 24px; }

  .hero h1 { font-size: 36px; }
  .hero-sub br { display: none; }
  .hero-devices { gap: 12px; }
  .hero-devices .phone-bezel { width: 140px; }
  .phone-hero-1 { transform: rotate(-8deg) translateY(16px); }
  .phone-hero-3 { transform: rotate(8deg) translateY(16px); }

  .social-proof { gap: 24px; padding: 60px 24px; flex-wrap: wrap; }
  .proof-divider { display: none; }
  .proof-item { flex: 1; min-width: 80px; }

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

  .pricing-grid { grid-template-columns: 1fr; gap: 16px; max-width: 400px; margin: 0 auto; }
  .footer-inner { flex-direction: column; gap: 32px; text-align: center; }
  .nav-links { gap: 16px; }
  .nav-link { display: none; }

  .modal-content { border-radius: 20px; }
  .product-layout { grid-template-columns: 1fr; }
  .product-preview { border-radius: 0; padding: 32px 24px 24px; }
  .product-preview-main .phone-bezel { width: 150px; }
  .product-details { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .hero-devices { gap: 8px; }
  .hero-devices .phone-bezel { width: 110px; border-radius: 22px; padding: 5px; }
  .hero-devices .phone-screen { border-radius: 17px; }
  .hero-devices .dynamic-island { width: 48px; height: 14px; top: 10px; border-radius: 7px; }

  .bundle-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .bundle-preview { padding: 20px; }
  .preview-phone .phone-bezel { width: 80px; border-radius: 16px; padding: 4px; }
  .preview-phone .phone-screen { border-radius: 12px; }
  .preview-phone .dynamic-island { width: 32px; height: 9px; top: 7px; border-radius: 5px; }

  .proof-number { font-size: 24px; }

  .modal-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-wall-card .phone-bezel { width: 110px; border-radius: 22px; padding: 5px; }
  .modal-wall-card .phone-screen { border-radius: 17px; }
  .modal-wall-card .dynamic-island { width: 48px; height: 14px; top: 10px; border-radius: 7px; }
}

/* ---- Page Load ---- */
@keyframes page-in { from { opacity: 0; } to { opacity: 1; } }
body { animation: page-in 0.8s ease forwards; }
