
:root {
  --bg: #fff7fb;
  --bg-2: #f4f3ff;
  --ink: #221633;
  --text: #261938;
  --muted: #675b84;
  --muted-2: #9086ab;
  --glass: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.84);
  --line: rgba(83, 57, 146, 0.12);
  --line-strong: rgba(83, 57, 146, 0.22);
  --hot: #ff4da4;
  --hot-2: #ff8b5c;
  --violet: #7a61ff;
  --cyan: #33d7ff;
  --aqua: #15d9be;
  --gold: #ffbb49;
  --green: #47da7b;
  --shadow: 0 28px 92px rgba(133, 88, 191, .18);
  --shadow-soft: 0 18px 48px rgba(133, 88, 191, .12);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1200px;
  --font-body: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Sora, Manrope, ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.58;
  background: var(--bg);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 77, 164, .24), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(51, 215, 255, .20), transparent 30%),
    radial-gradient(circle at 72% 82%, rgba(255, 187, 73, .20), transparent 26%),
    radial-gradient(circle at 46% 40%, rgba(122, 97, 255, .14), transparent 32%),
    linear-gradient(135deg, #fff8fc 0%, #f6f2ff 46%, #f4fffd 100%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .20;
  background-image:
    linear-gradient(rgba(83,57,146,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83,57,146,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
}
body.locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
::selection { background: rgba(255, 63, 149, .36); color: #fff; }

.container { width: min(var(--container), calc(100% - 38px)); margin: 0 auto; }
.narrow { max-width: 870px; }
.hidden-field { display:none; }
.skip-link { position:absolute; left:16px; top:-80px; background:#fff; color:#05050a; padding:10px 14px; border-radius:999px; z-index:999; }
.skip-link:focus { top:14px; }

.top-alert { position:relative; z-index:60; border-bottom:1px solid var(--line); background: rgba(255,255,255,.72); backdrop-filter: blur(18px); }
.top-alert-inner { min-height: 38px; display:flex; align-items:center; justify-content:center; gap:10px; color:var(--muted); font-size:14px; }
.top-alert strong { color: var(--text); }
.top-alert .ticker { color: var(--gold); }
.pulse-dot { width:9px; height:9px; border-radius:50%; background:var(--hot); box-shadow:0 0 0 0 rgba(255,63,149,.55); animation:pulse 1.9s infinite; }
@keyframes pulse { to { box-shadow:0 0 0 12px rgba(255,63,149,0); } }

.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.8); backdrop-filter: blur(22px); }
.nav { height: 76px; display:flex; align-items:center; justify-content:space-between; gap:18px; }
.brand { display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-weight:800; letter-spacing:-.04em; font-size:22px; }
.brand img { width:38px; height:38px; filter: drop-shadow(0 12px 28px rgba(255,63,149,.22)); }
.brand span:last-child { background: linear-gradient(90deg, #ff4da4 0%, #7a61ff 50%, #15d9be 100%); -webkit-background-clip:text; background-clip:text; color:transparent; }
.nav-links { display:flex; align-items:center; gap:18px; color:var(--muted); font-size:14px; font-weight:700; }
.nav-links a { padding: 10px 0; transition: color .2s ease; }
.nav-links a:hover, .nav-links a:focus, .nav-links a.active { color: var(--text); }
.nav-actions { display:flex; align-items:center; gap:10px; }
.mobile-toggle { display:none; width:44px; height:44px; border-radius:50%; border:1px solid var(--line); background:rgba(255,255,255,.75); color:var(--text); cursor:pointer; }
.mobile-toggle span, .mobile-toggle::before, .mobile-toggle::after { content:""; display:block; width:18px; height:2px; background:currentColor; margin:4px auto; border-radius:10px; }

.btn { display:inline-flex; align-items:center; justify-content:center; gap:9px; min-height:46px; padding:13px 20px; border-radius:999px; border:1px solid var(--line); background:rgba(255,255,255,.72); color:var(--text); font-weight:800; cursor:pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease; }
.btn:hover, .btn:focus-visible { transform: translateY(-2px); border-color:var(--line-strong); background:rgba(255,255,255,.92); }
.btn-primary { border-color: transparent; background: linear-gradient(135deg, var(--hot), var(--violet)); box-shadow: 0 18px 48px rgba(255, 63, 149, .28); }
.btn-primary:hover { box-shadow: 0 25px 72px rgba(255, 63, 149, .38); }
.btn-aqua { border-color:transparent; background:linear-gradient(135deg, var(--aqua), #5877ff); box-shadow:0 18px 48px rgba(85,224,255,.18); }
.btn-ghost { background: rgba(255,255,255,.56); }
.btn-small { min-height: 38px; padding: 9px 14px; font-size: 14px; }
.btn-full { width: 100%; }

.badge { display:inline-flex; align-items:center; gap:8px; width:fit-content; padding:8px 12px; border:1px solid var(--line); border-radius:999px; background:rgba(255,255,255,.82); color:var(--muted); font-size:13px; font-weight:800; }
.badge::before { content:""; width:8px; height:8px; border-radius:50%; background:var(--aqua); box-shadow:0 0 20px var(--aqua); }
.badge.hot::before { background:var(--hot); box-shadow:0 0 20px var(--hot); }
.badge.amber::before { background:var(--gold); box-shadow:0 0 20px var(--gold); }

.hero, .page-hero { position:relative; padding: 92px 0 58px; }
.hero-home { padding-top: 96px; }
.compact-hero { padding: 82px 0 38px; }
.hero-grid, .page-hero-grid { display:grid; grid-template-columns:minmax(0,1.03fr) minmax(360px,.97fr); gap:44px; align-items:center; }
.eyebrow, .section-kicker { margin:0 0 14px; color:var(--aqua); text-transform:uppercase; letter-spacing:.16em; font-weight:900; font-size:12px; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing:-.055em; line-height:1.02; margin:0; }
h1 { font-size: clamp(44px, 7vw, 86px); max-width: 920px; }
.hero-lead { margin: 22px 0 0; max-width: 710px; color:var(--muted); font-size: clamp(18px, 2vw, 21px); line-height:1.55; }
.gradient-text { background: linear-gradient(92deg, #ff4da4 0%, #7a61ff 44%, #15d9be 100%); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero-actions { display:flex; flex-wrap:wrap; gap:13px; margin-top:30px; }

.lux-card { position:relative; border:1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.62)); box-shadow: var(--shadow); overflow:hidden; }
.lux-card::before { content:""; position:absolute; inset:0; border-radius:inherit; padding:1px; background:linear-gradient(135deg, rgba(255,63,149,.72), rgba(85,224,255,.35), rgba(255,255,255,.05)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite:xor; mask-composite:exclude; pointer-events:none; z-index:2; }
.hero-visual { min-height: 620px; isolation:isolate; }
.hero-visual > img { width:100%; height:100%; min-height:620px; object-fit:cover; transform:scale(1.02); filter:saturate(1.08) contrast(1.05); }
.hero-visual::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(255,255,255,0) 24%, rgba(255,248,252,.82) 76%, rgba(255,248,252,.96) 100%); z-index:1; }
.visual-caption { position:absolute; left:22px; right:22px; bottom:22px; z-index:3; padding:20px; border:1px solid var(--line); border-radius:24px; background:rgba(255,255,255,.78); backdrop-filter:blur(20px); }
.visual-caption h2 { margin:14px 0 8px; font-size:28px; }
.visual-caption p { margin:0; color:var(--muted); }
.float-chip { position:absolute; z-index:4; padding:10px 13px; border:1px solid var(--line); border-radius:999px; background:rgba(255,255,255,.86); backdrop-filter:blur(16px); box-shadow:var(--shadow-soft); color:var(--text); font-size:13px; font-weight:800; }
.chip-one { left:22px; top:28px; }
.chip-two { right:22px; top:140px; }
.chip-three { right:28px; bottom:190px; }

.copy-wall { margin-top:30px; display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:12px; max-width:680px; }
.copy-wall > div { position:relative; padding:16px 16px 15px; border:1px solid var(--line); border-radius:18px; background:rgba(255,255,255,.72); overflow:hidden; }
.copy-wall > div::after { content:""; position:absolute; inset:auto -20% -45% auto; width:120px; height:120px; border-radius:50%; background:radial-gradient(circle, rgba(255,63,149,.33), transparent 65%); }
.copy-wall strong { display:block; font-family:var(--font-display); font-size:17px; letter-spacing:-.04em; }
.copy-wall span { color:var(--muted); font-size:14px; }
.adult-copy-wall > div:nth-child(1) { background:linear-gradient(135deg, rgba(255,63,149,.23), rgba(255,255,255,.055)); border-color:rgba(255,63,149,.38); }

.strip { border-block:1px solid var(--line); background:rgba(255,255,255,.5); overflow:hidden; }
.marquee { width:max-content; display:flex; gap:34px; padding:16px 0; animation: marquee 30s linear infinite; color:var(--muted); font-weight:700; }
.marquee span { white-space:nowrap; }
.marquee b { color:var(--text); }
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

.section { padding: 88px 0; }
.section.compact { padding: 64px 0; }
.section-header { display:flex; justify-content:space-between; align-items:flex-end; gap:28px; margin-bottom:34px; }
.section-header.center { display:block; text-align:center; max-width:930px; margin:0 auto 38px; }
.section-title { font-size: clamp(34px, 5vw, 58px); max-width:830px; }
.section-desc { margin:0; color:var(--muted); font-size:18px; max-width:520px; }
.section-header.center .section-desc { margin:18px auto 0; max-width:760px; }

.grid-3 { display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:18px; }
.card { position:relative; min-height:230px; padding:26px; border:1px solid var(--line); border-radius:var(--radius-lg); background:linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.6)); box-shadow:var(--shadow-soft); overflow:hidden; }
.card::after { content:""; position:absolute; right:-55px; top:-55px; width:140px; height:140px; border-radius:50%; background:radial-gradient(circle, rgba(85,224,255,.16), transparent 70%); }
.spotlight-card { background:linear-gradient(145deg, rgba(255,77,164,.2), rgba(255,255,255,.68)); border-color:rgba(255,77,164,.28); }
.icon { width:48px; height:48px; display:grid; place-items:center; border:1px solid var(--line); border-radius:16px; background:rgba(255,255,255,.78); font-size:24px; margin-bottom:18px; }
.card h3 { font-size:24px; margin-bottom:12px; }
.card p { color:var(--muted); margin:0; }

.image-feature-grid { display:grid; grid-template-columns:1.1fr 1fr 1fr; gap:18px; }
.feature-image-card { position:relative; min-height:310px; border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; background:#f6f2ff; box-shadow:var(--shadow-soft); }
.feature-image-card.large { grid-row: span 2; min-height:638px; }
.feature-image-card img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease, filter .35s ease; filter:saturate(1.06) contrast(1.04); }
.feature-image-card:hover img { transform:scale(1.05); filter:saturate(1.15) contrast(1.07); }
.feature-image-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(255,255,255,0) 18%, rgba(255,250,253,.86) 78%, rgba(255,250,253,.97) 100%); }
.feature-image-card > div { position:absolute; z-index:2; left:18px; right:18px; bottom:18px; }
.feature-image-card span { display:inline-flex; margin-bottom:8px; padding:6px 10px; border:1px solid var(--line); border-radius:999px; background:rgba(255,255,255,.86); color:var(--aqua); font-weight:900; font-size:12px; text-transform:uppercase; letter-spacing:.08em; }
.feature-image-card h3 { font-size:26px; margin-bottom:8px; }
.feature-image-card p { color:#5d5277; margin:0; }

.panel { border:1px solid var(--line); border-radius:var(--radius-xl); background:linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,255,255,.62)); box-shadow:var(--shadow-soft); padding:34px; overflow:hidden; }
.split { display:grid; grid-template-columns:1fr 1fr; gap:34px; align-items:center; }
.panel h2 { font-size:clamp(30px,4vw,52px); margin:16px 0; }
.panel p, .panel li { color:var(--muted); font-size:17px; }
.check-list { list-style:none; margin:22px 0 0; padding:0; display:grid; gap:10px; }
.check-list li { position:relative; padding-left:28px; }
.check-list li::before { content:"✓"; position:absolute; left:0; color:var(--green); font-weight:900; }
.panel-image-stack { display:grid; grid-template-columns:1fr 1fr; gap:14px; align-items:center; }
.panel-image-stack img, .panel-single-image { width:100%; min-height:310px; object-fit:cover; border-radius:24px; border:1px solid var(--line); box-shadow:var(--shadow-soft); }
.panel-image-stack img:nth-child(1) { transform:translateY(-16px); }
.panel-image-stack img:nth-child(2) { transform:translateY(18px); }
.panel-single-image { min-height:420px; }

