/*
Theme Name: Brilliant
Theme URI: https://brilliant.ai
Author: Chilly Pills
Author URI: https://chillypills.com
Description: Brilliant AI shopping assistant landing page
Version: 1.18.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brilliant
*/

/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; overflow-x: clip; }
body { font-family: 'Outfit', sans-serif; color: rgb(30,34,63); background: #fff; overflow-x: clip; }
a { text-decoration: none; }
svg { display: block; flex-shrink: 0; }

/* ─── Shared variables ─── */
:root {
  --purple: rgb(96,47,101);
  --purple-mid: rgb(147,79,176);
  --pink: rgb(222,100,177);
  --dark: rgb(50,31,66);
  --text: rgb(50,31,66);
  --accent-light: rgb(216,178,220);
  --max-w: 1280px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  border: none; cursor: pointer;
  border-radius: 50px; padding: 14px 32px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 15px;
  transition: filter .18s, transform .18s;
  white-space: nowrap;
}
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-dark  { background: var(--purple); color: #fff; box-shadow: 0 0 0 2px var(--purple); }
.btn-light {
  background: linear-gradient(135deg, rgba(147,79,176,.4) 3%, rgba(96,47,101,.4) 100%);
  color: #fff;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.btn-dark-outline { background: transparent; color: #fff; box-shadow: 0 0 0 2px rgba(255,255,255,.5); }

/* ─── HERO animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cardsIn {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cursor {
  0%, 100% { opacity: 1; } 50% { opacity: 0; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  /* No fixed height: on cramped viewports (short laptop screens) the hero grows
     taller than one screen instead of squeezing/overlapping its content — the
     cards just sit further down and are revealed by scrolling. */
  min-height: max(660px, 100svh);
  overflow: visible;
  background: center/cover no-repeat url('assets/hero-bg.jpg');
}

/* nav */
.hero-nav {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 32px 46px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 20;
}
.hero-logo { transform: rotate(180deg); }
.nav-lang {
  position: relative;
  display: flex; align-items: center; gap: 6px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 12px; padding: 13px 18px;
  color: #fff; font-size: 15px; cursor: pointer;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  user-select: none;
  transition: transform .25s ease;
}
.lang-dropdown {
  display: flex; flex-direction: column;
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 160px;
  background: rgba(30,20,45,.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px; padding: 6px;
  z-index: 200;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.nav-lang:hover,
.nav-lang.open { transform: translateY(-3px); }
/* Invisible bridge over the visual gap between the pill and the dropdown —
   without it, the cursor exits .nav-lang's hoverable box while crossing
   that gap and the dropdown closes before you can reach it. */
.nav-lang::after {
  content: ''; position: absolute;
  top: 100%; left: 0; right: 0; height: 14px;
}
.nav-lang:hover .lang-dropdown,
.nav-lang:focus-within .lang-dropdown,
.nav-lang.open .lang-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
.lang-opt {
  background: none; border: none;
  color: rgba(255,255,255,.85); cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 500;
  padding: 12px 14px; border-radius: 12px; text-align: left;
  text-decoration: none; display: block;
  transition: background .15s, color .15s;
}
.lang-opt:hover { background: rgba(255,255,255,.12); color: #fff; }
.lang-opt.active { color: #fff; background: rgba(255,255,255,.14); }

/* hero content */
.hero-body {
  flex: 1;
  position: relative;
  z-index: 15;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  padding: clamp(150px, 20vh, 210px) 24px 32px;
  text-align: center;
}

.powered-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,8,44,.26);
  border-radius: 23px; padding: 8px 18px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff; font-size: 13px;
  text-decoration: none;
  animation: fadeUp .6s ease backwards;
  transition: transform .2s ease;
}
.powered-badge:hover { transform: translateY(-3px); }

.hero-headline {
  display: flex; align-items: center; gap: 18px;
  margin-top: 32px;
  animation: fadeUp .6s .18s ease both;
}
.hero-headline .word {
  font-weight: 600;
  font-size: clamp(50px, 6.8vw, 110px);
  line-height: 1; color: #fff;
  text-shadow: 0 2px 40px rgba(80,20,100,.2);
}
.hero-headline .word-brilliant { letter-spacing: -2px; }
.hero-star-icon { width: clamp(38px, 4.6vw, 76px); height: clamp(38px, 4.6vw, 76px); color: #fff; }
/* Keeps the icon glued to "brilliant" as one flex item, so wrapping on
   narrow screens always breaks before this pair, never between them. */
.hero-headline-brand { display: inline-flex; align-items: center; gap: inherit; }

.hero-tagline {
  font-weight: 600;
  font-size: clamp(16px, 2vw, 34px);
  color: rgba(255,255,255,.92); margin-top: 32px;
  letter-spacing: .2px;
  animation: fadeUp .6s .34s ease both;
}

.hero-btns {
  display: flex; gap: 14px; margin-top: 32px;
  flex-wrap: wrap; justify-content: center;
  animation: fadeUp .6s .48s ease both;
}

/* Override primary button for hero */
.hero .btn-dark {
  background: linear-gradient(135deg, rgb(105,45,112), rgb(78,32,84));
  box-shadow: 0 6px 24px rgba(80,30,90,.45), 0 0 0 0 transparent;
}
.hero .btn-light { color: #fff; }

/* hero bottom: marquee orbit + pill + fade */
.hero-bottom {
  position: relative;
  /* never taller than the space left after 460px for content */
  height: max(200px, min(clamp(300px, 40vh, 400px), calc(100svh - 460px)));
  flex-shrink: 0;
  z-index: 999;
  overflow: visible;
  animation: cardsIn .8s .6s ease both;
}

.marquee-stage {
  position: absolute;
  inset: 0;
  overflow: visible;
  z-index: 9;
}

.hcard {
  position: absolute;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(90,30,110,.13), 0 3px 8px rgba(0,0,0,.06);
  padding: 11px;
  overflow: hidden;
  backdrop-filter: blur(4px);
  transform-origin: bottom center;
  will-change: transform;
}
.hcard-img {
  position: relative;
  width: 100%; height: 0; padding-bottom: 100%;
  border-radius: 9px;
  background: center/cover no-repeat #fff;
  pointer-events: none;
}
.hcard-icon {
  position: absolute; top: 8px; right: 8px;
  width: 34px; height: 34px;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.hcard-icon img { width: 100%; height: 100%; display: block; }
.hcard.is-hovered .hcard-icon { opacity: 1; transform: scale(1.2); }
.hcard-name {
  margin-top: 8px; font-weight: 700; font-size: 13px; color: #424969; line-height: 1.3;
  pointer-events: none;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hcard-price { margin-top: 4px; font-weight: 500; font-size: 13px; color: #424969; pointer-events: none; white-space: nowrap; }

/* search pill */
.hero-search {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  top: calc(40% - 50px); z-index: 12;
  width: clamp(300px, 42vw, 620px);
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 0 0 3px rgba(200,160,220,.5), 0 6px 12px rgba(0,0,0,.1), 0 20px 48px rgba(180,120,210,.32), 0 28px 40px -8px rgba(120,60,160,.25);
  padding: 18px 36px;
}
.hero-search p {
  font-weight: 500;
  font-size: clamp(13px, 1.4vw, 22px);
  color: var(--text); text-align: center;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-search p::after {
  content: '|';
  margin-left: 2px;
  color: var(--purple-mid);
  animation: cursor 1.1s ease infinite;
}

/* fade-out at bottom */
.hero-fade {
  position: absolute; left: 0; bottom: 0; right: 0;
  height: 220px; z-index: 8; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.6) 50%, #fff 100%);
}

/* gradient bridge between hero and sections below */
.hero-gradient-bridge {
  height: 120px;
  margin-top: -120px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 100%);
  pointer-events: none;
  position: relative;
  z-index: 5;
}

/* ─── SECTION COMMON ─── */
.section { padding: 96px 24px; margin-top: 4em; }
.section-center { text-align: center; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(222,100,177,.16);
  border-radius: 60px; padding: 7px 18px;
  font-weight: 600; font-size: 13px; letter-spacing: .8px;
  color: var(--purple-mid); text-transform: uppercase;
}
h2.section-h {
  font-weight: 500; font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.1; color: var(--text);
  max-width: 700px; margin: 0 auto;
}
.guide h2.section-h { max-width: 560px; }
h2.section-h strong {
  font-weight: 700;
  background: linear-gradient(90deg, var(--pink) 0%, var(--purple-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.45; color: var(--text);
  max-width: 520px; margin: 18px auto 0;
}

/* ─── GUIDE BETTER ─── */
.guide { background: #fff; }

/* browser mockup */
.browser-wrap { display: flex; justify-content: center; margin-top: 56px; padding: 0 24px; }
.browser {
  position: relative;
  width: 100%; max-width: 973px;
  border-radius: 20px; overflow: hidden;
  max-height: 790px;
  box-shadow: inset 0 0 38.5px rgba(63,31,66,.1);
  background: #fff;
  cursor: default; user-select: none;
}
.browser * { cursor: default !important; pointer-events: none; }
.browser-bar {
  height: 42px; background: #f0f0f0;
  display: flex; align-items: center;
  padding: 0 18px; gap: 9px;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.browser-url {
  flex: 1; margin: 0 12px;
  background: rgba(255,255,255,.6);
  border-radius: 6px; padding: 5px 12px;
  font-family: 'Inter', sans-serif; font-size: 11px;
  color: rgba(0,0,0,.4); text-align: center;
}

/* store nav */
.store-nav {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  margin: 14px 85px 0;
  background: rgba(255,255,255,.7);
  border: .6px solid rgba(200,200,215,.6);
  border-radius: 10px; padding: 8px 14px;
}
.store-brand {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 12.54px; color: #1E2939; letter-spacing: -.28px;
}
.store-icon-btn {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.store-search {
  flex: 1; position: relative;
  background: rgba(245,245,248,.8);
  border: .6px solid rgba(200,200,215,.5);
  border-radius: 6px; padding: 6px 10px 6px 26px;
  font-family: 'Inter', sans-serif; font-size: 10.03px;
  color: rgba(10,10,10,.4);
}
.store-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.cart-badge {
  position: relative; width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
}
.badge-dot {
  position: absolute; top: -4px; right: -4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #B46CBB; color: #fff;
  font-family: 'Inter', sans-serif; font-size: 7.5px;
  font-weight: 600; display: flex; align-items: center; justify-content: center;
}

/* store section: contains featured header + grid */
.store-section { padding: 30px 85px 0; }

.store-featured {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 0 20px;
}
.featured-label { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 18.81px; color: #1E2939; letter-spacing: .25px; }
.featured-sub { font-family: 'Inter', sans-serif; font-size: 10.03px; color: #4A5565; margin-top: 3px; letter-spacing: -.2px; }
.view-all {
  background: rgba(255,255,255,.6);
  border: .627px solid rgba(255,255,255,.8);
  border-radius: 8.78px; padding: 8.15px 15.68px;
  font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 10.03px; color: #364153; cursor: pointer; letter-spacing: -.2px;
}

/* product grid — 2 rows × 3 cols, row 2 partially visible */
.product-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 15px; padding: 0;
}
.pcard {
  border-radius: 10.03px; overflow: hidden;
  background: rgba(255,255,255,.4);
  border: .627px solid rgba(255,255,255,.6);
  box-shadow: 0 6.27px 9.41px -1.88px rgba(0,0,0,.1), 0 2.51px 3.76px -2.51px rgba(0,0,0,.1);
}
.pcard-img {
  position: relative; width: 100%; aspect-ratio: 1;
  background: center/cover no-repeat #E4DBD6;
}
.pcard-cat {
  position: absolute; left: 7.52px; top: 7.52px;
  background: rgba(255,255,255,.8); border-radius: 999px;
  border: .627px solid rgba(255,255,255,.9);
  padding: 2.51px 7.52px; font-family: 'Inter', sans-serif;
  font-weight: 500; font-size: 7.52px; color: #364153;
}
.pcard-icon {
  position: absolute; right: 6px; top: 6px;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
}
.pcard-icon img { width: 100%; height: 100%; }
.pcard-body { padding: 10.03px 10.03px 0; text-align: left; }
.pcard-title {
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 11.29px; color: #1E2939; letter-spacing: -.28px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-align: left;
}
.pcard-stars { color: #FDC700; font-size: 9px; margin-top: 2px; letter-spacing: 1px; }
.pcard-rating { font-family: 'Inter', sans-serif; font-size: 8.78px; color: #6A7282; letter-spacing: -.09px; }
.pcard-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 7.52px; padding-bottom: 10px; }
.pcard-price { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 15.05px; color: #B46CBB; letter-spacing: .04px; }
.pcard-add {
  background: #B46CBB; border-radius: 6.27px;
  padding: 5.02px 15.05px; font-family: 'Inter', sans-serif;
  font-weight: 500; font-size: 8.78px; color: #fff; letter-spacing: -.09px;
}

/* gradient fade over second row */
.browser-content-fade {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.95) 70%, #fff 100%);
  pointer-events: none; z-index: 2;
}

/* ─── MOCKUP POPUP (auto-opening product assistant menu) ───
   Sized to sit fully inside the product image it belongs to,
   inset 1em on every side, never spilling into neighboring cards. */
.mockup-popup {
  position: absolute;
  inset: 1em;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(20,16,40,.22), 0 4px 12px rgba(0,0,0,.08);
  padding: 10px 8px;
  z-index: 20;
  display: flex; flex-direction: column; justify-content: space-evenly;
  transform-origin: top right;
  transform: scale(.04);
  opacity: 0;
  transition: transform .6s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
  pointer-events: none;
  overflow: hidden;
}
/* Two copies exist in the markup (one per anchor card) — only one is ever
   shown, swapped by breakpoint below, so the popup always opens from a card
   that's fully visible instead of one that may be cropped by the fade/grid. */
.mockup-popup--mobile { display: none; }
.mockup-popup.is-open { transform: scale(1); opacity: 1; }
.pcard-img:has(.mockup-popup.is-open) .pcard-icon { opacity: 0; }
.mockup-popup-list { list-style: none; display: flex; flex-direction: column; justify-content: space-evenly; height: 100%; }
.mockup-popup-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px;
}
.mockup-popup-list img { width: 15px; height: 15px; flex-shrink: 0; }
.mockup-popup-list span {
  font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 16px;
  line-height: 1.3; letter-spacing: 0; color: #3A4155;
  white-space: nowrap;
}

/* assistant button */
.browser-assistant {
  position: absolute; left: 0; bottom: 110px;
  width: 150px; height: 150px;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
}
.browser-assistant img { width: 100%; height: 100%; }
/* hidden while the analysis modal is open — its header icon already covers that role */
.browser:has(.mockup-modal.is-open) .browser-assistant { opacity: 0; pointer-events: none; transition: opacity .25s ease; }

/* ─── MOCKUP POPUP 2 (free-delivery nudge) ───
   z-index sits BELOW the assistant icon (10) on purpose, so it visually
   emerges from behind it and stays open once triggered. */
.mockup-popup2 {
  position: absolute;
  left: 85px; bottom: 200px;
  width: min(320px, 62%);
  background: rgba(255,255,255,.95);
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(20,16,40,.2), 0 6px 16px rgba(0,0,0,.08);
  padding: 22px 26px;
  z-index: 9;
  transform-origin: bottom left;
  transform: scale(.04);
  opacity: 0;
  transition: transform .6s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
  pointer-events: none;
}
.mockup-popup2.is-open { transform: scale(1); opacity: 1; }
.mockup-popup2-title {
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 23.18px;
  line-height: 26px; letter-spacing: 0; color: #212121;
}
.mockup-popup2-sub {
  font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 19.87px;
  line-height: 26px; letter-spacing: 0; color: #616161;
  margin-top: 16px;
}

/* ─── MOCKUP MODAL (product + AI analysis panel) ───
   Appears above every card in the mockup once the two popups above have
   closed, with a dark backdrop that dims everything behind it. */
.mockup-modal {
  position: absolute; inset: 0;
  background: rgba(255,255,255,.35);
  box-shadow: inset 0 0 90px rgba(20,16,40,.4);
  z-index: 30;
  display: flex; align-items: center; justify-content: center;
  padding: 3%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.mockup-modal.is-open { opacity: 1; }
.mm-box {
  width: 100%; max-width: 900px; height: auto; max-height: 460px;
  background: #fff; border-radius: 20px;
  box-shadow: 0 30px 70px rgba(20,16,40,.35);
  display: flex; flex-direction: column; overflow: hidden;
  transform-origin: 80% 15%; /* roughly where the shirt card sits in the grid */
  transform: scale(.04);
  transition: transform .5s cubic-bezier(.3,.9,.4,1.05);
}
.mockup-modal.is-open .mm-box { transform: scale(1); }

/* topbar */
.mm-topbar {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 16px; border-bottom: 1px solid rgba(30,34,63,.08);
  flex-shrink: 0;
}
.mm-icon-btn {
  background: none; border: none; cursor: pointer;
  width: 15px; height: 15px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.mm-icon-btn img { width: 100%; height: 100%; }
.mm-icon-btn.mm-close { margin-left: 4px; }
.mm-icon-btn.mm-close img { width: 11px; height: 11px; }
.mm-search {
  flex: 1; max-width: 420px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  background: #F5F5F8; border: none; border-radius: 8.26px;
  padding: 10px 18px;
}
.mm-search span { flex: 1; font-family: 'Outfit', sans-serif; font-weight: 500; font-style: italic; font-size: 11.01px; line-height: 16.5px; color: #8A92B2; }
.mm-search img { width: 13px; height: 13px; flex-shrink: 0; }
.mm-search img.mm-search-expand { width: 15px; height: 15px; }
.mm-topbar-icons { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.mm-topbar-icons img { width: 15px; height: 15px; display: block; }

/* body: product + chat */
.mm-body { flex: 1; display: flex; overflow: hidden; }
.mm-product {
  flex: 0 0 70%; display: flex; gap: 18px;
  padding: 18px; overflow-y: auto;
}
.mm-gallery { display: flex; gap: 8px; flex-shrink: 0; }
.mm-thumbs { display: flex; flex-direction: column; gap: 10px; }
.mm-thumb {
  width: 42px; height: 42px; border-radius: 10px;
  background: center/cover no-repeat #F0EBE6;
  border: 1.5px solid transparent;
}
.mm-thumb--active { border-color: var(--purple); }
.mm-thumb--video { background: #2b2b38; position: relative; }
.mm-thumb--video::after {
  content: ''; position: absolute; inset: 0; margin: auto;
  width: 0; height: 0;
  border-style: solid; border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
}
.mm-main-image {
  width: 200px; height: 248px; border-radius: 16px;
  background: center/cover no-repeat #F0EBE6;
  flex-shrink: 0;
}
.mm-info { flex: 0 1 auto; max-width: 220px; display: flex; flex-direction: column; min-width: 0; }
.mm-info h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 19.26px; color: #1E2939; text-align: left; }
.mm-price { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 13.76px; color: var(--text); margin-top: 4px; text-align: left; }
.mm-actions { display: flex; justify-content: space-between; gap: 6px; margin-top: 18px; }
.mm-action { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.mm-action-icon {
  width: 18px; height: 18px; padding: 11px;
  background: #F5F4FA; border-radius: 50%;
  box-sizing: content-box;
  display: flex; align-items: center; justify-content: center;
}
/* The circle lives on this wrapper, not on the <img> itself — Chrome corrupts
   the vector rendering of thin/disconnected SVG paths (like corner brackets)
   when border-radius + padding are applied directly to an <img>. */
.mm-action-icon img { width: 100%; height: 100%; display: block; }
.mm-action span { font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 9.63px; line-height: 13.8px; color: #424969; text-align: center; white-space: nowrap; }
.mm-size { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 16px; }
.mm-size-label { font-family: 'Outfit', sans-serif; font-size: 9.63px; line-height: 13.8px; font-weight: 500; color: #424969; }
.mm-size-value { font-weight: 700; }
.mm-size-options { display: flex; gap: 8.26px; }
.mm-size-options button {
  width: 27px; height: 27px; padding: 0; border-radius: 50%;
  border: 1px solid rgba(30,34,63,.15); background: #fff; box-shadow: none;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 9.63px; color: #424969; cursor: default;
}
.mm-size-options button.is-active { background: #424969; border-color: #424969; color: #fff; box-shadow: none; }
.mm-add-btn {
  margin-top: 14px; width: 100%; border: none; border-radius: 999px;
  background: var(--purple-mid); color: #fff; padding: 12px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 12px; cursor: default;
}
.mm-why { margin-top: 18px; background: #F5F5F8; border-radius: 14px; padding: 12px 14px; }
.mm-why-head { display: flex; align-items: center; justify-content: space-between; }
.mm-why-head > span:first-child { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 11.01px; line-height: 16.5px; color: var(--text); }
.mm-ai-summary {
  display: flex; align-items: center; gap: 4px;
  background: #fff; border-radius: 999px; padding: 5px 10px;
  font-family: 'Outfit', sans-serif; font-size: 9.63px; line-height: 13.8px; font-weight: 500; color: #505980;
}
.mm-ai-plus { font-weight: 700; font-size: 10px; line-height: 1; color: #505980; }
.mm-why ul { list-style: none; margin-top: 8px; display: flex; flex-direction: column; gap: 5px; }
.mm-why li {
  font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 9.63px; line-height: 13.8px; color: #424969;
  display: flex; align-items: center; gap: 6px;
}
.mm-why li::before {
  content: '✓'; color: #505980; font-size: 10px; font-weight: 700; line-height: 13.8px; flex-shrink: 0;
}

/* chat / analysis mode panel */
.mm-chat {
  flex: 0 0 30%;
  background: #fff; border-left: 1px solid rgba(30,34,63,.08);
  display: flex; flex-direction: column;
}
.mm-chat-head {
  display: flex; align-items: center; justify-content: flex-start; gap: 0;
  padding: 12px 14px; border-bottom: 1px solid rgba(30,34,63,.08);
}
.mm-chat-head img { width: 14px; height: 14px; margin: 0 2px 0 0; }
.mm-chat-head span:nth-child(2) {
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 11.01px; line-height: 16.5px; color: var(--text);
  flex: 0 1 auto; margin: 0; padding: 0; text-align: left;
}
.mm-chat-close { margin-left: auto; }
.mm-chat-close { font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 9.63px; line-height: 13.8px; color: #8A92B2; }
.mm-chat-body { flex: 1; padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; overflow-y: auto; }
.mm-chat-msg {
  align-self: flex-start; width: fit-content; max-width: 85%;
  background: #F5F5F8; border-radius: 14px; padding: 10px 12px;
  font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 11.01px; line-height: 16.5px; color: var(--text);
  text-align: left;
}
.mm-chat-chip {
  align-self: flex-end; width: max-content; max-width: 85%;
  background: #fff; border: 1px solid rgba(30,34,63,.08); border-radius: 14px; padding: 9px 12px;
  font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 11.01px; line-height: 16.5px; color: #424969; text-align: right;
  box-shadow: none;
}
.mm-chat-input {
  margin: 10px 14px; display: flex; align-items: center; justify-content: space-between;
  background: #F5F5F8; border: none; border-radius: 8.26px;
  padding: 10px 18px;
}
.mm-chat-input span { font-family: 'Outfit', sans-serif; font-weight: 500; font-style: italic; font-size: 11.01px; line-height: 16.5px; color: #8A92B2; }
.mm-chat-input img { width: 11px; height: 11px; }
.mm-powered {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: 0 14px 12px; font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 7.57px; line-height: 12.4px; color: #8A92B2;
}
.mm-powered img { width: 12px; height: 12px; }

/* ─── THREE PILLARS ─── */
.pillars {
  display: flex; justify-content: center;
  gap: 0; margin: 4em auto 72px;
  max-width: 1150px; padding: 0 24px;
  padding-top: 32px;
}
.pillar {
  flex: 1; text-align: center;
  padding: 0 48px;
  font-size: 26.69px;
  font-weight: 600; line-height: 1.2;
  color: var(--text);
}
.pillar:first-child { padding: 0 64px; }
.pillar span {
  font-weight: 400; display: block; margin-top: 10px;
  font-size: 26.69px;
  color: var(--text);
  line-height: 1.2;
}
.pillar + .pillar { border-left: 1px solid rgba(30,34,63,.1); }

/* ─── DISCOVERY ─── */
.discovery-pin-wrapper { background: #fff; margin-top: 6em; }
.discovery {
  position: sticky; top: 0;
  height: 100svh; min-height: 500px;
  overflow-x: clip;
  padding: 48px 0 32px;
  display: flex; flex-direction: column; justify-content: center;
  text-align: center; background: #fff;
}
.discovery h2.section-h { color: var(--dark); }

.discovery-dots { display: none; }

.discovery-slider { overflow-x: clip; overflow-y: visible; margin-top: 28px; padding: 20px 0 24px; flex-shrink: 0; }
.discovery-track {
  display: flex; gap: 20px; padding-left: 19vw;
  will-change: transform;
}

/* each slide = full white card, two columns */
.dcard {
  flex: 0 0 62vw;
  background: #fff; border-radius: 40px;
  box-shadow: inset 0 0 35px rgba(216,178,220,.4);
  padding: clamp(34px, 4vw, 56px) clamp(52px, 6vw, 88px);
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 4vw, 64px); align-items: center;
  text-align: left; cursor: default;
  opacity: 1;
  transition: opacity .5s ease;
}
.dcard--active { box-shadow: 0 0 35px rgba(216,178,220,.5); }
.dcard--prev { opacity: .1; }
.dcard:not(.dcard--active) { cursor: pointer; }

.dcard-text { display: flex; flex-direction: column; }
.dcard-text .section-tag {
  align-self: flex-start;
  background: rgba(222,100,177,.20);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.20);
  font-size: 18px; font-weight: 500;
  padding: 8px 20px; gap: 10px;
}
.dcard-text .section-tag .badge-text {
  background: linear-gradient(90deg, #934FB0 3%, #DE64B1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dcard h3 {
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: clamp(22px, 2vw, 30px); line-height: 1.15;
  color: var(--dark); margin-top: 16px;
}
.dcard p {
  font-size: clamp(14px, 1.2vw, 16px); line-height: 1.65;
  color: #6b7280; margin-top: 14px;
}
.dcard-image {
  width: 100%;
  border-radius: 24px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.dcard-image img,
.dcard-image video {
  width: 100%; height: auto;
  object-fit: contain; display: block;
  border-radius: 14px;
  filter: drop-shadow(0 8px 24px rgba(100,40,140,.13));
}


/* mockup panel inside card */
.dcard-visual {
  display: flex; flex-direction: column; gap: 14px;
}
.dm-searchbar {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid rgb(228,221,231); border-radius: 999px;
  padding: 10px 18px; background: #fafafa;
}
.dm-searchbar span { flex: 1; font-size: 13px; color: #9ca3af; }
.dm-photo {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/3;
  background: url(assets/woman.png) center/cover no-repeat #e8e0f0;
}
.dm-photo-overlay { position: absolute; inset: 0; background: rgba(30,20,40,.22); }
.dm-frame {
  position: absolute; left: 50%; top: 25%; transform: translateX(-50%);
  width: 56px; height: 80px; border: 2px solid #fff; border-radius: 6px;
}
.dm-bubble {
  background: rgb(241,231,242); border-radius: 12px 12px 12px 3px;
  padding: 10px 14px; font-size: 12px; line-height: 1.5; color: var(--text);
}
.dm-chat { display: flex; flex-direction: column; gap: 10px; }
.dm-msg {
  border-radius: 12px 12px 12px 3px; padding: 10px 14px;
  font-size: 12px; line-height: 1.5; max-width: 85%;
  background: #f3f4f6; color: var(--text); align-self: flex-start;
}
.dm-msg.ai {
  border-radius: 12px 12px 3px 12px;
  background: linear-gradient(135deg, var(--purple-mid), var(--pink));
  color: #fff; align-self: flex-end;
}
.dm-suggestions { display: flex; flex-direction: column; gap: 10px; }
.dm-suggest-item {
  display: flex; align-items: center; gap: 12px;
  background: #fafafa; border: 1px solid #f0e8f5;
  border-radius: 12px; padding: 10px 14px;
}
.dm-suggest-thumb {
  width: 42px; height: 42px; border-radius: 8px;
  object-fit: cover; background: #e8e0f0; flex-shrink: 0;
}
.dm-suggest-name { font-size: 12px; font-weight: 600; color: var(--dark); }
.dm-suggest-price { font-size: 11px; color: var(--purple-mid); margin-top: 2px; }

/* ─── STATS ─── */
.stats {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 24px 60px;
  padding: 40px 24px calc(80px + 6em);
  background: linear-gradient(180deg, #fff 0%, #faf5fd 100%);
}
.stat { text-align: center; }
.stat-n {
  font-weight: 400; font-size: clamp(52px, 5.5vw, 76px);
  line-height: 1;
  background: linear-gradient(90deg, #934FB0 3%, #DE64B1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-l { font-size: clamp(14px, 1.4vw, 18px); color: var(--dark); margin-top: 10px; }

/* ─── POWERFUL ─── */
.powerful {
  background: var(--dark);
  padding: clamp(60px, 8vw, 108px) clamp(24px, 8vw, 120px);
}
.powerful-head {
  text-align: center; max-width: 900px; margin: 0 auto;
}
.powerful-head h2 {
  font-weight: 500; font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.1; color: #fff;
}
.powerful-head h2 strong { font-weight: 700; color: #D8B2DC; }
.powerful-head h2 .mob-break { display: none; }
.powerful-head p {
  font-weight: 400; font-size: clamp(18px, 1.85vw, 26.69px);
  line-height: 1.35; color: #fff;
  max-width: 800px; margin: 22px auto 0;
}
.feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 48px 80px; max-width: 1100px; margin: 52px auto 0;
}
.feature-item { border-radius: 28px; padding: 38px 46px; }
.feature-icon {
  width: 84px; height: 84px; border-radius: 42px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
}
.feature-item h4 {
  font-weight: 600; font-size: clamp(20px, 1.8vw, 26px);
  color: var(--accent-light); margin-top: 22px;
}
.feature-item p {
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.45; color: rgba(255,255,255,.85);
  margin-top: 10px; max-width: 320px;
}

/* ─── FINAL CTA ─── */
.final-cta {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px;
  background:
    radial-gradient(70% 80% at 30% 35%, rgba(168,92,206,.9) 0%, rgba(168,92,206,0) 60%),
    radial-gradient(70% 70% at 75% 50%, rgba(224,124,190,.85) 0%, rgba(224,124,190,0) 58%),
    linear-gradient(180deg, #9f7fd4 0%, #c98fce 60%, #d99fc8 100%);
}
.final-cta h2 {
  font-weight: 500; font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.1; color: #fff;
}
.final-cta h2 strong { font-weight: 700; }
.final-cta .sub {
  font-weight: 600; font-size: clamp(16px, 1.85vw, 26.69px);
  color: #fff; margin-top: 20px;
}
.cta-btns { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; justify-content: center; }
.final-cta .btn-light { color: #fff; }

/* ─── FOOTER ─── */
.site-footer {
  background: #000;
  color: rgba(255,255,255,.75);
  text-align: center;
  padding: 28px 24px;
}
.site-footer-copyright { font-size: 13px; }
.site-footer-support { margin: 10px 0 0; font-size: 13px; }
.site-footer-support a { color: #fff; text-decoration: underline; }
.site-footer-support a:hover { color: rgba(255,255,255,.8); }
.site-footer-links {
  display: flex; justify-content: center; gap: 48px;
  margin-top: 10px;
}
.site-footer-links a {
  color: #fff; font-size: 13px;
  text-decoration: underline;
}
.site-footer-links a:hover { color: rgba(255,255,255,.8); }

@media (max-width: 480px) {
  .site-footer-links { gap: 24px; flex-wrap: wrap; }
}

/* ─── PAGE NAV (plain top bar for inner pages, e.g. Contact) ───
   Absolutely positioned exactly like .hero-nav (same padding values, kept
   in sync at every breakpoint) so the logo/dropdown land in the identical
   spot on every page — a normal in-flow nav would additionally get pushed
   in by .contact-page's own side padding, throwing off the alignment. */
.page-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; justify-content: space-between; align-items: center;
  padding: 32px 46px;
}
.page-nav .nav-lang {
  border: 1px solid rgba(30,34,63,.15);
  color: var(--text);
  background: rgba(30,34,63,.04);
}
.page-nav .nav-lang svg path { stroke: currentColor; }

/* ─── CONTACT PAGE ───
   The nav is absolutely positioned (out of flow), so centering this section's
   own content vertically within a full-viewport box gives equal breathing
   room above and below regardless of content height. */
.contact-page {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 96px 24px;
  text-align: center;
}
.contact-intro { padding-top: 56px; }
.contact-intro h1 {
  font-weight: 700;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
  color: var(--dark);
}
.contact-intro p {
  font-weight: 500;
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--text);
  max-width: 560px;
  margin: 16px auto 0;
}
.contact-page .section-tag { margin: 0 auto 24px; }

/* ─── CONTACT FORM ─── */
.contact-form {
  width: 100%;
  max-width: 640px;
  margin: 40px auto 0;
  display: flex; flex-direction: column; gap: 18px;
  text-align: left;
}
.contact-form label {
  display: block;
  font-weight: 600; font-size: 14px;
  color: var(--text); margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: 'Outfit', sans-serif; font-size: 15px;
  color: var(--text);
  padding: 14px 18px;
  border-radius: 14px;
  border: 1.5px solid rgba(30,34,63,.12);
  background: #faf8fc;
  transition: border-color .18s, box-shadow .18s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 3px rgba(147,79,176,.15);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .btn { align-self: flex-start; border: none; }

/* ─── PRIORITY ACCESS PAGE ─── */
.priority-hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 140px 24px 64px;
  background: linear-gradient(160deg, rgb(50,31,66) 0%, rgb(96,47,101) 100%);
}
.priority-hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.priority-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,10,30,.35) 0%, rgba(20,10,30,.6) 100%);
  z-index: 1;
}
.priority-hero .hero-nav { z-index: 2; }
.priority-hero-body { position: relative; z-index: 2; }
.priority-hero-body {
  display: flex; flex-direction: column; align-items: center;
  width: 100%; max-width: 640px;
}
.priority-heading {
  font-weight: 300; font-size: clamp(14px, 4vw, 48px);
  color: #fff; line-height: 1.083; /* 52px at the 48px desktop size */
  margin-top: 24px; max-width: 100%;
  white-space: nowrap; /* always one line, in every language — the 4vw
    scaling shrinks it enough on narrow screens to still fit without
    getting clipped by .priority-hero's overflow:hidden. */
}
.priority-heading strong {
  font-weight: 600;
  text-shadow: 0 0 24px #FFCEED, 0 0 48px rgba(255,206,237,.6);
}
.priority-sub {
  color: rgba(255,255,255,.88); font-weight: 400;
  font-size: 16px;
  margin-top: 16px; max-width: 560px;
}
.cn-placeholder-pageform { margin-top: 32px; width: 100%; min-height: 40px; }

/* Decorative floating icon badges, purely cosmetic */
@keyframes priorityFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(5px, -16px); }
}
.priority-float {
  position: absolute; z-index: 1;
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  animation: priorityFloat 5.5s ease-in-out infinite;
}
/* Forces every icon (whatever color its own SVG uses) to render pure white,
   so they all read as one consistent set regardless of source file. */
.priority-float img { width: 31px; height: 31px; opacity: .45; filter: brightness(0) invert(1); }
.priority-float-1 { top: 20%; left: 34%; animation-delay: 0s; }
.priority-float-2 { top: 42%; right: 8%; animation-delay: .8s; }
.priority-float-3 { top: 14%; left: 8%; animation-delay: 1.6s; }
.priority-float-4 { top: 14%; right: 22%; animation-delay: 2.4s; }
.priority-float-5 { bottom: 16%; left: 6%; animation-delay: 3.2s; }
.priority-float-6 { bottom: 10%; right: 30%; animation-delay: 4s; }

@media (max-width: 768px) {
  .priority-hero { padding: 110px 24px 56px; }
  .priority-float { display: none; }
}

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ─── Responsive ─── */

/* ── Tablet: card + centered track padding ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .dcard { flex: 0 0 78vw; }
  .discovery-track { padding-left: 11vw; }
}

/* ── Pantallas grandes (≥1440px) ── */
@media (min-width: 1440px) {
  .btn { font-size: 17px; padding: 16px 38px; }
  .hcard-name { font-size: 18px; margin-top: 12px; }
  .hcard-price { font-size: 17px; margin-top: 6px; }
  .powered-badge { font-size: 15px; padding: 9px 20px; }
  .hero-bottom { height: max(300px, min(clamp(340px, 44vh, 440px), calc(100svh - 460px))); }
}

/* ── Portátil (1025px–1439px) ──
   hero-bottom stays in normal flow (base rule): on a cramped laptop screen the
   hero simply grows past 100svh instead of forcing the cards to overlap the
   content above them — see min-height on .hero. */
@media (min-width: 1025px) and (max-width: 1439px) {
  .hero-headline .word { font-size: clamp(50px, 5.6vw, 80px); }
  .hero-star-icon { width: clamp(36px, 3.8vw, 62px); height: clamp(36px, 3.8vw, 62px); }
  .hero-tagline { font-size: clamp(15px, 1.55vw, 24px); margin-top: 14px; }
  .hero-body { padding: 108px 24px 180px; }
  .dcard { flex: 0 0 70vw; }
  .discovery-track { padding-left: 15vw; }
  .hero-bottom { height: max(300px, min(44vh, calc(100svh - 350px))); }
  .hero-search { width: clamp(260px, 38vw, 520px); padding: 13px 28px; z-index: 999; }
  .hero-search p { font-size: clamp(12px, 1.3vw, 18px); }
  .hero-fade { height: 20px; }
}

/* ── Pantallas bajas móvil/tablet landscape (≤800px alto, ≤1024px ancho) ── */
@media (max-height: 800px) and (max-width: 1024px) {
  .hero-bottom { height: max(180px, min(28vh, calc(100svh - 380px))); }
  .hero-body { padding-top: 64px; padding-bottom: max(16px, 5vh); }
  .hero-headline { margin-top: 14px; }
  .hero-tagline { margin-top: 10px; }
  .hero-btns { margin-top: 18px; }
}

@media (max-height: 660px) and (max-width: 1024px) {
  .hero-bottom { height: max(140px, min(22vh, calc(100svh - 340px))); }
  .hero-body { padding-top: 56px; }
  .hero-headline { margin-top: 12px; }
  .hero-tagline { margin-top: 8px; }
  .hero-btns { margin-top: 14px; }
  .btn { padding: 11px 24px; font-size: 14px; }
}

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .hero-nav, .page-nav { padding: 24px 32px; }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  /* hero layout */
  .hero { min-height: 100svh; }
  .hero-nav, .page-nav { padding: 24px 24px; }
  .hero-nav img { width: 52px; height: 52px; }
  .hero-body { padding: 72px 20px clamp(16px, 5vh, 40px); }

  /* language switcher: show only the code (ES, FR...) — same vertical
     list, just narrower, so it overlaps the headline less. */
  .lang-name { display: none; }
  .lang-dropdown { min-width: 90px; }

  /* contact page */
  .contact-page { padding: 64px 32px; }
  .contact-intro { padding-top: 40px; }
  .hero-headline { flex-wrap: wrap; justify-content: center; gap: 8px 16px; margin-top: 20px; }
  .hero-headline .word { font-size: clamp(48px, 14.5vw, 80px); }
  .hero-star-icon { width: clamp(40px, 12vw, 64px); height: clamp(40px, 12vw, 64px); }
  .powered-badge { font-size: 12px; padding: 7px 14px; }
  .hero-tagline { margin-top: 14px; font-size: clamp(16px, 4.5vw, 22px); }
  .hero-btns { margin-top: 24px; gap: 12px; flex-direction: column; align-items: center; width: 100%; text-align: center; }
  .hero-btns .btn { width: 240px; justify-content: center; align-self: center; }
  .btn { padding: 15px 28px; font-size: 15px; gap: 10px; }

  /* cards */
  .hero-bottom { height: max(220px, min(280px, calc(100svh - 440px))); margin-top: 24px; }
  .hcard { border-radius: 12px; padding: 8px; }
  .hcard-name { font-size: 12px; margin-top: 7px; }
  .hcard-price { font-size: 12px; margin-top: 3px; }
  .hcard-icon { width: 26px; height: 26px; top: 5px; right: 5px; }
  .hero-fade { height: 100px; }

  /* search pill */
  .hero-search { top: auto; bottom: 124px; width: clamp(220px, 82vw, 420px); padding: 12px 22px; }
  .hero-search p { font-size: clamp(12px, 3.3vw, 15px); }

  /* other sections */
  .section { padding: 64px 32px; }
  .guide .section-h { font-size: clamp(34px, 10vw, 48px); text-align: center; }
  .guide .section-sub { font-size: clamp(15px, 4vw, 18px); text-align: center; max-width: 100%; }
  .browser-wrap { padding: 0; margin-top: 36px; }
  .pillars { flex-direction: column; align-items: center; gap: 0; padding-top: 8px; margin: 4em auto 48px; max-width: 100%; }
  .pillar { flex: none; width: 100%; max-width: 300px; padding: 28px 0 !important; font-size: 20px; }
  .pillar:first-child { padding: 0 0 28px !important; }
  .pillar span { font-size: 18px; font-weight: 400; margin-top: 14px; color: rgba(30,34,63,.62); }
  .pillar + .pillar { border-left: none; border-top: 1px solid rgba(30,34,63,.12); }
  .discovery { justify-content: flex-start; padding: 40px 0 52px; overflow: hidden; }
  .discovery .section-h { padding: 0 32px; font-size: clamp(24px, 6.5vw, 28px); line-height: 1.2; }
  .discovery-dots {
    display: flex; justify-content: center; align-items: center; gap: 8px;
    position: absolute; left: 0; right: 0; bottom: 14px; z-index: 5;
  }
  .discovery-dot {
    width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0;
    background: rgba(50,31,66,.18); cursor: pointer;
    transition: background .25s ease, width .25s ease, border-radius .25s ease;
  }
  .discovery-dot.is-active { width: 22px; border-radius: 5px; background: var(--purple-mid); }
  .discovery-slider { flex: 1 1 auto; min-height: 0; margin-top: 14px; padding: 0; display: flex; align-items: stretch; }
  .discovery-track { padding-left: 7vw; gap: 14px; align-items: stretch; }
  .dcard {
    flex: 0 0 86vw; height: 100%;
    display: flex; flex-direction: column; align-items: stretch;
    grid-template-columns: none; gap: 12px;
    padding: 16px 16px 20px; border-radius: 32px;
  }
  .dcard-text { flex-shrink: 0; }
  .dcard-text .section-tag { padding: 6px 14px; font-size: 14px; }
  .dcard h3 { font-size: 19px; margin-top: 10px; }
  .dcard p { font-size: 13px; margin-top: 6px; line-height: 1.45; }
  .dcard-image { flex: 1 1 auto; min-height: 0; width: 100%; max-height: none; overflow: hidden; border-radius: 18px; }
  .dcard-image img { height: 100%; width: 100%; object-fit: cover; }
  .dcard-image video { height: 100%; width: 100%; object-fit: contain; filter: none; }
  .stats { flex-direction: column; align-items: center; gap: 32px; padding: 48px 32px; }
  .stat-n { font-size: clamp(38px, 13vw, 52px); font-weight: 400; }
  .feature-grid { grid-template-columns: 1fr; gap: 32px; }
  .store-nav { margin: 10px 12px 0; flex-wrap: wrap; gap: 6px 8px; padding: 8px 10px; }
  .store-brand { order: 1; }
  .store-actions { order: 2; margin-left: auto; }
  .store-search { order: 3; flex: 0 0 100%; }
  .store-section { padding: 12px 10px 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-grid .pcard:nth-child(5),
  .product-grid .pcard:nth-child(6) { display: none; }
  /* Mobile-only reorder: shirt (3rd in markup) shows 2nd, watch (2nd in markup) shows 3rd */
  .product-grid .pcard:nth-child(1) { order: 1; }
  .product-grid .pcard:nth-child(2) { order: 3; }
  .product-grid .pcard:nth-child(3) { order: 2; }
  .product-grid .pcard:nth-child(4) { order: 4; }
  .browser-assistant { width: 84px; height: 84px; left: 0; bottom: 0; }
  /* the enlarged desktop size (60px) would be too dominant on these much
     smaller mobile cards — keep the original, already-proportionate size */
  .pcard-icon { width: 46px; height: 46px; right: 7.62px; top: 8.15px; }
  .pcard-add { font-size: 7px; padding: 4px 7px; white-space: nowrap; }
  .mockup-popup { padding: 6px 5px; z-index: 8; inset: 0.4em; }
  .mockup-popup-list li { padding: 5px 6px; gap: 6px; }
  .mockup-popup-list img { width: 10px; height: 10px; }
  .mockup-popup-list span { font-size: 9px; }
  /* mobile shows the shirt as the 2nd product (see .product-grid order
     above) — anchor the popup to its card (the "desktop" copy) instead. */
  .mockup-popup--desktop { display: flex; }
  .mockup-popup--mobile { display: none; }
  .mockup-popup2 { left: 48px; bottom: 50px; width: min(200px, 58vw); padding: 14px 16px; z-index: 9; }
  .mockup-popup2-title { font-size: 15px; line-height: 19px; }
  .mockup-popup2-sub { font-size: 13px; line-height: 18px; margin-top: 10px; }
  .mockup-modal { padding: 0; }
  .mm-box { max-width: 100%; max-height: 100%; border-radius: 0; }
  .mm-body { flex-direction: column; overflow-y: auto; }
  .mm-product { flex: none; flex-direction: column; overflow-y: visible; }
  .mm-gallery { flex-direction: column; }
  .mm-thumbs { flex-direction: row; }
  .mm-main-image { width: 100%; height: 160px; }
  .mm-info { max-width: 100%; }
  .mm-chat { flex: none; width: 100%; border-left: none; border-top: 1px solid rgba(30,34,63,.08); }
  .powerful { padding: 60px 32px; }
  .powerful-head { text-align: left; }
  .powerful-head h2 { font-size: clamp(36px, 9vw, 48px); margin: 0; }
  .powerful-head h2 .mob-break { display: inline; }
  .powerful-head p { margin: 16px 0 0; }
  .feature-item { padding: 0; }
  .feature-icon { width: 60px; height: 60px; border-radius: 30px; }
  .feature-icon svg { width: 22px; height: 22px; }
  .feature-item h4 { font-size: 22px; margin-top: 16px; }
  .feature-item p { font-size: 16px; max-width: 100%; }
  .final-cta { min-height: 80svh; padding: 80px 32px; }
  .final-cta h2 { font-size: clamp(28px, 7vw, 40px); }
  .final-cta .sub { font-size: 18px; }
  .cta-btns { flex-direction: column; align-items: center; gap: 12px; width: 100%; }
  .cta-btns .btn { justify-content: center; width: 240px; align-self: center; }
}

/* ── Small mobile (≤480px) ── */
/* ─── LEGAL PAGES (Privacy Policy / Terms of Service) ─── */
.legal-page { position: relative; background: #fff; }
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 150px 24px 110px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5065;
  text-align: left;
}
.legal-body h1.doc-title { font-size: 30px; font-weight: 700; color: var(--dark); margin: 0 0 6px; }
.legal-body .doc-meta { font-size: 13px; color: #8a8fa3; margin-bottom: 48px; }
.legal-body h2 {
  font-size: 19px; font-weight: 700; color: var(--dark);
  margin: 48px 0 14px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(30,34,63,.1);
}
.legal-body h3 { font-size: 15px; font-weight: 600; color: var(--dark); margin: 24px 0 8px; }
.legal-body p { margin: 0 0 14px; }
.legal-body ul, .legal-body ol { padding-left: 22px; margin: 0 0 14px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: #af7dc5; text-decoration: underline; word-break: break-word; }
.legal-body a:hover { color: #8f5da8; }
.legal-body strong { font-weight: 600; color: var(--dark); }
.legal-body .caps { font-size: 13px; line-height: 1.6; }
.legal-body .highlight-box {
  background: #faf6fd; border-left: 3px solid #af7dc5;
  padding: 16px 20px; margin-bottom: 24px; border-radius: 0 8px 8px 0;
}
.legal-body .highlight-box p:last-child { margin-bottom: 0; }
.legal-body hr { border: none; border-top: 1px solid rgba(30,34,63,.1); margin: 40px 0; }
.legal-body .contact-block {
  background: #faf6fd; border: 1px solid rgba(30,34,63,.08); border-radius: 12px;
  padding: 22px 26px; margin-top: 16px;
}
.legal-body .contact-block p { margin-bottom: 6px; }

@media (max-width: 768px) {
  .legal-body { padding: 120px 20px 80px; font-size: 14.5px; }
  .legal-body h1.doc-title { font-size: 26px; }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  .hero { min-height: 560px; }
  .hero-nav, .page-nav { padding: 16px 20px; }
  .hero-body { padding: 60px 16px clamp(12px, 4vh, 32px); }
  .hero-headline { gap: 8px; margin-top: 16px; }
  .hero-headline .word-brilliant { letter-spacing: -1px; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 20px; }
  .hero-btns .btn { justify-content: center; }
  .hero-bottom { height: max(160px, min(200px, calc(100svh - 400px))); margin-top: 16px; }
  .hcard { border-radius: 8px; padding: 6px; }
  .hcard-name { font-size: 10px; }
  .hcard-price { font-size: 10px; }
  .hero-fade { height: 100px; }
  .hero-search { top: auto; bottom: 112px; width: clamp(200px, 86vw, 340px); padding: 11px 18px; }
  .hero-search p { font-size: clamp(11px, 3.4vw, 14px); }
  .powered-badge { font-size: 11px; padding: 6px 12px; }
}
