/* ============================================================
   Naberezhnev — Web Experience Studio v0.3.7
   «living interface assembly»
   Один крупный живой экран (auto-states) + крупные
   пролетающие слои интерфейса, растворяющиеся в painterly mist.
   Palette и nebula-фон из v0.3.6 сохранены: deep midnight /
   black-plum / aubergine + dusty rose, soft magenta, blush,
   violet haze, rose-gold glow, warm ivory.
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { min-height: 100%; }
body {
  margin: 0; font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: #05040a; color: #f1e8ea; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

:root {
  --bg0: #05040a; --bg1: #090611; --bg2: #100817; --bg3: #160b1f;
  --plum: #2a1430; --aubergine: #3a1c3a;
  --rose: #e887b5;      /* primary accent (бывш. turquoise) */
  --rose-b: #f6b3cd;    /* blush bright */
  --magenta: #e36ab7;   /* soft magenta */
  --blush: #f4a8c4;
  --violet: #9a78d6;    /* muted violet haze */
  --rosegold: #e6a987;  /* peach / rose-gold glow */
  --dusty: #c98a9e;     /* dusty rose */
  --ivory: #f4ede6; --text: #f4ede6; --text2: #b29aa6; --faint: #7d6672;
  --line: rgba(232,135,181,0.14); --glass-bd: rgba(244,168,196,0.16);
}

/* ===================== A · SHOWROOM ===================== */
.showroom {
  position: relative; min-height: 100svh; min-height: 100vh; overflow: hidden; display: flex; align-items: center;
  background:
    radial-gradient(58% 52% at 74% 18%, rgba(227,106,183,0.16), transparent 60%),
    radial-gradient(54% 56% at 16% 80%, rgba(154,120,214,0.14), transparent 62%),
    radial-gradient(42% 42% at 62% 62%, rgba(230,169,135,0.10), transparent 60%),
    radial-gradient(130% 120% at 50% -10%, #160b1f 0%, #100817 36%, #05040a 76%);
}
.showroom::after { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 9;
  background: radial-gradient(120% 110% at 50% 42%, transparent 50%, rgba(3,2,7,0.72) 100%); }

/* ---- painterly nebula background ---- */
.neb { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.neb-blob { position: absolute; border-radius: 50%; filter: blur(72px); mix-blend-mode: screen; will-change: transform; }
.nb1 { width: 52vw; height: 52vw; left: 42%; top: -16%; background: radial-gradient(circle at 45% 45%, rgba(227,106,183,0.50), transparent 64%); opacity: 0.8; animation: nbDrift1 30s ease-in-out infinite; }
.nb2 { width: 46vw; height: 46vw; left: -10%; top: 34%; background: radial-gradient(circle, rgba(154,120,214,0.42), transparent 64%); opacity: 0.72; animation: nbDrift2 37s ease-in-out infinite; }
.nb3 { width: 40vw; height: 40vw; left: 54%; top: 48%; background: radial-gradient(circle, rgba(230,169,135,0.30), transparent 64%); opacity: 0.6; animation: nbDrift3 33s ease-in-out infinite; }
.nb4 { width: 34vw; height: 34vw; left: 16%; top: -8%; background: radial-gradient(circle, rgba(201,138,158,0.34), transparent 64%); opacity: 0.6; animation: nbDrift1 27s ease-in-out infinite reverse; }
@keyframes nbDrift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(5vw,5vh) scale(1.12); } }
@keyframes nbDrift2 { 0%,100% { transform: translate(0,0) scale(1.05); } 50% { transform: translate(-5vw,7vh) scale(0.92); } }
@keyframes nbDrift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(4vw,-6vh) scale(1.1); } }
/* painterly brush streak across the scene */
.neb-streak { position: absolute; width: 152%; height: 50%; left: -24%; top: 15%; transform: rotate(-17deg);
  background: linear-gradient(90deg, transparent 4%, rgba(227,106,183,0.22) 28%, rgba(244,168,196,0.17) 48%, rgba(154,120,214,0.20) 70%, transparent 96%);
  filter: blur(46px); mix-blend-mode: screen; opacity: 0.85; animation: streakDrift 34s ease-in-out infinite; }
@keyframes streakDrift { 0%,100% { transform: rotate(-17deg) translateX(-3%); } 50% { transform: rotate(-14deg) translateX(4%); } }
/* second, crossing brush stroke — rose-gold / violet, slower, lower */
.neb-streak.s2 { width: 140%; height: 38%; left: -16%; top: 52%; transform: rotate(13deg);
  background: linear-gradient(90deg, transparent 6%, rgba(230,169,135,0.16) 30%, rgba(244,168,196,0.13) 52%, rgba(154,120,214,0.15) 74%, transparent 96%);
  filter: blur(54px); opacity: 0.7; animation: streak2Drift 46s ease-in-out infinite; }
@keyframes streak2Drift { 0%,100% { transform: rotate(13deg) translateX(3%); } 50% { transform: rotate(10deg) translateX(-4%); } }
/* soft wispy smoke cloud with feathered edges */
.neb-smoke { position: absolute; width: 90vw; height: 78vh; left: 18%; top: 6%; mix-blend-mode: screen; opacity: 0.6; will-change: transform;
  background:
    radial-gradient(38% 30% at 30% 40%, rgba(227,106,183,0.30), transparent 70%),
    radial-gradient(34% 40% at 64% 30%, rgba(154,120,214,0.24), transparent 72%),
    radial-gradient(30% 26% at 52% 66%, rgba(244,168,196,0.20), transparent 72%);
  filter: blur(40px); animation: smokeDrift 52s ease-in-out infinite; }
@keyframes smokeDrift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-3vw,4vh) scale(1.08) rotate(2deg); } }
/* painterly splatter — scattered luminous specks along the stroke edges */
.neb-splat { position: absolute; inset: 0; mix-blend-mode: screen; opacity: 0.7; will-change: transform;
  background:
    radial-gradient(2.4% 2.4% at 22% 30%, rgba(244,168,196,0.55), transparent 70%),
    radial-gradient(1.6% 1.6% at 31% 38%, rgba(227,106,183,0.5), transparent 70%),
    radial-gradient(3% 3% at 68% 26%, rgba(230,169,135,0.4), transparent 72%),
    radial-gradient(1.8% 1.8% at 58% 44%, rgba(154,120,214,0.5), transparent 72%),
    radial-gradient(2.2% 2.2% at 80% 52%, rgba(244,168,196,0.42), transparent 72%),
    radial-gradient(1.4% 1.4% at 44% 22%, rgba(246,179,205,0.55), transparent 74%),
    radial-gradient(1.2% 1.2% at 73% 62%, rgba(227,106,183,0.45), transparent 74%);
  filter: blur(1.2px); animation: splatDrift 40s ease-in-out infinite; }
@keyframes splatDrift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(1.4vw,-1.6vh); } }
#mist { position: absolute; inset: 0; mix-blend-mode: screen; opacity: 0.85; }
.neb-grain { position: absolute; inset: -40%; opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

.scene { position: absolute; inset: 0; z-index: 1; perspective: 1300px; }
.scene > * { position: absolute; will-change: transform; }

/* far in-scene light pools (parallax) */
.glow { border-radius: 50%; filter: blur(64px); opacity: 0.5; mix-blend-mode: screen; pointer-events: none; }
.gA { width: 40vw; height: 40vw; left: 56%; top: -8%; background: radial-gradient(circle, rgba(227,106,183,0.42), transparent 66%); }
.gB { width: 36vw; height: 36vw; left: -4%; top: 50%; background: radial-gradient(circle, rgba(154,120,214,0.36), transparent 66%); }
.gC { width: 28vw; height: 28vw; left: 58%; top: 56%; background: radial-gradient(circle, rgba(230,169,135,0.28), transparent 66%); }

.fword { font-family: ui-monospace, Menlo, monospace; font-size: clamp(11px,1vw,14px); letter-spacing: 0.18em; text-transform: lowercase; color: rgba(178,154,166,0.32); white-space: nowrap; pointer-events: none; }

/* ============ FRAGMENT shell + hover-to-approach ============ */
.frag { pointer-events: auto; }
.frag::after { content: attr(data-cap); position: absolute; left: 50%; top: calc(100% + 12px); transform: translate(-50%, 6px);
  width: max-content; max-width: 230px; text-align: center; font-size: 11.5px; line-height: 1.4; font-weight: 600;
  color: #20111c; background: var(--rose-b); border-radius: 12px; padding: 9px 13px;
  opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; z-index: 4; box-shadow: 0 16px 40px -14px rgba(0,0,0,0.7); }
.frag.focus::after { opacity: 1; transform: translate(-50%, 0); }

.fbox {
  position: relative; width: 190px; border-radius: 16px; padding: 13px;
  background: linear-gradient(180deg, rgba(30,16,36,0.72), rgba(14,8,20,0.80));
  border: 1px solid var(--glass-bd); backdrop-filter: blur(13px);
  box-shadow: 0 30px 70px -40px rgba(0,0,0,0.88), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s, border-color .4s, filter .4s;
  --a: var(--rose); will-change: transform;
}
.fbox.wide { width: 250px; }
.fbox.phone-box { width: 132px; }
.fbox[data-accent="cyan"] { --a: var(--blush); }
.fbox[data-accent="magenta"] { --a: var(--magenta); }
.fbox[data-accent="violet"] { --a: var(--violet); }

.frag.focus { z-index: 30; }
.frag.focus .fbox {
  transform: scale(1.13) translateY(-4px);
  border-color: color-mix(in srgb, var(--a) 58%, transparent);
  box-shadow: 0 34px 92px -30px rgba(227,106,183,0.22), 0 0 22px -6px color-mix(in srgb, var(--a) 55%, transparent), inset 0 1px 0 rgba(255,255,255,0.09);
  filter: brightness(1.07) saturate(1.06);
}
.frag.focus .fbox::before { content: ''; position: absolute; inset: 0; border-radius: 16px; pointer-events: none; mix-blend-mode: screen;
  background: linear-gradient(115deg, transparent 38%, rgba(250,210,226,0.24) 50%, transparent 62%); background-size: 240% 100%; animation: shineSweep 0.9s ease-out; }
@keyframes shineSweep { from { background-position: 130% 0; } to { background-position: -40% 0; } }
.scene.has-focus .frag:not(.focus) { opacity: 0.42; filter: blur(1.3px) saturate(0.9); transition: opacity .4s, filter .4s; }

/* ---- fragment internals ---- */
.fb-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 9px; }
.fb-label { font-size: 10px; font-weight: 700; letter-spacing: 0.02em; color: #20111c; background: var(--a); border-radius: 999px; padding: 4px 9px; }
.fb-tag { font-family: ui-monospace, Menlo, monospace; font-size: 8.5px; letter-spacing: 0.04em; color: var(--a); border: 1px solid color-mix(in srgb, var(--a) 35%, transparent); border-radius: 999px; padding: 3px 7px; white-space: nowrap; }
.fb-title { font-family: 'Playfair Display', Georgia, serif; font-size: 14px; font-weight: 600; color: var(--ivory); margin-bottom: 9px; }
.fb-lines { display: flex; flex-direction: column; gap: 4px; margin-top: 9px; }
.fb-lines span { font-size: 10px; color: var(--text2); letter-spacing: 0.01em; }
.fb-lines.tiny span { font-size: 9px; color: var(--faint); }
.fb-btn { border: none; cursor: pointer; align-self: flex-start; padding: 7px 14px; border-radius: 8px; font: 700 10.5px 'Manrope'; color: #20111c;
  background: linear-gradient(120deg, color-mix(in srgb, var(--a) 88%, white), var(--a)); margin-top: 10px; box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--a) 70%, transparent); }
