/** Shopify CDN: Minification failed

Line 94:11 Expected identifier but found "0.3em"
Line 103:10 Expected identifier but found "0.85"
Line 104:10 Expected identifier but found "0.9"
Line 162:5 Unexpected ".5"
Line 164:5 Unexpected ".5"
Line 201:6 Unexpected ".5"
Line 203:6 Unexpected ".5"
Line 213:8 Unexpected ".5"

**/
/* ==========================================================================
   BrandJet™ — Shopify Theme Stylesheet
   Compatible with Dawn theme. All sections styled here.
   ========================================================================== */

/* ----- CSS Custom Properties (BrandJet Design Tokens) ----- */
:root {
  /* Stone palette (warm neutral) */
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --stone-950: #0c0a09;

  /* Accent colors */
  --green-50: #f0fdf4;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-50: #fef2f2;
  --amber-400: #fbbf24;
  --blue-accent: #007aff;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --max-w-7xl: 1280px;
  --max-w-5xl: 1024px;
  --max-w-4xl: 896px;
  --max-w-3xl: 768px;
}

/* ----- Reset & Base ----- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--stone-50);
  color: var(--stone-600);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ----- Typography Utilities ----- */
.font-serif { font-family: var(--font-serif); }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.text-8xl { font-size: 6rem; }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-widest { letter-spacing: 0.15em; }
.tracking-[0.3em] { letter-spacing: 0.3em; }
.uppercase { text-transform: uppercase; }
.line-through { text-decoration: line-through; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.leading-none { line-height: 1; }
.leading-relaxed { line-height: 1.625; }
.leading-snug { line-height: 1.375; }
.leading-[0.85] { line-height: 0.85; }
.leading-[0.9] { line-height: 0.9; }

/* ----- Color Utilities ----- */
.text-stone-50 { color: var(--stone-50); }
.text-stone-100 { color: var(--stone-100); }
.text-stone-200 { color: var(--stone-200); }
.text-stone-300 { color: var(--stone-300); }
.text-stone-400 { color: var(--stone-400); }
.text-stone-500 { color: var(--stone-500); }
.text-stone-600 { color: var(--stone-600); }
.text-stone-700 { color: var(--stone-700); }
.text-stone-900 { color: var(--stone-900); }
.text-white { color: #fff; }
.text-green-400 { color: var(--green-400); }
.text-green-500 { color: var(--green-500); }
.text-green-600 { color: var(--green-600); }
.text-green-700 { color: var(--green-700); }
.text-red-400 { color: var(--red-400); }
.text-red-600 { color: #dc2626; }
.text-amber-400 { color: var(--amber-400); }
.text-amber-700 { color: #b45309; }
.text-amber-800 { color: #92400e; }
.bg-stone-50 { background: var(--stone-50); }
.bg-stone-100 { background: var(--stone-100); }
.bg-stone-200 { background: var(--stone-200); }
.bg-stone-800 { background: var(--stone-800); }
.bg-stone-900 { background: var(--stone-900); }
.bg-stone-950 { background: var(--stone-950); }
.bg-white { background: #fff; }
.bg-green-50 { background: var(--green-50); }
.bg-red-50 { background: var(--red-50); }
.bg-amber-50 { background: #fffbeb; }
.bg-amber-200 { background: #fde68a; }
.bg-amber-500 { background: var(--amber-400); }
.bg-amber-700 { background: #b45309; }
.bg-green-600 { background: var(--green-600); }
.bg-red-500 { background: var(--red-500); }
.bg-blue-accent { background: var(--blue-accent); }
.fill-amber-400 { fill: var(--amber-400); }
.fill-green-400 { fill: var(--green-400); }

/* ----- Layout Utilities ----- */
.max-w-7xl { max-width: var(--max-w-7xl); }
.max-w-5xl { max-width: var(--max-w-5xl); }
.max-w-4xl { max-width: var(--max-w-4xl); }
.max-w-3xl { max-width: var(--max-w-3xl); }
.max-w-2xl { max-width: 672px; }
.max-w-xl { max-width: 576px; }
.max-w-lg { max-width: 512px; }
.max-w-md { max-width: 448px; }
.max-w-sm { max-width: 384px; }
.max-w-xs { max-width: 320px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-16 { padding-top: 4rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-24 { padding-bottom: 6rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.gap-1 { gap: 0.25rem; }
.gap-1.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }
.gap-x-5 { column-gap: 1.25rem; }
.gap-x-12 { column-gap: 3rem; }
.gap-y-1.5 { row-gap: 0.375rem; }
.gap-y-6 { row-gap: 1.5rem; }
.sm\:px-6 { }
.sm\:py-3 { }
.lg\:px-8 { }
.lg\:py-20 { }
.lg\:py-28 { }
.lg\:gap-8 { }
.lg\:gap-16 { }
.lg\:gap-20 { }

/* Flexbox & Grid */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-baseline { align-items: baseline; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-6 { grid-template-columns: repeat(6, 1fr); }
.items-stretch { align-items: stretch; }
.self-start { align-self: flex-start; }

/* Sizing */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-full { height: 100%; }
.h-90vh { height: 90vh; }
.min-h-600 { min-height: 600px; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-4-3 { aspect-ratio: 4 / 3; }
.aspect-4-5 { aspect-ratio: 4 / 5; }
.aspect-16-9 { aspect-ratio: 16 / 9; }
.aspect-video { aspect-ratio: 16 / 9; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-60 { z-index: 60; }
.z-70 { z-index: 70; }
.z-80 { z-index: 80; }

/* Borders & Radius */
.border { border: 1px solid var(--stone-200); }
.border-2 { border: 2px solid var(--stone-200); }
.border-t { border-top: 1px solid var(--stone-200); }
.border-b { border-bottom: 1px solid var(--stone-200); }
.border-stone-100 { border-color: var(--stone-100); }
.border-stone-200 { border-color: var(--stone-200); }
.border-stone-300 { border-color: var(--stone-300); }
.border-stone-900 { border-color: var(--stone-900); }
.border-white-30 { border-color: rgba(255,255,255,0.3); }
.border-amber-200 { border-color: #fde68a; }
.border-green-200 { border-color: #bbf7d0; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-2rem { border-radius: 2rem; }
.rounded-1-5rem { border-radius: 1.5rem; }
.overflow-hidden { overflow: hidden; }

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px 0 rgba(0,0,0,0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.shadow-glow { box-shadow: 0 20px 50px -12px rgba(28,25,23,0.28); }

/* ----- Component Styles ----- */

/* Announcement Bar */
.announcement-bar {
  background: var(--stone-900);
  color: var(--stone-200);
  text-align: center;
  padding: 0.625rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.announcement-bar strong { color: #fff; }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 249, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231, 229, 228, 0.5);
  transition: all 0.3s;
}
.navbar.scrolled { box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.navbar-inner {
  max-width: var(--max-w-7xl);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.navbar-logo img { height: 2rem; width: auto; }
.navbar-nav { display: none; align-items: center; gap: 2rem; }
.navbar-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--stone-600);
  transition: color 0.2s;
}
.navbar-nav a:hover { color: var(--stone-900); }
.navbar-actions { display: flex; align-items: center; gap: 0.75rem; }
.cart-button {
  position: relative;
  padding: 0.5rem;
  color: var(--stone-600);
  transition: color 0.2s;
  background: none;
  border: 1px solid var(--stone-200);
  border-radius: 0.5rem;
}
.cart-button:hover { color: var(--stone-900); border-color: var(--stone-400); }
.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--stone-900);
  color: var(--stone-50);
  font-size: 10px;
  font-weight: 700;
  border-radius: 9999px;
  min-width: 18px;
  height: 18px;
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-count.visible { display: flex; }
.mobile-menu-btn { display: block; padding: 0.5rem; color: var(--stone-900); background: none; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}
.mobile-menu.open { display: block; }
.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0.3);
  backdrop-filter: blur(4px);
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: var(--stone-50);
  padding: 1.5rem;
  overflow-y: auto;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
}
.cart-drawer.open { display: block; }
.cart-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0.4);
  backdrop-filter: blur(4px);
}
.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 448px;
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  animation: slideIn 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--stone-200);
}
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.cart-drawer-footer {
  border-top: 1px solid var(--stone-200);
  padding: 1.25rem 1.5rem;
}
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--stone-100);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-image {
  width: 64px;
  height: 64px;
  border-radius: 0.5rem;
  background: var(--stone-900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--stone-200);
  border-radius: 9999px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 9999px;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  border: none;
}
.btn-primary {
  background: var(--stone-900);
  color: var(--stone-50);
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
}
.btn-primary:hover { background: var(--stone-800); }
.btn-secondary {
  background: #fff;
  color: var(--stone-900);
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  border: 2px solid var(--stone-900);
}
.btn-secondary:hover { background: var(--stone-900); color: var(--stone-50); }
.btn-blue {
  background: var(--blue-accent);
  color: #fff;
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
}
.btn-blue:hover { opacity: 0.9; }
.btn-white {
  background: #fff;
  color: var(--stone-900);
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.btn-white:hover { background: var(--stone-100); }
.btn-outline-white {
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.badge-dark { background: var(--stone-900); color: var(--stone-50); }
.badge-blue { background: var(--blue-accent); color: #fff; }
.badge-amber { background: var(--amber-400); color: var(--stone-900); }
.badge-green { background: var(--green-50); color: var(--green-700); }
.badge-red { background: var(--red-500); color: #fff; }
.badge-outline { border: 1px solid var(--stone-300); color: var(--stone-600); background: transparent; }

/* Hero */
.hero {
  position: relative;
  min-height: 600px;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,25,23,0.75), rgba(28,25,23,0.3), rgba(28,25,23,0.15));
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 896px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: #fff;
  line-height: 0.85;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
.hero p {
  color: var(--stone-300);
  font-size: 1.125rem;
  font-weight: 300;
  max-width: 512px;
  margin: 0 auto 2.5rem;
}

/* Marquee */
.marquee {
  background: var(--stone-900);
  padding: 0.75rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin: 0 2rem;
}
.marquee-star { color: var(--stone-700); }

/* Section spacing */
.section { padding: 5rem 0; }
.section-lg { padding: 7rem 0; }
.section-dark { background: var(--stone-900); color: var(--stone-400); }

/* Card */
.card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}
.card-hover:hover { box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: var(--stone-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}
.card-hover:hover .card-icon { background: var(--stone-900); }
.card-hover:hover .card-icon svg { color: var(--stone-50); }
.card-icon svg { color: var(--stone-600); transition: color 0.3s; }

/* Pricing cards (premium 3-column) */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  cursor: pointer;
  border-radius: 1rem;
  background: #fff;
  padding: 1.25rem;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 2px solid var(--stone-200);
}
.pricing-card:hover {
  border-color: var(--stone-400);
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.pricing-card.selected {
  border-color: var(--stone-900);
  box-shadow: 0 20px 50px -12px rgba(28,25,23,0.28);
  transform: translateY(-4px) scale(1.03);
  z-index: 10;
}
.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.pricing-card-badge.popular { background: var(--blue-accent); }
.pricing-card-badge.value { background: var(--stone-900); }
.pricing-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--stone-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-bottom: 0.5rem;
  transition: all 0.2s;
}
.pricing-card.selected .pricing-radio {
  border-color: var(--stone-900);
  background: var(--stone-900);
}
.pricing-name {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--stone-400);
  margin-bottom: 0.5rem;
}
.pricing-card.selected .pricing-name { color: var(--stone-900); }
.pricing-price {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--stone-900);
  line-height: 1;
}
.pricing-compare {
  font-size: 0.75rem;
  color: var(--stone-400);
  text-decoration: line-through;
}
.pricing-savings {
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  color: var(--green-700);
  background: var(--green-50);
  padding: 2px 8px;
  border-radius: 9999px;
  margin-top: 6px;
}
.pricing-base-label {
  display: inline-flex;
  font-size: 10px;
  font-weight: 500;
  color: var(--stone-400);
  padding: 2px 8px;
  margin-top: 6px;
}
.pricing-subtitle {
  font-size: 11px;
  color: var(--stone-500);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.375;
}
.pricing-divider {
  border-top: 1px solid var(--stone-100);
  margin-bottom: 0.75rem;
}
.pricing-includes { flex: 1; }
.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 11px;
  line-height: 1.375;
  color: var(--stone-600);
}

/* FAQ Accordion */
.faq-item {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  margin-bottom: 0.75rem;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--stone-900);
  background: none;
  border: none;
}
.faq-chevron { transition: transform 0.3s; color: var(--stone-400); flex-shrink: 0; }
.faq-chevron.open { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-answer.open { max-height: 500px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--stone-600);
  line-height: 1.625;
}

/* Collapsible (product page) */
.collapsible {
  border: 1px solid var(--stone-200);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-top: 0.75rem;
}
.collapsible-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--stone-900);
  background: none;
  border: none;
}
.collapsible-trigger:hover { background: var(--stone-50); }
.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s;
}
.collapsible-content.open { max-height: 600px; }
.collapsible-inner { padding: 0 1rem 1rem; }

/* ROI Calculator */
.roi-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--stone-100);
}
.roi-slider-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--stone-400);
  margin-bottom: 0.5rem;
}
.roi-slider {
  width: 100%;
  accent-color: var(--stone-900);
}
.roi-result-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
}
.roi-result-card.red { background: var(--red-50); }
.roi-result-card.green { background: var(--green-50); }
.roi-result-card.dark { background: var(--stone-900); }
.roi-result-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.roi-result-value {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
}

