/* RCMMS Welcome — soft modern 2026 */
:root {
  --w-brand: #4a2868;
  --w-brand-hi: #6b3d96;
  --w-brand-lo: #2e1842;
  --w-brand-soft: color-mix(in srgb, var(--w-brand) 10%, transparent);
  --w-brand-glow: color-mix(in srgb, var(--w-brand-hi) 18%, transparent);
  --w-gold: #b8952e;
  --w-gold-hi: #d4b04a;
  --w-android: #3ddc84;
  --w-font-disp: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --w-font-body: "Figtree", "Segoe UI", system-ui, sans-serif;
  --w-font-mono: "JetBrains Mono", ui-monospace, monospace;
  --w-r-sm: 10px;
  --w-r-md: 14px;
  --w-r-lg: 18px;
  --w-r-xl: 24px;
  --w-r-2xl: 32px;
  --w-ease: cubic-bezier(.22, 1, .36, 1);
  --w-ease-soft: cubic-bezier(.33, 1, .68, 1);
  --w-gutter: clamp(1.35rem, 4.2vw, 3.75rem);
  --w-bar-h: 72px;
  --w-bar-ctrl-h: 2.125rem;
  --w-max: 1240px;
  --w-soft-shadow: 0 1px 2px rgba(28, 24, 36, .04), 0 12px 40px rgba(28, 24, 36, .06);
  --w-soft-shadow-lg: 0 8px 16px rgba(28, 24, 36, .04), 0 28px 64px rgba(28, 24, 36, .1);
  --w-ring: 0 0 0 3px color-mix(in srgb, var(--w-brand) 28%, transparent);
}

html[data-theme="dark"] {
  --w-bg: #0c0b10;
  --w-bg2: #12111a;
  --w-surface: #18161f;
  --w-raised: #1f1c28;
  --w-border: rgba(255, 255, 255, .07);
  --w-border-hi: rgba(255, 255, 255, .13);
  --w-ink: #f6f3fa;
  --w-ink-2: #cdc6d8;
  --w-muted: #948ca3;
  --w-faint: #5e576a;
  --w-mesh-a: rgba(107, 61, 150, .28);
  --w-mesh-b: rgba(184, 149, 46, .1);
  --w-mesh-c: rgba(61, 220, 132, .07);
  --w-shadow: 0 24px 64px rgba(0, 0, 0, .45);
  --w-glass: rgba(18, 16, 26, .72);
  --w-soft-shadow: 0 1px 2px rgba(0, 0, 0, .2), 0 16px 48px rgba(0, 0, 0, .28);
  --w-soft-shadow-lg: 0 12px 28px rgba(0, 0, 0, .25), 0 40px 80px rgba(0, 0, 0, .35);
}

html[data-theme="light"] {
  --w-bg: #f8f7f5;
  --w-bg2: #f1efeb;
  --w-surface: #ffffff;
  --w-raised: #faf9f7;
  --w-border: rgba(28, 24, 36, .14);
  --w-border-hi: rgba(28, 24, 36, .22);
  --w-ink: #17141c;
  --w-ink-2: #3f3a4a;
  --w-muted: #4a4554;
  --w-faint: #6e6878;
  --w-mesh-a: rgba(74, 40, 104, .12);
  --w-mesh-b: rgba(184, 149, 46, .1);
  --w-mesh-c: rgba(61, 220, 132, .07);
  --w-shadow: var(--w-soft-shadow-lg);
  --w-glass: rgba(255, 255, 255, .78);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  zoom: 1.1;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
body {
  font-family: var(--w-font-body);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, var(--w-mesh-a), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, var(--w-mesh-b), transparent 50%),
    var(--w-bg);
  background-attachment: fixed;
  color: var(--w-ink);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -.005em;
}
::selection {
  background: color-mix(in srgb, var(--w-brand) 28%, transparent);
  color: var(--w-ink);
}
:focus-visible {
  outline: none;
  box-shadow: var(--w-ring);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }

.w-skip {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--w-brand); color: #fff; padding: .75rem 1rem; border-radius: var(--w-r-sm);
}
.w-skip:focus { left: var(--w-gutter); top: .75rem; }
.w-scroll-progress {
  position: fixed; inset: 0 auto auto 0; z-index: 100;
  height: 2.5px; width: 100%; transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--w-brand), var(--w-brand-hi), var(--w-gold-hi));
  pointer-events: none;
  box-shadow: 0 0 12px color-mix(in srgb, var(--w-brand-hi) 40%, transparent);
}

/* ── Reveal ── */
.w-reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s var(--w-ease), transform .9s var(--w-ease);
}
.w-reveal.in-view { opacity: 1; transform: none; }
.w-reveal[data-delay="1"] { transition-delay: .06s; }
.w-reveal[data-delay="2"] { transition-delay: .14s; }
.w-reveal[data-delay="3"] { transition-delay: .22s; }
.w-reveal[data-delay="4"] { transition-delay: .3s; }
.w-reveal-scale {
  opacity: 0; transform: scale(.97);
  transition: opacity .9s var(--w-ease), transform .9s var(--w-ease);
}
.w-reveal-scale.in-view { opacity: 1; transform: none; }

/* ── Nav ── */
.w-bar {
  position: sticky; top: 0; z-index: 96;
  height: var(--w-bar-h);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: .75rem;
  padding: 0 var(--w-gutter);
  background: transparent;
  transition: background .45s var(--w-ease), box-shadow .45s var(--w-ease), backdrop-filter .45s, border-color .45s;
  border-bottom: 1px solid transparent;
}
.w-bar.is-scrolled {
  background: var(--w-glass);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  box-shadow: 0 8px 32px rgba(28, 24, 36, .05);
  border-bottom-color: var(--w-border);
}
.w-bar-start {
  display: flex; align-items: center; min-width: 0;
  grid-column: 1;
}
.w-bar-brand {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--w-font-disp); font-weight: 700; font-size: 1.05rem;
  letter-spacing: -.02em; white-space: nowrap;
  transition: opacity .2s;
}
.w-bar-brand:hover { opacity: .85; }
.w-bar-mark {
  width: 34px; height: 34px; border-radius: 11px; flex-shrink: 0;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--w-brand) 22%, transparent);
}
.w-bar-nav {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: .1rem;
  min-width: 0;
  grid-column: 2;
}
.w-bar-link {
  padding: .4rem .62rem; border-radius: 999px;
  font-size: .82rem; font-weight: 600; color: var(--w-muted);
  white-space: nowrap; flex-shrink: 0;
  transition: color .25s, background .25s, transform .25s;
}
.w-bar-link:hover, .w-bar-link.is-active {
  color: var(--w-ink);
  background: var(--w-brand-soft);
}
.w-bar-end {
  display: flex; align-items: center; justify-content: flex-end;
  gap: .45rem; flex-shrink: 0;
  grid-column: 3;
}
.w-bar-center { display: none; }
.wt-group {
  display: inline-flex; align-items: stretch; padding: 3px; border-radius: 999px;
  height: var(--w-bar-ctrl-h); box-sizing: border-box;
  background: color-mix(in srgb, var(--w-raised) 88%, transparent);
  border: 1px solid var(--w-border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
  flex-shrink: 0;
}
html[data-theme="dark"] .wt-group { box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.wt-btn {
  display: inline-flex; align-items: center;
  padding: 0 .7rem; border-radius: 999px;
  font-size: .68rem; font-weight: 700; letter-spacing: .04em; line-height: 1;
  color: var(--w-muted); text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s, color .2s, box-shadow .2s;
}
.wt-btn.is-active {
  background: var(--w-surface);
  color: var(--w-ink);
  box-shadow: var(--w-soft-shadow);
}
.w-bar-signin {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .4rem; flex-shrink: 0; white-space: nowrap;
  padding: .55rem .9rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--w-brand) 0%, var(--w-brand-hi) 100%);
  color: #fff; font-weight: 700; font-size: .86rem;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--w-brand) 35%, transparent);
  transition: transform .25s var(--w-ease), box-shadow .25s, filter .2s;
}
.w-bar-signin svg, .w-bar-register svg { flex-shrink: 0; width: 18px; height: 18px; }
.w-bar-signin:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--w-brand) 42%, transparent);
  filter: brightness(1.05);
}
.w-bar-register {
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; white-space: nowrap;
  padding: .5rem .9rem; border-radius: 999px;
  border: 1px solid var(--w-border-hi);
  background: color-mix(in srgb, var(--w-surface) 78%, transparent);
  color: var(--w-ink); font-weight: 700; font-size: .84rem;
  transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
}
.w-bar-register:hover {
  border-color: color-mix(in srgb, var(--w-brand) 45%, var(--w-border-hi));
  background: var(--w-brand-soft);
  transform: translateY(-1px);
  box-shadow: var(--w-soft-shadow);
}
.w-bar-register--block {
  display: inline-flex;
  width: 100%;
  height: auto;
  margin-top: .55rem;
  padding: .7rem 1rem;
  border-radius: 999px;
}

