/* ──────────────────────────────────────────────────────────
   Instaprints — Brand foundation
   Lilac primary, warm cream surfaces, deep plum type
   Fraunces (display) + DM Sans (body) + ✦ sparkle motif
   ────────────────────────────────────────────────────────── */

:root {
  /* Brand colors */
  --lilac: #B76BDB;
  --lilac-2: #C97FE8;
  --plum: #5C2D82;
  --plum-deep: #3D1B5C;
  --pink: #F2A7C3;
  --cream: #FDF3EC;
  --cream-2: #FBEFE0;
  --lavender: #E8D5F5;
  --blush: #FEF0F5;
  --cloud: #F5F5F5;
  --charcoal: #2D2D2D;
  --gold: #D4A853;

  /* Semantic */
  --bg: var(--cream);
  --bg-accent: var(--blush);
  --fg: var(--plum-deep);
  --fg-soft: rgba(61, 27, 92, 0.62);
  --fg-mute: rgba(61, 27, 92, 0.42);
  --line: rgba(92, 45, 130, 0.10);
  --line-2: rgba(92, 45, 130, 0.16);
  --primary: var(--lilac);
  --primary-deep: var(--plum);

  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;

  --shadow-sm: 0 1px 2px rgba(92,45,130,.06), 0 4px 16px rgba(92,45,130,.06);
  --shadow: 0 2px 4px rgba(92,45,130,.05), 0 18px 40px -8px rgba(92,45,130,.18);
  --shadow-lg: 0 4px 8px rgba(92,45,130,.06), 0 40px 80px -16px rgba(92,45,130,.28);

  --font-display: "Fraunces", "Recoleta", "Georgia", serif;
  --font-body: "DM Sans", "Poppins", system-ui, -apple-system, sans-serif;

  --max-w: 1280px;
}

/* ─── Arabic / RTL ────────────────────────────────────────── */
[lang="ar"] {
  --font-display: "Lemonada", "Fraunces", serif;
  --font-body: "Cairo", "DM Sans", system-ui, sans-serif;
}
[lang="ar"] body, [lang="ar"] .lead, [lang="ar"] p { line-height: 1.7; }
/* Arabic glyphs carry tall diacritics — give headings room so lines never collide */
[lang="ar"] .h-serif,
[lang="ar"] h1,
[lang="ar"] h2,
[lang="ar"] h3 { line-height: 1.4 !important; }
/* Arabic letterforms read larger/denser than Latin — size headings down a touch */
[lang="ar"] .hero h1 { line-height: 1.3 !important; font-size: clamp(38px, 9vw, 68px); }
/* The decorative sparkle inside the headline wraps to its own line in Arabic — hide it */
[lang="ar"] .hero h1 .ital .spark { display: none; }
[lang="ar"] .section-head h2,
[lang="ar"] .cta h2 { line-height: 1.32 !important; }
/* Arabic has no italics — keep the accent colour, drop the slant */
[dir="rtl"] .ital,
[dir="rtl"] .h-serif.italic,
[lang="ar"] .ital { font-style: normal !important; }
[lang="ar"] .h-serif { letter-spacing: 0; }
/* Directional arrows flip in RTL */
[dir="rtl"] .pc-foot span[aria-hidden="true"],
[dir="rtl"] .pc-explore span[aria-hidden="true"],
[dir="rtl"] .arrow-flip { display: inline-block; transform: scaleX(-1); }
/* Star ratings stay LTR so they read left-to-right */
[dir="rtl"] .stars { direction: ltr; display: inline-block; }
/* Section headings align to the reading direction (right in Arabic) */
[dir="rtl"] .section-head { text-align: right; }
[dir="rtl"] .product-card { text-align: right; }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--lavender);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-toggle button {
  border: 0;
  background: transparent;
  color: var(--plum);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 13px;
  border-radius: 999px;
  line-height: 1;
  min-height: 34px;
  transition: background .2s ease, color .2s ease;
}
.lang-toggle button.active {
  background: white;
  color: var(--plum-deep);
  box-shadow: 0 1px 3px rgba(92,45,130,.18);
}
.lang-toggle button:not(.active):hover { color: var(--plum-deep); }

