:root {
  --black: #050505;
  --black-2: #0a0a0a;
  --black-3: #111;
  --white: #fff;
  --ink: #f4f4f4;
  --muted: #a8a8a8;
  --faint: #6e6e6e;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --panel: rgba(14, 14, 14, 0.92);
  --panel-2: rgba(20, 20, 20, 0.96);
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.65);
  --shadow-soft: 0 16px 48px rgba(0, 0, 0, 0.45);
  --r: 10px;
  --rl: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --display: "Inter", system-ui, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --hero: "Bebas Neue", "Inter", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;
  --nav-h: 68px;
  --section-y: clamp(80px, 11vw, 108px);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  background: var(--black);
  color-scheme: dark;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(900px 520px at 50% -8%, rgba(255, 255, 255, 0.09), transparent 62%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #050505 0%, #080808 50%, #030303 100%);
  background-size: auto, 64px 64px, 64px 64px, auto;
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 50% 20%, transparent 0, rgba(0, 0, 0, 0.45) 70%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.h2 {
  font-family: var(--body);
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.h2 span {
  display: block;
  font-family: var(--hero);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}

.h-accent {
  font-family: var(--hero);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}

.sec-lead {
  margin: 18px 0 0;
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.68;
  color: var(--muted);
}

.sec-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 14px;
}

/* Nav */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

#nav.solid {
  border-bottom-color: var(--line);
  background: rgba(5, 5, 5, 0.94);
}

.nav-in {
  width: min(1160px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--body);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.nav-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 2px;
  margin-left: auto;
  margin-right: 8px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.btn-w, .btn-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: var(--r);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease, background 0.2s ease;
}

.btn-w {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.14);
}

.btn-w:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 255, 255, 0.2);
  background: #f0f0f0;
}

.btn-g {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.btn-g:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 18px; font-size: 13px; }

/* Hero */
.hero {
  padding: clamp(56px, 9vw, 88px) 0 var(--section-y);
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.hero-meta { margin-bottom: 22px; }

.meta-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  font-family: var(--mono);
}

.hero h1 {
  font-family: var(--hero);
  font-size: clamp(52px, 8vw, 84px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}

.hero-sub {
  margin: 22px 0 0;
  max-width: 44ch;
  font-size: 17px;
  line-height: 1.72;
  color: var(--muted);
}

.hero-acts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* Extension preview */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}

.hero-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.hero-frame--compact {
  max-width: 360px;
  margin: 0 auto;
}

.hero-halo {
  position: absolute;
  inset: -40px -32px;
  border-radius: 32px;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(255, 255, 255, 0.1), transparent 72%);
  filter: blur(8px);
  animation: halo-pulse 5s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes halo-pulse {
  0% { opacity: 0.55; transform: scale(0.97); }
  100% { opacity: 0.85; transform: scale(1.02); }
}

.popup-wrap {
  position: relative;
  z-index: 2;
}

.popup {
  border-radius: var(--rl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(165deg, rgba(22, 22, 24, 0.98) 0%, rgba(8, 8, 10, 0.99) 100%);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 48px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(160%);
}

.popup-chrome {
  display: flex;
  gap: 6px;
  padding: 12px 14px 0;
}

.popup-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.popup-chrome span:first-child { background: rgba(255, 255, 255, 0.28); }

.popup-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px 10px;
  border-bottom: 1px solid var(--line);
}

.popup-head-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.popup-head-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.popup-head-mark img { width: 100%; height: 100%; }

