:root {
  color-scheme: dark;
  --bg: #0a0812;
  --bg-deep: #07060c;
  --surface: #130f1f;
  --surface-2: #1a1429;
  --surface-3: #211832;
  --border: rgba(145, 71, 255, 0.14);
  --border-strong: rgba(145, 71, 255, 0.38);
  --text: #eee8f8;
  --text-soft: #b2a5c8;
  --text-dim: #9183aa;
  --purple: #9a58ff;
  --purple-deep: #772ce8;
  --purple-soft: rgba(145, 71, 255, 0.12);
  --cyan: #42d7e5;
  --cyan-soft: rgba(66, 215, 229, 0.11);
  --green: #62dc9b;
  --danger: #ff7793;
  --shadow: 0 18px 54px rgba(0, 0, 0, 0.44);
  --shadow-purple: 0 18px 60px rgba(76, 28, 134, 0.18);
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

svg {
  display: block;
}

[hidden] {
  display: none !important;
}

.scene {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.scene::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(145, 71, 255, 0.055), transparent 34%);
  content: "";
}

.scene-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(145, 71, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 71, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0, rgba(0, 0, 0, 0.55) 46%, transparent 90%);
}

.scene-light {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(145, 71, 255, 0.5), transparent);
  box-shadow: 0 0 70px 16px rgba(145, 71, 255, 0.08);
}

.scanline {
  position: absolute;
  top: -2px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154, 88, 255, 0.7), transparent);
  opacity: 0.07;
  animation: scan-down 11s linear infinite;
}

@keyframes scan-down {
  to { transform: translateY(100vh); }
}

.site-shell {
  width: min(100% - 40px, 860px);
  margin: 0 auto;
  padding: 28px 0 38px;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 48px;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  justify-self: start;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 0 24px rgba(145, 71, 255, 0.1);
}

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

.brand-name {
  font-size: 18px;
  font-weight: 800;
}

.brand-name span {
  color: var(--purple);
}

.site-nav {
  display: flex;
  min-height: 42px;
  padding: 4px;
  align-items: center;
  gap: 3px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(19, 15, 31, 0.84);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}

.site-nav a {
  display: flex;
  min-height: 32px;
  padding: 7px 10px;
  align-items: center;
  gap: 6px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  border-color: rgba(145, 71, 255, 0.18);
  background: var(--purple-soft);
  color: var(--text);
}

.site-nav a.is-active {
  color: #cbaaff;
}

.site-nav svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.header-help {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--surface);
  color: var(--purple);
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.header-help:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
  box-shadow: 0 0 24px rgba(145, 71, 255, 0.13);
}

.header-help svg {
  width: 18px;
  height: 18px;
}

.access-hero,
.content-hero {
  padding: 62px 0 34px;
  text-align: center;
}

.hero-kicker,
.page-kicker {
  display: inline-flex;
  min-height: 30px;
  padding: 6px 11px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(145, 71, 255, 0.2);
  border-radius: 999px;
  background: rgba(145, 71, 255, 0.08);
  color: #b88aff;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.signal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 10px rgba(154, 88, 255, 0.8);
  animation: signal 2.4s ease-in-out infinite;
}

@keyframes signal {
  50% { opacity: 0.38; box-shadow: 0 0 3px rgba(154, 88, 255, 0.3); }
}

