/* Uname — brand site. A living night sky of warm presence. Navy + imaginable glow. */
:root {
  --navy:    #090c1c;
  --navy-2:  #0e1330;
  --ink:     #f6f6fc;
  --body:    #c7c7df;
  --muted:   #8585a4;
  --coral:   #ff6b6b;
  --coral-2: #ff9a8a;
  --lav:     #c2a8ff;
  --lav-2:   #b39ae6;
  --warm:    #ffce9e;
  --green:   #bbf3cf;
  --card:    rgba(194, 168, 255, 0.06);
  --card-bd: rgba(194, 168, 255, 0.15);
  --maxw:    1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: radial-gradient(140% 120% at 50% -10%, #141a3d 0%, var(--navy) 55%);
  color: var(--body);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--lav); text-decoration: none; transition: color .18s ease, opacity .18s ease; }
a:hover { color: var(--coral-2); }
::selection { background: rgba(255,107,107,.32); color: #fff; }

/* ---------- Living aurora background ---------- */
.aurora { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.aurora span { position: absolute; border-radius: 50%; filter: blur(95px); opacity: .55;
  mix-blend-mode: screen; }
.aurora .a1 { width: 640px; height: 640px; top: -200px; left: -140px;
  background: radial-gradient(circle, rgba(255,107,107,.6), transparent 62%); animation: drift1 22s ease-in-out infinite; }
.aurora .a2 { width: 720px; height: 720px; top: 60px; right: -220px;
  background: radial-gradient(circle, rgba(194,168,255,.55), transparent 62%); animation: drift2 26s ease-in-out infinite; }
.aurora .a3 { width: 560px; height: 560px; bottom: -220px; left: 30%;
  background: radial-gradient(circle, rgba(255,179,138,.42), transparent 62%); animation: drift3 30s ease-in-out infinite; }
@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(90px,60px) scale(1.12)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-80px,90px) scale(1.08)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(60px,-70px) scale(1.15)} }

/* drifting dust */
.dust { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.dust i { position: absolute; bottom: -10px; width: 3px; height: 3px; border-radius: 50%;
  background: #fff; opacity: 0; animation: rise linear infinite; }
@keyframes rise {
  0% { transform: translateY(0) scale(.6); opacity: 0; }
  10% { opacity: .7; }
  90% { opacity: .5; }
  100% { transform: translateY(-104vh) scale(1); opacity: 0; }
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 60; backdrop-filter: blur(16px);
  background: rgba(9,12,28,.55); border-bottom: 1px solid rgba(194,168,255,.09); }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 23px; letter-spacing: .2px; color: var(--ink); }
.brand .logo { width: 32px; height: 32px; border-radius: 9px; box-shadow: 0 5px 16px rgba(0,0,0,.45); }
.brand .nm { background: linear-gradient(100deg, var(--coral), var(--warm)); -webkit-background-clip: text;
  background-clip: text; color: transparent; }
/* small app-icon lockup near CTAs */
.appicon { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; }
.appicon img { width: 46px; height: 46px; border-radius: 12px; box-shadow: 0 8px 22px rgba(0,0,0,.45); }
.appicon .t { text-align: left; line-height: 1.25; } .appicon .t b { color: var(--ink); font-weight: 800; display: block; font-size: 15px; }
.appicon .t span { color: var(--muted); font-size: 12.5px; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--body); font-size: 15px; font-weight: 600; }
.nav-links a:hover { color: var(--ink); }

/* ---------- Buttons ---------- */
.btn { position: relative; display: inline-flex; align-items: center; gap: 9px; font-weight: 800;
  font-size: 16px; padding: 14px 26px; border-radius: 16px; border: 1px solid transparent; cursor: pointer;
  transition: transform .16s ease, box-shadow .2s ease, background .16s ease, border-color .16s ease; }
.btn-primary { color: #11152b; background: linear-gradient(100deg, var(--coral), var(--warm));
  box-shadow: 0 14px 40px rgba(255,107,107,.34); }