/* Palette mood overrides — driven by Tweaks */[data-mood="cream"] {
  --bg: #FDF3EC;
  --bg-accent: #FBEFE0;
  --primary: var(--plum);
}
[data-mood="lavender"] {
  --bg: #F4ECFA;
  --bg-accent: #E8D5F5;
}
[data-mood="blush"] {
  --bg: #FEF0F5;
  --bg-accent: #FAD7E4;
  --primary: #C8629B;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

.h-serif {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 96, "SOFT" 50;
  letter-spacing: -0.022em;
  line-height: 1.02;
  color: var(--plum-deep);
}
.h-serif.italic { font-style: italic; }

/* ─── Sparkle ─────────────────────────────────────────────── */
.spark {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.1em;
  color: var(--lilac);
  flex-shrink: 0;
}
.spark svg { width: 100%; height: 100%; display: block; }
@keyframes spark-twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(0.78) rotate(45deg); opacity: 0.6; }
}
.spark.twinkle svg { animation: spark-twinkle 3.2s ease-in-out infinite; transform-origin: center; }
.spark.twinkle.d1 svg { animation-delay: 0.4s; }
.spark.twinkle.d2 svg { animation-delay: 0.9s; }
.spark.twinkle.d3 svg { animation-delay: 1.5s; }

/* ─── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.brand-mark {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--plum-deep);
  font-variation-settings: "opsz" 32, "SOFT" 50;
  letter-spacing: -0.02em;
}
.brand-mark .logo {
  width: 36px; height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(183,107,219,.35);
}
.nav-links { display: none; gap: 28px; font-size: 14px; color: var(--fg-soft); }
.nav-links a:hover { color: var(--plum); }
.nav-cta { display: flex; gap: 8px; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--lilac);
  color: white;
  box-shadow: 0 4px 14px rgba(183,107,219,.4), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover { background: var(--lilac-2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(183,107,219,.5); }
.btn-ghost {
  background: transparent;
  color: var(--plum-deep);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: var(--lavender); border-color: transparent; }
.btn-dark {
  background: var(--plum-deep);
  color: white;
}
.btn-dark:hover { background: var(--plum); }
.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn-lg { padding: 18px 30px; font-size: 17px; }

/* ─── Hero shell ─────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 36px 20px 64px;
  overflow: hidden;
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: white;
  color: var(--plum);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(92,45,130,.08);
  border: 1px solid var(--line);
}
.eyebrow .spark { color: var(--lilac); }

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(48px, 12vw, 88px);
  line-height: 0.96;
}
.hero h1 .ital { font-style: italic; font-weight: 400; color: var(--lilac); }
.hero h1 .ital .spark { font-size: 0.5em; vertical-align: 0.25em; }
.hero p.lead {
  margin: 0 0 28px;
  font-size: clamp(16px, 4vw, 19px);
  color: var(--fg-soft);
  max-width: 30em;
  line-height: 1.5;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.hero-meta {
  display: flex; align-items: center; gap: 14px;
  margin-top: 22px;
  font-size: 13px; color: var(--fg-soft);
}
.hero-meta .stars {
  display: inline-flex; gap: 2px; color: var(--gold);
  margin-right: 4px;
}
.hero-divider { width: 1px; height: 16px; background: var(--line-2); }

/* Hero visuals */
.hero-art { position: relative; margin-top: 36px; min-height: 320px; }