.access-hero h1,
.content-hero h1 {
  max-width: 680px;
  margin: 18px auto 0;
  font-size: 44px;
  line-height: 1.12;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.access-hero h1 span,
.content-hero h1 span {
  color: var(--purple);
  text-shadow: 0 0 32px rgba(145, 71, 255, 0.3);
}

.access-hero > p,
.content-hero > p {
  max-width: 570px;
  margin: 16px auto 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}

.hero-metrics {
  display: flex;
  min-height: 54px;
  margin-top: 25px;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.hero-metrics > span:not(.metric-divider) {
  display: flex;
  min-width: 76px;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.hero-metrics strong {
  color: #c29bff;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

.hero-metrics small {
  color: var(--text-dim);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.metric-divider {
  width: 1px;
  height: 30px;
  background: var(--border);
}

.access-deck,
.card-surface,
.content-card,
.faq-item,
.support-banner {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(19, 15, 31, 0.96);
  box-shadow: var(--shadow);
  transition: border-color 260ms ease, box-shadow 320ms ease, background 260ms ease;
}

.access-deck {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: 27px;
}

.access-deck::before,
.card-surface::before,
.content-card::before {
  position: absolute;
  top: 0;
  right: 13%;
  left: 13%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154, 88, 255, 0.72), transparent);
  opacity: 0.46;
  content: "";
}

.deck-topline,
.section-topline,
.content-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.card-label {
  display: flex;
  margin: 0 0 8px;
  align-items: center;
  gap: 7px;
  color: var(--purple);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.card-label::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  content: "";
}

.deck-topline h2,
.section-topline h2,
.content-card h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.3;
}

.online-badge {
  display: inline-flex;
  min-height: 28px;
  flex: 0 0 auto;
  padding: 5px 9px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(78, 199, 255, 0.25);
  border-radius: 999px;
  background: rgba(78, 199, 255, 0.09);
  color: #6ed2ff;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.online-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 9px currentColor;
}

.mode-switch {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 72px;
  margin-top: 22px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--bg-deep);
}

.mode-indicator {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: calc(50% - 5px);
  border: 1px solid rgba(154, 88, 255, 0.34);
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(145, 71, 255, 0.19), rgba(119, 44, 232, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 0 28px rgba(145, 71, 255, 0.08);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.mode-switch[data-active="trial"] .mode-indicator {
  transform: translateX(100%);
  border-color: rgba(66, 215, 229, 0.33);
  background: linear-gradient(135deg, rgba(66, 215, 229, 0.15), rgba(24, 120, 132, 0.06));
}

.mode-tab {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  min-height: 60px;
  padding: 9px 12px;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--text-dim);
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease;
}

.mode-tab.is-active {
  color: var(--text);
}

.tab-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.025);
}

.mode-tab.is-active .tab-icon {
  border-color: rgba(145, 71, 255, 0.2);
  background: rgba(145, 71, 255, 0.12);
  color: #c7a4ff;
}

.mode-switch[data-active="trial"] .mode-tab.is-active .tab-icon {
  border-color: rgba(66, 215, 229, 0.2);
  background: rgba(66, 215, 229, 0.1);
  color: var(--cyan);
}

.tab-icon svg {
  width: 16px;
  height: 16px;
}

.mode-tab strong,
.mode-tab small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.mode-tab strong {
  font-size: 12px;
  line-height: 1.3;
}

.mode-tab small {
  margin-top: 3px;
  color: var(--text-dim);
  font-size: 9px;
  line-height: 1.3;
}

.access-view {
  padding-top: 25px;
}

.product-heading {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.product-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(145, 71, 255, 0.22);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(145, 71, 255, 0.18), rgba(119, 44, 232, 0.08));
  color: #b982ff;
}

.product-icon.cyan {
  border-color: rgba(66, 215, 229, 0.22);
  background: linear-gradient(135deg, rgba(66, 215, 229, 0.15), rgba(20, 91, 100, 0.07));
  color: var(--cyan);
}

.product-icon svg {
  width: 23px;
  height: 23px;
}

.status-row {
  display: flex;
  margin-bottom: 7px;
  align-items: center;
  gap: 7px;
  color: #bd91ff;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-row.cyan {
  color: var(--cyan);
}

.status-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 9px currentColor;
}

.product-heading h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.35;
}

.product-heading p {
  margin: 7px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.58;
}

.glow-button {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 58px;
  margin-top: 24px;
  padding: 12px 15px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) 20px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(154, 88, 255, 0.43);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(145, 71, 255, 0.18), rgba(119, 44, 232, 0.07));
  color: #bf8eff;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 0 rgba(145, 71, 255, 0);
  transition: color 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.glow-button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  opacity: 0;
  content: "";
  transition: opacity 240ms ease;
}

.glow-button.cyan {
  border-color: rgba(66, 215, 229, 0.38);
  background: linear-gradient(135deg, rgba(66, 215, 229, 0.16), rgba(22, 113, 124, 0.06));
  color: var(--cyan);
}