.form-card { border:1px solid var(--line); border-radius:26px; background:rgba(255,255,255,.72); padding:24px; box-shadow: inset 0 1px 0 rgba(255,255,255,.52); }
.field { display:grid; gap:8px; margin-bottom:14px; }
label { color:var(--text); font-weight:800; font-size:14px; }
.input, input, select, textarea { width:100%; border:1px solid var(--line); border-radius:15px; background:rgba(255,255,255,.92); color:var(--text); padding:13px 14px; outline:none; }
select option { color:#111; }
.input:focus, input:focus, select:focus, textarea:focus { border-color:rgba(85,224,255,.55); box-shadow:0 0 0 4px rgba(85,224,255,.09); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.checkline { display:flex; gap:10px; align-items:flex-start; margin:14px 0; color:var(--muted); font-weight:600; }
.checkline input { width:auto; margin-top:4px; }
.form-note { color:var(--muted-2); font-size:13px; margin:12px 0 0; }
.quiz-result { display:none; margin-top:16px; padding:18px; border:1px solid var(--line); border-radius:20px; background:rgba(255,255,255,.86); }
.quiz-result.show { display:block; }
.quiz-score { font-family:var(--font-display); color:var(--aqua); font-size:42px; font-weight:800; line-height:1; }
.quiz-result h3 { margin:10px 0 6px; font-size:22px; }
.quiz-result p { margin:0; color:var(--muted); }

.product-preview-grid, .product-grid { display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:18px; }
.product-preview-card, .product-card { border:1px solid var(--line); border-radius:var(--radius-lg); background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.62)); overflow:hidden; box-shadow:var(--shadow-soft); }
.product-preview-card { display:grid; grid-template-columns:150px 1fr; min-height:230px; }
.product-preview-card.highlight { border-color:rgba(255,63,149,.34); }
.product-preview-card img { width:100%; height:100%; object-fit:cover; }
.product-preview-card div { padding:20px; }
.product-preview-card span, .price { color:var(--gold); font-weight:900; }
.product-preview-card h3, .product-card h3 { font-size:24px; margin:8px 0 8px; }
.product-preview-card p, .product-card p { color:var(--muted); margin:0 0 14px; }
.readmore { color:var(--aqua); font-weight:900; }
.product-grid { align-items:stretch; }
.product-card[data-hidden="true"] { display:none; }
.product-media { aspect-ratio: 1.05/1; overflow:hidden; }
.product-media img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.product-card:hover .product-media img { transform:scale(1.05); }
.product-content { padding:22px; }
.product-top { display:flex; justify-content:space-between; gap:10px; align-items:center; margin-bottom:10px; }
.product-tag { color:var(--muted-2); border:1px solid var(--line); border-radius:999px; padding:4px 8px; font-size:12px; font-weight:800; }
.filter-row { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:24px; }
.filter-btn { border:1px solid var(--line); color:var(--muted); background:rgba(255,255,255,.78); border-radius:999px; padding:10px 14px; font-weight:850; cursor:pointer; }
.filter-btn.active, .filter-btn:hover { color:var(--text); border-color:rgba(255,63,149,.44); background:rgba(255,63,149,.16); }