/* ── Hero variant: Collage ───────────────────────────────── */
.hero[data-variant="collage"] .hero-art {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  perspective: 1200px;
}
.hc-card {
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: transform .35s ease;
}
.hc-card.tilt-l { transform: rotate(-3deg); }
.hc-card.tilt-r { transform: rotate(3deg); }
.hc-card.tall { aspect-ratio: 3/4; }
.hc-card.wide { aspect-ratio: 4/3; }
.hc-card img { width: 100%; height: 100%; object-fit: cover; }
.hc-card .tag {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(255,255,255,.92);
  color: var(--plum-deep);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ── Hero variant: Phone-to-print ────────────────────────── */
.hero[data-variant="transform"] .hero-art {
  position: relative;
  overflow: visible;
  margin-right: -20px; /* let it bleed into the right edge on mobile */
}
.hero-comp {
  position: relative;
  width: 100%;
  display: block;
}
.hero-comp-img {
  width: 100%;
  height: auto;
  display: block;
  /* feather the outer edges so the cream backdrop melts into the page */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 7%, #000 100%),
    linear-gradient(to bottom, transparent 0, #000 5%, #000 92%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0, #000 7%, #000 100%),
    linear-gradient(to bottom, transparent 0, #000 5%, #000 92%, transparent 100%);
  mask-composite: intersect;
}
/* Floating animated sparkles overlaid on top of the baked-in arc */
.hero-sparkle-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-sparkle-overlay .hsp {
  position: absolute;
  filter: drop-shadow(0 0 4px currentColor);
  animation: hsp-twinkle 1.8s ease-in-out infinite;
  transform-origin: center;
}
.hero-sparkle-overlay .hsp svg { width: 100%; height: 100%; display: block; }
/* Positions tuned to the baked-in arc going from upper-right of phone to top of book */
.hero-sparkle-overlay .hsp.s1 { top: 26%; left: 42%; width: 14px; height: 14px; color: #FFD27A; animation-delay: 0s; }
.hero-sparkle-overlay .hsp.s2 { top: 32%; left: 47%; width: 10px; height: 10px; color: #F2A7C3; animation-delay: 0.4s; }
.hero-sparkle-overlay .hsp.s3 { top: 36%; left: 51%; width: 16px; height: 16px; color: #C97FE8; animation-delay: 0.8s; }
.hero-sparkle-overlay .hsp.s4 { top: 30%; left: 56%; width: 12px; height: 12px; color: #FFD27A; animation-delay: 1.2s; }
.hero-sparkle-overlay .hsp.s5 { top: 38%; left: 49%; width: 8px;  height: 8px;  color: #FFFFFF; animation-delay: 0.6s; }
@keyframes hsp-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.2) rotate(0deg); }
  40%      { opacity: 1; transform: scale(1) rotate(60deg); }
  70%      { opacity: 0.5; transform: scale(1.2) rotate(120deg); }
}
.phone-frame {
  aspect-ratio: 9/19.5;
  background: linear-gradient(180deg, #2a1741, #1a0b2e);
  border-radius: 38px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: rotate(-4deg);
}
.phone-screen {
  background: white;
  border-radius: 30px;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
}
.phone-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--plum-deep);
}
.phone-status .right { display: flex; gap: 5px; align-items: center; }
.phone-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px 6px;
  border-bottom: 1px solid rgba(92,45,130,.08);
}
.phone-header .title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--plum-deep);
  letter-spacing: -0.01em;
}
.phone-header .count {
  font-size: 9px;
  color: var(--fg-soft);
  background: var(--lavender);
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 500;
}
.phone-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 4px;
  background: white;
}
.phone-grid .tile {
  aspect-ratio: 1;
  border-radius: 3px;
  background: var(--lavender);
  position: relative;
  overflow: hidden;
}
.phone-grid .tile img { width: 100%; height: 100%; object-fit: cover; }
.phone-grid .tile.selected::after {
  content: "";
  position: absolute; inset: 0;
  border: 3px solid var(--lilac);
  border-radius: 3px;
  background: rgba(183,107,219,.18);
}
.phone-grid .tile.selected::before {
  content: "✓";
  position: absolute;
  top: 3px; right: 3px;
  background: var(--lilac);
  color: white;
  width: 14px; height: 14px;
  border-radius: 50%;
  font-size: 9px;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  box-shadow: 0 0 0 1.5px white;
}
.transform-arrow {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 180px; height: 120px;
  z-index: 3;
  pointer-events: none;
}
.transform-arrow svg.wand-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  overflow: visible;
}

/* The drawn stroke — animated dash gives a continuous "drawing" feel */
.wand-stroke {
  fill: none;
  stroke: url(#wandGradient);
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(242,167,195,.85)) drop-shadow(0 0 14px rgba(255,210,122,.55));
  stroke-dasharray: 18 8;
  stroke-dashoffset: 0;
  animation: wand-draw 2.4s linear infinite;
}
@keyframes wand-draw {
  to { stroke-dashoffset: -26; }
}

/* The arrowhead tip — a glowing star burst */
.wand-tip {
  position: absolute;
  right: -2px; top: 50%;
  transform: translate(0, -50%);
  width: 56px; height: 56px;
  filter: drop-shadow(0 0 12px rgba(255,210,122,.9)) drop-shadow(0 0 24px rgba(242,167,195,.6));
  animation: tip-pulse 1.8s ease-in-out infinite;
}
.wand-tip svg { width: 100%; height: 100%; display: block; }
@keyframes tip-pulse {
  0%, 100% { transform: translate(0, -50%) scale(1) rotate(0deg); }
  50%      { transform: translate(0, -50%) scale(1.12) rotate(12deg); }
}