/* Header only: icon buttons on small screens, icon + label when there is room. */
.w-bar-end .w-bar-register,
.w-bar-end .w-bar-signin,
.w-menu-btn {
  width: var(--w-bar-ctrl-h);
  height: var(--w-bar-ctrl-h);
  min-height: var(--w-bar-ctrl-h);
  padding: 0;
  border-radius: 10px;
}
.w-bar-end .w-bar-btn-label { display: none; }
.w-menu-btn {
  display: grid; place-items: center;
  border: 1px solid var(--w-border); background: var(--w-surface);
  box-shadow: var(--w-soft-shadow);
  transition: border-color .2s, transform .2s, background .2s;
  flex-shrink: 0;
}
.w-menu-btn svg { width: 16px; height: 16px; }
.w-menu-btn:hover { border-color: var(--w-border-hi); transform: translateY(-1px); }
.w-menu-btn[aria-expanded="true"] {
  background: var(--w-brand-soft);
  border-color: color-mix(in srgb, var(--w-brand) 35%, var(--w-border));
}
.w-menu-btn .w-menu-icon-close { display: none; }
.w-menu-btn[aria-expanded="true"] .w-menu-icon-open { display: none; }
.w-menu-btn[aria-expanded="true"] .w-menu-icon-close { display: block; }
body.menu-open { overflow: hidden; }

/* Enough width: show icon + label together. */
@media (min-width: 720px) {
  .w-bar-end { gap: .55rem; }
  .w-bar-end .w-bar-register,
  .w-bar-end .w-bar-signin {
    width: auto;
    height: var(--w-bar-ctrl-h);
    min-height: var(--w-bar-ctrl-h);
    padding: 0 .9rem;
    border-radius: 999px;
    font-size: .72rem;
    line-height: 1;
    gap: .32rem;
  }
  .w-bar-end .w-bar-register svg,
  .w-bar-end .w-bar-signin svg {
    width: 14px;
    height: 14px;
  }
  .w-bar-end .w-bar-btn-label { display: inline; }
}

/* Laptop and up: full inline nav. Theme waits until there is spare width. */
@media (min-width: 1280px) {
  .w-bar { column-gap: 1rem; }
  .w-bar-nav { display: flex; }
  .w-bar-end .w-bar-signin { padding: 0 1rem; font-size: .72rem; }
  .w-menu-btn { display: none; }
}
@media (min-width: 1440px) {
  .w-bar-center { display: flex; align-items: center; }
  .w-bar-link { padding: .45rem .75rem; font-size: .84rem; }
  .w-bar-end { gap: .65rem; }
}
@media (min-width: 1600px) {
  .w-bar-nav { gap: .25rem; }
}

/* Drawer */
.w-drawer-backdrop {
  position: fixed; inset: 0; z-index: 90; background: rgba(8,6,12,.5);
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.w-drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.w-drawer {
  position: fixed; top: 0; right: 0; z-index: 95;
  width: min(340px, 92vw); height: 100%;
  background: var(--w-surface); border-left: 1px solid var(--w-border);
  padding: calc(var(--w-bar-h) + .35rem) 1.15rem 1.5rem;
  display: flex; flex-direction: column; gap: .2rem;
  overflow-y: auto;
  transform: translateX(105%); transition: transform .35s var(--w-ease);
}
.w-drawer.is-open { transform: none; }
.w-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem; margin-bottom: .45rem; padding: 0 .35rem .55rem;
  border-bottom: 1px solid var(--w-border);
}
.w-drawer-head strong {
  font-family: var(--w-font-disp); font-size: .95rem; font-weight: 700;
}
.w-drawer-close {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  border: 1px solid var(--w-border); background: var(--w-raised);
}
.w-drawer-close:hover { border-color: var(--w-border-hi); }
.w-drawer-link {
  padding: .8rem 1rem; border-radius: var(--w-r-md);
  font-weight: 600; color: var(--w-ink-2);
}
.w-drawer-link:hover, .w-drawer-link.is-active { background: var(--w-brand-soft); color: var(--w-ink); }
.w-drawer-signin, .w-drawer-theme { margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--w-border); }
.w-drawer-signin .w-bar-signin { width: 100%; justify-content: center; }
.w-drawer-theme .wt-group { width: 100%; justify-content: stretch; }
.w-drawer-theme .wt-btn { flex: 1; }