.btn-primary:hover { color: #11152b; transform: translateY(-2px); box-shadow: 0 18px 52px rgba(255,107,107,.46); }
.btn-ghost { background: rgba(255,255,255,.03); color: var(--ink); border-color: rgba(194,168,255,.26); }
.btn-ghost:hover { color: var(--ink); border-color: var(--lav); background: rgba(194,168,255,.08); }

/* ---------- Hero ---------- */
.hero { position: relative; text-align: center; padding: 70px 0 40px; min-height: 88vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center; }

.avatar-stage { position: relative; width: 260px; height: 270px; margin: 0 auto 8px; }
.avatar-wrap { position: absolute; inset: 0; cursor: pointer; transition: transform .25s ease; will-change: transform; }
.avatar-wrap .halo { position: absolute; left: 18px; right: 18px; top: 16px; height: 226px; border-radius: 50%;
  filter: blur(36px);
  background: radial-gradient(circle, rgba(255,150,120,.6), rgba(194,168,255,.34) 55%, transparent 72%);
  animation: breathe 5.2s ease-in-out infinite; }
.avatar-wrap .char { position: absolute; left: 0; right: 0; top: 14px; width: 230px; height: 230px;
  margin: 0 auto; transform-origin: 50% 92%; animation: character 6.4s cubic-bezier(.5,0,.5,1) infinite; }
.avatar-wrap .char img { width: 100%; height: 100%; object-fit: contain; display: block;
  filter: drop-shadow(0 18px 30px rgba(255,120,100,.35)); }
.avatar-wrap .ground { position: absolute; bottom: 4px; left: 50%; width: 130px; height: 22px; margin-left: -65px;
  border-radius: 50%; background: rgba(0,0,0,.45); filter: blur(11px); transform-origin: center;
  animation: ground 6.4s cubic-bezier(.5,0,.5,1) infinite; }
.avatar-wrap .spark { position: absolute; top: 46%; left: 50%; width: 8px; height: 8px; border-radius: 50%;
  margin: -4px 0 0 -4px; opacity: 0; }
.avatar-wrap .spark.s1 { background: #ffd9a8; box-shadow: 0 0 10px #ffd9a8; animation: spark 3.2s ease-in-out .2s infinite; }
.avatar-wrap .spark.s2 { background: #c2a8ff; box-shadow: 0 0 10px #c2a8ff; animation: spark 3.6s ease-in-out 1.0s infinite; }
.avatar-wrap .spark.s3 { background: #ff8a8a; box-shadow: 0 0 10px #ff8a8a; animation: spark 3.0s ease-in-out 1.7s infinite; }
.avatar-wrap .spark.s4 { background: #bbf3cf; box-shadow: 0 0 10px #bbf3cf; animation: spark 3.8s ease-in-out 2.4s infinite; }

/* speech bubble that types the app's warm lines */
.bubble { position: absolute; top: 6px; left: 50%; transform: translateX(20px); z-index: 4;
  background: rgba(20,26,58,.92); border: 1px solid rgba(194,168,255,.3); color: var(--ink);
  font-size: 14.5px; font-weight: 600; padding: 9px 14px; border-radius: 16px 16px 16px 4px;
  white-space: nowrap; box-shadow: 0 10px 30px rgba(0,0,0,.4); backdrop-filter: blur(6px);
  animation: bubbleFloat 5s ease-in-out infinite; }
.bubble .caret { display: inline-block; width: 2px; height: 15px; background: var(--coral-2);
  vertical-align: -2px; margin-left: 1px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
@keyframes bubbleFloat { 0%,100%{transform:translateX(20px) translateY(0)} 50%{transform:translateX(20px) translateY(-6px)} }

@keyframes breathe { 0%,100% { transform: scale(.96); opacity: .82 } 50% { transform: scale(1.06); opacity: 1 } }
@keyframes character {
  0%   { transform: translateY(0)     rotate(0deg)  scaleX(1)    scaleY(1); }
  6%   { transform: translateY(4px)   rotate(0deg)  scaleX(1.04) scaleY(.95); }
  16%  { transform: translateY(-30px) rotate(-3deg) scaleX(.93)  scaleY(1.1); }
  26%  { transform: translateY(0)     rotate(0deg)  scaleX(1.08) scaleY(.9); }
  31%  { transform: translateY(-7px)  rotate(0deg)  scaleX(.98)  scaleY(1.02); }
  36%  { transform: translateY(0)     rotate(0deg)  scaleX(1)    scaleY(1); }
  50%  { transform: translateY(-5px)  rotate(4deg); }
  64%  { transform: translateY(0)     rotate(0deg); }
  78%  { transform: translateY(-5px)  rotate(-4deg); }
  92%  { transform: translateY(0)     rotate(0deg); }
}
@keyframes ground {
  0%{transform:scaleX(1) scaleY(1);opacity:.42} 6%{transform:scaleX(1.06) scaleY(1);opacity:.46}
  16%{transform:scaleX(.6) scaleY(.7);opacity:.18} 26%{transform:scaleX(1.12) scaleY(1.1);opacity:.5}
  36%{transform:scaleX(1) scaleY(1);opacity:.42} 100%{transform:scaleX(1) scaleY(1);opacity:.42}
}
@keyframes spark {
  0%{opacity:0;transform:translate(0,0) scale(.4)} 30%{opacity:1;transform:translate(var(--dx),var(--dy)) scale(1.1)}
  100%{opacity:0;transform:translate(calc(var(--dx)*1.5),calc(var(--dy)*1.5)) scale(.3)}
}
.avatar-wrap:hover .char { animation: hop .6s ease; }
@keyframes hop {
  0%{transform:translateY(0) scaleX(1) scaleY(1)} 30%{transform:translateY(-36px) scaleX(.9) scaleY(1.12)}
  60%{transform:translateY(0) scaleX(1.1) scaleY(.9)} 80%{transform:translateY(-6px) scaleX(.98) scaleY(1.02)}
  100%{transform:translateY(0) scaleX(1) scaleY(1)}
}

.hero h1 { font-size: clamp(38px, 7vw, 72px); line-height: 1.02; color: var(--ink); font-weight: 800;
  letter-spacing: -1px; max-width: 15ch; margin: 6px auto 18px; }
.hero h1 .accent { background: linear-gradient(100deg, var(--coral-2) 10%, var(--lav) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lede { font-size: clamp(17px, 2.3vw, 21px); color: var(--body); max-width: 56ch; margin: 0 auto 30px; }
.hero .rotor { color: var(--lav); font-weight: 700; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 16px; font-size: 14px; color: var(--muted); }
.cta-note b { color: var(--warm); font-weight: 700; }
.scrollcue { margin-top: 40px; color: var(--muted); font-size: 13px; letter-spacing: 2px; text-transform: lowercase;
  animation: nudge 2.2s ease-in-out infinite; }
@keyframes nudge { 0%,100%{transform:translateY(0);opacity:.6} 50%{transform:translateY(6px);opacity:1} }

/* ---------- Section scaffolding ---------- */
section.block { position: relative; padding: 80px 0; }
.eyebrow { text-transform: lowercase; letter-spacing: 2.5px; font-size: 13px; font-weight: 800;
  color: var(--lav-2); text-align: center; margin-bottom: 12px; }
.h2 { font-size: clamp(28px, 4.4vw, 44px); color: var(--ink); font-weight: 800; text-align: center;
  letter-spacing: -.5px; max-width: 20ch; margin: 0 auto 14px; line-height: 1.1; }
.h2 .accent { background: linear-gradient(100deg, var(--coral-2), var(--lav)); -webkit-background-clip: text;
  background-clip: text; color: transparent; }
.sub { text-align: center; color: var(--body); max-width: 58ch; margin: 0 auto; font-size: 17px; }

/* ---------- Chat demo ---------- */
.demo { display: grid; grid-template-columns: 1fr 320px; gap: 54px; align-items: center; margin-top: 26px; }
.demo .copy h2 { text-align: left; margin: 0 0 14px; max-width: 16ch; }
.demo .copy .sub { text-align: left; margin: 0 0 22px; }
.demo .copy .pills { display: flex; gap: 10px; flex-wrap: wrap; }
.pill { font-size: 13.5px; font-weight: 700; color: var(--lav); background: rgba(194,168,255,.1);
  border: 1px solid rgba(194,168,255,.22); padding: 7px 13px; border-radius: 999px; }

.phone { justify-self: center; width: 300px; height: 612px; border-radius: 46px; padding: 12px;
  background: linear-gradient(160deg, #2a3056, #11152b); border: 1px solid rgba(194,168,255,.18);
  box-shadow: 0 40px 90px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.08); position: relative; }
.phone .screen { width: 100%; height: 100%; border-radius: 36px; overflow: hidden; position: relative;
  background: radial-gradient(120% 80% at 50% 0%, #1a2046, #0c1026 70%); display: flex; flex-direction: column; }
.phone .notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 110px; height: 22px;
  background: #05070f; border-radius: 0 0 16px 16px; z-index: 5; }
.chat-head { display: flex; align-items: center; gap: 10px; padding: 30px 16px 12px;
  border-bottom: 1px solid rgba(194,168,255,.1); }
.chat-head .av { width: 38px; height: 38px; border-radius: 50%; flex: 0 0 38px;
  background: radial-gradient(circle at 50% 40%, #ffb38a, #ff6b6b 70%); position: relative; overflow: hidden; }
.chat-head .av img { position: absolute; width: 150%; height: 150%; left: -25%; top: -18%; object-fit: contain; }
.chat-head .nm { color: var(--ink); font-weight: 800; font-size: 15px; }
.chat-head .st { color: var(--green); font-size: 11.5px; font-weight: 600; }
.chat { flex: 1; padding: 14px 14px 18px; display: flex; flex-direction: column; gap: 9px; overflow: hidden;
  justify-content: flex-end; }
.msg { max-width: 80%; padding: 9px 13px; font-size: 14.5px; line-height: 1.4; border-radius: 17px;
  opacity: 0; transform: translateY(8px) scale(.96); }
.msg.show { animation: pop .34s cubic-bezier(.2,.9,.3,1.2) forwards; }
.msg.them { align-self: flex-start; background: rgba(194,168,255,.16); color: #ede7ff; border-bottom-left-radius: 5px; }
.msg.me { align-self: flex-end; background: linear-gradient(120deg, #ff6b6b, #ff9a8a); color: #14152b;
  font-weight: 600; border-bottom-right-radius: 5px; }
.typing { align-self: flex-start; background: rgba(194,168,255,.16); padding: 12px 15px; border-radius: 17px;
  border-bottom-left-radius: 5px; display: none; gap: 4px; }
.typing.show { display: inline-flex; animation: pop .3s ease forwards; }
.typing i { width: 7px; height: 7px; border-radius: 50%; background: #c2a8ff; opacity: .5; animation: bounce 1.2s infinite; }
.typing i:nth-child(2){animation-delay:.18s} .typing i:nth-child(3){animation-delay:.36s}
@keyframes bounce { 0%,60%,100%{transform:translateY(0);opacity:.5} 30%{transform:translateY(-5px);opacity:1} }
@keyframes pop { to { opacity: 1; transform: translateY(0) scale(1); } }

/* ---------- Interactive demo chips + special bubbles ---------- */
.modechips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.modechip { border: 1px solid var(--card-bd); background: rgba(194,168,255,.06); color: var(--body);
  font-weight: 700; font-size: 13.5px; padding: 8px 13px; border-radius: 999px; cursor: pointer; font-family: inherit;
  transition: background .18s ease, border-color .18s ease, color .18s ease; }
.modechip:hover { border-color: rgba(194,168,255,.42); color: var(--ink); }
.modechip.on { background: linear-gradient(100deg, var(--coral), var(--warm)); color: #11152b; border-color: transparent; }
.lockline { margin-top: 16px; font-size: 13px; color: var(--muted); }
.chat .sys { align-self: center; background: rgba(194,168,255,.1); border: 1px solid var(--card-bd); color: var(--lav);
  font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 999px; max-width: 92%; text-align: center;
  opacity: 0; transform: translateY(6px) scale(.96); }
.chat .sys.show { animation: pop .3s ease forwards; }
.msg.draft { background: rgba(255,179,138,.12); border: 1px dashed rgba(255,179,138,.55); color: #ffe2c6; }
.msg.draft .dlabel { display: block; font-size: 10.5px; font-weight: 800; letter-spacing: .6px; color: #ffb38a;
  margin-bottom: 4px; text-transform: uppercase; }

/* ---------- Feature cards (glass) ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 46px; }
.card { position: relative; background: var(--card); border: 1px solid var(--card-bd); border-radius: 22px;
  padding: 28px 26px; overflow: hidden; backdrop-filter: blur(8px);
  transition: border-color .25s ease, transform .25s ease, background .25s ease; }
.card::before { content: ''; position: absolute; width: 180px; height: 180px; top: -90px; right: -60px;
  background: radial-gradient(circle, rgba(255,107,107,.22), transparent 70%); opacity: 0; transition: opacity .3s ease; }
.card:hover { border-color: rgba(194,168,255,.4); transform: translateY(-4px); background: rgba(194,168,255,.09); }
.card:hover::before { opacity: 1; }
.card .ico { font-size: 28px; margin-bottom: 14px; display: inline-block; }
.card:hover .ico { animation: wob .6s ease; }
@keyframes wob { 0%,100%{transform:rotate(0)} 25%{transform:rotate(-12deg) scale(1.1)} 75%{transform:rotate(10deg) scale(1.1)} }
.card h3 { color: var(--ink); font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.card p { color: var(--body); font-size: 15.5px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; position: relative; }
.step { text-align: center; padding: 8px; }
.step .num { width: 50px; height: 50px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center;
  font-weight: 900; color: #11152b; font-size: 19px; background: linear-gradient(135deg, var(--coral), var(--warm));
  box-shadow: 0 10px 26px rgba(255,107,107,.34); }
.step h3 { color: var(--ink); font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.step p { color: var(--body); font-size: 15px; }

/* ---------- Marquee of warm phrases ---------- */
.marquee { overflow: hidden; padding: 26px 0; border-top: 1px solid rgba(194,168,255,.09);
  border-bottom: 1px solid rgba(194,168,255,.09); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee .track { display: flex; gap: 30px; width: max-content; animation: slide 32s linear infinite; }
.marquee span { color: var(--lav-2); font-size: clamp(20px, 3vw, 30px); font-weight: 800; white-space: nowrap; opacity: .8; }
.marquee span .dot { color: var(--coral); margin-left: 30px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Closing band ---------- */
.band { position: relative; text-align: center; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,107,107,.1), rgba(194,168,255,.08));
  border: 1px solid var(--card-bd); border-radius: 30px; padding: 64px 28px; margin: 20px auto 0; }
.band h2 { font-size: clamp(28px, 4.6vw, 46px); color: var(--ink); font-weight: 800; margin-bottom: 10px; letter-spacing: -.5px; }
.band p { color: var(--body); margin-bottom: 28px; font-size: 18px; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid rgba(194,168,255,.09); margin-top: 80px; padding: 38px 0 52px; }
footer .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
footer .brand { font-size: 19px; }
footer .links { display: flex; gap: 22px; flex-wrap: wrap; }
footer .links a { color: var(--body); font-size: 14px; font-weight: 600; }
footer .copy { color: var(--muted); font-size: 13px; width: 100%; }

/* ---------- Scroll reveal (progressive enhancement: hidden only when JS is active) ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- Alternating feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split + .split { margin-top: 78px; }
.split.rev .visual { order: 2; }
.split .txt h2 { text-align: left; margin: 0 0 12px; max-width: 18ch; font-size: clamp(26px, 3.6vw, 38px);
  color: var(--ink); font-weight: 800; letter-spacing: -.4px; line-height: 1.12; }
.split .txt .eyebrow { text-align: left; }
.split .txt p { color: var(--body); font-size: 17px; margin: 0 0 18px; max-width: 46ch; }
.split .txt ul.ticks { list-style: none; margin: 0; display: grid; gap: 9px; }
.split .txt ul.ticks li { color: var(--body); font-size: 15.5px; padding-left: 26px; position: relative; }
.split .txt ul.ticks li::before { content: '✦'; position: absolute; left: 0; color: var(--coral-2); }
.split .txt ul.ticks li b { color: var(--ink); font-weight: 700; }

/* Sticker visual disc */
.disc { position: relative; justify-self: center; width: 320px; height: 320px; display: grid; place-items: center; }
.disc::before { content:''; position:absolute; inset: 34px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,150,120,.42), rgba(194,168,255,.26) 55%, transparent 72%); filter: blur(32px);
  animation: breathe 5.6s ease-in-out infinite; }
.disc > img { position: relative; width: 72%; height: 72%; object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.42)); animation: floaty 5s ease-in-out infinite; }
@keyframes floaty { 0%,100%{transform:translateY(0) rotate(-1.5deg)} 50%{transform:translateY(-13px) rotate(1.5deg)} }
.disc .mini { position: absolute; width: 70px; height: 70px; border-radius: 20px; padding: 7px;
  background: rgba(20,26,58,.72); border: 1px solid rgba(194,168,255,.22); backdrop-filter: blur(6px);
  box-shadow: 0 12px 26px rgba(0,0,0,.36); }
.disc .mini img { width: 100%; height: 100%; object-fit: contain; }
.disc .m1 { top: 2px; right: 6px; animation: floaty 4s ease-in-out infinite; }
.disc .m2 { bottom: 16px; left: -2px; animation: floaty 4.6s ease-in-out .6s infinite; }

/* ---------- Name + photo card (make it yours highlight) ---------- */
.namecard { max-width: 430px; margin: 40px auto 6px; background: var(--card); border: 1px solid var(--card-bd);
  border-radius: 26px; padding: 30px 26px; text-align: center; }
.np-avatar { width: 116px; height: 116px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle, rgba(255,150,120,.45), rgba(194,168,255,.22) 60%, transparent 72%);
  animation: breathe 5s ease-in-out infinite; }
.np-avatar img { width: 90%; height: 90%; object-fit: contain; transition: opacity .3s ease; }
.np-row { display: inline-flex; align-items: center; gap: 10px; background: rgba(194,168,255,.08);
  border: 1px solid var(--card-bd); border-radius: 13px; padding: 10px 16px; }
.np-label { font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.np-name { font-size: 21px; font-weight: 800; color: var(--ink); font-family: 'Space Grotesk', sans-serif; }
.np-name::after { content: '|'; color: var(--coral-2); margin-left: 2px; animation: blink 1s steps(1) infinite; }
.np-hint { color: var(--body); font-size: 14.5px; margin: 16px auto 0; max-width: 36ch; }

/* ---------- Sticker gallery (Make it yours) ---------- */
.gallery { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 42px; max-width: 880px; margin-left: auto; margin-right: auto; }
.gallery .chip { width: 94px; height: 94px; border-radius: 22px; padding: 11px; background: var(--card);
  border: 1px solid var(--card-bd); transition: transform .22s ease, border-color .22s ease, background .22s ease; }
.gallery .chip img { width: 100%; height: 100%; object-fit: contain; }
.gallery .chip:hover { transform: translateY(-7px) rotate(-5deg) scale(1.1); border-color: rgba(194,168,255,.42); background: rgba(194,168,255,.1); }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 760px; margin: 46px auto 0; }
.plan { background: var(--card); border: 1px solid var(--card-bd); border-radius: 24px; padding: 32px 28px; }
.plan.pro { position: relative; border-color: rgba(255,107,107,.5);
  background: linear-gradient(180deg, rgba(255,107,107,.09), rgba(194,168,255,.05)); }
.plan .tag { font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--lav-2); }
.plan .price { color: var(--ink); font-size: 40px; font-weight: 900; margin: 8px 0 2px; letter-spacing: -1px; }
.plan .price span { font-size: 15px; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.plan ul { list-style: none; margin: 18px 0 0; display: grid; gap: 11px; }
.plan li { color: var(--body); font-size: 15px; padding-left: 26px; position: relative; }
.plan li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.plan .badge { position: absolute; top: -13px; right: 22px; background: linear-gradient(100deg,var(--coral),var(--warm));
  color:#11152b; font-size: 12px; font-weight: 800; padding: 5px 13px; border-radius: 999px; }

/* ---------- Language chips ---------- */
.langs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 30px; max-width: 720px; margin-left: auto; margin-right: auto; }
.langs span { color: var(--body); font-size: 15px; font-weight: 600; background: rgba(194,168,255,.08);
  border: 1px solid rgba(194,168,255,.18); padding: 8px 14px; border-radius: 999px; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split.rev .visual { order: 0; }
  .split .txt h2, .split .txt .eyebrow { text-align: center; }
  .split .txt p { text-align: center; margin-left: auto; margin-right: auto; }
  .split .txt ul.ticks { justify-items: start; max-width: 340px; margin: 0 auto; }
  .plans { grid-template-columns: 1fr; }
}

/* ---------- Display font on big headings ---------- */
h1, .h2, .band h2, .split .txt h2, .brand .nm, .plan .price, .demo .copy h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif; }

/* ---------- Fine grain overlay (premium texture) ---------- */
.grain { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%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"); }

/* ---------- Lucide icon tiles ---------- */
.card .ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(255,107,107,.2), rgba(194,168,255,.14)); border: 1px solid rgba(194,168,255,.22); }
.card .ic svg { width: 26px; height: 26px; stroke: #ffc59e; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card:hover .ic svg { animation: wob .6s ease; }
.pill svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; vertical-align: -3px; margin-right: 4px; }

/* ---------- App store badge ---------- */
.store { display: inline-flex; align-items: center; gap: 11px; padding: 11px 18px; border-radius: 14px;
  background: #fff; color: #11152b; font-weight: 700; box-shadow: 0 12px 30px rgba(0,0,0,.4); }
.store svg { width: 24px; height: 24px; fill: #11152b; }
.store .s { font-size: 11px; line-height: 1; opacity: .7; } .store .b { font-size: 17px; font-weight: 800; line-height: 1.1; }

/* ---------- Circle constellation (memory graph) ---------- */
.orbit { position: relative; width: min(440px, 82vw); aspect-ratio: 1; margin: 0 auto; }
.orbit svg { width: 100%; height: 100%; overflow: visible; display: block; }
.orbit .spin { transform-origin: 200px 200px; animation: spin 46s linear infinite; }
.orbit .ln { stroke: url(#lg); stroke-width: 1.6; opacity: .55; stroke-dasharray: 5 7; animation: dash 9s linear infinite; }
.orbit .nd { fill: #161c3e; stroke: rgba(194,168,255,.6); stroke-width: 2; }
.orbit .glow { animation: pulse 3.2s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.orbit .glow:nth-child(2){animation-delay:.5s}.orbit .glow:nth-child(3){animation-delay:1s}
.orbit .glow:nth-child(4){animation-delay:1.5s}.orbit .glow:nth-child(5){animation-delay:2s}.orbit .glow:nth-child(6){animation-delay:2.5s}
.orbit .center-disc { position: absolute; left: 50%; top: 50%; width: 30%; height: 30%; transform: translate(-50%,-50%);
  border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle, rgba(255,150,120,.5), rgba(194,168,255,.25) 60%, transparent 72%); }
.orbit .center-disc img { width: 92%; height: 92%; object-fit: contain; animation: breathe 5s ease-in-out infinite; filter: drop-shadow(0 8px 16px rgba(0,0,0,.4)); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes dash { to { stroke-dashoffset: -120; } }
@keyframes pulse { 0%,100%{opacity:.5; r:7} 50%{opacity:1; r:10} }

/* ---------- The Bridge visual ---------- */
.bridgeviz { position: relative; width: 100%; max-width: 470px; margin: 0 auto; }
.bridgeviz svg { width: 100%; height: auto; overflow: visible; display: block; }
.bridgeviz .arc { fill: none; stroke: url(#bgrad); stroke-width: 3; stroke-dasharray: 6 9; animation: dash 7s linear infinite; }
.bridgeviz .bnode { fill: #161c3e; stroke-width: 2.5; }
.bridgeviz .bnode.you { stroke: #ff8a8a; } .bridgeviz .bnode.them { stroke: #c2a8ff; }
.bridgeviz .bglow { animation: pulse 3s ease-in-out infinite; }
.bridgeviz .bglow.t { animation-delay: 1.4s; }
.bridgeviz .blab { fill: #9a9ab8; font: 700 13px 'Inter', sans-serif; text-anchor: middle; }
.bridgeviz .ulock { fill: #c7c7df; font: 600 12px 'Inter', sans-serif; text-anchor: middle; }

/* highlight wrapper to make the Bridge stand out */
.feature-hl { background: linear-gradient(180deg, rgba(255,107,107,.06), rgba(194,168,255,.05));
  border-top: 1px solid rgba(194,168,255,.1); border-bottom: 1px solid rgba(194,168,255,.1); }

/* ---------- Billing toggle ---------- */
.billing { display: inline-flex; gap: 4px; background: rgba(194,168,255,.08); border: 1px solid var(--card-bd);
  border-radius: 999px; padding: 5px; margin: 24px auto 0; }
.billing button { border: none; background: transparent; color: var(--body); font-weight: 700; font-size: 14px;
  padding: 9px 18px; border-radius: 999px; cursor: pointer; transition: background .18s ease, color .18s ease; font-family: inherit; }
.billing button.on { background: linear-gradient(100deg, var(--coral), var(--warm)); color: #11152b; }
.billing .save { font-size: 11px; font-weight: 800; color: var(--green); margin-left: 5px; }
.billing button.on .save { color: #0a4022; }
.proNote { color: var(--muted); font-size: 13px; margin-top: 6px; }

/* ---------- Voices sound-wave ---------- */
.wave { display: flex; align-items: center; justify-content: center; gap: 5px; height: 60px; margin-top: 22px; }
.wave i { width: 5px; border-radius: 4px; background: linear-gradient(180deg, var(--coral-2), var(--lav)); animation: eq 1.1s ease-in-out infinite; }
.wave i:nth-child(odd){animation-duration:.9s} .wave i:nth-child(3n){animation-duration:1.3s}
@keyframes eq { 0%,100%{height:12px;opacity:.6} 50%{height:46px;opacity:1} }

/* ---------- Stories / "texts like these" ---------- */
.stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.story { background: var(--card); border: 1px solid var(--card-bd); border-radius: 20px; padding: 22px 22px 20px; text-align: left;
  transition: transform .22s ease, border-color .22s ease; }
.story:hover { transform: translateY(-4px); border-color: rgba(194,168,255,.34); }
.story .label { font-size: 13px; font-weight: 800; color: var(--lav-2); letter-spacing: .3px; margin-bottom: 12px; }
.story .qbubble { background: rgba(194,168,255,.14); color: #ede7ff; border-radius: 16px 16px 16px 5px; padding: 12px 14px;
  font-size: 15px; line-height: 1.5; }
.story .out { color: var(--muted); font-size: 13.5px; margin-top: 12px; }

/* ---------- Legal article pages ---------- */
.article { max-width: 760px; margin: 0 auto; padding: 56px 22px 80px; }
.article .back { display: inline-block; margin-bottom: 22px; font-weight: 700; font-size: 14px; }
.article h1 { color: var(--ink); font-size: clamp(28px, 5vw, 40px); font-weight: 800; margin-bottom: 6px; letter-spacing: -.3px; }
.article .meta { color: var(--muted); font-size: 14px; margin-bottom: 30px; }
.article h2 { color: var(--ink); font-size: 22px; font-weight: 800; margin: 34px 0 10px; }
.article h3 { color: var(--ink); font-size: 17px; font-weight: 700; margin: 20px 0 8px; }
.article p, .article li { color: var(--body); font-size: 16px; line-height: 1.7; }
.article ul { margin: 8px 0 8px 22px; } .article li { margin-bottom: 6px; }
.article a { font-weight: 600; } .article strong { color: var(--ink); }
.article table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 15px; }
.article th, .article td { border: 1px solid rgba(194,168,255,.16); padding: 10px 12px; text-align: left; }
.article th { color: var(--ink); background: rgba(194,168,255,.06); }

@media (max-width: 860px) {
  .demo { grid-template-columns: 1fr; gap: 34px; }
  .demo .copy h2, .demo .copy .sub { text-align: center; margin-left: auto; margin-right: auto; }
  .demo .copy .pills { justify-content: center; }
}
@media (max-width: 720px) {
  .nav-links { gap: 15px; } .nav-links a.hide-sm { display: none; }
  .cards, .steps { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 48px 0 30px; }
  .bubble { font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  .avatar-wrap .char, .avatar-wrap .ground, .avatar-wrap .halo, .avatar-wrap .spark,
  .aurora span, .dust i, .marquee .track, .bubble, .scrollcue { animation: none !important; }
  .avatar-wrap .spark, .dust i { opacity: 0; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}