/* Pixie dust — sparkles travelling along the arc */
.dust {
  position: absolute;
  pointer-events: none;
  width: 14px; height: 14px;
  color: #FFD27A;
  filter: drop-shadow(0 0 4px currentColor);
}
.dust svg { width: 100%; height: 100%; display: block; }

/* Each dust mote has its own timeline */
.dust.d1  { top: 56%; left: 4%;  color: #FFD27A; animation: dust-drift1 3.4s ease-in-out infinite; }
.dust.d2  { top: 56%; left: 4%;  color: #F2A7C3; animation: dust-drift1 3.4s ease-in-out infinite -0.6s; transform: scale(0.7); }
.dust.d3  { top: 56%; left: 4%;  color: #C97FE8; animation: dust-drift1 3.4s ease-in-out infinite -1.2s; transform: scale(0.85); }
.dust.d4  { top: 56%; left: 4%;  color: #FFFFFF; animation: dust-drift1 3.4s ease-in-out infinite -1.8s; transform: scale(0.6); }
.dust.d5  { top: 56%; left: 4%;  color: #FFD27A; animation: dust-drift1 3.4s ease-in-out infinite -2.4s; transform: scale(0.9); }
.dust.d6  { top: 56%; left: 4%;  color: #F2A7C3; animation: dust-drift1 3.4s ease-in-out infinite -3.0s; transform: scale(0.5); }

/* Drift along the arc: left→right with a gentle up-then-down rise */
@keyframes dust-drift1 {
  0%   { transform: translate(0, 0)        scale(0.4) rotate(0deg);   opacity: 0; }
  10%  { transform: translate(15px, -10px)  scale(0.9) rotate(45deg);  opacity: 1; }
  35%  { transform: translate(55px, -30px)  scale(1.1) rotate(120deg); opacity: 1; }
  60%  { transform: translate(95px, -28px)  scale(1)   rotate(220deg); opacity: 1; }
  85%  { transform: translate(135px, -8px)  scale(0.8) rotate(310deg); opacity: 0.7; }
  100% { transform: translate(155px, 6px)   scale(0.3) rotate(360deg); opacity: 0; }
}

/* A scattered halo of static-twinkling stars around the burst tip */
.halo-spark {
  position: absolute;
  pointer-events: none;
  color: #FFD27A;
  filter: drop-shadow(0 0 4px currentColor);
  animation: halo-twinkle 1.6s ease-in-out infinite;
  transform-origin: center;
}
.halo-spark svg { width: 100%; height: 100%; display: block; }
.halo-spark.h1 { top: 4px;   right: 30px; width: 10px; height: 10px; color: #F2A7C3; animation-delay: 0s; }
.halo-spark.h2 { top: 12px;  right: -6px; width: 8px;  height: 8px;  color: #FFD27A; animation-delay: 0.3s; }
.halo-spark.h3 { bottom: 8px;right: 6px;  width: 12px; height: 12px; color: #C97FE8; animation-delay: 0.6s; }
.halo-spark.h4 { bottom: -2px;right: 38px;width: 9px;  height: 9px;  color: #FFFFFF; animation-delay: 0.9s; }
.halo-spark.h5 { top: 28px;  right: 56px; width: 7px;  height: 7px;  color: #F2A7C3; animation-delay: 1.2s; }
@keyframes halo-twinkle {
  0%, 100% { opacity: 0;   transform: scale(0.2) rotate(0deg); }
  40%      { opacity: 1;   transform: scale(1)   rotate(45deg); }
  70%      { opacity: 0.5; transform: scale(1.2) rotate(90deg); }
}
.product-stack {
  position: relative;
  aspect-ratio: 4/5;
}
.product-stack .img {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.product-stack .img img { width: 100%; height: 100%; object-fit: cover; }
.product-stack .img-1 { inset: 0; transform: rotate(4deg); z-index: 1; }
.product-stack .img-2 { inset: 12% 0 0 12%; transform: rotate(-3deg); z-index: 2; }

/* ── Hero variant: Lifestyle ─────────────────────────────── */
.hero[data-variant="lifestyle"] {
  padding-bottom: 0;
}
.hero[data-variant="lifestyle"] .hero-art {
  margin: 24px -20px 0;
  border-radius: 0;
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.hero[data-variant="lifestyle"] .hero-art img.full {
  width: 100%; height: 100%; object-fit: cover;
}
.hero[data-variant="lifestyle"] .lifestyle-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(61,27,92,.85) 100%);
  display: flex; align-items: flex-end;
  padding: 24px;
  color: white;
}
.hero[data-variant="lifestyle"] .lifestyle-overlay .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 5vw, 28px);
  line-height: 1.25;
  max-width: 22em;
}

/* Decorative sparkles floating in hero */
.float-spark {
  position: absolute;
  color: var(--lilac);
  opacity: .65;
  pointer-events: none;
}

/* ─── Trust strip ─────────────────────────────────────────── */
.trust {
  background: var(--bg-accent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px;
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  align-items: center;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item .num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 5vw, 32px);
  color: var(--plum-deep);
  display: flex; align-items: center; gap: 8px;
  line-height: 1;
}
.trust-item .num .stars { color: var(--gold); font-size: 0.7em; letter-spacing: -2px; }
.trust-item .lbl {
  font-size: 12px;
  color: var(--fg-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Section shells ──────────────────────────────────────── */
.section {
  padding: 72px 20px;
  position: relative;
}
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-head {
  text-align: left;
  margin-bottom: 36px;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 8vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--plum-deep);
  text-wrap: balance;
}
.section-head h2 .ital { font-style: italic; color: var(--lilac); font-weight: 400; }
.section-head p.kicker {
  margin: 0;
  font-size: clamp(16px, 4vw, 18px);
  color: var(--fg-soft);
  max-width: 32em;
  line-height: 1.5;
}

/* ─── Why Instaprints (value props) ──────────────────────── */
.why {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-accent) 100%);
  padding: 0;
  overflow: hidden;
}
/* ─── Why Instaprints ─────────────────────────────────────── */
/* Desktop / tablet: the approved full-scene comp (language-specific image) */
.why-comp { display: none; position: relative; }
.why-comp img { width: 100%; height: auto; display: block; }
.why-comp-spark { position: absolute; inset: 0; pointer-events: none; }

/* Mobile: readable stacked layout (fully translatable) */
.why-mobile {
  padding: 64px 20px 72px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.why-portrait {
  margin: 28px 0 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 410 / 460;
}
.why-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 16%;
  display: block;
}
.why-mobile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.why-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}
.why-card .icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: var(--lavender);
  color: var(--plum);
  margin-bottom: 4px;
}
.why-card .icon svg { width: 24px; height: 24px; }
.why-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  color: var(--plum-deep);
  letter-spacing: -0.01em;
}
.why-card p {
  margin: 0;
  color: var(--fg-soft);
  font-size: 15px;
  line-height: 1.5;
}

/* ─── Products grid ───────────────────────────────────────── */
.products { background: var(--bg); }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
  text-align: left;
  font-family: inherit;
  color: inherit;
  padding: 0;
  width: 100%;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-card .pc-img {
  aspect-ratio: 1;
  background: var(--lavender);
  overflow: hidden;
  position: relative;
}
.product-card .pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .pc-img img { transform: scale(1.04); }
.product-card .pc-body {
  padding: 16px 16px 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.product-card .pc-body .row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 8px;
}
.product-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--plum-deep);
  letter-spacing: -0.01em;
}
.product-card .price {
  font-size: 13px;
  color: var(--fg-soft);
  white-space: nowrap;
}
.product-card .price b { color: var(--plum-deep); font-weight: 600; }
.product-card .pc-desc {
  font-size: 13px;
  color: var(--fg-soft);
  line-height: 1.4;
}
/* One-line card description */
.product-card .pc-desc-1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card .pc-foot {
  margin-top: 10px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-size: 13px;
  font-weight: 500;
}
.product-card .pc-price { color: var(--plum-deep); font-weight: 600; }
.product-card .pc-explore {
  color: var(--lilac);
  display: inline-flex; align-items: center; gap: 5px;
  white-space: nowrap;
}

/* Product card style: polaroid */
[data-cardstyle="polaroid"] .product-card {
  background: white;
  padding: 12px 12px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(92,45,130,.10);
}
[data-cardstyle="polaroid"] .product-card .pc-img {
  border-radius: 4px;
  aspect-ratio: 1;
}
[data-cardstyle="polaroid"] .product-card .pc-body {
  padding: 14px 4px 16px;
  text-align: center;
  align-items: center;
}
[data-cardstyle="polaroid"] .product-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}
[data-cardstyle="polaroid"] .product-card .pc-foot { display: none; }
[data-cardstyle="polaroid"] .product-card .pc-desc { display: none; }

/* Product card style: photo-first */
[data-cardstyle="photo"] .product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
[data-cardstyle="photo"] .product-card .pc-img { aspect-ratio: 4/5; }
[data-cardstyle="photo"] .product-card .pc-body {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(0deg, rgba(61,27,92,.86) 0%, rgba(61,27,92,.55) 50%, transparent 100%);
  color: white;
  padding: 30px 16px 16px;
}
[data-cardstyle="photo"] .product-card h3 { color: white; }
[data-cardstyle="photo"] .product-card .pc-desc { color: rgba(255,255,255,.78); }
[data-cardstyle="photo"] .product-card .price { color: rgba(255,255,255,.88); }
[data-cardstyle="photo"] .product-card .price b { color: white; }
[data-cardstyle="photo"] .product-card .pc-foot { color: var(--pink); }
[data-cardstyle="photo"] .product-card .pc-price { color: white; }
[data-cardstyle="photo"] .product-card .pc-explore { color: var(--pink); }

/* ─── How it works ────────────────────────────────────────── */
.how {
  background: var(--bg-accent);
  position: relative;
}
.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}
.how-step {
  background: white;
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex; flex-direction: column; gap: 12px;
  border: 1px solid var(--line);
  position: relative;
}
.how-step .num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  color: var(--lilac);
  line-height: 0.8;
}
.how-step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--plum-deep);
  letter-spacing: -0.01em;
}
.how-step p {
  margin: 0;
  color: var(--fg-soft);
  font-size: 15px;
}
.how-step .viz {
  margin-top: 12px;
  aspect-ratio: 16/10;
  border-radius: var(--radius-sm);
  background: var(--bg-accent);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}