/* ── Hero ── */
.w-hero {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.75rem) var(--w-gutter) clamp(3.5rem, 8vw, 5.5rem);
  overflow: clip;
  display: flex; flex-direction: column;
}
.w-hero-aurora {
  position: absolute; inset: -30% -20% auto -20%; height: 95%;
  background:
    radial-gradient(ellipse 58% 52% at 14% 30%, var(--w-mesh-a), transparent 70%),
    radial-gradient(ellipse 46% 42% at 86% 16%, var(--w-mesh-b), transparent 64%),
    radial-gradient(ellipse 40% 38% at 55% 78%, var(--w-mesh-c), transparent 60%);
  pointer-events: none; z-index: 0;
  filter: blur(2px);
  animation: wAurora 22s ease-in-out infinite alternate;
}
@keyframes wAurora {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: .85; }
  to { transform: translate3d(2%, 3%, 0) scale(1.06); opacity: 1; }
}
.w-hero-grain {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}
.w-hero-inner {
  position: relative; z-index: 1;
  width: min(100%, var(--w-max));
  margin: 0 auto;
  display: grid; gap: clamp(2.25rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 1020px) {
  .w-hero {
    min-height: calc(100svh - var(--w-bar-h));
    justify-content: center;
  }
  .w-hero-inner { grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr); gap: 3rem; }
}
.w-brand-hero {
  display: inline-flex; align-items: center; gap: .85rem;
  margin-bottom: 1.35rem;
}
.w-brand-hero img {
  width: 56px; height: 56px; border-radius: 16px;
  box-shadow: 0 10px 28px color-mix(in srgb, var(--w-brand) 28%, transparent);
}
.w-brand-hero span {
  font-family: var(--w-font-disp);
  font-size: clamp(2.15rem, 4.3vw, 3.1rem);
  font-weight: 800; letter-spacing: -.05em; line-height: 1;
}
.w-brand-hero small {
  display: block; margin-top: .35rem;
  font-family: var(--w-font-body);
  font-size: .68rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--w-muted);
}
.w-headline {
  font-family: var(--w-font-disp);
  font-size: clamp(2.05rem, 4.5vw, 3.25rem);
  font-weight: 700; letter-spacing: -.048em; line-height: 1.06;
  max-width: 12ch;
  text-wrap: balance;
}
.w-headline em {
  display: block; font-style: normal;
  background: linear-gradient(120deg, var(--w-brand-hi), color-mix(in srgb, var(--w-brand) 70%, var(--w-gold-hi)));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
html[data-theme="dark"] .w-headline em {
  background: linear-gradient(120deg, #d4b4f0, #c9a8e8 55%, #e8d4a8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.w-lede {
  margin-top: 1.35rem; max-width: 44ch;
  font-size: clamp(1.04rem, 1.55vw, 1.18rem);
  color: var(--w-ink-2); font-weight: 500; line-height: 1.62;
  text-wrap: pretty;
}
.w-hero-signoff {
  margin-top: .85rem;
  color: var(--w-brand-hi);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}
html[data-theme="dark"] .w-hero-signoff { color: #c9a8e8; }
.w-cta-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: .75rem;
  margin-top: 1.9rem;
}
.w-btn-p {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9rem 1.5rem; border-radius: 999px;
  background: var(--w-ink); color: var(--w-bg);
  font-weight: 700; font-size: .95rem;
  box-shadow: var(--w-soft-shadow);
  transition: transform .3s var(--w-ease), opacity .2s, box-shadow .3s;
}
html[data-theme="dark"] .w-btn-p { background: #fff; color: #120e18; }
.w-btn-p:hover { transform: translateY(-3px); opacity: .95; box-shadow: var(--w-soft-shadow-lg); }
.w-btn-g {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9rem 1.35rem; border-radius: 999px;
  border: 1px solid var(--w-border-hi); background: color-mix(in srgb, var(--w-surface) 70%, transparent);
  backdrop-filter: blur(8px);
  font-weight: 700; font-size: .95rem; color: var(--w-ink);
  transition: border-color .25s, transform .25s, background .25s, box-shadow .25s;
}
.w-btn-g:hover {
  border-color: color-mix(in srgb, var(--w-brand) 40%, var(--w-border-hi));
  background: var(--w-brand-soft);
  transform: translateY(-2px);
  box-shadow: var(--w-soft-shadow);
}
.w-apk-badge {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: .6rem 1.05rem .6rem .7rem; border-radius: 999px;
  background: linear-gradient(160deg, #1a1a1a 0%, #0e0e0e 100%);
  color: #fff; border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  transition: transform .3s var(--w-ease), box-shadow .3s, border-color .2s;
}
.w-apk-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,.28);
  border-color: rgba(61, 220, 132, .35);
}
.w-apk-badge__icon { width: 28px; height: 28px; color: var(--w-android); }
.w-apk-badge__icon svg { width: 100%; height: 100%; }
.w-apk-badge__kicker {
  display: block; font-size: .58rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; opacity: .72;
}
.w-apk-badge__title { display: block; font-size: .92rem; font-weight: 700; line-height: 1.1; }

/* Device stage */
.w-hero-device-stage {
  position: relative;
  padding: .75rem 0 1.5rem;
  --parallax-x: 0px;
  --parallax-y: 0px;
}
.w-hero-device-stage::before {
  content: "";
  position: absolute;
  inset: 12% 8% -4% 8%;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--w-brand) 22%, transparent), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}