.popup-title {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.popup-tabs {
  font-size: 10px;
  font-weight: 600;
  color: var(--faint);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.popup-add {
  flex-shrink: 0;
  padding: 6px 11px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.popup-add:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.1);
}

.popup-add--static { cursor: default; pointer-events: none; }

.popup-stats {
  display: flex;
  gap: 16px;
  padding: 8px 16px;
  font-size: 11px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.popup-stats b {
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 700;
}

.popup-launch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 14px;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.popup-launch-t {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
}

.popup-launch-s {
  font-size: 10px;
  color: var(--faint);
  margin-top: 2px;
  line-height: 1.45;
}

.popup-launch-btn {
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  background: var(--white);
  color: var(--black);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  cursor: default;
  flex-shrink: 0;
}

.popup-label {
  padding: 6px 16px 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}

.popup-rows {
  padding: 4px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.prow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  position: relative;
}

.prow--live {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.prow--live::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  bottom: 7px;
  width: 3px;
  border-radius: 0 2px 2px 0;
  background: var(--white);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.prow-ava {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  overflow: hidden;
  flex-shrink: 0;
}

.prow-ava img { width: 100%; height: 100%; object-fit: cover; }

.prow-info { flex: 1; min-width: 0; }

.prow-name {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prow-meta {
  font-size: 10px;
  color: var(--faint);
  margin-top: 1px;
}

.prow-status {
  flex-shrink: 0;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 5px;
}

.badge-active { background: var(--white); color: var(--black); }
.idle { background: rgba(255, 255, 255, 0.08); color: var(--muted); }
.off { background: rgba(255, 255, 255, 0.04); color: var(--faint); }

.prow-join {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
}

.popup-foot {
  display: flex;
  gap: 6px;
  padding: 10px 14px 14px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.pf-btn {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
}

.pf-btn.pr {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
  font-weight: 800;
}

/* Sections */
.sec {
  padding: var(--section-y) 0;
  position: relative;
  z-index: 1;
}

.sec-alt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 44px;
}

.feat-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 44px;
}

.feat-row {
  display: grid;
  grid-template-columns: minmax(108px, 140px) 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.feat-row:last-child { border-bottom: none; padding-bottom: 0; }

.feat-key {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  padding-top: 5px;
}

.feat-mark {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--faint);
  padding-top: 4px;
}

.feat-body h3 {
  font-family: var(--body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.feat-body p {
  margin: 0;
  color: var(--muted);
  max-width: 54ch;
  line-height: 1.68;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.use-card {
  padding: 24px 22px;
  border-radius: var(--rl);
  border: 1px solid var(--line);
  background: var(--panel);
  transition: border-color 0.2s ease, transform 0.2s var(--ease);
}

.use-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.use-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.use-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

@media (max-width: 900px) {
  .use-grid { grid-template-columns: 1fr; }
  .feat-row { grid-template-columns: 1fr; gap: 8px; }
  .feat-key { padding-top: 0; }
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.steps {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.steps-item {
  display: flex;
  gap: 16px;
}

.steps-n {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
}

.steps-item h3 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 4px;
}

.steps-item p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.62;
}

.profiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.profile-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.profile-chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.profile-chip.is-on {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
}

.profile-list {
  border-radius: var(--rl);
  border: 1px solid var(--line-strong);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.profile-list-head {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
}

.profile-list-rows {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sec-faq { background: rgba(255, 255, 255, 0.01); }

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 48px;
  align-items: start;
}

.faq-lead {
  margin: 16px 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.faq-dl-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--faint);
  font-family: var(--mono);
}

.faq-stack { display: flex; flex-direction: column; gap: 8px; }

.faq-card {
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border: none;
  background: transparent;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
}

.faq-chevron {
  color: var(--muted);
  transition: transform 0.2s ease;
}

.faq-card.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-card.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }

.faq-a-inner p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-a-inner code {
  font-family: var(--mono);
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.faq-media { margin-top: 48px; }

.faq-video-label {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.video-panel {
  border-radius: var(--rl);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--panel);
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

footer {
  padding: 52px 0 60px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.foot-min {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
}

.foot-tagline {
  margin: 12px auto 22px;
  max-width: 46ch;
  font-size: 14px;
  color: var(--muted);
}

.foot-min-acts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}

.foot-link {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.foot-link:hover { color: var(--ink); }

.foot-copy { font-size: 12px; color: var(--faint); }

/* Modal */
.mrm-add-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0s linear 0.22s;
}

.mrm-add-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.mrm-add-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
}

.mrm-add-modal__panel {
  position: relative;
  width: min(420px, 100%);
  padding: 28px 24px 24px;
  border-radius: var(--rl);
  background: var(--panel-2);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  text-align: center;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.25s var(--ease);
}

.mrm-add-modal.is-open .mrm-add-modal__panel {
  transform: translateY(0) scale(1);
}

.mrm-add-modal__panel--wide { width: min(640px, 100%); }

.mrm-add-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
}

.mrm-add-modal__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
}

.mrm-add-modal__icon img { width: 100%; height: 100%; }

.mrm-add-modal__title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
}

.mrm-add-modal__text {
  margin: 0 0 22px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.62;
}

.mrm-add-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.mrm-add-modal__dl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r);
  background: var(--white);
  color: var(--black);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
}

.mrm-add-modal__tut {
  padding: 12px 18px;
  border-radius: var(--r);
  border: 1px solid var(--line-strong);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.mrm-add-modal__video { margin-top: 16px; }

.mrm-add-modal__embed {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--r);
  overflow: hidden;
}

.mrm-add-modal__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#rbx-guard-shield { display: none; }

.rv {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.rv.in { opacity: 1; transform: translateY(0); }
.rv.d1 { transition-delay: 0.05s; }
.rv.d2 { transition-delay: 0.1s; }
.rv.d3 { transition-delay: 0.15s; }

@media (prefers-reduced-motion: reduce) {
  .rv, .hero-halo { animation: none; transition: none; opacity: 1; transform: none; }
  .btn-w:hover, .btn-g:hover { transform: none; }
}

@media (max-width: 960px) {
  .hero-grid, .how-grid, .profiles-grid, .faq-layout { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; order: -1; }
  .hero-frame { margin: 0 auto; }
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .wrap, .nav-in, .foot-min { width: calc(100% - 32px); }
}