/* ─── Testimonials ────────────────────────────────────────── */
.testimonials { background: var(--bg); }
.testi-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 84%;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 0 20px;
  scroll-snap-type: x mandatory;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  scrollbar-width: none;
}
.testi-scroll::-webkit-scrollbar { display: none; }
.testi-card {
  scroll-snap-align: start;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.testi-card .stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.testi-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 19px;
  line-height: 1.35;
  color: var(--plum-deep);
}
.testi-card .person {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
}
.testi-card .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--lavender);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--plum);
}
.testi-card .meta { font-size: 13px; }
.testi-card .meta .name { font-weight: 600; color: var(--plum-deep); }
.testi-card .meta .role { color: var(--fg-mute); font-size: 12px; }

/* ─── UGC strip ───────────────────────────────────────────── */
.ugc { background: var(--bg-accent); padding-bottom: 56px; }
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.ugc-tile {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--lavender);
  position: relative;
  display: block;
  box-shadow: var(--shadow-sm);
}
.ugc-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ugc-tile:hover img { transform: scale(1.05); }
/* Handle pill top-left */
.ugc-handle {
  position: absolute;
  left: 8px; top: 8px;
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  padding: 4px 9px 4px 4px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(92,45,130,.14);
  z-index: 2;
}
.ugc-ava {
  width: 20px; height: 20px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--lilac);
}
.ugc-ava img { width: 100%; height: 100%; object-fit: cover; }
.ugc-handle-name {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 11px;
  font-weight: 600;
  color: var(--plum-deep);
}
.ugc-verified { width: 12px; height: 12px; flex-shrink: 0; }
/* Hover overlay with caption + likes */
.ugc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(61,27,92,.88) 0%, rgba(61,27,92,.25) 55%, transparent 100%);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  z-index: 1;
}
.ugc-tile:hover .ugc-overlay { opacity: 1; }
.ugc-likes {
  display: inline-flex; align-items: center; gap: 5px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}