.w-hero-preview {
  position: relative; z-index: 1;
  margin: 0; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--w-border-hi);
  background: var(--w-surface);
  box-shadow: var(--w-soft-shadow-lg), 0 0 0 1px rgba(255,255,255,.04) inset;
  transform-origin: center;
  transition: transform .4s var(--w-ease), box-shadow .4s;
  will-change: transform;
}
.w-hero-preview:hover {
  box-shadow: 0 16px 40px rgba(28, 24, 36, .1), 0 40px 80px rgba(74, 40, 104, .12);
}
.w-preview-chrome {
  display: flex; align-items: center; gap: .65rem;
  padding: .55rem .8rem; background: var(--w-raised);
  border-bottom: 1px solid var(--w-border);
}
.w-preview-dots { display: flex; gap: 5px; }
.w-preview-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--w-faint);
}
.w-preview-dot:nth-child(1) { background: #ff5f57; }
.w-preview-dot:nth-child(2) { background: #febc2e; }
.w-preview-dot:nth-child(3) { background: #28c840; }
.w-preview-chrome-title {
  font-size: .68rem; font-weight: 700; color: var(--w-muted);
  letter-spacing: .02em;
}
.w-preview-url {
  margin-left: auto; display: none; align-items: center; gap: .35rem;
  font-size: .62rem; color: var(--w-faint); font-family: var(--w-font-mono);
}
@media (min-width: 700px) { .w-preview-url { display: inline-flex; } }
.w-preview-body {
  display: grid; grid-template-columns: 124px 1fr; min-height: 328px;
  background: var(--w-bg2);
}
@media (max-width: 640px) {
  .w-preview-body { grid-template-columns: 1fr; }
  .w-preview-side { display: none; }
}
.w-preview-side {
  padding: .55rem .45rem; border-right: 1px solid var(--w-border);
  background: var(--w-surface); display: flex; flex-direction: column; gap: .12rem;
  min-height: 0;
}
.w-preview-nav-list {
  display: flex; flex-direction: column; gap: .1rem; min-height: 0;
}
.w-preview-side-brand {
  display: flex; gap: .4rem; align-items: center;
  padding: .1rem .3rem .5rem; margin-bottom: .12rem;
  border-bottom: 1px solid var(--w-border);
  font-size: .58rem; font-weight: 800; line-height: 1.15;
}
.w-preview-side-brand small {
  display: block; font-weight: 600; color: var(--w-muted); font-size: .48rem;
}
.w-preview-side-mark {
  width: 22px; height: 22px; border-radius: 6px; overflow: hidden; flex-shrink: 0;
}
.w-preview-nav {
  display: flex; align-items: center; gap: .32rem;
  padding: .28rem .4rem; border-radius: 8px;
  font-size: .54rem; font-weight: 600; color: var(--w-muted);
  white-space: nowrap;
}
.w-preview-nav svg { width: 11px; height: 11px; flex-shrink: 0; }
.w-preview-nav.is-active { background: var(--w-brand-soft); color: var(--w-brand); }
.w-preview-user {
  margin-top: auto; display: flex; gap: .4rem; align-items: center;
  padding: .4rem .3rem 0; border-top: 1px solid var(--w-border);
}
.w-preview-user-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--w-brand); color: #fff;
  font-size: .5rem; font-weight: 800;
}
.w-preview-user-meta { font-size: .5rem; line-height: 1.2; color: var(--w-muted); }
.w-preview-user-meta strong { display: block; color: var(--w-ink); font-size: .55rem; }
.w-preview-main { padding: .65rem .7rem; overflow: hidden; min-width: 0; }

.w-udash-topbar {
  display: flex; justify-content: space-between; align-items: center; gap: .5rem;
  margin-bottom: .55rem;
}
.w-udash-topbar h3 {
  font-family: var(--w-font-disp); font-size: .78rem; font-weight: 700;
  letter-spacing: -.02em;
}
.w-udash-topbar-tools { display: flex; gap: .3rem; flex-wrap: wrap; }
.w-udash-chip {
  font-size: .48rem; font-weight: 700; padding: .2rem .4rem;
  border-radius: 6px; background: var(--w-raised); border: 1px solid var(--w-border);
  color: var(--w-muted);
}
.w-udash-hero {
  display: flex; justify-content: space-between; gap: .75rem;
  padding: .55rem .65rem; margin-bottom: .55rem;
  border-radius: 10px; background: var(--w-surface); border: 1px solid var(--w-border);
}
.w-udash-hero__badge {
  font-size: .48rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; color: var(--w-brand-hi);
}
.w-udash-hero__title {
  margin-top: .1rem; font-size: .72rem; font-weight: 700; letter-spacing: -.02em;
}
.w-udash-hero__sub { font-size: .52rem; color: var(--w-muted); margin-top: .1rem; }
.w-udash-hero__meta {
  text-align: right; font-size: .48rem; color: var(--w-muted); line-height: 1.35;
}
.w-udash-hero__meta strong { color: var(--w-ink); font-size: .5rem; }
.w-udash-sec {
  font-size: .52rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .05em; color: var(--w-muted); margin-bottom: .35rem;
}
.w-udash-kpis {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .35rem;
  margin-bottom: .55rem;
}
@media (min-width: 900px) {
  .w-udash-kpis { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
.w-udash-kpi {
  padding: .4rem .45rem; border-radius: 9px;
  background: var(--w-surface); border: 1px solid var(--w-border);
}
.w-udash-kpi.is-warn {
  background: color-mix(in srgb, #f59e0b 10%, var(--w-surface));
  border-color: color-mix(in srgb, #f59e0b 30%, var(--w-border));
}
.w-udash-kpi__head {
  display: flex; justify-content: space-between; align-items: center; gap: .2rem;
  font-size: .45rem; font-weight: 700; color: var(--w-muted);
}
.w-udash-kpi__ico {
  width: 14px; height: 14px; border-radius: 5px;
  display: grid; place-items: center; background: var(--w-brand-soft); color: var(--w-brand);
}
.w-udash-kpi__ico svg { width: 8px; height: 8px; }
.w-udash-kpi__foot { display: flex; justify-content: space-between; align-items: baseline; margin-top: .2rem; }
.w-udash-kpi__n { font-size: .78rem; font-weight: 800; letter-spacing: -.03em; }
.w-udash-kpi__m { font-size: .45rem; color: var(--w-muted); font-weight: 600; }
.w-udash-split { display: grid; gap: .45rem; }
@media (min-width: 720px) {
  .w-udash-split { grid-template-columns: 1.6fr .9fr; }
}
.w-udash-charts { display: grid; gap: .4rem; }
@media (min-width: 560px) { .w-udash-charts { grid-template-columns: 1fr 1fr; } }
.w-udash-card {
  padding: .5rem; border-radius: 9px;
  background: var(--w-surface); border: 1px solid var(--w-border);
}
.w-udash-card h4 { font-size: .55rem; font-weight: 700; margin-bottom: .35rem; }
.w-udash-donut-wrap { display: flex; gap: .45rem; align-items: center; }
.w-udash-donut {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(var(--w-brand) 0 54%, var(--w-gold) 54% 78%, #d8d0e2 78% 100%);
  position: relative;
}
.w-udash-donut::after {
  content: ""; position: absolute; inset: 10px; border-radius: 50%; background: var(--w-surface);
}
.w-udash-donut-meta { font-size: .48rem; color: var(--w-muted); display: grid; gap: .12rem; }
.w-udash-donut-meta strong { color: var(--w-ink); }
.w-udash-tpf-area { height: 42px; }
.w-udash-tpf-area svg { width: 100%; height: 100%; }
.w-udash-legend {
  display: flex; gap: .55rem; margin-top: .3rem;
  font-size: .45rem; color: var(--w-muted); font-weight: 600;
}
.w-udash-legend i {
  display: inline-block; width: 7px; height: 7px; border-radius: 2px; margin-right: .2rem;
}
.w-udash-sched { display: none; }
@media (min-width: 720px) { .w-udash-sched { display: block; } }
.w-udash-cal {
  padding: .5rem; border-radius: 9px;
  background: var(--w-surface); border: 1px solid var(--w-border);
}
.w-udash-cal-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: .35rem;
  margin-bottom: .35rem;
}
.w-udash-cal-head h4 { font-size: .55rem; font-weight: 700; }
.w-udash-cal-head span { font-size: .42rem; font-weight: 700; color: var(--w-muted); }
.w-udash-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
  font-size: .42rem; text-align: center; color: var(--w-muted);
}
.w-udash-cal-grid > span {
  aspect-ratio: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1px;
  border-radius: 4px; position: relative;
}
.w-udash-cal-grid > span.hd { font-weight: 700; aspect-ratio: auto; padding: 1px 0; }
.w-udash-cal-grid > span.today {
  background: var(--w-brand); color: #fff; font-weight: 800;
}
.w-udash-cal-dot {
  display: block; width: 3.5px; height: 3.5px; border-radius: 50%;
  background: var(--w-brand); flex-shrink: 0;
}
.w-udash-cal-grid > span.today .w-udash-cal-dot { background: #fff; }

/* Phone */
.w-phone-preview {
  display: none; margin: 0; position: absolute;
  right: clamp(-4px, 1vw, 12px); bottom: -8px; z-index: 3;
  width: 136px; aspect-ratio: 9 / 19.5; height: auto;
  border-radius: 24px; border: 2.5px solid #1a1224; background: #1a1224;
  box-shadow:
    0 20px 48px rgba(0,0,0,.32),
    0 0 0 1px rgba(255,255,255,.08) inset;
  overflow: hidden;
  transform: translate(var(--parallax-x), var(--parallax-y)) rotate(-4.5deg);
  transition: transform .45s var(--w-ease), box-shadow .45s;
  animation: wPhoneFloat 8s ease-in-out infinite;
}
@keyframes wPhoneFloat {
  0%, 100% { transform: translate(var(--parallax-x), var(--parallax-y)) rotate(-4.5deg); }
  50% { transform: translate(var(--parallax-x), calc(var(--parallax-y) - 10px)) rotate(-3.2deg); }
}
@media (min-width: 960px) {
  .w-phone-preview { display: block; }
  .w-hero-device-stage { padding-right: 58px; padding-bottom: 20px; }
}
@media (min-width: 1200px) { .w-phone-preview { width: 144px; } }
@media (max-width: 959px) {
  .w-phone-preview {
    display: block; position: relative; right: auto; bottom: auto;
    width: 152px; margin: 1.25rem auto 0;
    transform: none; animation: none;
  }
}
.w-phone-notch {
  position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 10px; border-radius: 999px; background: #0d0814; z-index: 2;
}
.w-phone-screen {
  position: absolute; inset: 4px; border-radius: 18px;
  background: #f4f2f4; overflow: hidden; display: flex; flex-direction: column;
}
html[data-theme="dark"] .w-phone-screen { background: #16111c; }
.w-phone-head {
  background: linear-gradient(125deg, #3d2058 0%, #6a3578 52%, #a84a88 100%);
  color: #fff; padding: 14px 8px 8px; display: flex; flex-direction: column; gap: 5px; flex-shrink: 0;
}
.w-phone-head__row { display: flex; justify-content: space-between; gap: 6px; }
.w-phone-head__brand { font-size: .55rem; font-weight: 800; letter-spacing: .04em; }
.w-phone-head__greet { margin: 0; font-size: .68rem; font-weight: 700; }
.w-phone-head__role { margin: 1px 0 0; font-size: .44rem; opacity: .85; }
.w-phone-head__bell {
  width: 22px; height: 22px; border-radius: 50%; background: rgba(0,0,0,.18);
  display: grid; place-items: center; position: relative; flex-shrink: 0;
}
.w-phone-head__bell::after {
  content: "3"; position: absolute; top: -3px; right: -3px;
  min-width: 11px; height: 11px; border-radius: 999px; background: #ef4444;
  color: #fff; font-size: .38rem; font-weight: 800; display: grid; place-items: center;
}
.w-phone-filters { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.w-phone-filters span {
  font-size: .4rem; font-weight: 600; padding: 4px 5px; border-radius: 7px;
  background: rgba(0,0,0,.22); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.w-phone-body {
  padding: 5px 6px 4px; flex: 1; display: flex; flex-direction: column; gap: 4px;
  min-height: 0; overflow: hidden;
}
.w-phone-sec {
  margin: 0; font-size: .48rem; font-weight: 800; color: #2d2435; letter-spacing: .02em;
}
html[data-theme="dark"] .w-phone-sec { color: #f3eef8; }
.w-phone-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.w-phone-card {
  display: flex; gap: 4px; align-items: flex-start;
  padding: 5px; border-radius: 8px; background: #fff; border: 1px solid #d9cfdf;
}
html[data-theme="dark"] .w-phone-card { background: #1e1726; border-color: #3a3145; }
.w-phone-card.is-warn { background: #fef2f2; border-color: #fecaca; }
.w-phone-card-icon {
  width: 14px; height: 14px; border-radius: 5px; flex-shrink: 0;
  display: grid; place-items: center; background: rgba(74,40,104,.12); color: #5c3d84;
}
.w-phone-card.is-warn .w-phone-card-icon { background: #fee2e2; color: #b91c1c; }
.w-phone-card-icon svg { width: 8px; height: 8px; }
.w-phone-card-lbl {
  display: block; font-size: .38rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .03em; color: #6d6675;
}
.w-phone-card.is-warn .w-phone-card-lbl { color: #b91c1c; }
.w-phone-card-val {
  display: block; font-size: .72rem; font-weight: 800; letter-spacing: -.03em; color: #2d2435; line-height: 1.1;
}
html[data-theme="dark"] .w-phone-card-val { color: #f3eef8; }
.w-phone-card.is-warn .w-phone-card-val { color: #b91c1c; }
.w-phone-card-sub { display: block; font-size: .38rem; color: #6d6675; margin-top: 1px; }
.w-phone-pulse {
  border-radius: 8px; border: 1px solid #d9cfdf; background: #fff; padding: 5px 6px; flex-shrink: 0;
}
html[data-theme="dark"] .w-phone-pulse { background: #1e1726; border-color: #3a3145; }
.w-phone-pulse__top { display: flex; justify-content: space-between; align-items: center; gap: 4px; margin-bottom: 3px; }
.w-phone-pulse__top strong { font-size: .48rem; color: #2d2435; }
html[data-theme="dark"] .w-phone-pulse__top strong { color: #f3eef8; }
.w-phone-pulse__badge {
  font-size: .36rem; font-weight: 700; padding: 2px 5px; border-radius: 6px;
  background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0;
}
.w-phone-pulse__hint { margin: 0 0 4px; font-size: .38rem; color: #6d6675; }
.w-phone-pulse__rings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; text-align: center; }
.w-phone-ring {
  width: 26px; height: 26px; margin: 0 auto 2px; border-radius: 50%; position: relative;
}
.w-phone-ring::after {
  content: attr(data-pct); position: absolute; inset: 5px; border-radius: 50%;
  background: #fff; display: grid; place-items: center;
  font-size: .34rem; font-weight: 800; color: #2d2435;
}
html[data-theme="dark"] .w-phone-ring::after { background: #1e1726; color: #f3eef8; }
.w-phone-ring--p { background: conic-gradient(#5c3d84 0 62%, #e8e2ec 62% 100%); }
.w-phone-ring--f { background: conic-gradient(#15803d 0 38%, #e8e2ec 38% 100%); }
.w-phone-ring--t { background: conic-gradient(#a84a88 0 71%, #e8e2ec 71% 100%); }
.w-phone-pulse__rings span { font-size: .34rem; color: #6d6675; font-weight: 600; }
.w-phone-tabs {
  margin-top: auto; display: grid; grid-template-columns: repeat(5, 1fr);
  padding: 5px 3px 7px; border-top: 1px solid #d9cfdf; background: #fff; flex-shrink: 0;
}
html[data-theme="dark"] .w-phone-tabs { border-top-color: #3a3145; background: #1a1422; }
.w-phone-tab {
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  font-size: .32rem; font-weight: 700; text-transform: uppercase; color: #6d6675;
}
.w-phone-tab.is-active { color: #4f2573; }
html[data-theme="dark"] .w-phone-tab.is-active { color: #d4b4f0; }
.w-phone-tab svg { width: 10px; height: 10px; }

/* ── Manifesto ── */
.w-manifesto {
  padding: clamp(2.5rem, 5vw, 4rem) var(--w-gutter) clamp(4.25rem, 10vw, 8rem);
  position: relative;
  background: linear-gradient(165deg, #17131f 0%, #121018 45%, #1a1424 100%);
  color: #f4f1f8;
  overflow: clip;
}
.w-manifesto::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 65% at 18% 28%, rgba(107,61,150,.32), transparent 72%),
    radial-gradient(ellipse 42% 52% at 88% 72%, rgba(184,149,46,.12), transparent 68%);
}
.w-manifesto::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.15) 100%);
  opacity: .5;
}
.w-manifesto-inner {
  position: relative; z-index: 1;
  width: min(100%, var(--w-max)); margin: 0 auto;
}
.w-manifesto-intro {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  align-items: start;
}
@media (min-width: 900px) {
  .w-manifesto-intro {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 3.5rem;
    align-items: end;
  }
}
.w-manifesto .w-kicker { color: var(--w-gold-hi); }
.w-manifesto .w-kicker::before { background: var(--w-gold-hi); }
.w-motto {
  font-family: var(--w-font-disp);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600; letter-spacing: -.02em; line-height: 1.3;
  color: var(--w-gold-hi);
  margin-bottom: 1.1rem;
  max-width: none;
}
.w-manifesto-quote {
  font-family: var(--w-font-disp);
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  font-weight: 700; letter-spacing: -.04em; line-height: 1.12;
  max-width: none;
  text-wrap: balance;
}
.w-manifesto-body {
  margin-top: 0; max-width: none;
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  color: rgba(244,241,248,.74); font-weight: 500; line-height: 1.6;
}
.w-manifesto-story {
  display: grid;
  gap: 1.35rem;
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 800px) {
  .w-manifesto-story {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 3.25rem;
    align-items: start;
  }
  .w-manifesto-story p:last-child {
    grid-column: 1 / -1;
  }
}
.w-manifesto-story p {
  font-family: var(--w-font-body);
  font-size: clamp(1.06rem, 1.55vw, 1.22rem);
  font-weight: 500;
  line-height: 1.72;
  color: rgba(244,241,248,.78);
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
  hyphens: none;
  -webkit-hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}
/* Poetic interlude */
.w-poetry {
  padding: clamp(2.5rem, 5vw, 4rem) var(--w-gutter) clamp(4rem, 9vw, 6.5rem);
  background: var(--w-bg);
  position: relative;
  overflow: clip;
}
.w-poetry::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 45% 50% at 90% 20%, var(--w-mesh-b), transparent 70%),
    radial-gradient(ellipse 40% 45% at 8% 80%, var(--w-mesh-a), transparent 68%);
}
.w-poetry-inner {
  position: relative; z-index: 1;
  width: min(100%, var(--w-max)); margin: 0 auto;
  text-align: left;
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}
@media (min-width: 900px) {
  .w-poetry-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 3.5rem;
    align-items: end;
  }
}
.w-poetry-title {
  font-family: var(--w-font-disp);
  font-size: clamp(1.75rem, 3.4vw, 2.55rem);
  font-weight: 700; letter-spacing: -.04em; line-height: 1.18;
  margin-bottom: 1.35rem;
  max-width: 18ch;
  text-wrap: balance;
}
.w-poetry-body p {
  font-size: clamp(1.02rem, 1.5vw, 1.14rem);
  color: var(--w-ink-2); font-weight: 500; line-height: 1.65;
  margin: 0 0 1.1rem; max-width: none;
  text-align: left;
}
.w-poetry-body p:last-child { margin-bottom: 0; }
.w-poetry-close {
  margin-top: 0 !important;
  font-family: var(--w-font-disp);
  font-size: clamp(1.12rem, 1.9vw, 1.32rem) !important;
  font-weight: 700 !important;
  letter-spacing: -.03em;
  color: var(--w-ink) !important;
  line-height: 1.4 !important;
  padding-top: 1.25rem;
  border-top: 1px solid var(--w-border);
  max-width: 16ch;
}

.w-section-poem {
  margin-top: .95rem;
  max-width: none;
  font-family: var(--w-font-disp);
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  font-weight: 600; letter-spacing: -.02em; line-height: 1.4;
  color: var(--w-brand-hi);
}
.w-cta-poem {
  margin-top: .85rem !important;
  max-width: 40ch;
  font-family: var(--w-font-disp);
  font-size: 1.08rem;
  font-weight: 600; letter-spacing: -.02em; line-height: 1.45;
  color: var(--w-ink) !important;
}

/* Promise strip */
.w-promise {
  background: color-mix(in srgb, var(--w-surface) 92%, var(--w-brand-soft));
  border-bottom: 1px solid var(--w-border);
  position: relative;
  overflow: clip;
}
.w-promise::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--w-gold) 8%, transparent), transparent);
  pointer-events: none;
}
.w-promise-inner {
  position: relative;
  width: min(100%, var(--w-max)); margin: 0 auto;
  padding: 1.55rem var(--w-gutter);
}
.w-promise-line {
  display: flex; flex-wrap: wrap; gap: .65rem 1.5rem;
  justify-content: center; text-align: center;
  font-family: var(--w-font-disp);
  font-size: clamp(.98rem, 1.5vw, 1.12rem);
  font-weight: 600; letter-spacing: -.02em;
  color: var(--w-ink);
}
.w-promise-line span { position: relative; }
@media (min-width: 720px) {
  .w-promise-line span:not(:last-child)::after {
    content: ""; position: absolute; right: -.85rem; top: 50%;
    width: 5px; height: 5px; border-radius: 50%;
    background: linear-gradient(135deg, var(--w-brand-hi), var(--w-gold-hi));
    transform: translateY(-50%);
    opacity: .7;
  }
}

/* ── Section shell ── */
.w-section {
  padding: clamp(2.5rem, 5vw, 4rem) var(--w-gutter) clamp(4rem, 8.5vw, 7rem);
  position: relative;
}
.w-section--alt {
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, var(--w-mesh-a), transparent 55%),
    var(--w-bg2);
}
.w-section-inner { width: min(100%, var(--w-max)); margin: 0 auto; }
.w-kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--w-brand-hi); margin-bottom: 1rem;
}
.w-kicker::before {
  content: ""; width: 18px; height: 2px; border-radius: 999px;
  background: linear-gradient(90deg, var(--w-gold), var(--w-brand-hi));
}
.w-h2 {
  font-family: var(--w-font-disp);
  font-size: clamp(1.95rem, 3.6vw, 2.75rem);
  font-weight: 700; letter-spacing: -.04em; line-height: 1.1;
  max-width: none;
  text-wrap: balance;
}
.w-section-lede {
  margin-top: 0; max-width: none;
  color: var(--w-ink-2); font-size: 1.08rem; font-weight: 500; line-height: 1.62;
  text-wrap: pretty;
}
.w-section-head { margin-bottom: clamp(1.35rem, 3vw, 2.25rem); }
.w-section-head--split {
  display: grid;
  gap: 1.25rem 3rem;
  align-items: end;
}
@media (max-width: 879px) {
  .w-section-aside .w-section-lede { margin-top: .15rem; }
}
@media (min-width: 880px) {
  .w-section-head--split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  }
}
.w-section-lead .w-h2 { max-width: 14ch; }

/* Trust */
.w-trust {
  border-block: 1px solid var(--w-border);
  background: var(--w-surface);
}
.w-trust-inner {
  width: min(100%, var(--w-max)); margin: 0 auto;
  padding: 1.65rem var(--w-gutter);
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 900px) { .w-trust-inner { grid-template-columns: repeat(4, 1fr); } }
.w-trust-item {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: .35rem;
  border-radius: var(--w-r-md);
  transition: background .25s;
}
.w-trust-item:hover { background: var(--w-brand-soft); }
.w-trust-icon {
  width: 38px; height: 38px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--w-brand-soft), color-mix(in srgb, var(--w-gold) 10%, var(--w-brand-soft)));
  color: var(--w-brand);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
}
.w-trust-text h5 { font-size: .88rem; font-weight: 700; letter-spacing: -.01em; }
.w-trust-text p { margin-top: .25rem; font-size: .8rem; color: var(--w-muted); line-height: 1.45; }

/* Workflow */
.w-workflow-story {
  margin: 0;
  font-family: var(--w-font-body);
  font-size: clamp(1.04rem, 1.5vw, 1.16rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--w-ink-2);
  text-align: justify;
  text-justify: inter-word;
  hyphens: none;
  -webkit-hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  max-width: none;
}

/* Product */
.w-product-story {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .w-product-story {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 3.25rem;
    align-items: start;
  }
  .w-product-story-close {
    grid-column: 1 / -1;
  }
}
.w-product-place {
  display: grid;
  gap: .7rem;
  justify-items: start;
}
.w-product-icon {
  width: 3.1rem;
  height: 3.1rem;
  color: var(--w-brand-hi);
}
.w-product-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.w-product-place-label {
  font-family: var(--w-font-disp);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--w-brand-hi);
  margin: 0;
  text-align: left;
}
.w-product-place > p:not(.w-product-place-label),
.w-product-story-close {
  font-family: var(--w-font-body);
  font-size: clamp(1.04rem, 1.5vw, 1.16rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--w-ink-2);
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
  hyphens: none;
  -webkit-hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}
.w-product-story-close {
  font-family: var(--w-font-disp);
  font-size: clamp(1.04rem, 1.5vw, 1.16rem);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--w-ink);
}

/* ── Android companion manifesto ── */
.w-companion {
  padding: clamp(2.5rem, 5vw, 4rem) var(--w-gutter) clamp(4.25rem, 10vw, 7.5rem);
  position: relative;
  background: linear-gradient(165deg, #14111a 0%, #101018 50%, #15201a 100%);
  color: #f4f1f8;
  overflow: clip;
}
.w-companion::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 48% 55% at 78% 25%, rgba(61,220,132,.12), transparent 68%),
    radial-gradient(ellipse 50% 60% at 15% 70%, rgba(107,61,150,.22), transparent 70%);
}
.w-companion-inner {
  position: relative; z-index: 1;
  width: min(100%, var(--w-max)); margin: 0 auto;
}
.w-companion-intro {
  display: grid;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  align-items: start;
}
@media (min-width: 900px) {
  .w-companion-intro {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 3.5rem;
    align-items: end;
  }
}
.w-companion .w-kicker { color: var(--w-android); }
.w-companion .w-kicker::before { background: var(--w-android); }
.w-companion-quote {
  font-family: var(--w-font-disp);
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  font-weight: 700; letter-spacing: -.04em; line-height: 1.14;
  max-width: none;
  text-wrap: balance;
}
.w-companion-body {
  margin-top: 0; max-width: none;
  font-size: clamp(1.02rem, 1.45vw, 1.14rem);
  color: rgba(244,241,248,.74); font-weight: 500; line-height: 1.6;
}
.w-companion-grid {
  display: grid; gap: 1rem;
  margin-top: clamp(2rem, 5vw, 2.85rem);
}
@media (min-width: 800px) {
  .w-companion-grid { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
}
.w-companion-card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--w-r-xl);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
}
.w-companion-card p {
  font-family: var(--w-font-disp);
  font-size: clamp(.98rem, 1.3vw, 1.1rem);
  font-weight: 600; letter-spacing: -.02em; line-height: 1.35;
  color: rgba(244,241,248,.9);
}
.w-companion-cta {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem;
}
.w-companion-meta {
  font-size: .85rem; color: rgba(244,241,248,.5); font-weight: 500;
  max-width: 28ch;
}

/* Modules */
.w-mod-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 900px) { .w-mod-grid { grid-template-columns: repeat(4, 1fr); } }
.w-mod {
  padding: 1.35rem 1.2rem 1.45rem;
  border-radius: var(--w-r-xl);
  background: var(--w-surface);
  border: 1px solid var(--w-border);
  box-shadow: var(--w-soft-shadow);
  transition: border-color .3s, transform .35s var(--w-ease), box-shadow .35s;
}
.w-mod:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--w-brand) 32%, var(--w-border));
  box-shadow: var(--w-soft-shadow-lg);
}
.w-mod-ico {
  width: 42px; height: 42px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--w-brand-soft), color-mix(in srgb, var(--w-gold) 12%, transparent));
  color: var(--w-brand); margin-bottom: .95rem;
  transition: transform .35s var(--w-ease);
}
.w-mod:hover .w-mod-ico { transform: scale(1.06); }
.w-mod h3 {
  font-family: var(--w-font-disp); font-size: 1.08rem; font-weight: 700; letter-spacing: -.02em;
}
.w-mod p { margin-top: .4rem; font-size: .9rem; color: var(--w-muted); line-height: 1.5; }

/* Compare */
.w-compare { display: grid; gap: 1.15rem; }
@media (min-width: 800px) { .w-compare { grid-template-columns: 1fr 1fr; gap: 1.35rem; } }
.w-compare-col {
  padding: 1.65rem 1.5rem 1.75rem;
  border-radius: var(--w-r-xl);
  border: 1px solid var(--w-border);
  background: var(--w-surface);
  box-shadow: var(--w-soft-shadow);
  transition: transform .35s var(--w-ease), box-shadow .35s;
}
.w-compare-col:hover {
  transform: translateY(-3px);
  box-shadow: var(--w-soft-shadow-lg);
}
.w-compare-col.is-with {
  background: linear-gradient(165deg, color-mix(in srgb, var(--w-brand) 9%, var(--w-surface)), var(--w-surface));
  border-color: color-mix(in srgb, var(--w-brand) 32%, var(--w-border));
}
.w-compare-col h3 {
  font-family: var(--w-font-disp); font-size: 1.28rem; font-weight: 700; margin-bottom: 1.05rem;
}
.w-compare-col ul { display: grid; gap: .75rem; }
.w-compare-col li {
  display: grid; grid-template-columns: 18px 1fr; gap: .65rem;
  font-size: .96rem; color: var(--w-ink-2); font-weight: 500; line-height: 1.45;
}
.w-compare-col li svg { margin-top: .15rem; color: var(--w-faint); }
.w-compare-col.is-with li svg { color: var(--w-android); }

/* Roles */
.w-roles { display: grid; gap: 1.1rem; }
@media (min-width: 800px) { .w-roles { grid-template-columns: repeat(3, 1fr); } }
.w-role {
  padding: 1.55rem 1.45rem;
  border-radius: var(--w-r-xl);
  background: var(--w-surface);
  border: 1px solid var(--w-border);
  box-shadow: var(--w-soft-shadow);
  transition: transform .35s var(--w-ease), box-shadow .35s, border-color .35s;
}
.w-role:hover {
  transform: translateY(-4px);
  box-shadow: var(--w-soft-shadow-lg);
  border-color: color-mix(in srgb, var(--w-brand) 28%, var(--w-border));
}
.w-role h3 {
  font-family: var(--w-font-disp); font-size: 1.18rem; font-weight: 700; letter-spacing: -.02em;
}
.w-role p { margin-top: .55rem; color: var(--w-muted); font-size: .94rem; line-height: 1.55; }

/* FAQ */
.w-faq { display: grid; gap: .65rem; max-width: 760px; }
.w-faq--wide { max-width: none; }
@media (min-width: 900px) {
  .w-faq--wide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem 1.15rem;
    align-items: start;
  }
  .w-faq--wide .w-faq-item.is-open { grid-column: 1 / -1; }
}
.w-faq-item {
  border-radius: var(--w-r-xl);
  border: 1px solid var(--w-border);
  background: var(--w-surface);
  box-shadow: var(--w-soft-shadow);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.w-faq-item:hover, .w-faq-item.is-open {
  border-color: color-mix(in srgb, var(--w-brand) 28%, var(--w-border));
  box-shadow: var(--w-soft-shadow-lg);
}
.w-faq-trigger {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 1.25rem; font-weight: 700; font-size: 1.02rem;
  transition: color .2s;
}
.w-faq-item.is-open .w-faq-trigger { color: var(--w-brand-hi); }
.w-faq-trigger svg {
  flex-shrink: 0; transition: transform .35s var(--w-ease); color: var(--w-muted);
  width: 36px; height: 36px; padding: 8px;
  border-radius: 999px; background: var(--w-raised);
}
.w-faq-item.is-open .w-faq-trigger svg {
  transform: rotate(45deg); color: var(--w-brand-hi);
  background: var(--w-brand-soft);
}
.w-faq-panel {
  max-height: 0; overflow: hidden; transition: max-height .4s var(--w-ease);
}
.w-faq-panel p {
  padding: 0 1.25rem 1.25rem; color: var(--w-muted); font-size: .96rem; max-width: 62ch; line-height: 1.55;
}

/* CTA band */
.w-cta-band {
  padding: clamp(3.75rem, 8vw, 5.75rem) var(--w-gutter);
  position: relative; overflow: clip;
}
.w-cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 8% 50%, var(--w-mesh-a), transparent 70%),
    radial-gradient(ellipse 45% 70% at 92% 40%, var(--w-mesh-b), transparent 65%),
    var(--w-bg2);
  z-index: 0;
}
.w-cta-inner {
  position: relative; z-index: 1;
  width: min(100%, var(--w-max)); margin: 0 auto;
  padding: clamp(2.25rem, 4.5vw, 3.25rem);
  border-radius: var(--w-r-2xl);
  border: 1px solid var(--w-border-hi);
  background: var(--w-glass);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  box-shadow: var(--w-soft-shadow-lg);
}
.w-cta-inner h2 {
  font-family: var(--w-font-disp);
  font-size: clamp(1.8rem, 3.3vw, 2.6rem);
  font-weight: 700; letter-spacing: -.038em; max-width: 16ch;
}
.w-cta-inner > p { margin-top: .85rem; color: var(--w-ink-2); max-width: 48ch; font-size: 1.06rem; line-height: 1.6; }
.w-cta-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.65rem; }
.w-cta-access-hint { margin-top: 1.1rem; font-size: .9rem; color: var(--w-muted); }
.w-cta-access-hint a { color: var(--w-brand-hi); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* Footer */
.w-foot {
  padding: 3.25rem var(--w-gutter) 1.65rem;
  background: linear-gradient(180deg, #15121c 0%, #0f0d14 100%);
  color: #e8e2f0;
}
.w-foot-top {
  width: min(100%, var(--w-max)); margin: 0 auto;
  display: grid; gap: 2.15rem;
}
@media (min-width: 860px) {
  .w-foot-top { grid-template-columns: 1.3fr .8fr 1fr; gap: 2.75rem; }
}
.w-foot-brand {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--w-font-disp); font-weight: 700; font-size: 1.12rem;
  margin-bottom: .8rem;
}
.w-foot-mark { width: 26px; height: 26px; border-radius: 8px; }
.w-foot-col > p { color: rgba(255,255,255,.58); font-size: .92rem; max-width: 36ch; line-height: 1.55; }
.w-foot-motto {
  display: block; margin: .5rem 0 .6rem;
  font-style: normal; font-family: var(--w-font-disp);
  font-weight: 600; letter-spacing: -.02em;
  color: rgba(255,255,255,.9);
}
.w-foot-col h4 {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.42); margin-bottom: .9rem;
}
.w-foot-col-links { display: grid; gap: .45rem; }
.w-foot-col-links a {
  color: rgba(255,255,255,.76); font-weight: 600; font-size: .92rem;
  transition: color .2s, transform .2s;
}
.w-foot-col-links a:hover { color: #fff; transform: translateX(2px); }
.w-foot-access-card {
  padding: 1.35rem; border-radius: var(--w-r-xl);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
}
.w-foot-access-lede { color: rgba(255,255,255,.62); font-size: .9rem; margin-bottom: .95rem; }
.w-foot-signin-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  width: 100%; justify-content: center;
  padding: .85rem 1rem; border-radius: 999px;
  background: #fff; color: #16111c; font-weight: 700; font-size: .92rem;
  margin-bottom: .6rem;
  transition: transform .25s var(--w-ease), box-shadow .25s;
}
.w-foot-signin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.w-foot-register-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  width: 100%; justify-content: center;
  padding: .8rem 1rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  color: #fff; font-weight: 700; font-size: .9rem;
  margin-bottom: .6rem;
  transition: transform .25s var(--w-ease), border-color .2s, background .2s;
}
.w-foot-register-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.1);
}
.w-foot-android {
  display: inline-flex; align-items: center; gap: .65rem;
  width: 100%; padding: .75rem .9rem; border-radius: 999px;
  background: #0d0d0d; border: 1px solid rgba(255,255,255,.12); color: #fff;
  margin-bottom: .6rem;
  transition: border-color .2s, transform .25s;
}
.w-foot-android:hover {
  border-color: rgba(61, 220, 132, .4);
  transform: translateY(-1px);
}
.w-foot-android svg { color: var(--w-android); flex-shrink: 0; }
.w-foot-android span { font-weight: 700; font-size: .9rem; line-height: 1.15; }
.w-foot-android small { display: block; font-weight: 500; font-size: .68rem; opacity: .65; }
.w-foot-recovery-link {
  display: inline-block; font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.5); text-decoration: underline; text-underline-offset: 3px;
}
.w-foot-bottom {
  width: min(100%, var(--w-max)); margin: 2.15rem auto 0;
  padding-top: 1.35rem; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
}
.w-foot-copy { font-size: .78rem; color: rgba(255,255,255,.38); }
.w-foot-copy a { color: rgba(255,255,255,.62); text-decoration: none; }
.w-foot-copy a:hover { color: #fff; }

/* Back to top */
.w-btt {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 70;
  width: 48px; height: 48px; border-radius: 999px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--w-brand), var(--w-brand-hi));
  color: #fff;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--w-brand) 40%, transparent);
  opacity: 0; pointer-events: none; transform: translateY(10px) scale(.96);
  transition: opacity .3s, transform .3s var(--w-ease);
}
.w-btt:hover { filter: brightness(1.06); }
.w-btt.is-visible { opacity: 1; pointer-events: auto; transform: none; }