.glow-button.cyan::before {
  background: linear-gradient(135deg, #42d7e5, #1fa8ba);
}

.glow-button:hover {
  border-color: var(--purple);
  color: #fff;
  box-shadow: 0 0 32px rgba(145, 71, 255, 0.24), inset 0 0 28px rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.glow-button.cyan:hover {
  border-color: var(--cyan);
  color: #071317;
  box-shadow: 0 0 32px rgba(66, 215, 229, 0.2), inset 0 0 28px rgba(255, 255, 255, 0.04);
}

.glow-button:hover::before {
  opacity: 1;
}

.glow-button:active {
  transform: translateY(0);
}

.glow-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.button-sheen {
  position: absolute;
  top: -100%;
  bottom: -100%;
  left: -35%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  transition: left 520ms ease;
}

.glow-button:hover .button-sheen {
  left: 112%;
}

.button-content,
.button-end,
.glow-button > svg {
  position: relative;
  z-index: 1;
}

.button-content {
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.button-content strong {
  overflow-wrap: anywhere;
  font-size: 14px;
}

.button-content svg,
.button-end {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-row,
.result-actions {
  display: flex;
  min-height: 42px;
  margin-top: 8px;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.soft-button {
  display: inline-flex;
  min-height: 38px;
  padding: 8px 11px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.soft-button:hover {
  border-color: var(--border);
  background: var(--surface-2);
  color: var(--text);
}

.soft-button.bright {
  border-color: rgba(66, 215, 229, 0.24);
  background: rgba(66, 215, 229, 0.09);
  color: var(--cyan);
}

.soft-button svg {
  width: 14px;
  height: 14px;
}

.reveal-control {
  display: grid;
  width: 100%;
  min-height: 58px;
  margin-top: 10px;
  padding: 10px 12px;
  grid-template-columns: 36px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 11px;
  border: 1px solid transparent;
  border-top-color: var(--border);
  border-radius: 12px;
  background: transparent;
  color: var(--text-dim);
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 260ms ease;
}

.reveal-control:hover,
.reveal-control.is-open {
  border-color: var(--border-strong);
  background: linear-gradient(135deg, rgba(145, 71, 255, 0.13), rgba(119, 44, 232, 0.045));
  color: var(--text);
  box-shadow: 0 0 26px rgba(145, 71, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.reveal-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--purple-soft);
  color: #bd8bff;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.reveal-control:hover .reveal-icon,
.reveal-control.is-open .reveal-icon {
  border-color: var(--border-strong);
  box-shadow: 0 0 18px rgba(145, 71, 255, 0.18);
}

.reveal-icon svg,
.reveal-chevron {
  width: 16px;
  height: 16px;
}

.reveal-copy {
  min-width: 0;
}

.reveal-copy strong,
.reveal-copy small {
  display: block;
  overflow-wrap: anywhere;
}

.reveal-copy strong {
  font-size: 11px;
}

.reveal-copy small {
  margin-top: 3px;
  color: var(--text-dim);
  font-size: 9px;
}

.reveal-chevron {
  color: var(--text-dim);
  transition: color 220ms ease, transform 280ms ease;
}

.reveal-control.is-open .reveal-chevron {
  color: var(--purple);
  transform: rotate(180deg);
}

.details-panel {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--bg-deep);
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 360ms ease, margin-top 300ms ease, opacity 220ms ease, transform 300ms ease, border-color 300ms ease;
}

.details-panel.is-open {
  max-height: 290px;
  margin-top: 8px;
  border-color: var(--border);
  opacity: 1;
  transform: translateY(0);
}

.details-inner {
  display: grid;
  padding: 8px;
  gap: 6px;
}

.detail-row {
  display: flex;
  min-width: 0;
  padding: 11px 13px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: rgba(19, 15, 31, 0.72);
  font-size: 10px;
  transition: border-color 200ms ease, background 200ms ease;
}

.detail-row:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
}

.details-panel span {
  color: var(--text-dim);
}

.details-panel code {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #c19aff;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  text-align: right;
}

.details-copy,
.copy-subscription-button {
  display: inline-flex;
  width: 100%;
  min-height: 40px;
  padding: 9px 12px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--surface-2);
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 220ms ease;
}

.details-copy:hover,
.copy-subscription-button:hover {
  border-color: var(--border-strong);
  background: var(--purple-soft);
  color: #cdaeff;
  box-shadow: 0 0 20px rgba(145, 71, 255, 0.1);
}

.details-copy svg,
.copy-subscription-button svg {
  width: 14px;
  height: 14px;
}

.access-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.access-facts span {
  display: flex;
  min-width: 0;
  min-height: 44px;
  padding: 8px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(66, 215, 229, 0.12);
  border-radius: 11px;
  background: rgba(66, 215, 229, 0.045);
  color: var(--text-soft);
  font-size: 9px;
  text-align: center;
}

.access-facts svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--cyan);
}

.access-facts b {
  overflow-wrap: anywhere;
}

.trial-result {
  margin-top: 13px;
  padding: 15px;
  border: 1px solid rgba(66, 215, 229, 0.22);
  border-radius: 13px;
  background: rgba(18, 61, 67, 0.3);
}

.result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #bbf8fd;
  font-size: 11px;
  font-weight: 700;
}

.result-head span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.result-head svg {
  width: 15px;
  height: 15px;
}

.result-head code {
  color: var(--cyan);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
}

.trial-result p {
  margin: 10px 0 4px;
  color: #9bc1c6;
  font-size: 10px;
  line-height: 1.55;
}

.app-import-title {
  margin-top: 15px;
  color: #b9eaff;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.app-import-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 8px;
}

.app-import-button {
  display: grid;
  min-width: 0;
  min-height: 48px;
  padding: 8px;
  grid-template-columns: 28px minmax(0, 1fr) 13px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(78, 199, 255, 0.18);
  border-radius: 10px;
  background: rgba(78, 199, 255, 0.055);
  color: #b9eaff;
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 240ms ease, transform 220ms ease;
}

.app-import-button:hover {
  border-color: rgba(110, 210, 255, 0.58);
  background: rgba(78, 199, 255, 0.13);
  color: #e6f8ff;
  box-shadow: 0 0 24px rgba(78, 199, 255, 0.14);
  transform: translateY(-1px);
}

.app-import-button span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(78, 199, 255, 0.2);
  border-radius: 8px;
  background: rgba(78, 199, 255, 0.09);
  font-size: 11px;
  font-weight: 800;
}