.blog-grid { display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:18px; }
.blog-grid.full { grid-template-columns:repeat(3, minmax(0,1fr)); }
.post-card { border:1px solid var(--line); border-radius:var(--radius-lg); background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.62)); overflow:hidden; box-shadow:var(--shadow-soft); }
.post-cover { aspect-ratio: 16/10; overflow:hidden; }
.post-cover img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.post-card:hover .post-cover img { transform:scale(1.05); }
.post-body { padding:22px; }
.post-meta { color:var(--aqua); font-size:12px; font-weight:900; letter-spacing:.1em; text-transform:uppercase; margin-bottom:10px; }
.post-body h3 { font-size:25px; margin-bottom:10px; }
.post-body p { color:var(--muted); margin:0 0 14px; }
.center-actions { display:flex; justify-content:center; margin-top:24px; }

.social-grid { display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:16px; }
.social-card { min-height:180px; padding:22px; border:1px solid var(--line); border-radius:var(--radius-lg); background:linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.62)); box-shadow:var(--shadow-soft); }
.social-card h3 { font-size:24px; margin-bottom:8px; }
.social-card p { color:var(--muted); }
.social-card strong { color:var(--aqua); }
.brand-avatar-card { display:grid; grid-template-columns:82px 1fr; gap:16px; align-items:center; }
.brand-avatar-card img { border-radius:20px; border:1px solid var(--line); }