.ugc-likes svg { width: 15px; height: 15px; color: #FF5C8A; }
.ugc-cap {
  color: rgba(255,255,255,.95);
  font-size: 12.5px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ugc-foot {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  margin-top: 22px;
  font-size: 14px;
  color: var(--fg-soft);
}

/* ─── Final CTA ───────────────────────────────────────────── */
.cta {
  background: linear-gradient(160deg, var(--lilac) 0%, var(--plum) 100%);
  color: white;
  padding: 88px 20px 104px;
  position: relative;
  overflow: hidden;
}
.cta::before, .cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta::before {
  background: var(--pink);
  width: 380px; height: 380px;
  top: -160px; right: -100px;
  opacity: .5;
}
.cta::after {
  background: var(--gold);
  width: 280px; height: 280px;
  bottom: -120px; left: -80px;
  opacity: .25;
}
.cta-inner {
  max-width: 760px; margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 10vw, 76px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: white;
  text-wrap: balance;
}
.cta h2 .ital { font-style: italic; font-weight: 400; }
.cta p.lead {
  font-size: clamp(16px, 4vw, 20px);
  color: rgba(255,255,255,.85);
  max-width: 30em;
  margin: 0 auto 32px;
  line-height: 1.4;
}
.cta .stores {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px;
}
.cta .qr-note {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.cta-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: white;
  font-variation-settings: "opsz" 40, "SOFT" 50;
  letter-spacing: -0.02em;
  opacity: 0.96;
  transition: opacity .2s ease, transform .2s ease;
}
.cta-logo:hover { opacity: 1; transform: translateY(-1px); }
.cta-logo img {
  width: 40px; height: 40px;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.3);
}

/* ─── App store badges ───────────────────────────────────── */
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: black;
  color: white;
  padding: 10px 18px 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease;
  border: 1px solid rgba(255,255,255,.15);
}
.store-badge:hover { transform: translateY(-1px); opacity: .92; }
.store-badge svg { width: 26px; height: 26px; flex-shrink: 0; }
.store-badge .lbl { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-badge .lbl .small { font-size: 10px; opacity: .8; font-weight: 400; letter-spacing: 0.02em; }
.store-badge .lbl .big { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; font-family: var(--font-body); }
.store-badge.light { background: white; color: black; border-color: var(--line); }

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--plum-deep);
  color: rgba(255,255,255,.7);
  padding: 56px 20px 100px;
  font-size: 14px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: grid; gap: 36px; }
