/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #FFFDFC;
  --cream2:   #F8F2EA;
  --cream3:   #EDE5D8;
  --ink:      #1A1A1A;
  --mid:      #7A6A60;
  --muted:    #B8B0A8;
  --border:   #EAE6E0;
  --border2:  #D4CFC9;
  --gold:     #C4A882;
  --gold-bg:  #F5EFE8;
  --gold-dim: rgba(196, 168, 130, 0.15);
  --accent:   #9B6F62;
  --success:  #2E9E60;
  --success-bg: #EAF6EF;
  --nav-h:    66px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  max-width: 100%;
}

/* ── NAV ── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 110px;
  background: linear-gradient(to bottom, var(--cream) 0%, var(--cream) 55%, transparent 100%);
  z-index: 199;
  pointer-events: none;
}

#navbar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 16px;
  z-index: 200;
  height: 54px;
  width: calc(100% - 48px);
  max-width: 1080px;
  display: flex;
  align-items: center;
  padding: 0 20px 0 20px;
  background: rgba(255, 253, 252, 0.72);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(26,26,26,.08), 0 1px 0 rgba(255,255,255,.9) inset;
  transition: box-shadow .3s, background .3s;
}
#navbar.scrolled {
  background: rgba(255, 253, 252, 0.88);
  box-shadow: 0 8px 32px rgba(26,26,26,.12), 0 1px 0 rgba(255,255,255,.9) inset;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.4px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 28px; height: 28px;
  background: var(--ink);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 16px; height: 16px; }

.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-spacer { flex: 1; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, transform .15s;
}
.nav-btn svg { width: 14px; height: 14px; }
.nav-btn:hover { background: #333; transform: translateY(-1px); }

/* ── Burger button (hidden on desktop) ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}
.nav-burger span:nth-child(1) { width: 22px; }
.nav-burger span:nth-child(2) { width: 16px; }
.nav-burger span:nth-child(3) { width: 22px; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

/* ── Mobile menu drawer ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 190;
  background: rgba(255, 253, 252, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 12px 0 20px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s cubic-bezier(.22,1,.36,1), opacity .3s;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  padding: 14px 24px;
  transition: color .15s, background .15s;
}
.mobile-link:hover, .mobile-link.active { color: var(--ink); }
.mobile-menu-cta {
  margin: 12px 24px 0;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 14px;
  text-decoration: none;
  text-align: center;
  transition: background .15s;
}
.mobile-menu-cta:hover { background: #333; }

/* ── Overlay ── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(26,26,26,.25);
  opacity: 0;
  transition: opacity .3s;
}
.mobile-overlay.open { opacity: 1; }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding: 4px 6px;
  border-radius: 6px;
  transition: color .15s, background .15s;
  letter-spacing: .4px;
}
.lang-btn:hover { color: var(--ink); background: var(--border); }
.lang-btn.active { color: var(--ink); }
.lang-sep {
  width: 1px;
  height: 12px;
  background: var(--border2);
  display: inline-block;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: calc(16px + 54px + 24px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
  background: var(--cream);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  pointer-events: none;
  z-index: 2;
}

/* ── Hero Left ── */
.hero-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

@keyframes blobShift {
  0%   { background-position: 20% 50%, 80% 20%, 50% 90%, center; }
  25%  { background-position: 30% 40%, 65% 30%, 40% 80%, center; }
  50%  { background-position: 15% 60%, 75% 15%, 55% 85%, center; }
  75%  { background-position: 25% 45%, 85% 25%, 45% 95%, center; }
  100% { background-position: 20% 50%, 80% 20%, 50% 90%, center; }
}