.app-import-button strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 10px;
}

.app-import-button svg {
  width: 13px;
  height: 13px;
}

.copy-subscription-button {
  margin-top: 8px;
  border-color: rgba(78, 199, 255, 0.13);
  background: transparent;
  color: #91c4d8;
}

.quick-guide {
  position: relative;
  max-width: 680px;
  margin: 16px auto 0;
  padding: 25px 27px;
}

.inline-link {
  display: inline-flex;
  min-height: 34px;
  flex: 0 0 auto;
  padding: 7px 9px;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: #b88aff;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 200ms ease, background 200ms ease;
}

.inline-link:hover {
  border-color: var(--border-strong);
  background: var(--purple-soft);
}

.inline-link svg {
  width: 14px;
  height: 14px;
}

.steps {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 13px;
  padding-bottom: 18px;
}

.steps li:last-child {
  padding-bottom: 0;
}

.steps li:not(:last-child)::after {
  position: absolute;
  top: 34px;
  bottom: 0;
  left: 16px;
  width: 1px;
  background: var(--border);
  content: "";
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(145, 71, 255, 0.22);
  border-radius: 10px;
  background: var(--purple-soft);
  color: #bc8bff;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
}

.steps strong {
  display: block;
  padding-top: 2px;
  font-size: 12px;
  line-height: 1.4;
}

.steps p {
  margin: 4px 0 0;
  color: var(--text-soft);
  font-size: 11px;
  line-height: 1.5;
}

.help-grid {
  display: grid;
  max-width: 680px;
  margin: 16px auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.help-card {
  display: grid;
  min-width: 0;
  min-height: 76px;
  padding: 13px;
  grid-template-columns: 42px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(19, 15, 31, 0.92);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.24);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.help-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-purple);
  transform: translateY(-2px);
}

.help-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(145, 71, 255, 0.18);
  border-radius: 11px;
  background: var(--purple-soft);
  color: #b77dff;
}

.help-icon.cyan {
  border-color: rgba(66, 215, 229, 0.18);
  background: var(--cyan-soft);
  color: var(--cyan);
}

