:root {
  --night: #090612;
  --night-deep: #06040d;
  --plum: #160d26;
  --plum-2: #221039;
  --surface: rgba(255, 255, 255, .055);
  --surface-strong: rgba(255, 255, 255, .09);
  --surface-violet: rgba(157, 111, 255, .12);
  --surface-pink: rgba(255, 149, 203, .10);
  --line: rgba(239, 222, 255, .14);
  --line-soft: rgba(239, 222, 255, .08);
  --text: #fff8ff;
  --muted: #c3b9d0;
  --subtle: #9285a6;
  --violet: #ae83ff;
  --violet-deep: #7950d5;
  --pink: #ff9dd4;
  --rose: #ffb8d8;
  --moon: #f2dcff;
  --mint: #91efc5;
  --yellow: #ffd58c;
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --max: 1180px;
  --shadow: 0 34px 110px rgba(0, 0, 0, .38);
  --display: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
  --mono: "Space Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(134, 78, 231, .19), transparent 28%),
    radial-gradient(circle at 92% 17%, rgba(255, 114, 190, .10), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(87, 54, 166, .14), transparent 30%),
    var(--night);
  font-family: var(--body);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: .38;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .12;
  background:
    radial-gradient(circle at 20% 24%, rgba(255,255,255,.6) 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 12%, rgba(255,255,255,.46) 0 1px, transparent 1.5px),
    radial-gradient(circle at 62% 64%, rgba(255,255,255,.34) 0 1px, transparent 1.5px),
    radial-gradient(circle at 32% 76%, rgba(255,255,255,.30) 0 1px, transparent 1.5px);
  background-size: 220px 190px, 310px 250px, 260px 300px, 330px 220px;
}

.page-grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: .045;
  mix-blend-mode: screen;
  background-image: repeating-radial-gradient(circle at 0 0, rgba(255,255,255,.7) 0 1px, transparent 1px 4px);
  background-size: 5px 5px;
}

.ambient {
  position: fixed;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: -1;
  opacity: .15;
}
.ambient-violet { top: 12%; left: -250px; background: var(--violet-deep); }
.ambient-pink { top: 49%; right: -260px; background: var(--pink); opacity: .10; }
.ambient-blue { bottom: -240px; left: 31%; background: #4b68e8; opacity: .09; }

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section { padding: 132px 0; scroll-margin-top: 108px; }

.site-header {
  width: min(calc(100% - 36px), var(--max));
  margin: 16px auto 0;
  padding: 11px 12px 11px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  position: sticky;
  top: 13px;
  z-index: 40;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(10, 6, 18, .72);
  backdrop-filter: blur(22px) saturate(1.2);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .2);
}

.brand { display: inline-flex; align-items: center; gap: 10px; width: fit-content; font-family: var(--display); font-size: 19px; font-weight: 700; letter-spacing: -.04em; }
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 12px;
  color: var(--night);
  background: linear-gradient(145deg, var(--moon), var(--pink));
  box-shadow: 0 0 26px rgba(192, 131, 255, .32);
  font-size: 20px;
}
.brand-word span { color: var(--pink); font-family: var(--mono); font-size: 12px; letter-spacing: -.08em; }

.nav { justify-self: center; display: flex; align-items: center; gap: clamp(16px, 2.2vw, 29px); color: var(--subtle); font-size: 13px; }
.nav a { position: relative; transition: color .2s ease; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--pink); transition: right .25s ease; }
.nav a:hover, .nav a:focus-visible { color: var(--text); }
.nav a:hover::after, .nav a:focus-visible::after { right: 0; }