.bg-blob {
  position: absolute;
  inset: -10%;
  width: 120%;
  background:
    radial-gradient(ellipse 90% 80% at 20% 50%, rgba(196,168,130,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 70% 90% at 80% 20%, rgba(237,229,216,0.8) 0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at 50% 90%, rgba(155,111,98,0.28) 0%, transparent 60%),
    linear-gradient(160deg, #EDE5D8 0%, #F8F2EA 40%, #FFFDFC 100%);
  background-size: 200% 200%, 200% 200%, 200% 200%, 100% 100%;
  animation: blobShift 12s ease-in-out infinite;
  z-index: 0;
}
.bg-blob::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 45%, #FFFDFC 100%),
    linear-gradient(to bottom, transparent 55%, #FFFDFC 100%);
}

.phone-wrap {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* ── Phone Screenshot ── */
.phone-screenshot-wrap {
  position: relative;
  width: 272px;
  flex-shrink: 0;
  filter: drop-shadow(0 40px 60px rgba(26,26,26,0.22)) drop-shadow(0 16px 32px rgba(26,26,26,0.12));
}

.phone-screenshot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 48px;
  border: 3px solid #1A1A1A;
  outline: 4px solid #E8712A;
  outline-offset: 0px;
}

.notch-bar {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 6px;
  background: #C8C0B8;
  border-radius: 3px;
  z-index: 20;
}

/* ── App header ── */
.app-head {
  background: linear-gradient(170deg, #1A1A1A 0%, #252520 100%);
  padding: 28px 16px 18px;
  flex-shrink: 0;
}
.app-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.app-hi {
  font-size: 10px;
  color: rgba(255,255,255,.4);
  font-weight: 500;
  letter-spacing: .3px;
  margin-bottom: 2px;
}
.app-title-text {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
}
.app-av {
  width: 32px; height: 32px;
  border-radius: 11px;
  background: var(--gold-dim);
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: var(--gold);
}
.app-search {
  background: rgba(255,255,255,.08);
  border-radius: 11px;
  padding: 9px 12px;
  display: flex; align-items: center; gap: 8px;
}
.app-search span {
  font-size: 11px;
  color: rgba(255,255,255,.3);
}

/* ── App body ── */
.app-body {
  padding: 14px 14px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  overflow: hidden;
}
.app-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

/* ── List cards ── */
.lcard {
  background: #fff;
  border-radius: 14px;
  padding: 12px 13px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.lcard-collab { border-color: rgba(196,168,130,.3); }
.lcard-faded  { opacity: .45; }

.lcard-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lcard-left {
  display: flex;
  align-items: center;
  gap: 9px;
}
.lcard-icon {
  width: 34px; height: 34px;
  border-radius: 11px;
  background: var(--gold-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.lcard-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}
.lcard-sub {
  font-size: 10px;
  color: var(--muted);
  margin-top: 1px;
}
.lcard-badge {
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 700;
  background: var(--gold-bg);
  color: var(--accent);
  flex-shrink: 0;
}
.lcard-badge-ink {
  background: rgba(26,26,26,.07);
  color: var(--ink);
}
.lcard-prog {
  height: 2.5px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}
.lcard-prog-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
}
.lcard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
}
.lcard-count { font-size: 10px; color: var(--muted); }
.lcard-price { font-size: 11px; font-weight: 700; color: var(--ink); }

/* ── FAB ── */
.phone-fab {
  position: absolute;
  right: 16px; bottom: 68px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 22px; font-weight: 200;
  box-shadow: 0 5px 18px rgba(26,26,26,.3);
  z-index: 10;
}

/* ── Tab bar ── */
.phone-tab {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 62px;
  background: rgba(255,253,252,.97);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-bottom: 8px;
  border-radius: 0 0 40px 40px;
  z-index: 10;
}
.tab-spacer { width: 18px; }
.tab-i {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.tab-i span {
  font-size: 8px;
  font-weight: 500;
  color: var(--muted);
}
.tab-i span.on {
  color: var(--ink);
  font-weight: 700;
}

/* ── Rating card ── */
.rating-card {
  position: absolute;
  bottom: 88px; left: -36px;
  z-index: 10;
  background: #fff;
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 20px 50px rgba(26,26,26,.14);
  border: 1px solid var(--border);
  width: 192px;
  text-align: center;
  animation: floatUp 4s ease-in-out infinite;
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-10px); }
}
.rc-score {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.8px;
  margin-bottom: 6px;
}
.rc-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 12px;
}
.rc-star     { color: var(--gold); font-size: 18px; line-height: 1; }
.rc-star-dim { opacity: .35; }
.rc-avs {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.rc-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: #fff;
}
.rc-av:first-child { margin-left: 0; }
.rc-label {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.5;
  font-weight: 400;
}

/* ── Hero Right ── */
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 56px;
  position: relative;
  z-index: 1;
}

.hero-h1 {
  font-size: clamp(48px, 5.8vw, 74px);
  line-height: 1.04;
  letter-spacing: -2.5px;
  color: var(--ink);
  margin-bottom: 20px;
}
.h1-light { font-weight: 700; display: block; }
.h1-bold  { font-weight: 900; display: block; }
.h1-gold  { color: var(--gold); }

.hero-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--mid);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 40px;
}


/* ── Store wrapper ── */
.store-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 44px;
}

.store-row {
  position: relative;
  z-index: 1;
}

/* ── Store buttons ── */
.store-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.store-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 253, 252, 0.58);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  padding: 16px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 4px 20px rgba(26,26,26,.07), inset 0 1px 0 rgba(255,255,255,.9);
  min-width: 176px;
}
.store-card:hover {
  background: rgba(255, 253, 252, 0.82);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26,26,26,.10), inset 0 1px 0 rgba(255,255,255,.9);
}
.store-card-lbl {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.store-card-lbl small {
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1;
}
.store-card-lbl strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -.3px;
}

/* ── Feature chips ── */
@keyframes chipFloat1 {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-12px) rotate(1deg); }
}
@keyframes chipFloat2 {
  0%, 100% { transform: translateY(0px) rotate(1deg); }
  50%       { transform: translateY(-9px) rotate(-1deg); }
}
@keyframes chipFloat3 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-14px) rotate(2deg); }
}