/* Soft polish extras */
.w-drawer {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: -20px 0 60px rgba(0,0,0,.18);
  border-radius: var(--w-r-xl) 0 0 var(--w-r-xl);
}
.w-companion-card {
  backdrop-filter: blur(10px);
  transition: transform .35s var(--w-ease), background .35s, border-color .35s;
}
.w-companion-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}
.w-poetry-title { text-wrap: balance; }
.w-companion-quote { text-wrap: balance; }

@media (prefers-reduced-motion: reduce) {
  .w-hero-aurora, .w-phone-preview { animation: none !important; }
  .w-mod:hover, .w-role:hover,
  .w-compare-col:hover { transform: none; }
}

/* Hide legacy unused */
.w-hero-orb, .w-hero-rail-wrap, .w-stat-card, .w-marquee-wrap,
.w-outcomes-wrap, .w-benefits-wrap, .w-proof-strip, .w-timeline-wrap,
.w-caps-wrap, .w-data-wrap, .w-mod-explorer, .w-bento,
.w-hero-grid, .w-cta-meta, .w-phone-tag, .w-phone-guar { display: none !important; }

/*
  Large / ultrawide only — leave phone→laptop unchanged.
  Widens the stage modestly and lets the hero mockups use the extra space
  without stretching body text into unreadable long lines.
*/
@media (min-width: 1600px) {
  :root { --w-max: 1480px; }
  .w-hero-inner { gap: 3.5rem; }
}

@media (min-width: 2000px) {
  :root {
    --w-max: 1680px;
    --w-gutter: clamp(2rem, 4vw, 5rem);
  }
  .w-hero-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 4rem;
  }
  .w-headline { font-size: clamp(2.4rem, 2.6vw, 3.6rem); }
  .w-phone-preview { width: 156px; }
}

@media (min-width: 2600px) {
  :root {
    --w-max: 1880px;
    --w-gutter: clamp(2.5rem, 4.5vw, 6rem);
  }
  .w-hero-inner { gap: 4.75rem; }
  .w-headline { font-size: clamp(2.7rem, 2.2vw, 3.9rem); max-width: 14ch; }
  .w-lede { font-size: 1.2rem; max-width: 46ch; }
  .w-phone-preview { width: 168px; }
  .w-hero-device-stage { padding-right: 72px; }
}