.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.04); color: var(--text); cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 19px; height: 1px; margin: 4px auto; background: var(--moon); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.button { min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 15px; font-size: 14px; font-weight: 700; transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease; }
.button:hover { transform: translateY(-3px); }
.button:focus-visible, .mood-card:focus-visible, .reply-actions button:focus-visible, .menu-toggle:focus-visible { outline: 2px solid var(--pink); outline-offset: 4px; }
.button-small { min-height: 40px; padding-inline: 16px; font-size: 12px; }
.button-primary { color: #1b0e28; background: linear-gradient(125deg, #cfb5ff 0%, #ffb4d6 100%); box-shadow: 0 18px 36px rgba(174, 131, 255, .22); }
.button-primary:hover { box-shadow: 0 22px 42px rgba(255, 157, 212, .2); }
.button-soft { color: var(--text); border: 1px solid var(--line); background: rgba(255,255,255,.055); }
.button-soft:hover { border-color: rgba(255, 157, 212, .46); background: rgba(255, 157, 212, .09); }
.button-text { min-height: 44px; padding-inline: 8px; color: var(--muted); }
.button-text:hover { color: var(--text); }
.full { width: 100%; }

.hero { min-height: 805px; padding-top: 104px; padding-bottom: 88px; display: grid; grid-template-columns: minmax(0, .93fr) minmax(480px, 1.07fr); align-items: center; gap: clamp(45px, 7vw, 104px); }
.hero-copy { position: relative; z-index: 2; }
.presence-line { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; color: var(--subtle); font-family: var(--mono); font-size: 10px; letter-spacing: .02em; text-transform: uppercase; }
.online-dot, .mini-online, .tiny-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(145,239,197,.09); }
.presence-separator { color: var(--violet); }
.hero-kicker { margin: 0; color: var(--pink); font-family: var(--mono); font-size: 12px; letter-spacing: .07em; text-transform: uppercase; }
.hero h1, .section-heading h2, .final-cta h2 { margin: 14px 0 24px; color: var(--text); font-family: var(--display); font-weight: 600; letter-spacing: -.075em; line-height: .94; }
.hero h1 { max-width: 760px; font-size: clamp(60px, 7.7vw, 106px); }
.hero h1 em, .final-cta h2 em { color: var(--pink); font-style: normal; }
.hero-lead { max-width: 590px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.78; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 33px; }
.hero-traits { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.hero-traits span { display: inline-flex; align-items: center; gap: 7px; padding: 9px 11px; border: 1px solid var(--line-soft); border-radius: 999px; color: var(--subtle); background: rgba(255,255,255,.025); font-size: 11px; }
.hero-traits b { color: var(--violet); font-size: 14px; }

.room-scene { min-height: 650px; position: relative; display: grid; place-items: center; isolation: isolate; }
.room-scene::before { content: ""; position: absolute; width: 72%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(168,116,255,.21), rgba(168,116,255,.04) 45%, transparent 70%); filter: blur(8px); z-index: -2; }
.room-scene::after { content: ""; position: absolute; width: 53%; height: 16%; bottom: 4%; border-radius: 50%; background: rgba(0,0,0,.42); filter: blur(28px); z-index: -3; }
.moon-disc { position: absolute; top: 4%; right: 10%; width: 88px; height: 88px; display: grid; place-items: center; border-radius: 50%; color: var(--night); background: linear-gradient(145deg, #fff7fd, #d9bafc); box-shadow: 0 0 45px rgba(237, 207, 255, .38); transform: rotate(-15deg); z-index: -1; }
.moon-disc span { margin-left: -4px; color: var(--violet-deep); font-size: 45px; line-height: 1; }
.orbit { position: absolute; width: 82%; aspect-ratio: 1.65; border: 1px solid rgba(215, 181, 255, .16); border-radius: 50%; transform: rotate(-19deg); z-index: -1; }
.orbit-one { left: 5%; top: 23%; }
.orbit-two { width: 66%; left: 17%; top: 30%; transform: rotate(29deg); border-color: rgba(255, 157, 212, .12); }
.star { position: absolute; color: var(--moon); font-family: var(--mono); z-index: 1; opacity: .8; }
.star-one { top: 17%; left: 11%; color: var(--pink); font-size: 19px; }
.star-two { top: 32%; right: 7%; font-size: 28px; color: var(--violet); }
.star-three { bottom: 18%; left: 4%; font-size: 17px; color: var(--pink); }
.star-four { bottom: 12%; right: 18%; font-size: 25px; color: var(--moon); }

.room-window { width: min(100%, 585px); position: relative; overflow: hidden; border: 1px solid rgba(230, 209, 255, .24); border-radius: 31px; background: linear-gradient(145deg, rgba(35, 20, 59, .92), rgba(13, 8, 24, .95)); box-shadow: var(--shadow), 0 0 0 8px rgba(190, 133, 255, .035); transform: rotate(1.5deg); }
.room-window::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, rgba(255,255,255,.12), transparent 20%, transparent 74%, rgba(255,158,210,.09)); }
.window-bar, .room-footer { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 18px; border-bottom: 1px solid var(--line-soft); color: var(--subtle); font-family: var(--mono); font-size: 9px; letter-spacing: .04em; text-transform: uppercase; }
.window-lights { display: flex; gap: 5px; }
.window-lights i { width: 7px; height: 7px; display: block; border-radius: 50%; background: var(--pink); opacity: .75; }
.window-lights i:nth-child(2) { background: var(--yellow); }
.window-lights i:nth-child(3) { background: var(--mint); }
.window-title { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); }
.window-title span { color: var(--pink); font-size: 13px; }
.window-code { color: rgba(255,255,255,.35); }
.room-body { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; gap: 17px; padding: 17px; }
.room-portrait { min-height: 456px; position: relative; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; border: 1px solid rgba(232, 212, 255, .16); border-radius: 24px; background: radial-gradient(circle at 50% 21%, rgba(255, 170, 215, .20), transparent 17%), radial-gradient(circle at 50% 50%, rgba(158, 106, 255, .32), transparent 44%), linear-gradient(180deg, #271443, #0f091b); }
.room-portrait::before { content: ""; position: absolute; inset: 10%; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; transform: rotate(-25deg); }
.room-portrait::after { content: ""; position: absolute; width: 180%; height: 60%; left: -40%; bottom: -19%; border-radius: 50%; border-top: 1px solid rgba(255, 172, 216, .22); transform: rotate(-12deg); }
.room-portrait img { position: relative; z-index: 2; width: 105%; height: 100%; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 26px 34px rgba(0,0,0,.42)); transition: opacity .2s ease, transform .25s ease; }
.portrait-caption { position: absolute; left: 15px; right: 15px; bottom: 14px; z-index: 4; display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.portrait-caption strong { max-width: 130px; font-family: var(--display); font-size: 16px; line-height: 1.03; letter-spacing: -.045em; }
.mini-status { display: inline-flex; align-items: center; gap: 6px; padding: 7px 8px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: var(--muted); background: rgba(9,6,18,.55); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.mini-status i { width: 5px; height: 5px; border-radius: 50%; background: var(--mint); }
.room-panel { padding: 25px 15px 10px 10px; }
.status-chip { display: inline-flex; align-items: center; gap: 7px; color: var(--subtle); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.status-chip::before { content: ""; width: 7px; height: 7px; border: 1px solid var(--pink); border-radius: 50%; box-shadow: 0 0 0 4px rgba(255,157,212,.08); }
.status-chip strong { color: var(--pink); font-weight: 400; }
.room-panel h2 { margin: 18px 0 13px; font-family: var(--display); font-size: clamp(30px, 3.3vw, 44px); letter-spacing: -.07em; line-height: .93; }
.room-panel h2 span { color: var(--violet); }
.room-panel p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.room-stats { display: grid; gap: 15px; margin-top: 30px; }
.room-stats > div { display: grid; grid-template-columns: 1fr auto; gap: 5px; }
.room-stats small { color: var(--subtle); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.room-stats strong { color: var(--moon); font-family: var(--mono); font-size: 10px; font-weight: 400; }
.meter { grid-column: 1 / -1; height: 4px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.09); }
.meter i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--violet), var(--pink)); }
.room-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 28px; }
.room-tags span { padding: 6px 8px; border: 1px solid rgba(255,255,255,.09); border-radius: 8px; color: var(--subtle); font-family: var(--mono); font-size: 8px; }
.room-footer { border-top: 1px solid var(--line-soft); border-bottom: 0; font-size: 8px; }
.room-footer span:first-child { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); }
.tiny-dot { width: 5px; height: 5px; box-shadow: 0 0 0 3px rgba(145,239,197,.09); }
.float-note { position: absolute; z-index: 5; min-width: 145px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 15px; background: rgba(19, 10, 32, .78); backdrop-filter: blur(17px); box-shadow: 0 18px 50px rgba(0,0,0,.28); }
.float-note span { display: block; margin-bottom: 5px; color: var(--subtle); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.float-note strong { display: block; color: var(--moon); font-size: 11px; line-height: 1.25; }
.float-note-top { top: 13%; left: -9%; transform: rotate(-5deg); }
.float-note-bottom { right: -7%; bottom: 12%; transform: rotate(4deg); }

.art-frame.is-missing img { display: none; }
.fallback-art { display: none; position: absolute; inset: 0; z-index: 2; place-items: center; align-content: center; gap: 9px; color: var(--moon); background: radial-gradient(circle at 50% 35%, rgba(180,130,255,.25), transparent 35%), linear-gradient(180deg, #281343, #100a1b); text-align: center; }
.art-frame.is-missing .fallback-art { display: grid; }
.fallback-art span { display: block; color: var(--moon); font-size: 74px; line-height: .7; text-shadow: 0 0 35px rgba(240, 210, 255, .55); }
.fallback-art small { color: var(--subtle); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.fallback-art-wide { position: absolute; }

.quick-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding-bottom: 16px; }
.quick-card { min-height: 84px; display: flex; align-items: center; gap: 13px; padding: 17px 18px; border: 1px solid var(--line-soft); border-radius: 18px; background: rgba(255,255,255,.035); }
.quick-card-accent { border-color: rgba(255,157,212,.24); background: linear-gradient(135deg, rgba(255,157,212,.10), rgba(174,131,255,.07)); }
.quick-icon { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; color: var(--pink); background: rgba(255,255,255,.06); font-size: 17px; }
.quick-card small { display: block; margin-bottom: 4px; color: var(--subtle); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.quick-card strong { display: block; color: var(--muted); font-size: 12px; font-weight: 600; line-height: 1.25; }

.banner-section { padding-top: 48px; padding-bottom: 20px; }
.banner-card { min-height: 280px; position: relative; display: block; overflow: hidden; border: 1px solid rgba(182, 129, 255, .22); border-radius: var(--radius-lg); background: #120a20; box-shadow: 0 28px 85px rgba(0,0,0,.3); }
.banner-card img { display: block; width: 100%; height: 100%; min-height: 280px; object-fit: cover; transition: transform .55s ease, filter .55s ease; }
.banner-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,4,14,.65), transparent 50%, rgba(8,4,14,.12)); pointer-events: none; }
.banner-card:hover img { transform: scale(1.025); filter: saturate(1.12) brightness(1.05); }
.banner-label, .banner-arrow { position: absolute; z-index: 3; }
.banner-label { left: 22px; bottom: 20px; display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: var(--moon); background: rgba(10, 6, 18, .54); backdrop-filter: blur(10px); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.banner-label i { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); }
.banner-arrow { top: 20px; right: 22px; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--moon); background: rgba(10, 6, 18, .45); font-size: 18px; }

.section-heading { max-width: 780px; }
.section-heading-narrow { max-width: 700px; }
.section-kicker { display: inline-block; color: var(--pink); font-family: var(--mono); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.section-heading h2 { max-width: 820px; font-size: clamp(43px, 5.5vw, 77px); }
.section-heading p { max-width: 650px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }

.profile-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(290px, .75fr); align-items: center; gap: clamp(30px, 6vw, 88px); margin-top: 58px; }
.profile-console { overflow: hidden; border: 1px solid rgba(201, 164, 255, .23); border-radius: var(--radius-xl); background: linear-gradient(145deg, rgba(41, 21, 65, .78), rgba(18, 10, 31, .87)); box-shadow: var(--shadow); }
.console-topline { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 20px; border-bottom: 1px solid var(--line-soft); color: var(--subtle); font-family: var(--mono); font-size: 9px; }
.console-topline > span { display: flex; gap: 5px; }
.console-topline i { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); }
.console-topline i:nth-child(2) { background: var(--violet); }
.console-topline i:nth-child(3) { background: var(--mint); }
.console-topline b { color: var(--pink); font-size: 15px; }
.profile-main { display: grid; grid-template-columns: minmax(230px, .78fr) 1fr; align-items: center; gap: 28px; padding: 24px; }
.profile-art { min-height: 386px; position: relative; overflow: hidden; display: flex; align-items: end; justify-content: center; border-radius: 23px; background: radial-gradient(circle at 55% 22%, rgba(255,160,213,.18), transparent 18%), linear-gradient(180deg, #281443, #100a1d); }
.profile-art::before { content: ""; position: absolute; width: 150%; aspect-ratio: 1; top: 14%; left: -25%; border: 1px solid rgba(255,255,255,.10); border-radius: 50%; transform: rotate(25deg); }
.profile-art img { position: relative; z-index: 2; width: 120%; height: 100%; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 22px 33px rgba(0,0,0,.42)); }
.profile-art-label { position: absolute; z-index: 4; bottom: 13px; left: 13px; color: var(--moon); font-family: var(--mono); font-size: 9px; }
.profile-info { padding-right: 8px; }
.profile-name-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }
.profile-handle { color: var(--pink); font-family: var(--mono); font-size: 10px; }
.profile-info h3 { margin: 3px 0 13px; font-family: var(--display); font-size: 44px; font-weight: 600; letter-spacing: -.07em; line-height: .92; }
.verified { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; color: var(--night); background: var(--pink); font-size: 12px; }
.profile-bio { max-width: 300px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.profile-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 22px; }
.profile-pills span { padding: 7px 8px; border: 1px solid var(--line-soft); border-radius: 8px; color: var(--subtle); font-family: var(--mono); font-size: 8px; }
.profile-meta { display: grid; gap: 8px; margin-top: 28px; color: var(--subtle); font-family: var(--mono); font-size: 9px; }
.profile-meta span { display: flex; align-items: center; gap: 7px; }
.mini-online { width: 5px; height: 5px; box-shadow: 0 0 0 3px rgba(145,239,197,.10); }
.profile-facts { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-soft); }
.profile-facts div { padding: 17px 20px 19px; border-right: 1px solid var(--line-soft); }
.profile-facts div:last-child { border-right: 0; }
.profile-facts small { display: block; margin-bottom: 6px; color: var(--subtle); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.profile-facts strong { display: block; color: var(--muted); font-size: 12px; line-height: 1.25; }
.profile-copy { max-width: 450px; }
.quote-card { position: relative; margin-bottom: 30px; padding: 26px 24px 22px; border: 1px solid rgba(255,157,212,.19); border-radius: 22px; background: linear-gradient(135deg, rgba(255,157,212,.10), rgba(174,131,255,.08)); }
.quote-card > span { position: absolute; top: 7px; left: 20px; color: var(--pink); font-family: Georgia, serif; font-size: 49px; line-height: 1; opacity: .8; }
.quote-card p { position: relative; margin: 15px 0 12px; color: var(--moon); font-family: var(--display); font-size: 25px; letter-spacing: -.055em; line-height: 1.04; }
.quote-card small { color: var(--subtle); font-family: var(--mono); font-size: 9px; }
.profile-copy > p { color: var(--muted); font-size: 16px; line-height: 1.8; }
.inline-link { display: inline-flex; gap: 9px; margin-top: 12px; color: var(--pink); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.inline-link span { transition: transform .2s ease; }
.inline-link:hover span { transform: translateX(4px); }

.presence-section { padding-top: 105px; }
.chat-layout { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(280px, .72fr); gap: 22px; align-items: stretch; margin-top: 56px; }
.chat-window, .presence-note { border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.028)); box-shadow: 0 22px 64px rgba(0,0,0,.22); }
.chat-window { padding: 18px; }
.chat-topline { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 2px 3px 18px; border-bottom: 1px solid var(--line-soft); color: var(--subtle); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.chat-topline span { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.chat-topline i { width: 7px; height: 7px; display: inline-block; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(145,239,197,.08); }
.chat-messages { padding: 24px 10px 18px; }
.chat-message { display: flex; align-items: flex-start; gap: 11px; max-width: 84%; margin-bottom: 22px; }
.chat-message > div:last-child { min-width: 0; }
.chat-message small { display: block; margin-bottom: 5px; color: var(--subtle); font-family: var(--mono); font-size: 9px; text-transform: lowercase; }
.chat-message p { margin: 0; padding: 13px 15px; border: 1px solid rgba(174,131,255,.14); border-radius: 8px 18px 18px 18px; color: var(--moon); background: rgba(174,131,255,.11); font-size: 14px; line-height: 1.55; }
.chat-avatar { width: 36px; height: 36px; flex: 0 0 36px; position: relative; overflow: hidden; border: 1px solid rgba(255,157,212,.20); border-radius: 11px; background: #231139; }
.chat-avatar img { width: 100%; height: 100%; object-fit: contain; }
.chat-avatar .fallback-art span { font-size: 28px; }
.user-message { justify-content: flex-end; max-width: 70%; margin-left: auto; text-align: right; }
.user-message p { border-color: rgba(255,157,212,.14); border-radius: 18px 8px 18px 18px; color: var(--text); background: rgba(255,157,212,.09); }
.chat-reply { margin: 4px 0 0 47px; padding: 11px 13px; border-left: 1px solid var(--pink); color: var(--subtle); font-size: 12px; font-style: italic; line-height: 1.5; }
.reply-actions { display: flex; flex-wrap: wrap; gap: 7px; padding-top: 17px; border-top: 1px solid var(--line-soft); }
.reply-actions button { padding: 8px 10px; border: 1px solid var(--line-soft); border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.035); cursor: pointer; font-size: 11px; transition: border-color .2s ease, color .2s ease, background .2s ease; }
.reply-actions button:hover { border-color: rgba(255,157,212,.36); color: var(--text); background: rgba(255,157,212,.08); }
.presence-note { position: relative; overflow: hidden; padding: 35px 31px; background: radial-gradient(circle at 92% 9%, rgba(255,157,212,.15), transparent 27%), linear-gradient(145deg, rgba(43, 22, 68, .76), rgba(17, 9, 29, .82)); }
.presence-note::after { content: ""; position: absolute; width: 210px; height: 210px; right: -100px; bottom: -120px; border: 1px solid rgba(255,157,212,.24); border-radius: 50%; box-shadow: 0 0 0 18px rgba(255,157,212,.025), 0 0 0 38px rgba(255,157,212,.018); }
.note-star { color: var(--pink); font-size: 33px; line-height: 1; }
.presence-note h3 { max-width: 300px; margin: 28px 0 17px; font-family: var(--display); font-size: 34px; letter-spacing: -.065em; line-height: .99; }
.presence-note p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.note-signature { position: relative; z-index: 1; display: flex; align-items: center; gap: 8px; margin-top: 35px; color: var(--pink); font-family: var(--display); font-size: 22px; }
.note-signature i { font-family: var(--body); font-style: normal; font-size: 15px; }

.powers-section { padding-top: 111px; }
.power-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 56px; }
.power-card { min-height: 288px; position: relative; overflow: hidden; padding: 25px; border: 1px solid var(--line-soft); border-radius: 24px; background: rgba(255,255,255,.042); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.power-card:hover { transform: translateY(-5px); border-color: rgba(174,131,255,.38); background: rgba(174,131,255,.08); }
.power-card::before { content: ""; position: absolute; width: 150px; height: 150px; right: -65px; bottom: -82px; border: 1px solid rgba(174,131,255,.18); border-radius: 50%; box-shadow: 0 0 0 15px rgba(174,131,255,.026), 0 0 0 32px rgba(174,131,255,.019); }
.power-card-wide { grid-column: span 2; background: linear-gradient(135deg, rgba(174,131,255,.12), rgba(255,255,255,.035)); }
.power-card-pink { background: linear-gradient(135deg, rgba(255,157,212,.11), rgba(174,131,255,.055)); }
.power-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.power-icon { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; color: var(--pink); background: rgba(255,255,255,.055); font-size: 19px; }
.power-tag { color: var(--subtle); font-family: var(--mono); font-size: 8px; letter-spacing: .05em; text-transform: uppercase; }
.power-card h3 { max-width: 420px; margin: 38px 0 11px; font-family: var(--display); font-size: 27px; letter-spacing: -.06em; line-height: 1.02; }
.power-card p { max-width: 560px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.68; }
.code-pill, .power-footer, .quest-line { position: absolute; left: 25px; bottom: 22px; color: var(--subtle); font-family: var(--mono); font-size: 9px; }
.code-pill { padding: 9px 10px; border: 1px solid rgba(174,131,255,.22); border-radius: 9px; color: var(--muted); background: rgba(7,4,14,.34); }
.code-pill span { color: var(--pink); }
.code-pill b { color: var(--moon); font-weight: 400; }
.power-footer { right: 25px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.power-footer span { color: var(--pink); font-size: 14px; }
.green-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(145,239,197,.08); }
.quest-line { display: flex; align-items: center; gap: 8px; }
.quest-line i { width: 8px; height: 8px; border: 1px solid var(--pink); border-radius: 50%; }
.memory-orbit { position: absolute; right: 26px; bottom: 20px; width: 185px; height: 62px; border: 1px solid rgba(255,157,212,.20); border-radius: 50%; transform: rotate(-14deg); }
.memory-orbit::after { content: ""; position: absolute; inset: 8px 18px; border: 1px solid rgba(174,131,255,.25); border-radius: 50%; }
.memory-orbit span { position: absolute; z-index: 2; padding: 3px 6px; border-radius: 5px; color: var(--muted); background: var(--plum); font-family: var(--mono); font-size: 8px; transform: rotate(14deg); }
.memory-orbit span:nth-child(1) { top: 4px; left: 22px; }
.memory-orbit span:nth-child(2) { right: 1px; bottom: 7px; }
.memory-orbit span:nth-child(3) { left: 56px; bottom: -6px; color: var(--pink); }
.capability-note { margin-top: 16px; padding: 24px 27px; border: 1px solid rgba(255,157,212,.15); border-radius: 20px; background: linear-gradient(135deg, rgba(255,157,212,.07), rgba(174,131,255,.06)); }
.capability-note strong { display: block; margin-bottom: 7px; font-family: var(--display); font-size: 19px; letter-spacing: -.04em; }
.capability-note p { max-width: 890px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.mood-section { padding-top: 119px; }
.mood-layout { display: grid; grid-template-columns: .65fr 1.35fr; align-items: center; gap: clamp(40px, 7vw, 100px); }
.mood-current { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; color: var(--pink); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.mood-deck { min-width: 0; }
.mood-preview { display: grid; grid-template-columns: minmax(170px, .7fr) 1fr; align-items: center; gap: 22px; padding: 18px; border: 1px solid rgba(174,131,255,.24); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(174,131,255,.12), rgba(255,157,212,.06)); }
.mood-portrait { height: 260px; position: relative; overflow: hidden; display: flex; align-items: end; justify-content: center; border-radius: 19px; background: radial-gradient(circle at 50% 28%, rgba(255,157,212,.22), transparent 24%), linear-gradient(180deg, #271342, #10091b); }
.mood-portrait img { position: relative; z-index: 2; width: 108%; height: 100%; object-fit: contain; filter: drop-shadow(0 18px 26px rgba(0,0,0,.4)); transition: opacity .2s ease, transform .25s ease; }
.mood-copy { padding-right: 10px; }
.mood-copy h3 { margin: 13px 0 9px; font-family: var(--display); font-size: 34px; letter-spacing: -.065em; line-height: .98; }
.mood-copy p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.mood-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 10px; }
.mood-card { min-width: 0; padding: 8px; border: 1px solid var(--line-soft); border-radius: 15px; color: var(--text); background: rgba(255,255,255,.035); cursor: pointer; text-align: left; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.mood-card:hover, .mood-card.active { transform: translateY(-3px); border-color: rgba(255,157,212,.45); background: rgba(255,157,212,.09); }
.mood-card img { display: block; width: 100%; aspect-ratio: 1; object-fit: contain; margin-bottom: 3px; }
.mood-card strong { display: block; margin: 0 3px 2px; font-size: 11px; }
.mood-card span { display: block; margin: 0 3px; color: var(--subtle); font-family: var(--mono); font-size: 8px; }

.identity-section { padding-top: 36px; }
.identity-card { display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: 70px; padding: 61px; border: 1px solid rgba(255,157,212,.19); border-radius: var(--radius-xl); background: radial-gradient(circle at 85% 15%, rgba(255,157,212,.12), transparent 22%), linear-gradient(135deg, rgba(174,131,255,.14), rgba(255,255,255,.035)); }
.identity-card h2 { max-width: 620px; margin: 17px 0 0; font-family: var(--display); font-size: clamp(43px, 5.3vw, 72px); letter-spacing: -.075em; line-height: .95; }
.identity-copy p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.identity-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.identity-list span { padding: 8px 10px; border: 1px solid var(--line-soft); border-radius: 999px; color: var(--subtle); font-family: var(--mono); font-size: 8px; }
.identity-list b { color: var(--moon); font-weight: 400; }

.plans-section { padding-top: 116px; }
.plans-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; max-width: 980px; margin-top: 56px; }
.plan-card { min-height: 470px; position: relative; display: flex; flex-direction: column; padding: 31px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.045); }
.plan-card-featured { border-color: rgba(255,157,212,.38); background: linear-gradient(145deg, rgba(255,157,212,.12), rgba(174,131,255,.09)); box-shadow: 0 25px 80px rgba(89, 38, 132, .18); }
.plan-badge { position: absolute; top: 21px; right: 21px; padding: 7px 9px; border-radius: 999px; color: var(--night); background: var(--pink); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.plan-top { display: flex; align-items: center; gap: 11px; }
.plan-icon { width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 11px; color: var(--pink); background: rgba(255,255,255,.06); }
.plan-label { color: var(--pink); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.plan-card h3 { max-width: 390px; margin: 31px 0 13px; font-family: var(--display); font-size: 31px; letter-spacing: -.065em; line-height: 1; }
.plan-price { margin: 0; color: var(--moon); font-family: var(--display); font-size: 43px; letter-spacing: -.07em; line-height: 1; }
.plan-price small { color: var(--subtle); font-family: var(--mono); font-size: 10px; letter-spacing: 0; }
.plan-description { max-width: 390px; margin: 18px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.plan-list { display: grid; gap: 9px; padding: 0; margin: 25px 0 28px; list-style: none; color: var(--muted); font-size: 12px; }
.plan-list li { display: flex; align-items: center; gap: 9px; }
.plan-list span { color: var(--pink); }
.plan-card .button { margin-top: auto; }

.final-cta { position: relative; overflow: hidden; padding-top: 142px; padding-bottom: 150px; text-align: center; }
.final-cta::before { content: ""; position: absolute; width: 530px; height: 240px; left: 50%; top: 33%; transform: translate(-50%, -50%); border-radius: 50%; background: rgba(174,131,255,.12); filter: blur(70px); z-index: -1; }
.final-stars { margin-bottom: 30px; color: var(--pink); font-family: var(--mono); font-size: 12px; letter-spacing: .16em; }
.final-cta h2 { margin-top: 15px; font-size: clamp(52px, 7.5vw, 96px); }
.final-cta p { margin: 0 0 28px; color: var(--muted); font-size: 16px; }

.site-footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; padding-top: 28px; padding-bottom: 43px; border-top: 1px solid var(--line-soft); color: var(--subtle); font-size: 12px; }
.site-footer .brand { color: var(--text); }
.site-footer p { margin: 0; text-align: center; }

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.72,.2,1); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; min-height: 0; padding-top: 94px; gap: 34px; }
  .hero-copy { max-width: 760px; margin-inline: auto; text-align: center; }
  .presence-line, .hero-actions, .hero-traits { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .room-scene { min-height: 690px; }
  .profile-layout, .mood-layout { grid-template-columns: 1fr; }
  .profile-copy { max-width: 700px; }
  .mood-layout > .section-heading { max-width: 700px; }
  .mood-deck { max-width: 760px; }
  .chat-layout { grid-template-columns: 1fr; }
  .presence-note { min-height: 280px; }
  .power-grid { grid-template-columns: repeat(2, 1fr); }
  .power-card-wide { grid-column: span 2; }
  .identity-card { grid-template-columns: 1fr; gap: 27px; }
}

@media (max-width: 780px) {
  .site-header { grid-template-columns: auto auto auto; gap: 12px; }
  .site-header .button { justify-self: end; }
  .menu-toggle { display: block; justify-self: center; }
  .nav { position: absolute; top: calc(100% + 9px); left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px; border: 1px solid var(--line); border-radius: 18px; background: rgba(14, 8, 24, .94); box-shadow: 0 20px 50px rgba(0,0,0,.25); }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 13px; border-radius: 10px; }
  .nav a:hover { background: rgba(255,255,255,.055); }
  .nav a::after { display: none; }
  .quick-strip { grid-template-columns: 1fr; }
  .profile-main { grid-template-columns: 1fr; }
  .profile-art { min-height: 405px; }
  .profile-info { padding: 0 5px 8px; }
  .profile-bio { max-width: 520px; }
  .identity-card { padding: 39px; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .site-header { width: calc(100% - 20px); margin-top: 9px; top: 8px; padding-left: 11px; }
  .brand { font-size: 17px; }
  .brand-mark { width: 31px; height: 31px; }
  .site-header .button { padding-inline: 11px; font-size: 10px; }
  .hero { padding-top: 70px; padding-bottom: 64px; }
  .hero h1 { font-size: clamp(55px, 16vw, 78px); }
  .hero-lead { font-size: 16px; line-height: 1.7; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-traits span { font-size: 10px; }
  .room-scene { min-height: 530px; margin-inline: -3px; }
  .room-window { width: 100%; transform: rotate(0); border-radius: 24px; }
  .window-bar { padding-inline: 13px; }
  .window-code { display: none; }
  .room-body { grid-template-columns: 1fr; gap: 10px; padding: 10px; }
  .room-portrait { min-height: 330px; }
  .room-panel { padding: 17px 10px 10px; }
  .room-panel h2 { font-size: 35px; }
  .room-panel p { font-size: 12px; }
  .room-stats { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 21px; }
  .room-tags { margin-top: 18px; }
  .room-footer { padding-inline: 12px; font-size: 7px; }
  .float-note { min-width: 110px; padding: 9px 10px; }
  .float-note strong { font-size: 9px; }
  .float-note-top { top: 4%; left: 0; }
  .float-note-bottom { right: 0; bottom: 2%; }
  .moon-disc { width: 60px; height: 60px; top: 0; right: 7%; }
  .moon-disc span { font-size: 32px; }
  .orbit { width: 93%; }
  .star-one { left: 3%; }
  .star-two { right: 1%; }
  .banner-section { padding-top: 25px; }
  .banner-card, .banner-card img { min-height: 190px; }
  .banner-label { left: 12px; bottom: 12px; max-width: calc(100% - 54px); font-size: 7px; }
  .banner-arrow { top: 12px; right: 12px; }
  .section { padding: 88px 0; }
  .section-heading h2, .identity-card h2 { font-size: 43px; }
  .section-heading p { font-size: 16px; }
  .profile-layout, .chat-layout, .power-grid, .plans-grid { margin-top: 36px; }
  .profile-console { border-radius: 26px; }
  .profile-main { padding: 14px; gap: 17px; }
  .profile-art { min-height: 348px; }
  .profile-info h3 { font-size: 40px; }
  .profile-facts { grid-template-columns: 1fr; }
  .profile-facts div { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .profile-facts div:last-child { border-bottom: 0; }
  .profile-copy { margin-top: 4px; }
  .quote-card p { font-size: 22px; }
  .chat-window { padding: 13px; border-radius: 23px; }
  .chat-messages { padding-inline: 3px; }
  .chat-message { max-width: 96%; }
  .user-message { max-width: 87%; }
  .chat-message p { font-size: 13px; }
  .reply-actions button { font-size: 10px; }
  .presence-note { min-height: 310px; padding: 27px 23px; }
  .presence-note h3 { font-size: 31px; }
  .power-grid { grid-template-columns: 1fr; gap: 11px; }
  .power-card, .power-card-wide { grid-column: auto; min-height: 260px; padding: 21px; }
  .power-card h3 { font-size: 25px; margin-top: 33px; }
  .code-pill, .power-footer, .quest-line { left: 21px; bottom: 18px; }
  .power-footer { right: 21px; }
  .memory-orbit { right: 17px; bottom: 18px; transform: scale(.83) rotate(-14deg); transform-origin: right bottom; }
  .capability-note { padding: 21px; }
  .mood-preview { grid-template-columns: 1fr; padding: 12px; }
  .mood-portrait { height: 260px; }
  .mood-copy { padding: 8px 8px 14px; }
  .mood-copy h3 { font-size: 31px; }
  .mood-grid { grid-template-columns: repeat(2, 1fr); gap: 7px; }
  .mood-card { padding: 7px; }
  .identity-section { padding-top: 5px; }
  .identity-card { padding: 29px 23px; border-radius: 26px; }
  .identity-card h2 { font-size: 42px; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: 440px; padding: 25px; }
  .plan-card h3 { font-size: 29px; }
  .final-cta { padding-top: 93px; padding-bottom: 105px; }
  .final-cta h2 { font-size: 56px; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; gap: 13px; text-align: center; }
  .site-footer p { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* profile showcase v2 */
.profile-layout-showcase {
  grid-template-columns: minmax(380px, .92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: clamp(42px, 7vw, 96px);
}

.profile-visual {
  min-width: 0;
}

.profile-art-large {
  min-height: 690px;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border: 1px solid rgba(201, 164, 255, .23);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 22%, rgba(255,160,213,.18), transparent 22%),
    radial-gradient(circle at 50% 55%, rgba(158,106,255,.20), transparent 45%),
    linear-gradient(180deg, #281443, #100a1d);
  box-shadow: var(--shadow);
}

.profile-art-large::before {
  content: "";
  position: absolute;
  width: 140%;
  aspect-ratio: 1;
  top: 10%;
  left: -20%;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  transform: rotate(25deg);
}

.profile-art-large img {
  position: relative;
  z-index: 2;
  width: 118%;
  height: 108%;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 42px rgba(0,0,0,.46));
}

.profile-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.profile-info-large {
  padding: 0;
  margin-bottom: 28px;
}

.profile-info-large .profile-name-row {
  align-items: center;
}

.profile-info-large h3 {
  font-size: clamp(56px, 5vw, 76px);
  margin-bottom: 16px;
}

.profile-info-large .profile-bio {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.75;
}

.profile-content .quote-card {
  margin: 0 0 26px;
}

.profile-text p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.profile-facts-inline {
  margin: 10px 0 26px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.025);
}

.profile-facts-inline div {
  padding: 16px 18px;
}

.profile-content .inline-link {
  width: fit-content;
}

@media (max-width: 1050px) {
  .profile-layout-showcase {
    grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
    gap: 34px;
  }

  .profile-art-large {
    min-height: 590px;
  }

  .profile-art-large img {
    width: 126%;
  }
}

@media (max-width: 780px) {
  .profile-layout-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .profile-art-large {
    min-height: 560px;
    max-height: 680px;
  }

  .profile-art-large img {
    width: 100%;
    height: 108%;
  }

  .profile-content {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .profile-art-large {
    min-height: 470px;
    border-radius: 26px;
  }

  .profile-art-large img {
    width: 112%;
    height: 105%;
  }

  .profile-info-large h3 {
    font-size: 52px;
  }

  .profile-info-large .profile-bio {
    font-size: 15px;
  }

  .profile-facts-inline {
    grid-template-columns: 1fr;
  }
}


/* profile alignment v3 */
.profile-section .profile-layout-showcase {
  margin-top: 0;
  align-items: start;
}

.profile-section .profile-visual,
.profile-section .profile-content {
  align-self: start;
}

.profile-section .profile-content {
  justify-content: flex-start;
}

.profile-section-heading {
  max-width: 100%;
  margin: 0 0 34px;
}

.profile-section-heading h2 {
  max-width: 680px;
  margin-top: 12px;
  font-size: clamp(46px, 4.4vw, 68px);
  line-height: .96;
}

.profile-section-heading p {
  max-width: 650px;
  font-size: 16px;
  line-height: 1.72;
}

.profile-art-large {
  min-height: 760px;
}

.profile-art-large img {
  height: 112%;
  width: 124%;
}

@media (max-width: 1050px) {
  .profile-section-heading h2 {
    font-size: clamp(43px, 5vw, 60px);
  }

  .profile-art-large {
    min-height: 690px;
  }
}

@media (max-width: 780px) {
  .profile-section .profile-layout-showcase {
    margin-top: 24px;
  }

  .profile-section-heading {
    margin-bottom: 28px;
  }

  .profile-art-large {
    min-height: 560px;
  }

  .profile-art-large img {
    width: 108%;
    height: 108%;
  }
}

@media (max-width: 620px) {
  .profile-section-heading h2 {
    font-size: 43px;
  }

  .profile-section-heading p {
    font-size: 15px;
  }

  .profile-art-large {
    min-height: 490px;
  }
}


/* mobile lightweight v5 */
@media (max-width: 620px) {
  body {
    background:
      radial-gradient(circle at 20% 0%, rgba(134,78,231,.12), transparent 28%),
      var(--night);
  }

  body::before,
  body::after,
  .page-grain,
  .ambient,
  .orbit,
  .star,
  .moon-disc,
  .float-note,
  .memory-orbit {
    display: none !important;
  }

  .shell {
    width: calc(100% - 22px);
  }

  .section {
    padding: 60px 0;
  }

  .site-header {
    width: calc(100% - 14px);
    margin-top: 7px;
    top: 7px;
    grid-template-columns: auto auto;
    padding: 8px 9px;
    gap: 8px;
    border-radius: 17px;
    backdrop-filter: blur(12px);
  }

  .site-header > .button {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav {
    top: calc(100% + 7px);
    border-radius: 15px;
    backdrop-filter: blur(10px);
  }

  .hero {
    min-height: 0;
    padding-top: 48px;
    padding-bottom: 42px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-copy {
    text-align: left;
  }

  .presence-line,
  .hero-actions,
  .hero-traits {
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 60px);
    line-height: .94;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 46px;
  }

  .button-text {
    display: none;
  }

  .hero-traits {
    margin-top: 18px;
    gap: 5px;
  }

  .hero-traits span {
    padding: 7px 9px;
    font-size: 9px;
  }

  .room-scene {
    min-height: 0;
    display: block;
  }

  .room-window {
    width: 100%;
    transform: none;
    border-radius: 20px;
    box-shadow: 0 16px 38px rgba(0,0,0,.24);
  }

  .window-bar {
    padding: 10px 11px;
  }

  .window-code,
  .room-footer,
  .room-stats,
  .room-tags {
    display: none;
  }

  .room-body {
    grid-template-columns: 1fr;
    padding: 8px;
    gap: 8px;
  }

  .room-portrait {
    min-height: 275px;
    border-radius: 16px;
  }

  .room-panel {
    padding: 14px 10px 12px;
  }

  .room-panel h2 {
    margin: 10px 0 8px;
    font-size: 28px;
  }

  .room-panel p {
    font-size: 11px;
    line-height: 1.55;
  }

  .quick-strip {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-bottom: 6px;
  }

  .quick-card {
    min-height: 64px;
    padding: 12px 13px;
    border-radius: 15px;
  }

  .quick-icon {
    width: 27px;
    height: 27px;
    font-size: 15px;
  }

  .banner-section {
    padding-top: 14px;
    padding-bottom: 4px;
  }

  .banner-card,
  .banner-card img {
    min-height: 160px;
    border-radius: 18px;
  }

  .banner-label {
    left: 10px;
    bottom: 10px;
    font-size: 6px;
  }

  .banner-arrow {
    width: 31px;
    height: 31px;
    top: 10px;
    right: 10px;
  }

  .section-heading h2,
  .profile-section-heading h2,
  .identity-card h2 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: .98;
  }

  .section-heading p,
  .profile-section-heading p {
    font-size: 14px;
    line-height: 1.6;
  }

  .profile-section .profile-layout-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 0;
  }

  .profile-art-large {
    min-height: 360px;
    border-radius: 20px;
    box-shadow: 0 16px 38px rgba(0,0,0,.2);
  }

  .profile-art-large img {
    width: 100%;
    height: 100%;
  }

  .profile-section-heading {
    margin-bottom: 20px;
  }

  .profile-info-large {
    margin-bottom: 18px;
  }

  .profile-info-large h3 {
    font-size: 42px;
  }

  .profile-info-large .profile-bio {
    font-size: 14px;
    line-height: 1.6;
  }

  .profile-pills {
    margin-top: 14px;
  }

  .profile-pills span {
    padding: 6px 7px;
    font-size: 7px;
  }

  .profile-meta {
    margin-top: 16px;
    gap: 6px;
  }

  .quote-card {
    margin-bottom: 20px;
    padding: 19px 17px 16px;
    border-radius: 16px;
  }

  .quote-card p {
    font-size: 19px;
  }

  .profile-text p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 13px;
  }

  .profile-facts-inline {
    grid-template-columns: repeat(3, 1fr);
    margin: 6px 0 18px;
    border-radius: 15px;
  }

  .profile-facts-inline div {
    padding: 11px 7px;
    border-bottom: 0;
    border-right: 1px solid var(--line-soft);
  }

  .profile-facts-inline div:last-child {
    border-right: 0;
  }

  .profile-facts-inline small {
    font-size: 6px;
  }

  .profile-facts-inline strong {
    font-size: 9px;
  }

  .chat-layout {
    margin-top: 26px;
    gap: 10px;
  }

  .chat-window {
    padding: 10px;
    border-radius: 18px;
    box-shadow: none;
  }

  .chat-topline {
    padding-bottom: 11px;
  }

  .chat-messages {
    padding: 15px 0 10px;
  }

  .chat-message {
    max-width: 100%;
    margin-bottom: 13px;
  }

  .chat-avatar {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .chat-message p {
    padding: 10px 11px;
    font-size: 12px;
  }

  .chat-reply {
    margin-left: 38px;
    font-size: 10px;
  }

  .reply-actions {
    gap: 5px;
    padding-top: 12px;
  }

  .reply-actions button {
    padding: 7px 8px;
    font-size: 9px;
  }

  .presence-note {
    min-height: 0;
    padding: 20px 18px;
    border-radius: 18px;
    box-shadow: none;
  }

  .presence-note h3 {
    margin: 18px 0 12px;
    font-size: 26px;
  }

  .presence-note p {
    font-size: 13px;
    line-height: 1.6;
  }

  .power-grid {
    margin-top: 26px;
    gap: 9px;
  }

  .power-card,
  .power-card-wide {
    min-height: 210px;
    padding: 17px;
    border-radius: 18px;
    box-shadow: none;
  }

  .power-card h3 {
    margin-top: 24px;
    font-size: 22px;
  }

  .power-card p {
    font-size: 12px;
    line-height: 1.55;
  }

  .code-pill,
  .power-footer,
  .quest-line {
    left: 17px;
    right: 17px;
    bottom: 14px;
    font-size: 7px;
  }

  .capability-note {
    padding: 17px;
    border-radius: 17px;
  }

  .mood-layout {
    gap: 24px;
  }

  .mood-preview {
    grid-template-columns: 1fr;
    padding: 10px;
    border-radius: 18px;
  }

  .mood-portrait {
    height: 190px;
  }

  .mood-copy {
    padding: 7px 7px 11px;
  }

  .mood-copy h3 {
    font-size: 27px;
  }

  .mood-copy p {
    font-size: 12px;
    line-height: 1.55;
  }

  .mood-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .mood-card {
    padding: 6px;
    border-radius: 13px;
  }

  .identity-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .identity-copy p {
    font-size: 14px;
    line-height: 1.65;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .plan-card {
    min-height: 390px;
    padding: 21px;
    border-radius: 20px;
  }

  .plan-card h3 {
    font-size: 27px;
  }

  .plan-description {
    font-size: 13px;
  }

  .final-cta {
    padding-top: 74px;
    padding-bottom: 82px;
  }

  .final-cta h2 {
    font-size: 46px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 28px;
  }
}


/* mobile profile order v7 */
.profile-section-heading-mobile {
  display: none;
}

@media (max-width: 620px) {
  .profile-section-heading-desktop {
    display: none;
  }

  .profile-section-heading-mobile {
    display: block;
    order: 1;
    margin: 0 0 4px;
  }

  .profile-section .profile-visual {
    order: 2;
  }

  .profile-section .profile-content {
    order: 3;
  }

  .profile-section .profile-layout-showcase {
    gap: 18px;
  }

  .profile-section-heading-mobile h2 {
    margin-top: 10px;
    margin-bottom: 18px;
  }

  .profile-section-heading-mobile p {
    margin-bottom: 4px;
  }
}