.help-icon svg {
  width: 18px;
  height: 18px;
}

.help-card strong,
.help-card small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.help-card strong {
  margin-bottom: 4px;
  font-size: 12px;
}

.help-card small {
  color: var(--text-dim);
  font-size: 9px;
  line-height: 1.35;
}

.help-card > svg {
  width: 16px;
  height: 16px;
  color: var(--text-dim);
  transition: color 200ms ease, transform 200ms ease;
}

.help-card:hover > svg {
  color: var(--purple);
  transform: translateX(2px);
}

.site-footer {
  display: flex;
  min-height: 70px;
  align-items: end;
  justify-content: center;
  gap: 9px;
  color: var(--text-dim);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
}

.site-footer i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

/* Content pages */
.content-hero {
  padding-bottom: 30px;
}

.content-hero .hero-actions {
  display: flex;
  margin-top: 22px;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.mini-action {
  display: inline-flex;
  min-height: 42px;
  padding: 9px 13px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--surface);
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
}

.mini-action:hover,
.mini-action.primary {
  border-color: var(--border-strong);
  background: var(--purple-soft);
  color: #cbaaff;
}

.mini-action svg {
  width: 15px;
  height: 15px;
}

.content-stack {
  display: grid;
  max-width: 760px;
  margin: 0 auto;
  gap: 16px;
}

.content-card {
  position: relative;
  padding: 27px;
}

.content-card > p:not(.card-label),
.content-card-head p {
  margin: 7px 0 0;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.6;
}

.app-picker,
.platform-picker,
.faq-filters {
  display: grid;
  padding: 5px;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--bg-deep);
}

.app-picker {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 21px;
}

@media (hover: hover) {
  .access-deck:hover,
  .card-surface:hover,
  .content-card:hover,
  .support-banner:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow), 0 0 42px rgba(145, 71, 255, 0.09);
  }

  .access-deck:hover::before,
  .card-surface:hover::before,
  .content-card:hover::before {
    opacity: 0.9;
  }
}

.platform-picker {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 10px;
}

.choice-button,
.filter-button {
  display: flex;
  min-width: 0;
  min-height: 44px;
  padding: 9px 11px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.choice-button:hover,
.choice-button.is-active,
.filter-button:hover,
.filter-button.is-active {
  border-color: rgba(145, 71, 255, 0.24);
  background: var(--purple-soft);
  color: #cbaaff;
}

.choice-button svg,
.filter-button svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.instruction-output {
  margin-top: 22px;
}

.instruction-app-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
}

.app-letter {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(145, 71, 255, 0.22);
  border-radius: 13px;
  background: var(--purple-soft);
  color: #c197ff;
  font-size: 18px;
  font-weight: 800;
}

.instruction-app-head h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.instruction-app-head p {
  margin: 0;
  color: var(--text-dim);
  font-size: 10px;
}

.download-link {
  display: inline-flex;
  min-height: 38px;
  padding: 8px 10px;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--purple-soft);
  color: #cbaaff;
  font-size: 9px;
  font-weight: 700;
  text-decoration: none;
}

.download-link svg {
  width: 14px;
  height: 14px;
}

.instruction-list {
  display: grid;
  margin: 21px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.instruction-list li {
  display: grid;
  min-width: 0;
  padding: 14px;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(10, 8, 18, 0.55);
}

.instruction-list .step-number {
  width: 34px;
  height: 34px;
}

.instruction-list strong {
  display: block;
  padding-top: 1px;
  font-size: 11px;
}

.instruction-list p {
  margin: 4px 0 0;
  color: var(--text-soft);
  font-size: 10px;
  line-height: 1.55;
}

.tip-box {
  display: grid;
  margin-top: 15px;
  padding: 14px;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  border: 1px solid rgba(66, 215, 229, 0.18);
  border-radius: 12px;
  background: var(--cyan-soft);
}

.tip-box > svg {
  width: 20px;
  height: 20px;
  margin: 4px auto 0;
  color: var(--cyan);
}

.tip-box strong {
  font-size: 11px;
}

.tip-box p {
  margin: 4px 0 0;
  color: #9fc6ca;
  font-size: 10px;
  line-height: 1.55;
}

.renewal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 20px;
}