.fb-btn.full { align-self: stretch; text-align: center; }
.fb-btn.sm { padding: 6px 12px; font-size: 9.5px; margin-top: 6px; }
.fb-btn.xs { padding: 5px 10px; font-size: 9px; margin: 0; }

/* AI visual frame — magenta/violet painterly */
.fb-visual.ai-visual { position: relative; height: 92px; border-radius: 11px; overflow: hidden;
  background: radial-gradient(70% 80% at 28% 26%, rgba(227,106,183,0.6), transparent 60%), radial-gradient(80% 90% at 82% 84%, rgba(154,120,214,0.55), transparent 60%), linear-gradient(140deg, #2a1230, #160b22); }
.av-spot { position: absolute; border-radius: 50%; filter: blur(7px); mix-blend-mode: screen; }
.av-spot.s1 { width: 34px; height: 34px; left: 18%; top: 24%; background: rgba(244,168,196,0.85); animation: float1 5s ease-in-out infinite; }
.av-spot.s2 { width: 26px; height: 26px; left: 60%; top: 52%; background: rgba(154,120,214,0.85); animation: float1 6s ease-in-out infinite .6s; }
.av-spot.s3 { width: 18px; height: 18px; left: 40%; top: 16%; background: rgba(230,169,135,0.8); animation: float1 5.5s ease-in-out infinite 1.1s; }
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(4px,-5px); } }
.fb-vtag { position: absolute; left: 8px; bottom: 8px; font-family: ui-monospace, Menlo, monospace; font-size: 8.5px; font-weight: 700; color: #20111c; background: var(--magenta); border-radius: 5px; padding: 3px 7px; }
.fb-vdots { position: absolute; right: 8px; bottom: 9px; display: flex; gap: 4px; }
.fb-vdots i { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.4); }
.fb-vdots i:first-child { background: var(--rose-b); }