.chip {
  position: absolute;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 253, 252, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 8px 32px rgba(26,26,26,.10), inset 0 1px 0 rgba(255,255,255,.8);
  white-space: nowrap;
}
.chip-icon { font-size: 16px; line-height: 1; }
.chip-1 {
  top: 22%; left: -24px;
  animation: fadeUp .6s cubic-bezier(.22,1,.36,1) .9s both, chipFloat1 4.2s ease-in-out 1.6s infinite;
}
.chip-2 {
  top: 42%; right: -40px;
  animation: fadeUp .6s cubic-bezier(.22,1,.36,1) 1.1s both, chipFloat2 5s ease-in-out 1.8s infinite;
}
.chip-3 {
  bottom: 22%; right: -16px;
  animation: fadeUp .6s cubic-bezier(.22,1,.36,1) 1.3s both, chipFloat3 3.8s ease-in-out 2.0s infinite;
}

/* ── Live toast ── */
@keyframes toastIn {
  from { opacity: 0; transform: translateY(16px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to   { opacity: 0; transform: translateY(-10px) scale(.95); }
}

.live-toast {
  position: fixed;
  top: calc(var(--nav-h) + 16px); right: 32px;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 14px 20px;
  box-shadow: 0 20px 50px rgba(26,26,26,.14);
  opacity: 0;
  pointer-events: none;
  min-width: 280px;
}
.live-toast.show  { animation: toastIn  .45s cubic-bezier(.22,1,.36,1) forwards; }
.live-toast.hide  { animation: toastOut .35s ease-in forwards; }

.toast-av {
  width: 36px; height: 36px;
  border-radius: 12px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.toast-body { flex: 1; }
.toast-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.toast-msg {
  font-size: 12px;
  color: var(--mid);
  margin-top: 1px;
}
.toast-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(46,158,96,.2);
}

/* ── Entrance animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleUp {
  from { opacity: 0; transform: scale(.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}

/* Nav */
#navbar {
  animation: fadeIn .5s ease both;
}

/* Phone */
.phone-wrap {
  animation: scaleUp .9s cubic-bezier(.22,1,.36,1) .15s both;
}

/* Rating card override — keep its floatUp but add initial fade */
.rating-card {
  animation: fadeUp .7s cubic-bezier(.22,1,.36,1) .55s both,
             floatUp 4s ease-in-out 1.4s infinite;
}

/* Hero right — staggered */
.hero-h1        { animation: fadeUp .75s cubic-bezier(.22,1,.36,1) .3s  both; }
.hero-desc      { animation: fadeUp .7s  cubic-bezier(.22,1,.36,1) .48s both; }
.store-row      { animation: fadeUp .7s  cubic-bezier(.22,1,.36,1) .62s both; }
.hero-proof     { animation: fadeUp .6s  cubic-bezier(.22,1,.36,1) .76s both; }

/* ── Social proof ── */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.proof-avs { display: flex; }
.proof-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  color: #fff;
}
.proof-av:first-child { margin-left: 0; }
.proof-txt {
  font-size: 13px;
  color: var(--mid);
}
.proof-txt strong {
  color: var(--ink);
  font-weight: 700;
}
.proof-new-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--gold-bg);
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.1px;
}
.proof-sep {
  width: 1px; height: 16px;
  background: var(--border);
}
.proof-stars-row {
  display: flex;
  align-items: center;
  gap: 4px;
}
.proof-star  { color: var(--gold); font-size: 14px; }
.proof-score { font-size: 13px; font-weight: 700; color: var(--ink); }

/* ── Tablet ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-right { padding: 60px 40px 60px 32px; }
  .chip-2 { right: -20px; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  :root { --nav-h: 58px; }

  /* Nav — burger left, spacer, lang, logo right */
  #navbar { padding: 0 20px; }
  .nav-logo   { order: 0; }
  .nav-spacer { order: 1; }
  .nav-right  { order: 2; gap: 10px; }
  .nav-burger { order: 3; display: flex; }
  .nav-links { display: none; }
  .nav-btn { display: none; }
  .lang-btn { font-size: 11px; padding: 3px 5px; }
  .mobile-menu { display: flex; }
  .mobile-overlay { display: block; }

  /* Hero: stack vertically */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 100svh;
    padding-top: var(--nav-h);
  }

  /* Phone block on top */
  .hero-left {
    order: 1;
    padding: 32px 20px 0;
    min-height: 420px;
  }

  /* Blob: full width, shorter */
  .bg-blob {
    inset: 0;
    width: 100%;
  }
  .bg-blob::after {
    top: auto;
    bottom: 0; left: 0; right: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg, transparent, var(--cream));
  }

  /* Phone: smaller */
  .phone {
    width: 200px;
    height: 415px;
    border-radius: 36px;
  }
  .phone-inner { border-radius: 28px; }
  .phone-tab { border-radius: 0 0 28px 28px; height: 54px; }

  /* Chips: tuck in closer */
  .chip { padding: 8px 12px; font-size: 12px; }
  .chip-icon { font-size: 14px; }
  .chip-1 { top: 18%; left: -8px; }
  .chip-2 { top: 44%; right: -8px; }
  .chip-3 { bottom: 18%; right: -8px; }

  /* Text block below */
  .hero-right {
    order: 2;
    padding: 24px 24px 48px;
    align-items: flex-start;
  }

  .hero-h1 {
    font-size: clamp(36px, 10vw, 52px);
    letter-spacing: -2px;
    margin-bottom: 16px;
  }

  .hero-desc {
    font-size: 15px;
    margin-bottom: 28px;
    max-width: 100%;
  }

  /* Store buttons: full-width stacked */
  .store-wrapper { margin-bottom: 28px; width: 100%; }
  .store-row { flex-direction: column; gap: 12px; align-items: stretch; width: 100%; }
  .store-card { min-width: 0; width: 100%; box-sizing: border-box; justify-content: center; padding: 14px 20px; }

  /* Proof */
  .hero-proof { gap: 10px; }

  /* Toast: bottom of screen on mobile */
  .live-toast {
    right: 16px;
    left: 16px;
    min-width: 0;
    top: auto;
    bottom: 24px;
    border-radius: 16px;
  }

  /* Phone wrap */
  .phone-wrap { margin-top: 0; }
  .phone-screenshot-wrap { width: 180px; }
  .phone-screenshot { border-radius: 32px; }
}