.renewal-grid article {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(10, 8, 18, 0.45);
}

.renewal-grid svg {
  width: 18px;
  height: 18px;
  margin-bottom: 10px;
  color: var(--purple);
}

.renewal-grid strong {
  display: block;
  margin-bottom: 5px;
  font-size: 10px;
}

.renewal-grid p {
  margin: 0;
  color: var(--text-dim);
  font-size: 9px;
  line-height: 1.5;
}

.support-banner {
  display: grid;
  padding: 20px;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.support-banner .help-icon {
  width: 44px;
  height: 44px;
}

.support-banner strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
}

.support-banner p {
  margin: 0;
  color: var(--text-dim);
  font-size: 10px;
  line-height: 1.45;
}

/* FAQ */
.faq-tools {
  display: grid;
  max-width: 760px;
  margin: 0 auto 16px;
  gap: 10px;
}

.faq-search {
  position: relative;
}

.faq-search svg {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 17px;
  height: 17px;
  color: var(--text-dim);
  transform: translateY(-50%);
}

.faq-search input {
  width: 100%;
  min-height: 50px;
  padding: 12px 15px 12px 44px;
  border: 1px solid var(--border);
  border-radius: 13px;
  outline: 0;
  background: var(--surface);
  color: var(--text);
  font-size: 12px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.faq-search input::placeholder {
  color: var(--text-dim);
}

.faq-search input:focus {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 3px rgba(145, 71, 255, 0.09);
}

.faq-filters {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.faq-filters::-webkit-scrollbar {
  display: none;
}

.filter-button {
  min-height: 38px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.faq-list {
  display: grid;
  max-width: 760px;
  margin: 0 auto;
  gap: 9px;
}

.faq-item {
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.faq-item[open] {
  border-color: var(--border);
}

.faq-item summary {
  display: grid;
  min-height: 62px;
  padding: 14px 16px;
  grid-template-columns: 32px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-question-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(145, 71, 255, 0.18);
  border-radius: 9px;
  background: var(--purple-soft);
  color: #b983ff;
}

.faq-question-icon svg {
  width: 15px;
  height: 15px;
}

.faq-item summary strong {
  font-size: 11px;
  line-height: 1.45;
  transition: color 220ms ease;
}

.faq-item summary:hover strong,
.faq-item.is-expanded summary strong {
  color: var(--text);
}

.faq-chevron {
  width: 16px;
  height: 16px;
  color: var(--text-dim);
  transition: transform 220ms ease, color 220ms ease;
}

.faq-item.is-expanded .faq-chevron {
  color: var(--purple);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px 0 60px;
  opacity: 0;
  transform: translateY(-4px);
  color: var(--text-soft);
  font-size: 10px;
  line-height: 1.65;
  transition: max-height 350ms ease, padding-bottom 350ms ease, opacity 220ms ease, transform 300ms ease;
}

.faq-item.is-expanded .faq-answer {
  max-height: 360px;
  padding-bottom: 18px;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  margin: 0;
}

.faq-answer ol,
.faq-answer ul {
  margin: 9px 0 0;
  padding-left: 18px;
}

.faq-answer li + li {
  margin-top: 5px;
}

.faq-empty {
  padding: 32px;
  color: var(--text-dim);
  text-align: center;
  font-size: 11px;
}

/* Tour */
.tour {
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
}

.tour-shade {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 9, 0.82);
  pointer-events: auto;
}

.tour-card {
  position: fixed;
  z-index: 1100;
  width: min(360px, calc(100vw - 28px));
  padding: 20px;
  border: 1px solid rgba(154, 88, 255, 0.58);
  border-radius: 16px;
  background: #171120;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.72), 0 0 36px rgba(145, 71, 255, 0.16);
  pointer-events: auto;
}

.tour-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 30px;
  height: 30px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--text-dim);
  cursor: pointer;
}

.tour-close svg {
  width: 14px;
  height: 14px;
}

.tour-progress {
  display: flex;
  min-height: 24px;
  padding-right: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #b980ff;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.tour-progress i {
  display: flex;
  gap: 4px;
  font-style: normal;
}

.tour-progress i span {
  width: 14px;
  height: 3px;
  border-radius: 999px;
  background: rgba(145, 71, 255, 0.2);
}

.tour-progress i span.is-active {
  background: var(--purple);
  box-shadow: 0 0 8px rgba(145, 71, 255, 0.7);
}

.tour-eyebrow {
  margin: 11px 0 6px;
  color: var(--text-dim);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.tour-card h2 {
  margin: 0;
  font-size: 19px;
}

.tour-card > p:not(.tour-eyebrow) {
  margin: 8px 0 18px;
  color: var(--text-soft);
  font-size: 11px;
  line-height: 1.6;
}

.tour-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tour-actions button {
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.tour-skip {
  border: 0;
  background: transparent;
  color: var(--text-dim);
}

.tour-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ad76ff;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: #fff;
  box-shadow: 0 8px 24px rgba(119, 44, 232, 0.24);
}

.tour-next svg {
  width: 14px;
  height: 14px;
}

.tour-target {
  position: relative !important;
  z-index: 1000 !important;
  border-color: rgba(177, 123, 255, 0.92) !important;
  box-shadow:
    0 0 0 4px rgba(145, 71, 255, 0.31),
    0 0 38px rgba(145, 71, 255, 0.66),
    var(--shadow) !important;
}

.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  z-index: 1300;
  max-width: calc(100vw - 28px);
  padding: 11px 16px;
  border: 1px solid rgba(78, 199, 255, 0.34);
  border-radius: 999px;
  background: #0c202a;
  color: #c5efff;
  box-shadow: var(--shadow);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 200ms ease, transform 200ms ease;
  white-space: nowrap;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

:focus-visible {
  outline: 3px solid rgba(66, 215, 229, 0.55);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 28px, 680px);
    padding-top: 18px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    margin-top: 7px;
  }

  .site-nav a {
    min-width: 0;
    flex: 1 1 0;
    justify-content: center;
  }

  .header-help {
    grid-column: 2;
    grid-row: 1;
  }

  .access-hero,
  .content-hero {
    padding-top: 44px;
  }

  .access-hero h1,
  .content-hero h1 {
    font-size: 34px;
  }
}