/* expert */
.fb-expert { display: flex; flex-direction: column; align-items: center; gap: 7px; padding: 6px 0 2px; }
.fb-ava { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(140deg, var(--a), #2a1230); border: 1px solid color-mix(in srgb, var(--a) 40%, transparent); }
.fb-name { width: 78px; height: 8px; border-radius: 4px; background: rgba(244,237,230,0.7); }
.fb-pills { display: flex; gap: 6px; } .fb-pills i { width: 38px; height: 13px; border-radius: 999px; background: rgba(232,135,181,0.16); border: 1px solid rgba(232,135,181,0.22); }
.fb-badge { font-family: ui-monospace, Menlo, monospace; font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--a); border: 1px solid color-mix(in srgb,var(--a) 35%,transparent); border-radius: 999px; padding: 2px 8px; }

/* strategy flow */
.fb-flow { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 4px; height: 40px; padding: 0 4px; }
.ff-line { position: absolute; left: 8px; right: 8px; top: 50%; height: 1.5px; background: linear-gradient(90deg, var(--a), transparent); }
.ff-node { position: relative; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-family: ui-monospace, Menlo, monospace; font-size: 8px; font-weight: 700; color: var(--text2); background: #1a0f1e; border: 1px solid rgba(232,135,181,0.25); }
.ff-node.on { color: #20111c; background: linear-gradient(130deg, var(--a), color-mix(in srgb,var(--a) 50%,#1a0f1e)); border-color: transparent; box-shadow: 0 0 14px -1px var(--a); }

/* lead form */
.fb-form { display: flex; flex-direction: column; gap: 6px; }
.fb-input { font-size: 9px; color: var(--faint); padding: 7px 10px; border-radius: 7px; background: rgba(255,255,255,0.04); border: 1px solid rgba(232,135,181,0.16); }
.fb-status { display: flex; align-items: center; gap: 6px; font-family: ui-monospace, Menlo, monospace; font-size: 8.5px; color: var(--text2); margin-top: 2px; }
.fb-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 8px var(--rose); }

/* product landing — mini browser */
.mini-browser { border-radius: 11px; overflow: hidden; border: 1px solid rgba(232,135,181,0.14); background: linear-gradient(180deg, rgba(30,16,36,0.7), rgba(16,9,22,0.72)); }
.mb-bar { display: flex; align-items: center; gap: 5px; padding: 7px 9px; border-bottom: 1px solid rgba(232,135,181,0.12); }
.mb-bar i { width: 6px; height: 6px; border-radius: 50%; background: rgba(200,170,180,0.3); }
.mb-bar i:nth-child(1){ background: rgba(240,140,160,0.6);} .mb-bar i:nth-child(2){ background: rgba(230,169,135,0.6);} .mb-bar i:nth-child(3){ background: rgba(244,168,196,0.6);}
.mb-url { margin-left: 6px; font-family: ui-monospace, Menlo, monospace; font-size: 8px; color: #98808c; }
.mb-body { display: flex; gap: 9px; padding: 11px; }
.mb-main { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.mb-kick { font-family: ui-monospace, Menlo, monospace; font-size: 8px; letter-spacing: 0.08em; color: var(--a); }
.mb-h { width: 80%; height: 11px; border-radius: 4px; background: rgba(244,237,230,0.66); }
.mb-l { width: 100%; height: 6px; border-radius: 3px; background: rgba(178,154,166,0.3); }
.mb-side { width: 64px; display: flex; flex-direction: column; gap: 6px; }
.mb-img { height: 46px; border-radius: 8px; background: radial-gradient(80% 90% at 40% 30%, color-mix(in srgb,var(--a) 55%,transparent), transparent 60%), linear-gradient(140deg, rgba(230,169,135,0.35), #1c0f24); }
.mb-pcard { height: 22px; border-radius: 7px; background: rgba(255,255,255,0.05); border: 1px solid rgba(232,135,181,0.14); }

/* mobile preview */
.mini-phone { position: relative; padding: 12px 9px; display: flex; flex-direction: column; gap: 7px; border-radius: 18px; border: 1px solid rgba(232,135,181,0.16); background: linear-gradient(180deg, rgba(30,16,36,0.7), rgba(16,9,22,0.72)); }
.mph-notch { position: absolute; left: 50%; top: 7px; transform: translateX(-50%); width: 30px; height: 4px; border-radius: 3px; background: rgba(200,170,180,0.3); }
.mph-h { margin-top: 10px; font-size: 9px; font-weight: 700; color: rgba(244,237,230,0.8); }
.mph-img { height: 76px; border-radius: 9px; background: radial-gradient(80% 80% at 40% 30%, color-mix(in srgb,var(--a) 55%,transparent), transparent 60%), linear-gradient(140deg, rgba(154,120,214,0.4), #160b22); }
.mph-l { height: 5px; border-radius: 3px; background: rgba(178,154,166,0.3); } .mph-l.s { width: 64%; }
.mph-btn { margin-top: 2px; height: 22px; border-radius: 7px; display: grid; place-items: center; font: 700 9px 'Manrope'; color: #20111c; background: linear-gradient(120deg, var(--blush), var(--rose)); }
.mph-swipe { width: 34px; height: 4px; border-radius: 3px; background: rgba(232,135,181,0.4); margin: 2px auto 0; }

/* digital storefront */
.fb-shelf { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 2px; }
.fb-shelf i { height: 34px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(232,135,181,0.14); }
.fb-shelf i.focus { background: radial-gradient(80% 90% at 50% 30%, rgba(227,106,183,0.55), transparent 60%), linear-gradient(140deg, rgba(154,120,214,0.4), #1c0f24); border-color: rgba(227,106,183,0.55); box-shadow: 0 0 16px -2px rgba(227,106,183,0.6); }
.fb-shelf-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 9px; }
.fb-price { font-family: ui-monospace, Menlo, monospace; font-size: 8.5px; color: var(--text2); }

/* portfolio cases */
.fb-cases { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 24px); gap: 5px; margin-top: 2px; }
.fb-cases .fc-big { grid-column: span 2; grid-row: span 2; border-radius: 9px; background: radial-gradient(70% 80% at 30% 25%, rgba(227,106,183,0.55), transparent 60%), radial-gradient(80% 90% at 80% 80%, rgba(154,120,214,0.45), transparent 60%), linear-gradient(140deg,#2a1230,#160b22); }
.fb-cases i { border-radius: 7px; background: linear-gradient(140deg, rgba(232,135,181,0.34), #1c0f24); border: 1px solid rgba(232,135,181,0.12); }

/* cursor light trail (warm blush) */
.trail { position: absolute; inset: 0; z-index: 8; pointer-events: none; opacity: 0; transition: opacity .8s;
  background: radial-gradient(220px 220px at var(--x,50%) var(--y,50%), rgba(244,168,196,0.12), transparent 62%); }
.trail.on { opacity: 1; }

/* hero copy */
.hero-copy { position: relative; z-index: 5; max-width: 600px; padding: 0 clamp(22px,3.5vw,48px); will-change: transform; }
.eyebrow { font-family: ui-monospace, Menlo, monospace; font-size: 12px; letter-spacing: 0.26em; color: var(--rose); margin-bottom: 22px; }
.hero-copy h1 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: clamp(36px,4.4vw,52px); line-height: 1.1; letter-spacing: -0.015em; margin: 0; color: var(--ivory); text-shadow: 0 8px 60px rgba(0,0,0,0.7); }
.hero-copy h1 em { display: inline-block; padding-bottom: 0.06em; line-height: 1; letter-spacing: -0.02em; }
.hero-copy h1 em { font-style: italic; background: linear-gradient(100deg, #fac6da 0%, #f3a0c4 46%, #e887b5 100%); -webkit-background-clip: text; background-clip: text; color: transparent; padding-right: 0.12em; filter: drop-shadow(0 2px 18px rgba(244,135,181,0.45)); }
.hero-copy .lede { font-size: clamp(15px,1.5vw,18px); line-height: 1.6; color: #c4b1bb; margin: 30px 0 0; max-width: 440px; text-wrap: pretty; }
.plates { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; max-width: 480px; }
.plate { font-size: 12px; font-weight: 600; color: #e6d3dc; border: 1px solid var(--line); border-radius: 999px; padding: 8px 13px; background: rgba(22,11,28,0.5); backdrop-filter: blur(8px); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; font: 700 14.5px 'Manrope'; border-radius: 13px; padding: 15px 26px; transition: transform .2s, box-shadow .3s, border-color .3s, color .3s; will-change: transform; }
.btn-solid { color: #20111c; background: linear-gradient(120deg, #f6b3cd, #e36ab7); box-shadow: 0 18px 44px -18px rgba(227,106,183,0.7); }
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 24px 56px -18px rgba(227,106,183,0.92); }
.btn-ghost { color: #e6d3dc; border: 1px solid var(--glass-bd); background: rgba(22,11,28,0.45); backdrop-filter: blur(8px); }
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(232,135,181,0.5); color: var(--rose-b); }

/* top bar + hint */
.sr-top { position: absolute; top: 0; left: 0; right: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: clamp(18px,3vw,30px) clamp(20px,4vw,46px); }
.back { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: #cbb6c0; border: 1px solid var(--line); border-radius: 999px; padding: 9px 17px; background: rgba(18,9,24,0.5); backdrop-filter: blur(10px); transition: border-color .3s, color .3s, transform .3s; }
.back:hover { color: var(--rose-b); border-color: rgba(232,135,181,0.45); transform: translateX(-3px); }
.ver { font-family: ui-monospace, Menlo, monospace; font-size: 10px; letter-spacing: 0.06em; color: #20111c; background: linear-gradient(120deg, var(--rose-b), var(--blush)); border-radius: 999px; padding: 6px 12px; font-weight: 700; }
.sr-hint { position: absolute; bottom: clamp(16px,3vw,26px); left: 50%; transform: translateX(-50%); z-index: 10; display: flex; align-items: center; gap: 10px; font-family: ui-monospace, Menlo, monospace; font-size: 11px; letter-spacing: 0.1em; color: var(--faint); }
.sr-hint .m { width: 17px; height: 25px; border-radius: 999px; border: 1.5px solid rgba(200,160,175,0.4); position: relative; }
.sr-hint .m::after { content: ''; position: absolute; left: 50%; top: 6px; transform: translateX(-50%); width: 3px; height: 6px; border-radius: 3px; background: var(--rose-b); animation: scrolly 1.8s ease-in-out infinite; }
@keyframes scrolly { 0%,100% { opacity: 0.3; transform: translate(-50%,0); } 50% { opacity: 1; transform: translate(-50%,7px); } }

/* ===================== SHELL + HEADS ===================== */
.shell { position: relative; z-index: 1; width: min(1200px, 100%); margin: 0 auto; padding: 0 clamp(20px,4vw,46px); }
.sec { position: relative; padding: clamp(58px,9vw,116px) 0; }
.sec-head { max-width: 640px; }
.sec-eyebrow { font-family: ui-monospace, Menlo, monospace; font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--rose); margin-bottom: 16px; }
.sec h2 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: clamp(30px,4.4vw,56px); line-height: 1.05; margin: 0; color: var(--ivory); }
.sec .sub { font-size: clamp(14.5px,1.5vw,17px); color: var(--text2); line-height: 1.55; margin: 16px 0 0; max-width: 540px; }

/* ===================== B · SCENES ===================== */
.scenes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.scene-card { position: relative; border: 1px solid var(--glass-bd); border-radius: 22px; padding: 18px 18px 24px; background: linear-gradient(180deg, rgba(28,15,34,0.6), rgba(14,8,20,0.62)); backdrop-filter: blur(10px); transition: transform .3s, border-color .35s, box-shadow .35s; will-change: transform; --a: var(--rose); }
.scene-card[data-accent="cyan"]{ --a: var(--blush);} .scene-card[data-accent="violet"]{ --a: var(--violet);} .scene-card[data-accent="magenta"]{ --a: var(--magenta);}
.scene-card:hover { border-color: color-mix(in srgb, var(--a) 45%, transparent); box-shadow: 0 50px 110px -56px color-mix(in srgb, var(--a) 75%, transparent); }
.scene-card h3 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 21px; line-height: 1.16; margin: 18px 0 8px; color: var(--ivory); }
.scene-card p { font-size: 13.5px; line-height: 1.5; color: var(--text2); margin: 0; max-width: 38ch; }
.sc-stage { position: relative; height: 150px; border-radius: 14px; overflow: hidden; border: 1px solid rgba(232,135,181,0.12); background: radial-gradient(120% 100% at 50% 0%, rgba(30,16,36,0.7), rgba(15,8,20,0.7)); padding: 16px; display: grid; place-items: center; }
.sc-stage > div { width: 100%; height: 100%; }
.sc-stage::after { content:''; position:absolute; inset:0; background: linear-gradient(115deg, transparent 42%, rgba(250,220,232,0.06) 50%, transparent 58%); background-size: 240% 100%; animation: sheen 7s ease-in-out infinite; pointer-events:none; }
@keyframes sheen { 0% { background-position: 130% 0; } 55%,100% { background-position: -40% 0; } }
.sc-expert { display: flex; flex-direction: column; align-items: center; gap: 8px; justify-content: center; }
.se-ava { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(140deg, var(--a), #2a1230); }
.se-name { width: 92px; height: 10px; border-radius: 4px; background: rgba(244,237,230,0.66); }
.se-l { width: 130px; height: 6px; border-radius: 3px; background: rgba(178,154,166,0.3); } .se-l.s { width: 90px; }
.se-btn { margin-top: 4px; width: 80px; height: 22px; border-radius: 7px; background: linear-gradient(120deg, var(--a), color-mix(in srgb, var(--a) 40%, #1a0f1e)); }
.sc-landing { display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.sl-h { width: 70%; height: 14px; border-radius: 5px; background: rgba(244,237,230,0.7); }
.sl-sub { width: 50%; height: 7px; border-radius: 4px; background: rgba(178,154,166,0.3); }
.sl-img { height: 52px; border-radius: 10px; background: radial-gradient(70% 90% at 70% 30%, color-mix(in srgb, var(--a) 55%, transparent), transparent 60%), linear-gradient(140deg, rgba(230,169,135,0.3), #160b22); }
.sl-cta { width: 84px; height: 24px; border-radius: 8px; background: linear-gradient(120deg, var(--a), color-mix(in srgb,var(--a) 45%,#1a0f1e)); }
.sc-brand { display: flex; flex-direction: column; gap: 9px; justify-content: center; }
.sb-nav { height: 12px; border-radius: 4px; background: rgba(200,170,180,0.2); }
.sb-hero { height: 50px; border-radius: 10px; background: radial-gradient(60% 90% at 30% 30%, color-mix(in srgb,var(--a) 50%,transparent), transparent 60%), linear-gradient(140deg,#1f1026,#160b22); }
.sb-row { display: flex; gap: 8px; } .sb-row i { flex: 1; height: 30px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(232,135,181,0.12); }
.sc-vitrine { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; align-content: center; }
.sc-vitrine i { height: 42px; border-radius: 9px; background: linear-gradient(140deg, color-mix(in srgb,var(--a) 45%,transparent), #1c0f24); border: 1px solid rgba(232,135,181,0.1); }
.sc-ai { position: relative; display: grid; place-items: center; }
.sa-img { width: 100%; height: 100%; border-radius: 10px; background: radial-gradient(60% 70% at 35% 30%, color-mix(in srgb,var(--a) 55%,transparent), transparent 60%), radial-gradient(70% 80% at 80% 80%, rgba(154,120,214,0.4), transparent 60%), linear-gradient(140deg,#2a1230,#160b22); }
.sa-tag { position: absolute; left: 8px; bottom: 8px; font-family: ui-monospace,Menlo,monospace; font-size: 9px; font-weight: 700; color: #20111c; background: var(--a); border-radius: 5px; padding: 3px 8px; }
.sa-thumb { position: absolute; right: 8px; bottom: 8px; width: 38px; height: 38px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.18); background: linear-gradient(140deg, rgba(154,120,214,0.5), #160b22); }
.sc-special { position: relative; display: grid; place-items: center; }
.ss-orbit { width: 96px; height: 96px; border-radius: 50%; border: 1px dashed rgba(232,135,181,0.4); animation: spin 9s linear infinite; }
.ss-core { position: absolute; width: 30px; height: 30px; border-radius: 50%; background: radial-gradient(circle, var(--a), color-mix(in srgb,var(--a) 30%,#1a0f1e)); box-shadow: 0 0 24px -2px var(--a); }
.ss-l { position: absolute; right: 18px; top: 22px; width: 12px; height: 12px; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 14px var(--magenta); animation: spin 9s linear infinite reverse; transform-origin: -30px 26px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===================== C · BUILD ===================== */
.build-sec { padding-bottom: clamp(34px,5vw,64px); }
.build { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 46px; }
.build-line { position: absolute; left: 6%; right: 6%; top: 28px; height: 2px; background: rgba(232,135,181,0.16); border-radius: 2px; }
.build-line i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--rose), var(--blush)); border-radius: 2px; box-shadow: 0 0 14px rgba(227,106,183,0.6); transition: width .6s cubic-bezier(.4,.7,.3,1); }
.bstep { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 0 6px; transition: transform .4s; }
.bk { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-family: ui-monospace,Menlo,monospace; font-size: 11px; font-weight: 700; color: var(--faint); background: #1a0f1e; border: 1px solid rgba(232,135,181,0.2); transition: all .4s; }
.bname { font-size: 13.5px; font-weight: 700; color: var(--text2); transition: color .4s; }
.bmini { width: 100%; max-width: 150px; height: 88px; border-radius: 13px; border: 1px solid rgba(232,135,181,0.1); overflow: hidden; background: linear-gradient(180deg, rgba(28,15,34,0.6), rgba(14,8,20,0.6)); padding: 12px; display: grid; gap: 7px; align-content: center; opacity: 0.5; transform: translateY(6px) scale(0.97); transition: opacity .5s, transform .5s, box-shadow .5s; }
.bnote { font-size: 12px; color: var(--faint); line-height: 1.4; max-width: 150px; transition: color .4s; }
.bstep.on { transform: translateY(-4px); }
.bstep.on .bk { color: #20111c; background: linear-gradient(130deg, var(--rose), var(--blush)); border-color: transparent; box-shadow: 0 0 22px -2px rgba(227,106,183,0.7); transform: scale(1.06); }
.bstep.on .bname { color: var(--ivory); }
.bstep.on .bmini { opacity: 1; transform: none; box-shadow: 0 36px 80px -50px rgba(227,106,183,0.6); }
.bstep.on .bnote { color: var(--text2); }
.bstep.done .bk { color: var(--rose); border-color: rgba(232,135,181,0.5); }
.bm-strategy span { height: 8px; border-radius: 4px; background: rgba(200,170,180,0.3); } .bm-strategy span:nth-child(2){ width: 60%; background: var(--rose); }
.bm-structure { gap: 6px; } .bm-structure i { height: 10px; border-radius: 4px; background: rgba(200,170,180,0.22); display: block; } .bm-structure i:nth-child(1){ width: 70%;} .bm-structure i:nth-child(2){ width: 100%;} .bm-structure i:nth-child(3){ width: 46%;}
.bm-visual { border-radius: 9px; background: radial-gradient(70% 80% at 30% 25%, rgba(227,106,183,0.55), transparent 60%), radial-gradient(80% 90% at 80% 85%, rgba(154,120,214,0.45), transparent 60%), linear-gradient(140deg,#2a1230,#160b22); }
.bm-motion { position: relative; border-radius: 9px; overflow: hidden; background: linear-gradient(140deg,#1f1026,#160b22); }
.bm-motion span { position: absolute; inset: 0; background: linear-gradient(115deg, transparent 40%, rgba(250,220,232,0.3) 50%, transparent 60%); background-size: 220% 100%; animation: sheen 2.4s ease-in-out infinite; }
.bm-lead { gap: 7px; } .bm-lead i { height: 16px; border-radius: 6px; background: rgba(255,255,255,0.06); border: 1px solid rgba(232,135,181,0.16); display: block; } .bm-lead .bl-btn { height: 18px; width: 70%; border-radius: 6px; background: linear-gradient(120deg, var(--rose), var(--blush)); }

/* ===================== D · CTA ===================== */
.cta-wrap { position: relative; margin: clamp(20px,5vw,70px) 0 clamp(56px,9vw,110px); }
.cta { position: relative; overflow: hidden; border: 1px solid rgba(232,135,181,0.28); border-radius: 28px; padding: clamp(34px,5vw,64px); background: radial-gradient(80% 130% at 8% 0%, rgba(227,106,183,0.14), transparent 60%), radial-gradient(80% 130% at 100% 100%, rgba(154,120,214,0.12), transparent 60%), linear-gradient(180deg, rgba(26,14,32,0.72), rgba(14,8,20,0.78)); backdrop-filter: blur(14px); display: grid; grid-template-columns: 1.04fr 1fr; gap: clamp(30px,4vw,60px); align-items: center; animation: ctaBreathe 6.5s ease-in-out infinite; transition: border-color .5s, box-shadow .5s; }
@keyframes ctaBreathe { 0%,100% { box-shadow: 0 30px 80px -50px rgba(227,106,183,0.4), inset 0 0 70px -34px rgba(227,106,183,0.16); } 50% { box-shadow: 0 44px 120px -50px rgba(227,106,183,0.58), inset 0 0 100px -34px rgba(227,106,183,0.26); } }
.cta:focus-within { border-color: rgba(244,168,196,0.6); box-shadow: 0 44px 130px -46px rgba(227,106,183,0.75), inset 0 0 110px -30px rgba(227,106,183,0.3); animation-play-state: paused; }
.cta-copy .badge { display: inline-flex; align-items: center; gap: 8px; font-family: ui-monospace,Menlo,monospace; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose-b); border: 1px solid rgba(232,135,181,0.3); border-radius: 999px; padding: 7px 13px; margin-bottom: 20px; }
.cta-copy .badge .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--rose-b); }
.cta-copy h2 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: clamp(26px,3.3vw,42px); line-height: 1.1; margin: 0 0 14px; color: var(--ivory); }
.cta-copy .kort { font-size: 15px; line-height: 1.55; color: var(--text2); margin: 0; max-width: 44ch; }
.cta-copy .direct { margin-top: 20px; font-size: 14px; }
.cta-copy .direct a { color: var(--rose-b); font-weight: 600; }
.cta-copy .direct a:hover { text-decoration: underline; text-underline-offset: 3px; }
.demo-form { display: grid; gap: 12px; }
.demo-form input, .demo-form textarea { width: 100%; box-sizing: border-box; background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; color: var(--ivory); font: 500 15px 'Manrope'; transition: border-color .25s, background .25s; }
.demo-form textarea { resize: vertical; min-height: 78px; line-height: 1.5; }
.demo-form input::placeholder, .demo-form textarea::placeholder { color: rgba(220,200,210,0.34); }
.demo-form input:focus, .demo-form textarea:focus { outline: none; border-color: rgba(232,135,181,0.5); background: rgba(227,106,183,0.06); }
.demo-form .magnet { position: relative; margin-top: 4px; border: none; cursor: pointer; border-radius: 13px; padding: 16px; font: 700 15px 'Manrope'; color: #20111c; background: linear-gradient(120deg, #f6b3cd, #e36ab7); box-shadow: 0 16px 40px -16px rgba(227,106,183,0.7); transition: transform .18s, box-shadow .3s, filter .2s; will-change: transform; }
.demo-form .magnet:hover { filter: brightness(1.05); box-shadow: 0 22px 50px -16px rgba(227,106,183,0.85); }
.demo-note { font-family: ui-monospace,Menlo,monospace; font-size: 10.5px; letter-spacing: 0.04em; color: var(--faint); text-align: center; margin: 4px 0 0; }
.demo-ok { text-align: center; padding: 26px 6px; }
.demo-ok .ic { width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; border: 1px solid rgba(232,135,181,0.4); background: rgba(227,106,183,0.1); }
.demo-ok h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--ivory); margin: 0 0 10px; }
.demo-ok p { font-size: 14px; color: var(--text2); line-height: 1.55; margin: 0 auto; max-width: 34ch; }

/* ===================== FOOTER + REVEAL ===================== */
.foot { position: relative; z-index: 1; border-top: 1px solid var(--line); padding: 36px 0 56px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--faint); }
.foot a:hover { color: var(--rose-b); }
.foot .links { display: flex; gap: 22px; flex-wrap: wrap; }
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
html.js .reveal.in { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1040px) {
  .scenes { grid-template-columns: repeat(2, 1fr); }
  .frag[data-depth="1.25"], .frag[data-depth="1.0"], .frag[data-depth="2.2"] { display: none; }
}
@media (max-width: 760px) {
  .showroom { align-items: flex-start; padding-top: 96px; min-height: 92vh; }
  .hero-copy { padding: 0 22px; }
  .frag[data-depth="2.0"], .frag[data-depth="1.5"], .frag[data-depth="2.2"], .frag[data-depth="1.6"] { display: none; }
  .scenes { grid-template-columns: 1fr; }
  .build { grid-template-columns: 1fr; gap: 12px; }
  .build-line { display: none; }
  .bstep { flex-direction: row; align-items: center; text-align: left; gap: 14px; padding: 8px 0; }
  .bmini { display: none; }
  .ver { display: none; }
  .sr-hint { display: none; }
}
@media (max-width: 420px) {
  .frag.near[data-depth="3.1"] { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .nb1,.nb2,.nb3,.nb4,.neb-streak,.neb-smoke,.neb-splat,.av-spot,.av,.sc-stage::after,.bm-motion span,.ss-orbit,.ss-l,.cta,.sr-hint .m::after,.lv-live b { animation: none !important; }
  html { scroll-behavior: auto; }
  .reveal, html.js .reveal { transition: none; opacity: 1; transform: none; }
  .fly, .fly-front { display: none; }
  .lstate { transition: none; }
}

/* ============================================================
   v0.3.7 · LIVING INTERFACE ASSEMBLY
   Один крупный живой экран + крупные кинематографичные слои,
   собирающиеся из глубины и растворяющиеся в painterly mist.
   ============================================================ */
.hero-copy { z-index: 8; }

/* ---- main living screen ---- */
.living-wrap { left: auto; right: clamp(2%,4vw,6%); top: 50%; width: clamp(380px,44vw,580px); z-index: 3; }
.living { position: relative; width: 100%; transform: translateY(-50%); transform-origin: center; isolation: isolate;
  border-radius: 24px; overflow: hidden;
  background: linear-gradient(180deg, rgba(34,18,42,0.80), rgba(13,7,19,0.88));
  border: 1px solid rgba(244,168,196,0.18);
  box-shadow: 0 56px 140px -52px rgba(0,0,0,0.92), 0 0 70px -30px rgba(227,106,183,0.34), inset 0 1px 0 rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  transition: transform .55s cubic-bezier(.2,.8,.2,1), box-shadow .55s, filter .5s; will-change: transform; }
.living:hover { transform: translateY(-50%) scale(1.045);
  box-shadow: 0 66px 160px -48px rgba(0,0,0,0.94), 0 0 100px -22px rgba(227,106,183,0.62), inset 0 1px 0 rgba(255,255,255,0.1);
  filter: saturate(1.07) brightness(1.04); }

.lv-chrome { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid rgba(244,168,196,0.1);
  background: linear-gradient(180deg, rgba(42,23,50,0.55), transparent); }
.lv-dots { display: flex; gap: 7px; }
.lv-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(210,180,190,0.25); }
.lv-dots i:nth-child(1){ background: rgba(240,140,160,0.6); } .lv-dots i:nth-child(2){ background: rgba(230,169,135,0.6); } .lv-dots i:nth-child(3){ background: rgba(244,168,196,0.6); }
.lv-url { flex: 1; font-family: ui-monospace,Menlo,monospace; font-size: 11.5px; letter-spacing: 0.02em; color: #c2a9b5; text-align: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(244,168,196,0.1); border-radius: 999px; padding: 6px 14px; transition: color .6s; }
.lv-live { display: flex; align-items: center; gap: 6px; font-family: ui-monospace,Menlo,monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose); white-space: nowrap; }
.lv-live b { width: 6px; height: 6px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 8px var(--rose); animation: livePulse 1.8s ease-in-out infinite; }
@keyframes livePulse { 0%,100% { opacity: .4; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.15); } }

.lv-stage { position: relative; height: clamp(300px,40vh,400px); }
.lv-tag { position: absolute; left: clamp(22px,2.6vw,32px); top: clamp(18px,2.2vw,24px); z-index: 5; white-space: nowrap;
  font-size: 11px; font-weight: 700; color: #20111c; background: var(--rose-b); border-radius: 999px; padding: 5px 12px; transition: background .6s; }

.lstate { position: absolute; inset: 0; padding: clamp(56px,7vw,66px) clamp(22px,2.6vw,32px) clamp(40px,4vw,46px);
  opacity: 0; z-index: 1; pointer-events: none; }
.lstate.active { opacity: 1; z-index: 2; pointer-events: auto; animation: lsIn .8s cubic-bezier(.2,.8,.2,1) both; }
@keyframes lsIn { 0% { transform: scale(1.025); filter: blur(6px); } 100% { transform: none; filter: none; } }

.lv-btn { align-self: flex-start; margin-top: 12px; border: none; cursor: pointer; padding: 11px 20px; border-radius: 11px;
  font: 700 13px 'Manrope'; color: #20111c; background: linear-gradient(120deg, var(--rose-b), var(--magenta)); box-shadow: 0 14px 32px -12px rgba(227,106,183,0.6); }
.lv-btn.full { align-self: stretch; text-align: center; }
.lv-btn.sm { padding: 9px 16px; font-size: 12px; margin-top: 0; }

/* state · expert */
.ex { display: grid; grid-template-columns: 0.82fr 1fr; gap: clamp(16px,2vw,26px); height: 100%; align-items: center; }
.ex-portrait { height: 100%; min-height: 150px; border-radius: 16px; border: 1px solid rgba(244,168,196,0.16);
  background: radial-gradient(80% 70% at 40% 26%, rgba(244,168,196,0.55), transparent 60%), radial-gradient(70% 80% at 72% 86%, rgba(154,120,214,0.5), transparent 62%), linear-gradient(150deg,#3a1c3a,#160b22); }
.ex-info { display: flex; flex-direction: column; gap: 11px; }
.ex-kick { font-family: ui-monospace,Menlo,monospace; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose); }
.ex-name { width: 76%; height: 16px; border-radius: 6px; background: rgba(244,237,230,0.82); }
.ex-role { width: 54%; height: 10px; border-radius: 5px; background: rgba(178,154,166,0.4); }
.ex-trust { display: flex; gap: 8px; margin-top: 4px; }
.ex-trust span { width: 56px; height: 18px; border-radius: 999px; background: rgba(232,135,181,0.14); border: 1px solid rgba(232,135,181,0.22); }

/* state · landing */
.ld { display: flex; flex-direction: column; gap: 12px; height: 100%; justify-content: center; }
.ld-kick { font-family: ui-monospace,Menlo,monospace; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose); }
.ld-h { width: 64%; height: 22px; border-radius: 7px; background: rgba(244,237,230,0.8); }
.ld-row { display: grid; grid-template-columns: 1fr 0.92fr; gap: 18px; align-items: center; margin-top: 6px; }
.ld-copy { display: flex; flex-direction: column; gap: 9px; }
.ld-l { height: 9px; border-radius: 5px; background: rgba(178,154,166,0.36); } .ld-l.s { width: 70%; }
.ld-img { height: clamp(110px,15vh,150px); border-radius: 14px; border: 1px solid rgba(244,168,196,0.14);
  background: radial-gradient(70% 80% at 66% 28%, rgba(230,169,135,0.5), transparent 60%), radial-gradient(60% 70% at 28% 82%, rgba(227,106,183,0.45), transparent 62%), linear-gradient(150deg,#2a1230,#160b22); }

/* state · AI campaign */
.aic { display: flex; flex-direction: column; gap: 12px; height: 100%; }
.aic-visual { position: relative; flex: 1; border-radius: 16px; overflow: hidden; border: 1px solid rgba(244,168,196,0.14);
  background: radial-gradient(60% 75% at 28% 26%, rgba(227,106,183,0.6), transparent 60%), radial-gradient(70% 85% at 80% 82%, rgba(154,120,214,0.55), transparent 60%), linear-gradient(150deg,#2a1230,#160b22); }
.av { position: absolute; border-radius: 50%; filter: blur(11px); mix-blend-mode: screen; }
.av.s1 { width: 56px; height: 56px; left: 20%; top: 26%; background: rgba(244,168,196,0.85); animation: float1 6s ease-in-out infinite; }
.av.s2 { width: 42px; height: 42px; left: 62%; top: 54%; background: rgba(154,120,214,0.85); animation: float1 7s ease-in-out infinite .8s; }
.av.s3 { width: 30px; height: 30px; left: 42%; top: 18%; background: rgba(230,169,135,0.8); animation: float1 6.5s ease-in-out infinite 1.3s; }
.aic-tag { position: absolute; left: 14px; bottom: 14px; font-family: ui-monospace,Menlo,monospace; font-size: 10px; font-weight: 700; color: #20111c; background: var(--magenta); border-radius: 7px; padding: 5px 11px; }
.aic-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; }
.aic-strip i { height: 42px; border-radius: 10px; background: linear-gradient(140deg, rgba(232,135,181,0.3), #1c0f24); border: 1px solid rgba(244,168,196,0.12); }

/* state · storefront */
.sh { display: flex; flex-direction: column; gap: 14px; height: 100%; justify-content: center; }
.sh-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 11px; }
.sh-grid i { height: clamp(56px,8vh,74px); border-radius: 13px; background: rgba(255,255,255,0.045); border: 1px solid rgba(244,168,196,0.12); }
.sh-grid i.hot { border-color: rgba(227,106,183,0.5); box-shadow: 0 0 26px -4px rgba(227,106,183,0.55);
  background: radial-gradient(80% 90% at 50% 30%, rgba(227,106,183,0.55), transparent 60%), linear-gradient(150deg, rgba(154,120,214,0.4), #1c0f24); }
.sh-foot { display: flex; align-items: center; justify-content: space-between; }
.sh-price { width: 90px; height: 14px; border-radius: 6px; background: rgba(178,154,166,0.4); }

/* state · lead form */
.fm { display: flex; flex-direction: column; gap: 11px; height: 100%; justify-content: center; }
.fm-h { width: 58%; height: 18px; border-radius: 7px; background: rgba(244,237,230,0.78); margin-bottom: 2px; }
.fm-field { height: 38px; border-radius: 11px; background: rgba(255,255,255,0.045); border: 1px solid rgba(244,168,196,0.14); }
.fm-field.tall { height: 58px; }
.fm-status { display: flex; align-items: center; gap: 8px; font-family: ui-monospace,Menlo,monospace; font-size: 10.5px; color: var(--text2); margin-top: 2px; }
.fm-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 8px var(--rose); }

/* state dots + hover caption */
.lv-dotsnav { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); display: flex; gap: 7px; z-index: 6; }
.lv-dotsnav i { width: 7px; height: 7px; border-radius: 50%; background: rgba(210,180,190,0.3); cursor: pointer; transition: width .4s, background .4s; }
.lv-dotsnav i.on { width: 20px; border-radius: 999px; background: linear-gradient(90deg, var(--rose-b), var(--magenta)); }
.lv-cap { position: absolute; left: 0; right: 0; bottom: 0; margin: 0; padding: 18px clamp(22px,2.6vw,32px) 16px;
  font-size: 13px; font-weight: 600; line-height: 1.45; color: #f3e4ea; z-index: 7; pointer-events: none;
  background: linear-gradient(0deg, rgba(18,9,24,0.94) 30%, rgba(18,9,24,0)); text-wrap: pretty;
  opacity: 0; transform: translateY(10px); transition: opacity .45s, transform .45s; }
.living:hover .lv-cap { opacity: 1; transform: translateY(0); }

/* ---- flying interface layers ---- */
.fly { left: 0; top: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; transition: opacity .6s; }
.fly.fly-front { z-index: 5; }
.scene:has(.living:hover) .fly { opacity: 0.5; }
.scene:has(.living:hover) .layer { animation-play-state: paused; }
.layer { position: absolute; will-change: transform, opacity, filter; opacity: 0; transform-origin: center;
  border-radius: 16px; backdrop-filter: blur(7px);
  background: linear-gradient(180deg, rgba(42,23,52,0.5), rgba(16,9,22,0.42));
  border: 1px solid rgba(244,168,196,0.16);
  box-shadow: 0 34px 80px -44px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.05);
  animation: flyThrough var(--d,14s) cubic-bezier(.45,.05,.5,1) infinite; animation-delay: var(--delay,0s); }
@keyframes flyThrough {
  0%   { opacity: 0; transform: translate3d(var(--dx0,0),var(--dy0,12vh),0) scale(.5); filter: blur(3px); }
  16%  { opacity: .5; }
  50%  { opacity: .55; transform: translate3d(0,0,0) scale(1); filter: blur(0); }
  78%  { opacity: .3; filter: blur(5px); }
  100% { opacity: 0; transform: translate3d(var(--dx2,0),var(--dy2,-16vh),0) scale(1.5); filter: blur(11px); }
}
.fly-front .layer { animation-name: flyFront; }
@keyframes flyFront {
  0%   { opacity: 0; transform: translate3d(var(--dx0,0),var(--dy0,10vh),0) scale(.7); filter: blur(2px); }
  20%  { opacity: .24; }
  50%  { opacity: .3; transform: translate3d(0,0,0) scale(1.15); filter: blur(1px); }
  80%  { opacity: .16; filter: blur(7px); }
  100% { opacity: 0; transform: translate3d(var(--dx2,0),var(--dy2,-22vh),0) scale(1.95); filter: blur(14px); }
}

.ly-nav { width: clamp(220px,22vw,300px); height: 52px; display: flex; align-items: center; gap: 10px; padding: 0 16px; }
.lyn-logo { width: 22px; height: 22px; border-radius: 7px; background: linear-gradient(140deg, var(--rose), var(--violet)); }
.lyn-i { width: 34px; height: 9px; border-radius: 5px; background: rgba(220,200,210,0.32); }
.lyn-cta { margin-left: auto; width: 60px; height: 24px; border-radius: 8px; background: linear-gradient(120deg, var(--rose-b), var(--magenta)); }

.ly-card { width: clamp(150px,15vw,200px); padding: 14px; display: flex; flex-direction: column; gap: 9px; }
.lyc-img { height: 84px; border-radius: 11px; background: radial-gradient(70% 80% at 40% 30%, rgba(244,168,196,0.5), transparent 60%), linear-gradient(150deg, rgba(154,120,214,0.4), #1c0f24); }
.lyc-bar { height: 9px; border-radius: 5px; background: rgba(220,200,210,0.34); } .lyc-bar.s { width: 60%; }
.lyc-price { width: 46px; height: 16px; border-radius: 6px; background: linear-gradient(120deg, var(--rose-b), var(--magenta)); }

.ly-ai { width: clamp(180px,18vw,240px); height: clamp(120px,13vw,160px); overflow: hidden; }
.lya-spot { position: absolute; border-radius: 50%; filter: blur(13px); mix-blend-mode: screen; }
.lya-spot.a { width: 84px; height: 84px; left: 16%; top: 22%; background: rgba(227,106,183,0.8); }
.lya-spot.b { width: 62px; height: 62px; left: 58%; top: 54%; background: rgba(154,120,214,0.8); }
.lya-tag { position: absolute; left: 12px; bottom: 12px; font-family: ui-monospace,Menlo,monospace; font-size: 9px; font-weight: 700; color: #20111c; background: var(--magenta); border-radius: 6px; padding: 4px 9px; }

.ly-gal { width: clamp(200px,20vw,260px); height: 64px; display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; padding: 12px; }
.ly-gal i { border-radius: 9px; background: linear-gradient(140deg, rgba(232,135,181,0.3), #1c0f24); border: 1px solid rgba(244,168,196,0.12); }

.ly-form-f { width: clamp(190px,19vw,250px); padding: 16px; display: flex; flex-direction: column; gap: 11px; }
.ly-form-f span { height: 30px; border-radius: 9px; background: rgba(255,255,255,0.06); border: 1px solid rgba(244,168,196,0.14); display: block; }
.ly-form-f span.b { height: 34px; background: linear-gradient(120deg, var(--rose-b), var(--magenta)); border: none; }

.ly-cta-f { width: clamp(170px,17vw,210px); height: 56px; display: grid; place-items: center; text-align: center;
  font: 800 16px 'Manrope'; color: #20111c; border: none;
  background: linear-gradient(120deg, var(--rose-b), var(--magenta)); box-shadow: 0 26px 64px -22px rgba(227,106,183,0.7); }

/* ---- responsive ---- */
@media (max-width: 1180px) {
  .living-wrap { width: clamp(340px,48vw,500px); right: 3%; }
}
@media (max-width: 860px) {
  .showroom { align-items: flex-start; padding-top: 88px; min-height: 124svh; min-height: 124vh; }
  .hero-copy { padding: 0 22px; }
  .fly, .fly-front { display: none; }
  .living-wrap { left: 5%; right: 5%; width: auto; top: auto; bottom: clamp(20px,5vw,40px); z-index: 3; }
  .living { transform: none; }
  .living:hover { transform: scale(1.02); }
  .lv-stage { height: clamp(248px,38vh,320px); }
  .ver { display: none; }
  .sr-hint { display: none; }
}
@media (max-width: 420px) {
  .lv-stage { height: 252px; }
  .ex { grid-template-columns: 0.7fr 1fr; gap: 14px; }
}

/* ============================================================
   v0.4 · PAINTERLY INTERFACE SCULPTURE
   Главный hero-объект: живая визуальная материя, внутри которой
   собираются фрагменты интерфейса. Не мокап — арт-сцена.
   ============================================================ */

/* deeper, higher-contrast stage: dark left for copy, light break on right */
.showroom {
  background:
    radial-gradient(34% 36% at 78% 26%, rgba(227,106,183,0.16), transparent 62%),
    radial-gradient(40% 50% at 86% 64%, rgba(154,120,214,0.12), transparent 64%),
    radial-gradient(30% 40% at 8% 86%, rgba(154,120,214,0.08), transparent 66%),
    radial-gradient(150% 130% at 74% 32%, #1b0c24 0%, #0c0714 42%, #060309 80%);
}
.showroom::after {
  background:
    radial-gradient(130% 130% at 66% 44%, transparent 38%, rgba(3,2,7,0.82) 100%),
    linear-gradient(105deg, rgba(5,3,10,0.55) 0%, transparent 42%);
}

/* hero copy sits above the sculpture and stays readable */
.hero-copy { z-index: 8; }

/* light breakthroughs behind the sculpture */
.sx-core { border-radius: 50%; filter: blur(54px); mix-blend-mode: screen; pointer-events: none; opacity: 0.9; }
.sx-core.c1 { width: 32vw; height: 32vw; left: 52%; top: 2%;  background: radial-gradient(circle, rgba(244,168,196,0.5), transparent 64%); }
.sx-core.c2 { width: 26vw; height: 26vw; left: 70%; top: 52%; background: radial-gradient(circle, rgba(154,120,214,0.46), transparent 64%); }
.sx-core.c3 { width: 20vw; height: 20vw; left: 44%; top: 64%; background: radial-gradient(circle, rgba(230,169,135,0.32), transparent 66%); }

/* ---- the sculpture frame ---- */
.sculpt-wrap { position: absolute; top: 0; bottom: 0; right: clamp(8px, 1.5vw, 52px);
  width: clamp(420px, 52vw, 640px); display: flex; align-items: center; justify-content: center;
  z-index: 3; will-change: transform; }
.sculpt { position: relative; width: 100%; height: clamp(480px, 70vh, 700px);
  transform-style: preserve-3d; transition: transform .5s ease; }

/* ---- living painterly material ---- */
.sx-mass { position: absolute; left: 50%; top: 50%; width: 116%; height: 106%;
  transform: translate(-50%, -50%) translateZ(-60px);
  border-radius: 46% 54% 43% 57% / 55% 45% 55% 45%;
  background:
    radial-gradient(40% 38% at 38% 34%, rgba(244,168,196,0.6), transparent 62%),
    radial-gradient(46% 50% at 66% 58%, rgba(154,120,214,0.56), transparent 64%),
    radial-gradient(38% 42% at 52% 80%, rgba(227,106,183,0.5), transparent 66%),
    radial-gradient(66% 66% at 50% 48%, rgba(70,32,70,0.55), transparent 74%);
  filter: blur(34px); mix-blend-mode: screen; opacity: 1;
  animation: massBreathe 13s ease-in-out infinite; will-change: transform, border-radius; }
.sx-mass.m2 { width: 86%; height: 108%; transform: translate(-50%, -50%) translateZ(-90px);
  background:
    radial-gradient(48% 46% at 62% 38%, rgba(120,70,150,0.42), transparent 66%),
    radial-gradient(50% 56% at 34% 72%, rgba(180,110,150,0.3), transparent 70%);
  filter: blur(44px); opacity: 0.7; animation: massBreathe2 18s ease-in-out infinite; }
@keyframes massBreathe {
  0%,100% { transform: translate(-50%,-50%) translateZ(-60px) scale(1) rotate(0deg); border-radius: 46% 54% 43% 57% / 55% 45% 55% 45%; }
  50%     { transform: translate(-50%,-50%) translateZ(-60px) scale(1.05) rotate(3deg); border-radius: 55% 45% 56% 44% / 45% 57% 43% 55%; }
}
@keyframes massBreathe2 {
  0%,100% { transform: translate(-50%,-50%) translateZ(-90px) scale(1.02) rotate(0deg); border-radius: 52% 48% 56% 44% / 46% 54% 46% 54%; }
  50%     { transform: translate(-50%,-50%) translateZ(-90px) scale(0.96) rotate(-4deg); border-radius: 44% 56% 45% 55% / 56% 44% 56% 44%; }
}

/* painterly brush-stroke ribbons sweeping through the form */
.sx-ribbon { position: absolute; left: -14%; top: 28%; width: 128%; height: 30%;
  transform: rotate(-18deg) translateZ(-30px); border-radius: 50%;
  background: linear-gradient(90deg, transparent 6%, rgba(244,168,196,0.3) 34%, rgba(227,106,183,0.24) 56%, rgba(154,120,214,0.26) 78%, transparent 96%);
  filter: blur(20px); mix-blend-mode: screen; opacity: 0.85; animation: ribbon1 19s ease-in-out infinite; }
.sx-ribbon.r2 { top: 54%; height: 24%; transform: rotate(13deg) translateZ(-20px);
  background: linear-gradient(90deg, transparent 8%, rgba(230,169,135,0.22) 36%, rgba(244,168,196,0.18) 60%, rgba(154,120,214,0.18) 82%, transparent 94%);
  filter: blur(26px); opacity: 0.7; animation: ribbon2 24s ease-in-out infinite; }
@keyframes ribbon1 { 0%,100% { transform: rotate(-18deg) translateZ(-30px) translateX(-2%); } 50% { transform: rotate(-14deg) translateZ(-30px) translateX(3%); } }
@keyframes ribbon2 { 0%,100% { transform: rotate(13deg) translateZ(-20px) translateX(2%); } 50% { transform: rotate(10deg) translateZ(-20px) translateX(-3%); } }
/* a brush stroke that sweeps in FRONT of the interface — paint over the UI */
.sx-ribbon.r3 { position: absolute; left: -16%; top: 40%; width: 132%; height: 26%;
  transform: rotate(-9deg) translateZ(108px); border-radius: 50%;
  background: linear-gradient(90deg, transparent 10%, rgba(244,168,196,0.16) 38%, rgba(246,179,205,0.2) 56%, rgba(154,120,214,0.14) 80%, transparent 96%);
  filter: blur(16px); mix-blend-mode: screen; opacity: 0.8; animation: ribbon3 16s ease-in-out infinite; }
@keyframes ribbon3 { 0%,100% { transform: rotate(-9deg) translateZ(108px) translateX(3%); } 50% { transform: rotate(-6deg) translateZ(108px) translateX(-4%); } }

/* ---- interface fragments fused into the material ---- */
.sx-frag { position: absolute; transform-style: preserve-3d; will-change: transform;
  transform: translate(-50%, -50%) translateZ(var(--z, 0px));
  transition: transform .85s cubic-bezier(.2,.8,.2,1); }
.sculpt.open .sx-frag {
  transform: translate(calc(-50% + var(--hx,0px)), calc(-50% + var(--hy,0px))) translateZ(calc(var(--z,0px) * 1.8)) scale(1.05); }

.frg-glass { position: relative; border-radius: 16px; padding: 12px;
  background: linear-gradient(165deg, rgba(46,25,54,0.52), rgba(16,10,22,0.58));
  border: 1px solid rgba(244,168,196,0.16); backdrop-filter: blur(11px);
  box-shadow: 0 30px 68px -38px rgba(0,0,0,0.85), 0 0 30px -10px rgba(227,106,183,0.34), inset 0 1px 0 rgba(255,255,255,0.06);
  animation: fragBreathe var(--bd, 9s) ease-in-out infinite; animation-delay: var(--fd, 0s); will-change: transform, opacity; }
@keyframes fragBreathe {
  0%,100% { transform: translateY(0); opacity: 0.72; filter: saturate(0.94) brightness(0.96); }
  50%     { transform: translateY(-7px); opacity: 1; filter: saturate(1.06) brightness(1.03); }
}
.sculpt.open .frg-glass {
  box-shadow: 0 40px 92px -34px rgba(0,0,0,0.9), 0 0 50px -8px rgba(227,106,183,0.55), inset 0 1px 0 rgba(255,255,255,0.1);
  border-color: rgba(244,168,196,0.32); }
/* a feathered edge so each card reads as material, not a hard box */
.frg-glass::after { content: ''; position: absolute; inset: -1px; border-radius: 16px; pointer-events: none;
  box-shadow: inset 0 0 22px 6px rgba(20,11,28,0.5); mix-blend-mode: multiply; }

/* AI visual */
.f-ai .frg-glass { width: clamp(190px, 19vw, 244px); padding: 11px; }
.ai-canvas { position: relative; height: clamp(118px, 13vw, 152px); border-radius: 11px; overflow: hidden;
  background: radial-gradient(66% 78% at 28% 26%, rgba(227,106,183,0.62), transparent 60%), radial-gradient(74% 86% at 80% 82%, rgba(154,120,214,0.56), transparent 60%), linear-gradient(150deg, #2c1332, #160b22); }
.ai-spot { position: absolute; border-radius: 50%; filter: blur(9px); mix-blend-mode: screen; }
.ai-spot.a { width: 46px; height: 46px; left: 18%; top: 24%; background: rgba(244,168,196,0.9); animation: floatY 6s ease-in-out infinite; }
.ai-spot.b { width: 34px; height: 34px; left: 60%; top: 54%; background: rgba(154,120,214,0.9); animation: floatY 7s ease-in-out infinite .8s; }
.ai-spot.c { width: 22px; height: 22px; left: 44%; top: 18%; background: rgba(230,169,135,0.85); animation: floatY 6.5s ease-in-out infinite 1.3s; }
@keyframes floatY { 0%,100% { transform: translate(0,0); } 50% { transform: translate(5px,-6px); } }
.ai-grain { position: absolute; inset: 0; opacity: 0.16; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.ai-tag { position: absolute; left: 9px; bottom: 9px; font-family: ui-monospace,Menlo,monospace; font-size: 9px; font-weight: 700; color: #20111c; background: var(--magenta); border-radius: 6px; padding: 3px 8px; }
.ai-dots { position: absolute; right: 9px; bottom: 11px; display: flex; gap: 4px; }
.ai-dots i { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.4); }
.ai-dots i:first-child { background: var(--rose-b); }

/* nav strip */
.f-nav .nav-glass { width: clamp(228px, 23vw, 300px); display: flex; align-items: center; gap: 10px; padding: 13px 16px; }
.nv-logo { width: 22px; height: 22px; border-radius: 7px; background: linear-gradient(140deg, var(--rose), var(--violet)); flex: none; }
.nv-i { width: 34px; height: 9px; border-radius: 5px; background: rgba(222,202,212,0.32); }
.nv-cta { margin-left: auto; width: 62px; height: 26px; border-radius: 9px; background: linear-gradient(120deg, var(--rose-b), var(--magenta)); flex: none; }

/* product card */
.f-card .frg-glass { width: clamp(150px, 15vw, 188px); display: flex; flex-direction: column; gap: 8px; }
.pc-img { height: 74px; border-radius: 11px; background: radial-gradient(70% 84% at 40% 28%, rgba(244,168,196,0.5), transparent 60%), linear-gradient(150deg, rgba(154,120,214,0.42), #1c0f24); }
.pc-h { width: 76%; height: 10px; border-radius: 5px; background: rgba(244,237,230,0.7); }
.pc-l { width: 54%; height: 7px; border-radius: 4px; background: rgba(178,154,166,0.34); }
.pc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 2px; }
.pc-price { width: 48px; height: 12px; border-radius: 5px; background: rgba(230,169,135,0.6); }
.pc-btn { width: 58px; height: 24px; border-radius: 8px; background: linear-gradient(120deg, var(--rose-b), var(--rose)); }

/* lead form */
.f-form .frg-glass { width: clamp(168px, 17vw, 212px); display: flex; flex-direction: column; gap: 9px; }
.ff-h { width: 64%; height: 12px; border-radius: 5px; background: rgba(244,237,230,0.72); }
.ff-field { height: 28px; border-radius: 9px; background: rgba(255,255,255,0.05); border: 1px solid rgba(244,168,196,0.14); }
.ff-btn { height: 30px; border-radius: 9px; background: linear-gradient(120deg, var(--rose-b), var(--magenta)); }

/* gallery thumbs */
.f-gal .gal-glass { width: clamp(180px, 18vw, 232px); height: clamp(58px, 6vw, 74px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 11px; }
.f-gal .gal-glass i { border-radius: 9px; background: linear-gradient(140deg, rgba(232,135,181,0.32), #1c0f24); border: 1px solid rgba(244,168,196,0.12); }
.f-gal .gal-glass i:nth-child(2) { background: radial-gradient(80% 90% at 50% 30%, rgba(227,106,183,0.5), transparent 60%), linear-gradient(150deg, rgba(154,120,214,0.4), #1c0f24); }

/* mobile fragment (detail) */
.f-mobile .phone-glass { width: clamp(96px, 10vw, 120px); padding: 11px 9px; display: flex; flex-direction: column; gap: 6px; border-radius: 18px; }
.ph-notch { width: 28px; height: 4px; border-radius: 3px; background: rgba(210,180,190,0.4); margin: 0 auto 3px; }
.ph-img { height: 58px; border-radius: 9px; background: radial-gradient(80% 80% at 40% 30%, rgba(244,168,196,0.5), transparent 60%), linear-gradient(150deg, rgba(154,120,214,0.42), #160b22); }
.ph-l { height: 5px; border-radius: 3px; background: rgba(178,154,166,0.34); } .ph-l.s { width: 62%; }
.ph-btn { height: 20px; border-radius: 7px; background: linear-gradient(120deg, var(--rose-b), var(--magenta)); margin-top: 1px; }

/* primary CTA fused into the front of the material */
.sx-cta { position: absolute; z-index: 6; display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  padding: 14px 24px; border-radius: 14px; font: 700 14.5px 'Manrope'; color: #20111c; cursor: pointer;
  transform: translate(-50%, -50%) translateZ(var(--z, 92px));
  background: linear-gradient(120deg, #f6b3cd, #e36ab7);
  box-shadow: 0 22px 52px -16px rgba(227,106,183,0.7), 0 0 30px -6px rgba(244,168,196,0.55);
  transition: transform .85s cubic-bezier(.2,.8,.2,1), box-shadow .4s, filter .3s; animation: ctaGlow 4.6s ease-in-out infinite; }
.sx-cta span { transition: transform .3s; }
.sx-cta:hover { filter: brightness(1.05); }
.sx-cta:hover span { transform: translateX(3px); }
.sculpt.open .sx-cta { transform: translate(calc(-50% + var(--hx,0px)), calc(-50% + var(--hy,0px))) translateZ(calc(var(--z,92px) * 1.5)) scale(1.05); }
@keyframes ctaGlow {
  0%,100% { box-shadow: 0 22px 52px -16px rgba(227,106,183,0.58), 0 0 26px -8px rgba(244,168,196,0.45); }
  50%     { box-shadow: 0 26px 62px -16px rgba(227,106,183,0.85), 0 0 42px -6px rgba(244,168,196,0.72); }
}

/* details that surface only when the sculpture opens */
.sx-detail { opacity: 0; transition: opacity .8s ease, transform .85s cubic-bezier(.2,.8,.2,1); }
.sx-detail .frg-glass { animation: none; opacity: 1; }
.sculpt.open .sx-detail { opacity: 1; }
.xtag { position: absolute; transform: translate(-50%,-50%) translateZ(70px);
  font-family: ui-monospace,Menlo,monospace; font-size: 10px; letter-spacing: 0.04em; color: #20111c;
  background: var(--rose-b); border-radius: 999px; padding: 5px 11px; font-weight: 700; white-space: nowrap;
  box-shadow: 0 14px 34px -12px rgba(0,0,0,0.6); }
.sculpt.open .xtag { transform: translate(calc(-50% + var(--hx,0px)), calc(-50% + var(--hy,0px))) translateZ(96px); }

/* drifting wisps of material over the fragments */
.sx-smoke { position: absolute; border-radius: 50%; mix-blend-mode: screen; pointer-events: none; filter: blur(26px); transform: translateZ(120px); }
.sx-smoke.s1 { width: 52%; height: 44%; left: 30%; top: 28%; background: radial-gradient(circle, rgba(244,168,196,0.18), transparent 66%); animation: smokeA 22s ease-in-out infinite; }
.sx-smoke.s2 { width: 46%; height: 42%; left: 52%; top: 52%; background: radial-gradient(circle, rgba(154,120,214,0.16), transparent 66%); animation: smokeB 28s ease-in-out infinite; }
@keyframes smokeA { 0%,100% { transform: translateZ(120px) translate(0,0) scale(1); } 50% { transform: translateZ(120px) translate(4%,-5%) scale(1.12); } }
@keyframes smokeB { 0%,100% { transform: translateZ(120px) translate(0,0) scale(1.05); } 50% { transform: translateZ(120px) translate(-5%,4%) scale(0.94); } }

/* light sheen sweeping across the whole sculpture */
.sx-sheen { position: absolute; inset: -12%; pointer-events: none; mix-blend-mode: screen; transform: translateZ(130px);
  background: linear-gradient(115deg, transparent 40%, rgba(250,222,234,0.14) 50%, transparent 60%);
  background-size: 260% 100%; animation: sheenSweep 9s ease-in-out infinite; }
@keyframes sheenSweep { 0% { background-position: 145% 0; } 58%,100% { background-position: -55% 0; } }

/* caption under the sculpture */
.sculpt-cap { position: absolute; left: 50%; bottom: clamp(2px, 1.5vw, 18px); transform: translateX(-50%);
  font-family: ui-monospace,Menlo,monospace; font-size: 11px; letter-spacing: 0.04em; color: rgba(228,206,216,0.5);
  text-align: center; white-space: nowrap; pointer-events: none; z-index: 7; }

/* ---- responsive ---- */
@media (max-width: 1180px) {
  .sculpt-wrap { width: clamp(400px, 56vw, 560px); right: -2%; }
}
@media (max-width: 1040px) {
  .sculpt-wrap { right: -8%; opacity: 0.92; }
  .f-mobile { display: none; }
}
@media (max-width: 860px) {
  .showroom { align-items: flex-start; padding-top: 92px; min-height: 100svh; min-height: 100vh; }
  .hero-copy { padding: 0 22px; }
  .sculpt-wrap { width: 86vw; right: -14%; top: auto; bottom: 0; height: 60vh; opacity: 0.5;
    align-items: flex-end; }
  .sculpt { height: 56vh; }
  .f-form, .f-gal { display: none; }
  .sculpt-cap { display: none; }
  .sx-cta { font-size: 13px; padding: 12px 20px; }
}
@media (max-width: 540px) {
  .sculpt-wrap { opacity: 0.4; width: 100vw; right: -22%; }
  .f-card { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .sx-mass, .sx-mass.m2, .sx-ribbon, .sx-ribbon.r2, .frg-glass, .ai-spot, .sx-smoke, .sx-sheen, .sx-cta { animation: none !important; }
  .frg-glass { opacity: 1 !important; }
}