.copy-grid { display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:16px; }
.copy-card { padding:22px; border:1px solid var(--line); border-radius:var(--radius-lg); background:rgba(255,255,255,.82); box-shadow:var(--shadow-soft); }
.copy-card span { color:var(--aqua); text-transform:uppercase; letter-spacing:.12em; font-weight:900; font-size:12px; }
.copy-card p { min-height:76px; font-family:var(--font-display); font-size:22px; line-height:1.12; letter-spacing:-.04em; }

.timeline { display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:16px; }
.timeline-card { position:relative; padding:24px; border:1px solid var(--line); border-radius:var(--radius-lg); background:rgba(255,255,255,.82); box-shadow:var(--shadow-soft); }
.timeline-card span { display:inline-flex; color:var(--gold); font-weight:900; margin-bottom:16px; }
.timeline-card h3 { font-size:24px; margin-bottom:10px; }
.timeline-card p { color:var(--muted); margin:0; }
.quote-card { padding:30px; border-radius:26px; border:1px solid rgba(255,77,164,.26); background:linear-gradient(135deg, rgba(255,77,164,.18), rgba(255,255,255,.78)); }
.quote-card p { margin:0; font-family:var(--font-display); font-size:34px; line-height:1.14; color:var(--text); letter-spacing:-.05em; }
.shop-hero-card { min-height:460px; display:grid; grid-template-columns: 1fr 1fr; align-items:stretch; }
.shop-hero-card img { width:100%; height:100%; object-fit:cover; }
.shop-hero-card div { padding:26px; display:flex; flex-direction:column; justify-content:end; }
.shop-hero-card h2 { font-size:30px; margin-top:12px; }
.partner-card img { min-height:420px; width:100%; object-fit:cover; }