/* ══════════════════════════════════════
   FEATURES SECTION
══════════════════════════════════════ */
.features {
  background: var(--cream);
  padding: 120px 0;
}

.feat-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 52px;
}

/* Header */
.feat-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid rgba(196,168,130,.3);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--ink);
  line-height: 1.08;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

/* Bento Grid — 3 cols, alternating wide cards */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
}

/* Card colors */
.feat-card:nth-child(1) { background: #F5EFE8; border-color: rgba(196,168,130,.3); }
.feat-card:nth-child(2) { background: #FDF3E8; border-color: rgba(212,149,106,.25); }
.feat-card:nth-child(3) { background: #EDF4EE; border-color: rgba(90,143,98,.2); }
.feat-card:nth-child(4) { background: #F0EFEE; border-color: rgba(90,84,82,.15); }
.feat-card:nth-child(5) { background: #FDF0F0; border-color: rgba(196,112,112,.2); }
.feat-card:nth-child(6) { background: #EEF2FA; border-color: rgba(96,128,184,.2); }

/* Card base */
.feat-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s, border-color .25s;
  opacity: 0;
  transform: translateY(32px);
}
.feat-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1),
              box-shadow .25s, border-color .25s;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(26,26,26,.09);
  border-color: var(--gold);
}

/* Active highlight (auto-cycle) */
.feat-card.feat-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(196,168,130,.4), 0 16px 40px rgba(196,168,130,.15);
}
.feat-card.feat-active .feat-icon-wrap {
  transform: scale(1.1);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}

/* Progress bar */
.feat-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2.5px;
  background: var(--gold);
  width: 0%;
  border-radius: 0 2px 0 20px;
}
.feat-card.feat-active .feat-progress {
  width: 100%;
  transition: width 3s linear;
}

/* Large card extras */
.feat-large { padding: 36px 32px; }

/* Icon hover animation */
@keyframes iconBounce {
  0%        { transform: scale(1)    rotate(0deg); }
  30%       { transform: scale(1.22) rotate(-10deg); }
  60%       { transform: scale(0.93) rotate(5deg); }
  80%       { transform: scale(1.06) rotate(-2deg); }
  100%      { transform: scale(1)    rotate(0deg); }
}
.feat-card:hover .feat-icon-wrap {
  animation: iconBounce .55s cubic-bezier(.22,1,.36,1);
}

/* Icon */
.feat-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.feat-icon-gold { background: #F5EFE8; color: #C4A882; }
.feat-icon-warm { background: #FDF3E8; color: #D4956A; }
.feat-icon-sage { background: #EDF4EE; color: #5A8F62; }
.feat-icon-ink  { background: #F0EFEE; color: #5A5452; }
.feat-icon-rose { background: #FDF0F0; color: #C47070; }
.feat-icon-blue   { background: #EEF2FA; color: #6080B8; }
.feat-icon-purple { background: #F3EEFA; color: #8060B8; }

.feat-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.3px;
  margin-bottom: 8px;
}

.feat-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}

/* ── Features responsive ── */
@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-card:nth-child(1),
  .feat-card:nth-child(2),
  .feat-card:nth-child(3),
  .feat-card:nth-child(4),
  .feat-card:nth-child(5),
  .feat-card:nth-child(6) { grid-column: span 1; }
  .feat-card:nth-child(1),
  .feat-card:nth-child(4) { grid-column: span 2; }
  .feat-container { padding: 0 40px; }
  .features { padding: 80px 0; }
}

@media (max-width: 768px) {
  .feat-grid { grid-template-columns: 1fr; gap: 14px; }
  .feat-card:nth-child(n) { grid-column: span 1 !important; }
  .feat-container { padding: 0 20px; }
  .features { padding: 64px 0; }
  .feat-header { margin-bottom: 40px; }
  .feat-card { padding: 24px 20px; opacity: 1; transform: none; }
}

/* ── HOW IT WORKS ── */
.hiw {
  background: var(--gold-bg);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.hiw-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 52px;
}

.hiw-header {
  text-align: center;
  margin-bottom: 80px;
}

.hiw-header .section-h2 { margin: 14px 0 10px; }

/* Steps */
.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hiw-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 32px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.hiw-step.visible { opacity: 1; transform: translateY(0); }

.hiw-step:nth-child(1) { transition-delay: 0ms; }
.hiw-step:nth-child(2) { transition-delay: 120ms; }
.hiw-step:nth-child(3) { transition-delay: 240ms; }

/* Left column: number + connector */
.hiw-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hiw-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.hiw-connector {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--border2), transparent);
  margin: 8px 0;
  min-height: 80px;
}

/* Right column: content row */
.hiw-step-right {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  grid-template-rows: auto;
  column-gap: 20px;
  align-items: start;
  padding-bottom: 56px;
}

.hiw-step--last .hiw-step-right { padding-bottom: 0; }

.hiw-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hiw-icon-wrap svg { width: 22px; height: 22px; }
.hiw-icon-warm { background: #FDF3E8; color: #D4956A; }
.hiw-icon-sage { background: #EDF4EE; color: #5A8F62; }

.hiw-step-content {
  padding-top: 8px;
}

.hiw-step-title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.4px;
  margin-bottom: 8px;
  color: var(--ink);
}

.hiw-step-desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 380px;
}

/* Step visuals */
.hiw-step-visual {
  padding-top: 4px;
  flex-shrink: 0;
}

/* Visual 1: mini phone */
.hiw-phone-mini {
  width: 120px;
  height: 90px;
  background: var(--ink);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(26,26,26,.18);
}

.hiw-screen-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hiw-app-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hiw-app-icon svg { width: 20px; height: 20px; }

.hiw-screen-text {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.hiw-screen-sub {
  color: #5B8CF4;
  font-size: 11px;
  font-weight: 600;
}

/* Visual 2: list preview */
.hiw-list-preview {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 190px;
  box-shadow: 0 4px 16px rgba(26,26,26,.06);
}

.hiw-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
}

.hiw-list-item span:last-child { margin-left: auto; }

.hiw-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--success-bg);
  color: var(--success);
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hiw-check--empty {
  background: var(--gold-bg);
  border: 1.5px solid var(--border);
}

.hiw-price {
  color: var(--muted);
  font-size: 11px;
}

/* Visual 3: avatars */
.hiw-visual-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hiw-avatars {
  display: flex;
}

.hiw-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold-bg);
  margin-left: -8px;
}