.footer .brand-mark { color: white; }
.footer h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: white;
}
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer a:hover { color: white; }
.footer .legal {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 12px;
}

/* ─── Sticky download bar (mobile) ───────────────────────── */
.sticky-dl {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 50;
  background: white;
  border-radius: 18px;
  padding: 10px 12px 10px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(92,45,130,.22), 0 2px 8px rgba(92,45,130,.08);
  border: 1px solid var(--line);
  transform: translateY(0);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.sticky-dl.hidden { transform: translateY(140%); }
.sticky-dl .ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--lilac);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: 16px;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.sticky-dl .copy { flex: 1; min-width: 0; }
.sticky-dl .copy .t1 { font-size: 13px; font-weight: 600; color: var(--plum-deep); line-height: 1.2; }
.sticky-dl .copy .t2 { font-size: 11px; color: var(--fg-soft); line-height: 1.2; }

/* ─── Product detail bottom sheet ────────────────────────── */
.sheet-backdrop {
  position: fixed; inset: 0;
  background: rgba(61,27,92,.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.sheet-backdrop.open { opacity: 1; pointer-events: auto; }
.sheet {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 101;
  background: var(--bg);
  border-radius: 28px 28px 0 0;
  max-height: 92dvh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 -20px 60px rgba(92,45,130,.25);
}
.sheet.open { transform: translateY(0); }
.sheet-handle {
  position: sticky; top: 0;
  background: var(--bg);
  padding: 10px 0 6px;
  text-align: center;
  z-index: 2;
}
.sheet-handle .grab {
  display: inline-block;
  width: 44px; height: 5px;
  border-radius: 4px;
  background: var(--line-2);
}
.sheet-close {
  position: absolute;
  right: 14px; top: 12px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--plum-deep);
  z-index: 3;
  backdrop-filter: blur(8px);
}
.sheet-body { padding: 0 20px 32px; }
.sheet-hero {
  margin: 0 -20px;
  aspect-ratio: 4/3;
  background: var(--lavender);
  overflow: hidden;
  position: relative;
}
.sheet-hero img { width: 100%; height: 100%; object-fit: cover; }
.sheet-hero .price-chip {
  position: absolute; left: 20px; bottom: 20px;
  background: rgba(255,255,255,.95);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--plum-deep);
  box-shadow: var(--shadow-sm);
}
.sheet-hero .price-chip small { font-family: var(--font-body); font-weight: 400; font-size: 11px; color: var(--fg-soft); display: block; line-height: 1; letter-spacing: 0.04em; text-transform: uppercase; }