@media (max-width: 520px) {
  .site-shell {
    width: min(100% - 24px, 680px);
  }

  .brand-name {
    font-size: 17px;
  }

  .site-nav a {
    padding-inline: 6px;
    font-size: 10px;
  }

  .access-hero,
  .content-hero {
    padding: 38px 0 26px;
  }

  .access-hero h1,
  .content-hero h1 {
    margin-top: 15px;
    font-size: 30px;
  }

  .access-hero > p,
  .content-hero > p {
    font-size: 13px;
  }

  .hero-metrics {
    gap: 11px;
  }

  .hero-metrics > span:not(.metric-divider) {
    min-width: 66px;
  }

  .access-deck,
  .quick-guide,
  .content-card {
    padding: 20px 17px;
    border-radius: 15px;
  }

  .deck-topline h2,
  .section-topline h2,
  .content-card h2 {
    font-size: 18px;
  }

  .mode-switch {
    min-height: 64px;
  }

  .mode-tab {
    min-height: 52px;
    padding: 7px 8px;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 7px;
  }

  .tab-icon {
    width: 28px;
    height: 28px;
  }

  .mode-tab strong {
    font-size: 10px;
  }

  .mode-tab small {
    font-size: 8px;
  }

  .product-heading {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  .product-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .product-heading h3 {
    font-size: 17px;
  }

  .product-heading p {
    font-size: 12px;
  }

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

  .access-facts span {
    justify-content: flex-start;
    padding-inline: 12px;
  }

  .app-import-grid {
    grid-template-columns: 1fr;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }

  .section-topline,
  .content-card-head {
    align-items: flex-start;
  }

  .inline-link {
    max-width: 124px;
    text-align: center;
  }

  .instruction-app-head {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .app-letter {
    width: 44px;
    height: 44px;
  }

  .download-link {
    grid-column: 1 / -1;
  }

  .renewal-grid {
    grid-template-columns: 1fr;
  }

  .support-banner {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .support-banner .mini-action {
    grid-column: 1 / -1;
  }

  .faq-answer {
    padding-left: 16px;
  }

  .toast {
    white-space: normal;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