.hiw-avatar:first-child { margin-left: 0; }

.hiw-avatar--add {
  background: var(--border);
  color: var(--mid);
  font-size: 16px;
}

.hiw-share-tag {
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ── HIW responsive ── */
@media (max-width: 1024px) {
  .hiw-container { padding: 0 40px; }
  .hiw { padding: 80px 0; }
  .hiw-step-visual { display: none; }
  .hiw-step-right { grid-template-columns: 52px 1fr; }
}

@media (max-width: 768px) {
  .hiw-container { padding: 0 20px; }
  .hiw { padding: 64px 0; }
  .hiw-header { margin-bottom: 48px; }
  .hiw-step { grid-template-columns: 48px 1fr; gap: 0 16px; opacity: 1; transform: none; }
  .hiw-num { width: 44px; height: 44px; }
  .hiw-step-right { grid-template-columns: 44px 1fr; column-gap: 14px; padding-bottom: 40px; }
  .hiw-step-title { font-size: 17px; }
  .hiw-step-desc { font-size: 14px; }
}

/* ── REVIEWS ── */
.reviews {
  background: var(--cream);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.reviews-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 52px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 64px;
}

.reviews-header .section-h2 { margin: 14px 0 16px; }

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.rev-stars {
  color: #F0A500;
  font-size: 18px;
  letter-spacing: 2px;
}

.rev-stars--sm { font-size: 12px; letter-spacing: 1px; }

.rev-score {
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.5px;
}

.rev-count {
  font-size: 14px;
  color: var(--muted);
}

/* Slider */
.rev-slider-wrap {
  position: relative;
  overflow: hidden;
}

.rev-track {
  display: flex;
  gap: 20px;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
  cursor: grab;
  user-select: none;
}
.rev-track.dragging { cursor: grabbing; transition: none; }

/* Card */
.rev-card {
  background: rgba(255, 253, 252, 0.55);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  box-shadow: 0 4px 24px rgba(26,26,26,.05), inset 0 1px 0 rgba(255,255,255,.85);
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.rev-card:hover {
  background: rgba(255, 253, 252, 0.82);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(196,168,130,.14), inset 0 1px 0 rgba(255,255,255,.9);
}

/* Controls */
.rev-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.rev-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
  flex-shrink: 0;
}
.rev-arrow svg { width: 18px; height: 18px; }
.rev-arrow:hover { background: var(--ink); border-color: var(--ink); color: #fff; transform: scale(1.05); }
.rev-arrow:disabled { opacity: .35; pointer-events: none; }

.rev-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.rev-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border2);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.rev-dot.active {
  background: var(--ink);
  transform: scale(1.4);
}

.rev-quote {
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
  font-family: Georgia, serif;
  margin-bottom: -12px;
}

.rev-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  flex: 1;
}

.rev-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.rev-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rev-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rev-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.rev-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--success);
  background: var(--success-bg);
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
}

/* CTA */
.rev-cta {
  text-align: center;
  margin-top: 52px;
}