.article-hero { padding: 82px 0 28px; }
.article-hero h1 { max-width: 980px; }
.article-cover .container { border-radius: var(--radius-xl); overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow); }
.article-cover img { width:100%; max-height:540px; object-fit:cover; }
.article-body { padding: 54px 0 76px; }
.article-body p { color:#4e4468; font-size:19px; }
.article-body h2 { font-size:36px; margin:34px 0 12px; }
.article-body strong { color:var(--ink); }
.article-cta { margin-top:46px; padding:30px; border:1px solid var(--line); border-radius:var(--radius-lg); background:rgba(255,255,255,.84); }
.article-cta h2 { margin-top:0; }

.age-gate { display:none; position:fixed; inset:0; z-index:200; background:rgba(0,0,0,.78); backdrop-filter:blur(18px); place-items:center; padding:20px; }
.age-gate.show { display:grid; }
.age-card { max-width:560px; padding:34px; border:1px solid var(--line); border-radius:var(--radius-xl); background:linear-gradient(145deg, rgba(255,255,255,.92), rgba(249,244,255,.96)); box-shadow:var(--shadow); }
.age-card h2 { font-size:38px; margin:16px 0 10px; }
.age-card p { color:var(--muted); }
.age-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:24px; }
.adult-hero-section { padding-bottom: 72px; }
.adult-visual > img { filter:saturate(1.12) contrast(1.06); }