/* Spec tabs */
.spec-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
  background: rgba(231, 229, 228, 0.5);
  padding: 4px;
  border-radius: 0.75rem;
}
.spec-tab {
  flex: 1;
  padding: 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.5rem;
  color: var(--stone-500);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.spec-tab.active {
  background: #fff;
  color: var(--stone-900);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.spec-tab:hover { color: var(--stone-700); }
.spec-panel { display: none; }
.spec-panel.active { display: block; }
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--stone-100);
}
.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(even) { background: rgba(245, 245, 244, 0.5); }
.spec-row-label { font-size: 0.875rem; color: var(--stone-500); }
.spec-row-value { font-size: 0.875rem; font-weight: 500; color: var(--stone-900); }

/* Footer */
.footer {
  background: var(--stone-900);
  color: var(--stone-400);
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.625; margin-top: 1rem; max-width: 320px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: var(--stone-800);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--stone-700); }
.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--stone-50);
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.625rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--stone-400);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--stone-50); }
.footer-bottom {
  border-top: 1px solid var(--stone-800);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--stone-500);
}

/* Device mockup (on-device-screen section) */
.device-mockup {
  position: relative;
  width: 288px;
  height: 384px;
  background: var(--stone-800);
  border-radius: 2rem;
  padding: 12px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.device-screen {
  width: 100%;
  height: 100%;
  background: var(--stone-950);
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

/* Responsive breakpoints */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 768px) {
  .navbar-nav { display: flex; }
  .mobile-menu-btn { display: none; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:flex-row { flex-direction: row; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, 1fr); }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:gap-20 { gap: 5rem; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
}

/* Utility: fade-up animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }

/* No scrollbar */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