.rev-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.2px;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.rev-cta-btn:hover { background: #2A2A2A; transform: translateY(-2px); }

/* ── Reviews responsive ── */
@media (max-width: 1024px) {
  .reviews-container { padding: 0 40px; }
  .reviews { padding: 80px 0; }
  .rev-card { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 768px) {
  .reviews-container { padding: 0 20px; }
  .reviews { padding: 64px 0; }
  .reviews-header { margin-bottom: 40px; }
  .rev-card { flex: 0 0 calc(100% - 0px); }
  .rev-card:hover { box-shadow: none; border-color: var(--border); }
}

/* ── DOWNLOAD CTA ── */
.cta-section {
  background: var(--ink);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-blob {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,168,130,.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 52px;
  position: relative;
}

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,168,130,.12);
  border: 1px solid rgba(196,168,130,.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.cta-h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.1;
}

.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta-stores {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.cta-store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 13px;
  transition: transform .2s, box-shadow .2s;
}
.cta-store-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.3); }

.cta-store-btn svg { width: 26px; height: 26px; flex-shrink: 0; }

.cta-store-btn div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.cta-store-label { font-size: 10px; }

.cta-store-btn strong { font-size: 15px; font-weight: 700; }

.cta-store-apple {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
}
.cta-store-apple:hover {
  background: rgba(255, 255, 255, 0.22);
}

.cta-store-google {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}
.cta-store-google:hover {
  background: rgba(255, 255, 255, 0.14);
}

.cta-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
}

.cta-proof strong { color: #fff; }

.cta-proof-avatars {
  display: flex;
}

.cta-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  margin-left: -6px;
}
.cta-av:first-child { margin-left: 0; }

.cta-dot { color: rgba(255,255,255,.2); }

.cta-stars { color: #F0A500; font-size: 13px; }

/* ── FOOTER ── */
.footer {
  background: #111;
  padding: 64px 0 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 52px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 56px;
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.3px;
}

.footer-logo .nav-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo .nav-logo-icon svg { width: 16px; height: 16px; }

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  line-height: 1.5;
}