.sheet-title { padding: 28px 0 8px; }
.sheet-title .eyebrow { margin-bottom: 14px; }
.sheet-title h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 8vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--plum-deep);
}
.sheet-title h2 .ital { font-style: italic; color: var(--lilac); font-weight: 400; }
.sheet-title p.tag {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--lilac);
}

.sheet-section {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.sheet-section h3 {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
.sheet-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.sheet-features li { display: flex; gap: 12px; align-items: flex-start; }
.sheet-features li .spark { color: var(--lilac); margin-top: 4px; flex-shrink: 0; }
.sheet-features li .ft-t { font-weight: 500; color: var(--plum-deep); }
.sheet-features li .ft-d { font-size: 14px; color: var(--fg-soft); }
.sheet-sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.sheet-size-chip {
  padding: 10px 16px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--plum-deep);
}
.sheet-size-chip b { font-weight: 600; }
.sheet-size-chip span { display: block; font-size: 11px; color: var(--fg-soft); margin-top: 2px; }
.sheet-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.sheet-gallery .g {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--lavender);
}
.sheet-gallery .g img { width: 100%; height: 100%; object-fit: cover; }
.sheet-cta {
  position: sticky; bottom: 0;
  background: var(--bg);
  padding: 16px 0 calc(16px + env(safe-area-inset-bottom));
  margin: 0 -20px;
  padding-left: 20px; padding-right: 20px;
  border-top: 1px solid var(--line);
  display: flex; gap: 10px;
  align-items: center;
}
.sheet-cta .left { font-size: 13px; color: var(--fg-soft); line-height: 1.2; flex: 1;}
.sheet-cta .left b { color: var(--plum-deep); font-weight: 600; font-size: 15px; display: block; }

/* ─── Responsive (≥760px) ────────────────────────────────── */
@media (min-width: 760px) {
  .nav-links { display: flex; }
  .nav-inner { padding: 16px 32px; }
  .hero { padding: 56px 32px 80px; }
  .hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .hero h1 { font-size: clamp(56px, 8vw, 96px); }
  .hero-art { margin-top: 0; }
  .hero[data-variant="lifestyle"] { padding-bottom: 80px; }
  .hero[data-variant="lifestyle"] .hero-art {
    margin: 0;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/5;
  }

  .trust-inner { grid-template-columns: repeat(4, 1fr); }

  .section { padding: 96px 32px; }
  .section-head { max-width: 720px; }

  .why-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .how-steps { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .testi-scroll { grid-auto-columns: 360px; }
  .ugc-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }

  .sticky-dl { display: none; }

  .sheet {
    left: 50%; right: auto; bottom: auto; top: 50%;
    transform: translate(-50%, -50%) scale(.96);
    opacity: 0;
    pointer-events: none;
    width: min(960px, 92vw);
    max-height: 88vh;
    border-radius: var(--radius-lg);
  }
  .sheet.open { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: auto; }
  .sheet-handle { display: none; }
  .sheet-body { padding: 0; }
  .sheet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .sheet-hero { margin: 0; aspect-ratio: auto; height: 100%; min-height: 540px; }
  .sheet-right { padding: 36px 36px 0; }
  .sheet-cta { margin: 0; padding: 20px 36px; }

  .footer-cols { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
}

@media (min-width: 980px) {
  .hero h1 { font-size: clamp(64px, 8vw, 108px); }
}

/* Why Instaprints: swap to approved comp on wider screens */
/* Why Instaprints — desktop composition: heading beside a photo stage
   with four cards floating at the corners (shared by EN + AR). */
/* Why Instaprints — swap to the full-scene comp on wider screens */
@media (min-width: 860px) {
  .why-mobile { display: none; }
  .why-comp { display: block; }
}

/* Tweaks-driven visibility */
[data-cta-density="minimal"] .sticky-dl { display: none; }
[data-cta-density="heavy"] .nav-cta .btn-ghost { display: inline-flex; }