.footer { border-top:1px solid var(--line); background:rgba(255,255,255,.64); padding:48px 0 28px; }
.footer-grid { display:grid; grid-template-columns:1.4fr repeat(3, 1fr); gap:28px; }
.footer p, .disclaimer { color:var(--muted); }
.footer h4 { margin:0 0 12px; font-family:var(--font-display); }
.footer-links { display:grid; gap:8px; color:var(--muted); }
.footer-links a:hover { color:var(--text); }
.disclaimer { margin-top:30px; padding-top:20px; border-top:1px solid var(--line); font-size:13px; }
.toast { position:fixed; left:50%; bottom:22px; transform:translate(-50%, 20px); opacity:0; pointer-events:none; padding:12px 16px; border:1px solid var(--line); border-radius:999px; background:rgba(36,25,56,.92); color:#fff; box-shadow:var(--shadow-soft); transition:opacity .2s ease, transform .2s ease; z-index:300; }
.toast.show { opacity:1; transform:translate(-50%, 0); }

@media (max-width: 980px) {
  .hide-sm { display:none; }
  .mobile-toggle { display:block; }
  .nav-links { position:absolute; left:18px; right:18px; top:86px; display:none; flex-direction:column; align-items:stretch; gap:6px; padding:16px; border:1px solid var(--line); border-radius:22px; background:rgba(255,255,255,.96); box-shadow:var(--shadow); }
  .nav-links.open { display:flex; }
  .nav-links a { padding:12px 14px; border-radius:12px; background:rgba(255,255,255,.75); }
  .hero-grid, .page-hero-grid, .split { grid-template-columns:1fr; }
  .hero-visual, .hero-visual > img { min-height:520px; }
  .grid-3, .product-preview-grid, .product-grid, .blog-grid, .blog-grid.full, .social-grid, .copy-grid, .timeline { grid-template-columns:1fr 1fr; }
  .image-feature-grid { grid-template-columns:1fr 1fr; }
  .feature-image-card.large { grid-row:auto; min-height:360px; }
  .section-header { display:block; }
  .section-desc { margin-top:14px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .shop-hero-card { grid-template-columns:1fr; }
}
@media (max-width: 640px) {
  .container { width:min(var(--container), calc(100% - 26px)); }
  .top-alert-inner { font-size:12px; justify-content:flex-start; overflow:hidden; white-space:nowrap; }
  .hero, .page-hero { padding:62px 0 34px; }
  h1 { font-size:42px; }
  .hero-lead { font-size:17px; }
  .hero-actions { flex-direction:column; }
  .btn { width:100%; }
  .copy-wall, .grid-3, .product-preview-grid, .product-grid, .blog-grid, .blog-grid.full, .social-grid, .copy-grid, .timeline, .image-feature-grid, .form-row, .footer-grid { grid-template-columns:1fr; }
  .hero-visual, .hero-visual > img { min-height:500px; }
  .visual-caption { left:14px; right:14px; bottom:14px; padding:16px; }
  .visual-caption h2 { font-size:23px; }
  .float-chip { display:none; }
  .section { padding:58px 0; }
  .section.compact { padding:46px 0; }
  .section-title { font-size:34px; }
  .panel { padding:22px; }
  .panel-image-stack { grid-template-columns:1fr; }
  .panel-image-stack img:nth-child(1), .panel-image-stack img:nth-child(2) { transform:none; }
  .product-preview-card { grid-template-columns:1fr; }
  .product-preview-card img { aspect-ratio: 16/10; }
  .brand-avatar-card { grid-template-columns:1fr; }
  .quote-card p { font-size:27px; }
  .marquee { animation-duration: 22s; }
}


/* Dopamine light theme accents */
.hero-home .badge, .page-hero .badge { background: rgba(255,255,255,.82); }
.visual-caption h2, .feature-image-card h3 { color: var(--ink); }
.visual-caption p { color: #5d5277; }
.copy-wall span { color: #5d5277; }
.top-alert-inner, .nav-links, .footer-links { color: var(--muted); }
.product-tag { background: rgba(255,255,255,.68); }
.article-cover .container, .panel-single-image, .panel-image-stack img, .brand-avatar-card img { background: rgba(255,255,255,.72); }
.age-gate { background: rgba(34, 22, 51, .34); }

/* RobotMoglie.it logo integration */
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  padding: 3px;
  box-shadow: 0 12px 32px rgba(122, 97, 255, .16);
}
.brand-domain {
  color: var(--muted-2);
  letter-spacing: -0.04em;
}
.hero-logo-lockup {
  width: min(310px, 72vw);
  height: auto;
  margin: 0 0 18px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 18px 54px rgba(122, 97, 255, .12);
}
.brand-avatar-card img {
  object-fit: contain;
  background: rgba(255,255,255,.84);
  padding: 8px;
}
@media (max-width: 640px) {
  .hero-logo-lockup { width: min(260px, 78vw); }
  .brand span { font-size: 19px; }
}


/* === V7.1 Design & Image Optimization === */
.hero-home-v71 { padding-top: 74px; }
.hero-home-v71 .hero-grid { grid-template-columns: minmax(0, .98fr) minmax(360px, 1.02fr); gap: 38px; align-items: center; }
.hero-copy-simple { max-width: 640px; }
.hero-copy-simple h1 { max-width: 720px; font-size: clamp(42px, 6vw, 78px); }
.hero-copy-simple .hero-lead { max-width: 620px; margin-top: 18px; font-size: clamp(18px, 2vw, 20px); }
.hero-benefits { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin: 24px 0 0; padding: 0; max-width: 720px; }
.hero-benefits li { min-height: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.72); color: var(--text); font-size: 14px; font-weight: 700; box-shadow: var(--shadow-soft); }
.hero-benefits li::before { content: "•"; display: inline-block; margin-right: 8px; color: var(--hot); }
.hero-microcopy { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-microcopy span { display: inline-flex; align-items: center; padding: 10px 14px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.84); color: var(--muted); font-size: 14px; font-weight: 800; }
.hero-home-v71 .hero-visual { min-height: 580px; }
.hero-home-v71 .hero-visual > img { min-height: 580px; object-position: center; }
.hero-visual-top { position: absolute; left: 18px; top: 18px; z-index: 4; }
.hero-home-v71 .visual-caption { left: 18px; right: auto; bottom: 18px; max-width: 470px; padding: 22px; }
.hero-home-v71 .visual-caption h2 { font-size: clamp(24px, 3.1vw, 32px); line-height: 1.02; }
.hero-home-v71 .visual-caption p { margin-top: 10px; font-size: 15px; line-height: 1.55; }
.visual-checks { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.visual-checks span { display: inline-flex; padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.88); font-size: 12px; font-weight: 800; color: var(--text); }
.section-header { margin-bottom: 28px; }
.section-title { max-width: 760px; }
.feature-image-card > div, .product-preview-card div, .post-body { backdrop-filter: saturate(1.05); }
.feature-image-card img, .post-card img, .product-preview-card img, .shop-hero-card img, .brand-avatar-card img { image-rendering: auto; }

@media (max-width: 980px) {
  .hero-home-v71 .hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-home-v71 .hero-visual { min-height: 500px; }
  .hero-home-v71 .hero-visual > img { min-height: 500px; }
  .hero-benefits { grid-template-columns: 1fr; max-width: 100%; }
}
@media (max-width: 640px) {
  .hero-home-v71 { padding-top: 58px; }
  .hero-copy-simple h1 { font-size: clamp(38px, 11vw, 54px); }
  .hero-home-v71 .hero-visual { min-height: 420px; }
  .hero-home-v71 .hero-visual > img { min-height: 420px; }
  .hero-home-v71 .visual-caption { left: 14px; right: 14px; bottom: 14px; max-width: none; padding: 18px; }
  .hero-microcopy { display: grid; }
}