.footer-langs {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.footer-lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.footer-lang-btn:hover { border-color: var(--gold); color: var(--gold); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 12px;
  color: rgba(255,255,255,.25);
}

.footer-badge {
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
.footer-badge--emerge {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.emerge-label {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
}
.emerge-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.emerge-logo {
  fill: rgba(255,255,255,.5);
  height: 14px;
  width: auto;
  vertical-align: middle;
  transition: fill .2s;
}
.emerge-link:hover .emerge-logo {
  fill: rgba(255,255,255,.85);
}

/* ── CTA + Footer responsive ── */
@media (max-width: 1024px) {
  .cta-container { padding: 0 40px; }
  .footer-container { padding: 0 40px; }
}

@media (max-width: 768px) {
  .cta-section { padding: 72px 0; }
  .cta-container { padding: 0 20px; }
  .cta-stores { flex-direction: column; align-items: center; }
  .cta-store-btn { width: 100%; max-width: 280px; }

  .footer { padding: 48px 0 32px; }
  .footer-container { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ── SCANNER BLOCK ── */
.scanner-block {
  background: #1C1A17;
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.scanner-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left */
.scanner-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.scanner-eyebrow-line {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.scanner-h2 {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.0;
  margin-bottom: 24px;
}

.scanner-h2-white { color: #fff; }
.scanner-h2-gold  { color: var(--gold); }

.scanner-desc {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
}

.scanner-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.scanner-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,.65);
}

.scanner-check {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(196,168,130,.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.scanner-check svg { width: 12px; height: 12px; }

/* Right: viewfinder */
.scanner-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.scanner-viewfinder {
  width: 340px;
  height: 260px;
  background: #252219;
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
}

/* Corner brackets */
.scanner-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--gold);
  border-style: solid;
}
.scanner-corner--tl { top: 18px; left: 18px;  border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.scanner-corner--tr { top: 18px; right: 18px; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.scanner-corner--bl { bottom: 18px; left: 18px;  border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.scanner-corner--br { bottom: 18px; right: 18px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

/* Barcode */
.scanner-barcode {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.scanner-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 70px;
}

.scanner-bars span {
  display: block;
  width: 4px;
  background: var(--gold);
  border-radius: 1px;
  opacity: .75;
}

/* Laser scan line */
@keyframes laserScan {
  0%   { top: 30%; opacity: 1; }
  50%  { top: 70%; opacity: .7; }
  100% { top: 30%; opacity: 1; }
}

.scanner-laser {
  position: absolute;
  left: 18px;
  right: 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(196,168,130,.6);
  animation: laserScan 2s ease-in-out infinite;
}

.scanner-hint {
  font-size: 12px;
  color: rgba(196,168,130,.5);
  letter-spacing: .3px;
  position: absolute;
  bottom: 18px;
}

/* Result card */
.scanner-result {
  width: 340px;
  background: #2A261F;
  border: 1.5px solid rgba(196,168,130,.2);
  border-radius: 16px;
  padding: 16px 20px;
}

.scanner-result-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 10px;
}

.scanner-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.scanner-result-name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.3px;
}

.scanner-result-sub {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 2px;
}

.scanner-result-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -.5px;
  flex-shrink: 0;
}

/* ── Scanner responsive ── */
@media (max-width: 1024px) {
  .scanner-container { padding: 0 40px; gap: 48px; }
  .scanner-viewfinder, .scanner-result { width: 280px; }
  .scanner-block { padding: 80px 0; }
}

@media (max-width: 768px) {
  .scanner-block { padding: 64px 0; }
  .scanner-container { padding: 0 20px; grid-template-columns: 1fr; gap: 40px; }
  .scanner-right { align-items: center; }
  .scanner-viewfinder, .scanner-result { width: 100%; max-width: 340px; }
  .scanner-h2 { font-size: clamp(40px, 12vw, 64px); }
}

/* ── VISUAL SEARCH BLOCK ── */
.vis-block {
  background: #1C1A17;
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.vis-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* ── Instagram post card ── */
.vis-insta {
  width: 300px;
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}

.vis-insta-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
}

.vis-insta-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  flex-shrink: 0;
}

.vis-insta-meta { flex: 1; }
.vis-insta-user {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.vis-insta-location {
  font-size: 10px;
  color: rgba(255,255,255,.35);
  margin-top: 1px;
}
.vis-insta-logo { flex-shrink: 0; }

/* Photo area */
.vis-insta-photo {
  width: 300px;
  height: 300px;
  background: linear-gradient(145deg, #2a1f35 0%, #1a1528 50%, #231a2e 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Editorial gradient photo background */
.vis-photo-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 35% 38%, rgba(139,92,246,.28) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 72% 68%, rgba(196,168,130,.18) 0%, transparent 65%),
    linear-gradient(160deg, #1e1624 0%, #16121e 40%, #1a1420 100%);
}

/* Detection focus boxes (like camera AF brackets) */
.vis-focus {
  position: absolute;
  border: 1px solid rgba(167,139,250,.3);
  border-radius: 6px;
}
.vis-focus-top {
  top: 18%; left: 22%;
  width: 38%; height: 42%;
}
.vis-focus-bot {
  bottom: 12%; right: 14%;
  width: 30%; height: 24%;
  border-color: rgba(196,168,130,.35);
}
.vis-focus-c {
  position: absolute;
  width: 10px; height: 10px;
  border-color: inherit;
  border-style: solid;
}
.vis-focus-tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; border-radius: 3px 0 0 0; }
.vis-focus-tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; border-radius: 0 3px 0 0; }
.vis-focus-bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; border-radius: 0 0 0 3px; }
.vis-focus-br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; border-radius: 0 0 3px 0; }

@keyframes focusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
.vis-focus-top { animation: focusPulse 2.2s ease-in-out infinite; }
.vis-focus-bot { animation: focusPulse 2.2s ease-in-out infinite .8s; }

/* Detection tags */
.vis-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(10,8,18,.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(167,139,250,.4);
  border-radius: 20px;
  padding: 5px 10px 5px 6px;
  font-size: 11px;
  font-weight: 600;
  color: #e9d5ff;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.vis-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a78bfa;
  box-shadow: 0 0 6px rgba(167,139,250,.9);
  flex-shrink: 0;
}
.vis-tag-jacket { top: 18%; left: 10%; }
.vis-tag-shoes  { bottom: 18%; right: 10%; }

/* Scan line */
@keyframes visScan {
  0%   { top: 10%; opacity: .9; }
  50%  { top: 85%; opacity: .5; }
  100% { top: 10%; opacity: .9; }
}
.vis-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(167,139,250,.7) 30%, rgba(167,139,250,.9) 50%, rgba(167,139,250,.7) 70%, transparent 100%);
  box-shadow: 0 0 12px rgba(167,139,250,.5);
  animation: visScan 2.8s ease-in-out infinite;
  z-index: 3;
}

@keyframes bboxPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* Instagram footer icons */
.vis-insta-footer {
  display: flex;
  gap: 14px;
  padding: 12px 14px 10px;
}

/* Result card tweaks */
.vis-result-card {
  width: 300px;
}
.vis-result-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.vis-result-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a78bfa;
  box-shadow: 0 0 8px rgba(167,139,250,.6);
  animation: bboxPulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.vis-result-top .scanner-result-eyebrow { margin-bottom: 0; }

.vis-confidence {
  font-size: 11px;
  font-weight: 700;
  color: #a78bfa;
  letter-spacing: .3px;
  white-space: nowrap;
  flex-shrink: 0;
  background: rgba(167,139,250,.1);
  padding: 3px 8px;
  border-radius: 6px;
}

@media (max-width: 1024px) {
  .vis-block { padding: 80px 0; }
  .vis-insta, .vis-result-card { width: 260px; }
  .vis-insta-photo { width: 260px; height: 260px; }
}

@media (max-width: 768px) {
  .vis-block { padding: 64px 0; }
  .vis-block .scanner-container { grid-template-columns: 1fr; gap: 40px; }
  .vis-right { align-items: center; order: 2; }
  .vis-block .scanner-left { order: 1; }
  .vis-insta, .vis-result-card { width: 100%; max-width: 320px; }
  .vis-insta-photo { width: 100%; height: 280px; }
}

/* ── PRICING ── */
.pricing-section {
  background: var(--cream);
  padding: 120px 0;
  border-top: 1px solid rgba(0,0,0,.06);
}

.pricing-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 52px;
}

/* Toggle */
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,.06);
  border-radius: 50px;
  padding: 4px;
  margin-top: 32px;
  position: relative;
}

.pricing-toggle-btn {
  background: none;
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  opacity: .45;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.pricing-toggle-btn.active {
  background: #fff;
  opacity: 1;
  box-shadow: 0 1px 6px rgba(0,0,0,.1);
}

.pricing-toggle-badge {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #5a8f62;
  border-radius: 50px;
  padding: 3px 10px;
  margin-left: 4px;
  letter-spacing: .3px;
}

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

/* Card base */
.pricing-card {
  background: #fff;
  border: 1.5px solid rgba(0,0,0,.08);
  border-radius: 24px;
  padding: 32px 28px 28px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}

/* Pro card — highlighted */
.pricing-card-pro {
  border-color: var(--gold);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(196,168,130,.18);
  transform: translateY(-6px);
}
.pricing-card-pro:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(196,168,130,.25);
}

/* Family card */
.pricing-card-family {
  border-color: rgba(90,143,98,.3);
}

/* Badge */
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-plan-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .45;
  margin-bottom: 16px;
}
.pricing-card-pro .pricing-plan-name { color: var(--gold); opacity: 1; }
.pricing-card-family .pricing-plan-name { color: #5a8f62; opacity: 1; }

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.pricing-price {
  font-size: 48px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -2px;
  line-height: 1;
}
.pricing-currency {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  opacity: .5;
  margin-bottom: 4px;
}
.pricing-slash {
  font-size: 14px;
  color: var(--ink);
  opacity: .4;
}

.pricing-period {
  font-size: 12px;
  color: var(--ink);
  opacity: .4;
  margin-bottom: 28px;
}

/* Feature list */
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding: 0;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink);
  opacity: .8;
}
.pf-check {
  font-size: 12px;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pf-yes { background: rgba(90,143,98,.12); color: #5a8f62; }
.pf-no  { background: rgba(0,0,0,.05);     color: var(--ink); opacity: .3; }

/* CTAs */
.pricing-cta {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}
.pricing-cta-free {
  background: rgba(0,0,0,.05);
  color: var(--ink);
}
.pricing-cta-free:hover { background: rgba(0,0,0,.1); }

.pricing-cta-pro {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(196,168,130,.4);
}
.pricing-cta-pro:hover { background: #b89a6a; box-shadow: 0 6px 24px rgba(196,168,130,.5); }

.pricing-cta-family {
  background: var(--ink);
  color: #fff;
}
.pricing-cta-family:hover { background: #3a3028; }

/* Responsive */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card-pro { transform: none; }
  .pricing-card-pro:hover { transform: translateY(-4px); }
  .pricing-section { padding: 80px 0; }
}

/* ── LEGAL PAGES ── */
.legal-page {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--cream);
}

.legal-hero {
  background: var(--ink);
  padding: 72px 52px 64px;
  text-align: center;
}

.legal-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color .2s;
}
.legal-back:hover { color: rgba(255,255,255,.8); }
.legal-back svg { width: 14px; height: 14px; }

.legal-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.legal-hero .legal-date {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 52px 120px;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.3px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--border);
}

.legal-section p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-section ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.legal-section ul li {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
}

.legal-section a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-contact-card {
  background: var(--gold-bg);
  border: 1.5px solid rgba(196,168,130,.3);
  border-radius: 16px;
  padding: 24px 28px;
  margin-top: 16px;
}

.legal-contact-card p {
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 500;
}

.legal-contact-card a {
  color: var(--accent);
}

@media (max-width: 768px) {
  .legal-hero { padding: 48px 20px 40px; }
  .legal-body { padding: 40px 20px 72px; }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 500;
  width: calc(100% - 48px);
  max-width: 780px;
  background: rgba(26, 26, 26, 0.78);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.06);
  padding: 20px 24px;
  opacity: 0;
  transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .35s;
  pointer-events: none;
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.cookie-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.cookie-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.cookie-desc {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
}

.cookie-desc a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform .15s, opacity .15s;
  white-space: nowrap;
}
.cookie-btn:hover { transform: translateY(-1px); opacity: .88; }

.cookie-btn--reject {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
}

.cookie-btn--accept {
  background: var(--gold);
  color: var(--ink);
}

@media (max-width: 600px) {
  .cookie-banner { bottom: 16px; width: calc(100% - 32px); padding: 16px 18px; }
  .cookie-banner-inner { flex-direction: column; gap: 14px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ── Scroll-reveal system ── */
[data-reveal],
[data-reveal="left"],
[data-reveal="right"] {
  opacity: 0;
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
[data-reveal]          { transform: translateY(40px); }
[data-reveal="left"]   { transform: translateX(-48px); }
[data-reveal="right"]  { transform: translateX(48px); }

[data-reveal].revealed,
[data-reveal="left"].revealed,
[data-reveal="right"].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal="left"], [data-reveal="right"] {
    opacity: 1; transform: none; transition: none;
  }
}
