:root {
  --bg-top: #040507;
  --bg-bottom: #0d1118;
  --panel: rgba(15, 19, 27, 0.82);
  --panel-strong: rgba(16, 21, 30, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.03);
  --stroke: rgba(255, 255, 255, 0.12);
  --stroke-strong: rgba(255, 255, 255, 0.18);
  --stroke-soft: rgba(255, 255, 255, 0.07);
  --text-primary: #f6f8fc;
  --text-secondary: #a6b0bf;
  --text-tertiary: #7c8798;
  --accent: #d3b04b;
  --accent-soft: #f1dd91;
  --accent-blue: #8b96a8;
  --danger: #ff8a7a;
  --ok: #63e2b8;
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.28);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius: 16px;
  --radius-sm: 12px;
  --control-h: 40px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Avenir Next", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-primary);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.48)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.03) 22%, rgba(0, 0, 0, 0.01) 55%, rgba(0, 0, 0, 0.03) 82%, rgba(0, 0, 0, 0.14)),
    radial-gradient(circle at 18% 8%, rgba(211, 176, 75, 0.1), transparent 22%),
    radial-gradient(circle at 84% 14%, rgba(131, 140, 154, 0.08), transparent 20%),
    radial-gradient(circle at 52% 100%, rgba(255, 255, 255, 0.035), transparent 28%),
    linear-gradient(180deg, #090c11 0%, #0b0f15 24%, #0c1118 62%, #090c12 100%);
  background-color: #06070a;
  background-size: auto, auto, auto, auto, auto, auto;
  background-position: center, center, center, center, center, center;
  background-repeat: no-repeat;
}

body.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.992);
  transition:
    opacity 540ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

body.motion-ready [data-reveal="hero"] {
  transform: translate3d(0, 14px, 0) scale(0.996);
}

body.motion-ready [data-reveal="hero-card"] {
  transform: translate3d(10px, 16px, 0) scale(0.992);
}

body.motion-ready [data-reveal="card"] {
  transform: translate3d(0, 20px, 0) scale(0.99);
}

body.motion-ready .is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
.lang-select:focus-visible {
  outline: 2px solid rgba(211, 176, 75, 0.95);
  outline-offset: 2px;
}

.site-wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 18px 24px 48px;
}

.topbar {
  position: sticky;
  top: 10px;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(18, 23, 32, 0.96), rgba(10, 13, 19, 0.94));
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 0 0 auto;
}

.brand-mark {
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-wordmark {
  font-size: 1.34rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  color: rgba(232, 219, 176, 0.82);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  min-width: 0;
  overflow: visible;
}

.nav a {
  color: var(--text-secondary);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 1.04rem;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-status-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-status-dot {
  display: none;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(118, 130, 149, 0.7);
  box-shadow: 0 0 0 4px rgba(118, 130, 149, 0.12);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.nav-status-dot.ok {
  background: #58d7b2;
  box-shadow: 0 0 0 4px rgba(88, 215, 178, 0.18);
}

.nav-status-dot.warning {
  background: #e2b25f;
  box-shadow: 0 0 0 4px rgba(226, 178, 95, 0.18);
}

.nav a.active,
.nav a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
  transform: translate3d(0, -1px, 0);
}

.nav a[data-link="account"] {
  display: none;
}

.cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  justify-items: stretch;
  align-content: center;
  width: 154px;
}

.lang-picker {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: 4px;
}

.lang-select {
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  padding: 0 8px;
  font: inherit;
  font-size: 0.92rem;
  line-height: 1;
  min-width: 42px;
  width: 42px;
  text-align: center;
  text-align-last: center;
  appearance: none;
  -webkit-appearance: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--control-h);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0 15px;
  font-weight: 700;
  font-size: 0.88rem;
  color: #f8fbff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, #2c3240, #181d27);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 22px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.cta-row .btn {
  width: 100%;
}

.btn:hover {
  transform: translate3d(0, -1px, 0);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.btn.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.btn-primary {
  border-color: rgba(241, 221, 145, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 233, 168, 0.28), rgba(255, 233, 168, 0.12)),
    linear-gradient(180deg, #5c4a1e, #30230d);
  color: #fff6dd;
}

.download-hero-section [data-download-installer],
[data-download-windows] {
  color: #f4f8ff;
}

.download-hero-section [data-download-installer] {
  border-color: rgba(70, 138, 214, 0.44);
  background:
    linear-gradient(180deg, rgba(78, 150, 231, 0.22), rgba(78, 150, 231, 0.08)),
    linear-gradient(180deg, #113864, #0a1d36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 32px rgba(8, 28, 52, 0.34);
}

[data-download-windows] {
  border-color: rgba(118, 196, 255, 0.5);
  background:
    linear-gradient(180deg, rgba(157, 220, 255, 0.28), rgba(157, 220, 255, 0.12)),
    linear-gradient(180deg, #2d7ec7, #15508f);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 16px 32px rgba(24, 93, 158, 0.28);
}

.btn-ghost {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(19, 23, 31, 0.76);
  color: var(--text-primary);
}

.hero,
.section {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero {
  margin-top: 22px;
  padding: 30px;
  content-visibility: auto;
  contain-intrinsic-size: 960px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, rgba(18, 25, 35, 0.98), rgba(10, 13, 19, 0.96));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(380px, 0.78fr);
  gap: 28px;
  align-items: start;
}

.hero-copy {
  display: grid;
  align-content: start;
}

.hero-copy .lead {
  max-width: none;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5e9bc;
  background: rgba(211, 176, 75, 0.11);
  border: 1px solid rgba(241, 221, 145, 0.22);
  padding: 8px 12px;
  border-radius: 999px;
}

h1 {
  margin: 16px 0 14px;
  font-size: clamp(1.78rem, 3.2vw, 2.66rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 23ch;
}

h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.champion-showcase h2 {
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  white-space: nowrap;
  margin-bottom: 10px;
}

.champion-showcase .section-intro {
  max-width: 110ch;
  line-height: 1.82;
}

.steps-section .section-intro {
  max-width: 110ch;
  margin-top: 12px;
  line-height: 1.85;
}

body[data-page="support"] .section-intro {
  max-width: none;
  line-height: 1.8;
}

body[data-page="legal"] .section-intro {
  max-width: none;
}

.steps-section h2 {
  margin-bottom: 14px;
}

@media (min-width: 861px) {
  .champion-showcase .section-intro {
    max-width: none;
    white-space: nowrap;
  }
}

h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
}

.section-intro,
p.lead {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
  max-width: 56ch;
}

body[data-page="account"] .section-intro {
  max-width: none;
}

.hero-actions,
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #ecf2fa;
  font-size: 0.84rem;
}

.hero-proof-pill:first-child {
  border-color: rgba(70, 138, 214, 0.52);
  background: rgba(78, 150, 231, 0.12);
  color: #f4f8ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(70, 138, 214, 0.08),
    0 10px 22px rgba(8, 28, 52, 0.18);
}

.hero-proof-pill:last-child {
  border-color: rgba(118, 196, 255, 0.52);
  background: rgba(157, 220, 255, 0.12);
  color: #f4f8ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(118, 196, 255, 0.08),
    0 10px 22px rgba(24, 93, 158, 0.18);
}

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

.hero-meta {
  margin-top: 16px;
}

.hero-meta .mini-note {
  display: block;
  width: 100%;
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero-meta .mini-note-legal {
  font-size: 0.8rem;
  line-height: 1.55;
  opacity: 0.9;
}

.mini-note {
  color: var(--text-tertiary);
  font-size: 0.88rem;
}

.hero-card,
.panel,
.feature,
.faq-item,
.stat-card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 36px rgba(0, 0, 0, 0.18);
}

.hero-card,
.panel {
  padding: 18px;
}

.account-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.account-subnav .btn {
  min-height: 40px;
}

.hero-card {
  position: relative;
  overflow: hidden;
}

.hero-card-premium {
  align-self: start;
  padding: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(211, 176, 75, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(12, 17, 24, 0.88);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 50%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(149, 158, 172, 0.16), transparent 70%);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-card-topline {
  position: relative;
  z-index: 1;
}

.hero-card-topline .kicker {
  display: flex;
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
  white-space: nowrap;
  font-size: 0.72rem;
  padding-inline: 14px;
  color: #e0e7f1;
  background: rgba(116, 127, 143, 0.11);
  border-color: rgba(133, 145, 163, 0.24);
}

.hero-price {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  margin: 4px 0;
}

.hero-summary-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

.hero-summary-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.hero-summary-card-accent {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 236, 168, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(211, 176, 75, 0.2), rgba(211, 176, 75, 0.07)),
    rgba(255, 255, 255, 0.03);
  border-color: rgba(241, 221, 145, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 38px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(241, 221, 145, 0.06);
}

.hero-summary-card-accent > .subtle:first-child {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(241, 221, 145, 0.28);
  background: rgba(33, 25, 8, 0.34);
  color: #ffefb7;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-summary-card-accent .hero-price {
  margin-top: 12px;
  color: #fff3cb;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.hero-summary-card-accent .btn-primary {
  min-height: 44px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 32px rgba(69, 51, 11, 0.28);
}

.hero-side-grid {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.hero-side-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-side-card {
  position: relative;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
}

.hero-side-label {
  color: var(--accent-soft);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-side-title {
  margin-top: 6px;
  font-size: 0.98rem;
  font-weight: 700;
}

.hero-side-card p {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.55;
}

.subtle {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

.stats-grid {
  display: grid;
  gap: 14px;
}

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

.stats-grid-full {
  margin-top: 18px;
}

.stat-card {
  padding: 16px;
}

.stat-value {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-label {
  margin-top: 6px;
  color: var(--text-secondary);
  line-height: 1.55;
  font-size: 0.88rem;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.pricing-hero-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(83, 126, 183, 0.08), transparent 28%),
    radial-gradient(circle at 0% 0%, rgba(211, 176, 75, 0.1), transparent 24%),
    var(--panel-strong);
}

.pricing-hero-section .section-head {
  margin-bottom: 14px;
}

.pricing-hero-section .section-head h2 {
  margin: 0;
}

.pricing-hero-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  max-width: none;
}

.pricing-hero-section .section-intro,
.pricing-benefits-section .section-intro {
  max-width: none;
  line-height: 1.72;
}

.pricing-tier-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
  align-items: stretch;
}

.pricing-tier-card-free {
  background:
    radial-gradient(circle at 0% 0%, rgba(83, 126, 183, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(12, 17, 24, 0.86);
  border-color: rgba(86, 126, 186, 0.22);
  box-shadow: inset 0 1px 0 rgba(120, 168, 230, 0.1);
}

.pricing-tier-card-free .kicker {
  border-color: rgba(89, 148, 223, 0.34);
  background: linear-gradient(180deg, rgba(60, 110, 182, 0.22), rgba(37, 74, 125, 0.18));
  color: #dceaff;
}

.pricing-featured-card,
.pricing-tier-card-premium {
  background:
    radial-gradient(circle at 100% 0%, rgba(211, 176, 75, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(14, 19, 27, 0.9);
}

.pricing-featured-card .hero-price,
.pricing-tier-card-premium .hero-price {
  color: #fff5d5;
}

.pricing-tier-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.pricing-featured-card {
  border-color: rgba(211, 176, 75, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 238, 190, 0.08);
}

.pricing-featured-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-featured-points li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.65;
}

.pricing-featured-points li::before {
  flex: 0 0 auto;
  margin-top: 0.15em;
}

.pricing-featured-points-free li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(170, 184, 208, 0.9);
  box-shadow: 0 0 0 4px rgba(170, 184, 208, 0.08);
}

.pricing-featured-points-premium li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #34d47a, #199b51);
  color: #f6fff9;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 6px 18px rgba(35, 181, 93, 0.24);
}

.pricing-tier-cta {
  width: 100%;
  margin-top: auto;
}

.pricing-ack {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.6;
}

.pricing-ack input {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  accent-color: var(--accent);
}

.pricing-tier-cta-free {
  background: linear-gradient(180deg, #3c78c6, #24518d);
  border-color: rgba(104, 167, 245, 0.4);
  box-shadow: 0 10px 28px rgba(43, 103, 179, 0.22), inset 0 1px 0 rgba(216, 235, 255, 0.18);
}

.pricing-tier-cta-free:hover {
  background: linear-gradient(180deg, #4786d9, #2b5f9f);
}

.pricing-price-row-hero {
  margin: 0 0 4px;
}

.pricing-price-row-hero .subtle {
  line-height: 1;
}

.pricing-tier-card-free .hero-price {
  color: #eef6ff;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pricing-matrix {
  margin-top: 8px;
  padding: 18px;
}

.pricing-matrix-head {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) repeat(2, minmax(0, 0.82fr));
  gap: 12px;
  align-items: end;
  margin-bottom: 8px;
}

.pricing-matrix-row {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) repeat(2, minmax(0, 0.82fr));
  gap: 12px;
  align-items: stretch;
}

.pricing-matrix-intro {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 12px 2px 14px 0;
  max-width: none;
}

.pricing-matrix-intro h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.18;
}

.pricing-matrix-intro .subtle {
  line-height: 1.75;
  max-width: none;
}

.pricing-matrix-colhead {
  align-self: end;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 8px;
}

.pricing-matrix-colhead-accent {
  color: #fff5d5;
}

.pricing-matrix-row {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-matrix-label {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.4;
}

.pricing-matrix-value {
  color: var(--text-secondary);
  line-height: 1.55;
}

.pricing-matrix-value-accent {
  color: #f2f7ff;
}

.pricing-page-notice {
  margin-top: 20px;
}

.pricing-benefits-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(94, 154, 227, 0.06), transparent 24%),
    var(--panel-strong);
}

.pricing-benefits-section .section-head {
  margin-bottom: 22px;
}

.pricing-benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-benefit-card {
  padding: 18px;
}

.pricing-benefit-card-accent {
  background:
    radial-gradient(circle at 100% 100%, rgba(211, 176, 75, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(12, 17, 24, 0.82);
}

.download-support-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.download-guide-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(211, 176, 75, 0.08), transparent 26%),
    radial-gradient(circle at 0% 100%, rgba(70, 138, 214, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    var(--panel-strong);
}

.download-guide-head {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.download-guide-copy h2 {
  margin: 14px 0 12px;
  font-size: clamp(1.82rem, 2.6vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.download-guide-copy .section-intro {
  margin: 0;
  max-width: 62ch;
  line-height: 1.72;
}

.download-guide-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.download-guide-overview-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  min-height: 100%;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(10, 15, 23, 0.66);
  box-shadow: var(--shadow-md);
}

.download-guide-overview-item p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.55;
  font-size: 0.96rem;
}

.download-guide-overview-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(211, 176, 75, 0.24);
  background: rgba(211, 176, 75, 0.08);
  color: var(--accent-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.download-guide-timeline {
  display: grid;
  gap: 18px;
}

.download-guide-step-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 100%, rgba(66, 118, 190, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(12, 17, 24, 0.84);
  box-shadow: var(--shadow-md);
}

.download-guide-step-card-step1 {
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 0.8fr);
}

.download-guide-step-card-step2 {
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 0.8fr);
}

.download-guide-step-card-step3-single {
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 0.8fr);
}

.download-guide-step-card-step4-single,
.download-guide-step-card-step5-single {
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 0.8fr);
}

.download-guide-step-card:nth-child(even) .download-guide-step-copy {
  order: 2;
}

.download-guide-step-card:nth-child(even) .download-guide-visuals {
  order: 1;
}

.download-guide-step-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.download-guide-step-copy h3 {
  margin: 0;
  font-size: clamp(1.22rem, 1.7vw, 1.7rem);
  line-height: 1.14;
}

.download-guide-step-copy p {
  margin: 0;
  max-width: 48ch;
}

.download-guide-visuals {
  display: grid;
  gap: 14px;
}

.download-guide-visuals-step1 {
  justify-items: center;
}

.download-guide-visuals-step1 .download-guide-shot {
  width: min(100%, 440px);
}

.download-guide-visuals.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.download-guide-visuals-step2,
.download-guide-visuals-step3-single,
.download-guide-visuals-step4-single,
.download-guide-visuals-step5-single {
  justify-items: center;
}

.download-guide-visuals-step2 .download-guide-shot {
  width: min(100%, 440px);
}

.download-guide-visuals-step3-single .download-guide-shot,
.download-guide-visuals-step4-single .download-guide-shot,
.download-guide-visuals-step5-single .download-guide-shot {
  width: min(100%, 440px);
}

.download-guide-shot {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.download-guide-shot-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    rgba(7, 11, 18, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 36px rgba(0, 0, 0, 0.22);
}

.download-guide-shot-frame.browser {
  min-height: 220px;
}

.download-guide-shot-frame.landscape {
  min-height: 280px;
}

.download-guide-shot-frame.portrait {
  min-height: 340px;
}

.download-guide-shot-frame-step2-single,
.download-guide-shot-frame-step3-single,
.download-guide-shot-frame-step4-single,
.download-guide-shot-frame-step5-single {
  min-height: 560px;
  padding: 0;
}

.download-guide-shot-frame-step3-single {
  min-height: 450px;
}

.download-guide-shot-frame-step4-single {
  min-height: 430px;
}

.download-guide-shot-frame-step5-single {
  min-height: 430px;
  padding: 10px;
}

.download-guide-shot-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 18px;
}

.download-guide-shot-image-step1 {
  width: 34%;
  max-width: none;
}

.download-guide-shot-image-step2-primary {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: 50% 54%;
  transform: none;
}

.download-guide-shot-image-step3-single {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center 54%;
  transform: none;
}

.download-guide-shot-image-step3-secondary {
  width: 134%;
  max-width: none;
  transform: scale(1.1);
  transform-origin: center center;
}

.download-guide-shot-image-step5-single {
  width: 134%;
  max-width: none;
  transform: scale(1.1);
  transform-origin: center center;
}

.download-guide-shot figcaption {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.premium-activation-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(211, 176, 75, 0.08), transparent 26%),
    radial-gradient(circle at 100% 100%, rgba(70, 138, 214, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    var(--panel-strong);
}

.premium-activation-head {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.premium-activation-overview {
  grid-template-columns: 1fr;
}

.premium-activation-card {
  grid-template-columns: minmax(320px, 0.76fr) minmax(560px, 1.24fr);
}

.premium-activation-visuals {
  justify-items: center;
}

.premium-activation-shot {
  width: min(100%, 820px);
}

.premium-activation-shot-frame {
  min-height: 420px;
  padding: 0;
}

.premium-activation-shot-image {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center top;
}

.premium-activation-shot-image-settings {
  object-position: center 16%;
}

.features-2x2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.download-grid-hero {
  align-items: stretch;
}

.download-primary-card {
  background:
    radial-gradient(circle at 0% 0%, rgba(211, 176, 75, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(12, 17, 24, 0.86);
}

.download-platform-macos .download-primary-card {
  background:
    radial-gradient(circle at 0% 0%, rgba(56, 122, 205, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(12, 17, 24, 0.86);
}

.download-platform-windows .download-primary-card {
  background:
    radial-gradient(circle at 0% 0%, rgba(114, 196, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(12, 17, 24, 0.86);
}

.download-platform-macos {
  background:
    radial-gradient(circle at 0% 0%, rgba(36, 96, 173, 0.12), transparent 24%),
    var(--panel-strong);
}

.download-platform-windows {
  background:
    radial-gradient(circle at 0% 0%, rgba(114, 196, 255, 0.12), transparent 24%),
    var(--panel-strong);
}

.download-platform-macos .section-head h2,
.download-platform-windows .section-head h2 {
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.download-platform-macos .section-intro {
  color: rgba(214, 229, 247, 0.9);
}

.download-platform-windows .section-intro {
  color: rgba(224, 242, 255, 0.92);
}

.download-flow-card {
  display: grid;
  align-content: start;
}

.download-step-stack {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.download-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.download-step .step-index {
  position: static;
  top: auto;
  left: auto;
  min-width: 48px;
}

.download-platform-macos .download-step .step-index,
.download-platform-macos .download-primary-card .notice,
.download-platform-macos .capability-tags span {
  border-color: rgba(70, 138, 214, 0.26);
}

.download-platform-macos .download-step .step-index {
  background: rgba(78, 150, 231, 0.1);
  color: #d9ebff;
}

.download-platform-macos .download-primary-card .notice {
  background: rgba(78, 150, 231, 0.08);
}

.download-platform-macos .capability-tags span {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(19, 23, 31, 0.76);
  box-shadow: 0 0 0 1px rgba(78, 150, 231, 0.06);
}

.download-platform-windows .download-step .step-index,
.download-platform-windows .download-primary-card .notice,
.download-platform-windows .capability-tags span {
  border-color: rgba(118, 196, 255, 0.28);
}

.download-platform-windows .download-step .step-index {
  background: rgba(157, 220, 255, 0.11);
  color: #ebf8ff;
}

.download-platform-windows .download-primary-card .notice {
  background: rgba(157, 220, 255, 0.08);
}

.download-platform-windows .capability-tags span {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(19, 23, 31, 0.76);
  box-shadow: 0 0 0 1px rgba(157, 220, 255, 0.07);
}

.download-step strong {
  display: block;
  margin-top: 3px;
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.download-step p {
  margin: 0;
}

.account-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 14px;
}

.account-hero-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(12, 17, 24, 0.84);
}

.account-help-row {
  justify-content: center;
}

.account-auth-card {
  min-height: 100%;
}

.status-page-section {
  padding: 22px 24px 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(211, 176, 75, 0.12), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(70, 138, 214, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
    var(--panel-strong);
}

.status-page-shell {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.status-hero-panel {
  position: relative;
  display: grid;
  gap: 24px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 0% 0%, rgba(211, 176, 75, 0.09), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(64, 196, 167, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(14, 19, 27, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 60px rgba(0, 0, 0, 0.18);
}

.status-hero-panel::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 91, 154, 0.16), transparent 72%);
  pointer-events: none;
}

.status-hero-panel::after {
  content: "";
  position: absolute;
  inset: -120px -100px auto auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 176, 75, 0.12), transparent 72%);
  pointer-events: none;
}

.status-page-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(360px, 0.82fr);
  align-items: start;
  gap: 24px;
  margin-bottom: 0;
}

.status-page-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
}

.status-page-copy h2 {
  margin: 14px 0 14px;
  max-width: none;
  font-size: clamp(2.15rem, 4vw, 4.15rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

@media (min-width: 1280px) {
  .status-page-head {
    grid-template-columns: minmax(0, 1.58fr) minmax(320px, 0.64fr);
  }

  .status-page-copy h2 {
    font-size: clamp(2.2rem, 3.55vw, 4rem);
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .status-message-meta .subtle {
    white-space: nowrap;
    text-wrap: nowrap;
  }
}

.status-page-copy .section-intro {
  max-width: 56ch;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.68;
  color: rgba(225, 232, 242, 0.78);
}

.status-copy-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 2px;
}

.status-copy-metric {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 22px;
  min-height: 108px;
  padding: 18px 18px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(8, 12, 18, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 14px 34px rgba(0, 0, 0, 0.14);
}

.status-copy-metric::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 18px;
  width: 64px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(241, 221, 145, 0.92), rgba(241, 221, 145, 0));
}

.status-page-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: start;
  gap: 18px;
}

.status-page-grid-single {
  grid-template-columns: 1fr;
}

.status-head-card,
.status-message-panel,
.status-side-panel {
  display: grid;
  position: relative;
  overflow: hidden;
  gap: 16px;
  min-height: 100%;
}

.status-head-card::before {
  content: "";
  position: absolute;
  inset: -32% auto auto 70%;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(88, 215, 178, 0.07), transparent 68%);
  pointer-events: none;
}

.status-head-card {
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(74, 201, 173, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.012)),
    rgba(10, 14, 21, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 42px rgba(0, 0, 0, 0.14);
}

.status-head-top {
  position: relative;
  display: grid;
  gap: 12px;
  z-index: 1;
}

.status-primary-badge {
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  padding: 10px 16px;
  min-height: 42px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: normal;
  text-wrap: balance;
}

.status-head-value {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.2rem, 1.7vw, 1.72rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.12;
  text-wrap: balance;
}

.status-head-value-small {
  font-size: clamp(1rem, 1.06vw, 1.08rem);
  line-height: 1.38;
}

.status-detail-label {
  display: inline-flex;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-side-copy {
  max-width: none;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.58;
}

.status-message-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background:
    radial-gradient(circle at 0% 100%, rgba(211, 176, 75, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
    rgba(12, 17, 25, 0.88);
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  align-items: start;
  gap: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 44px rgba(0, 0, 0, 0.12);
}

.status-message-meta {
  display: grid;
  gap: 12px;
  align-content: start;
}

.status-message-meta h3 {
  margin: 0;
  font-size: clamp(1.34rem, 1.7vw, 1.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.status-message-meta .subtle {
  margin: 0;
  max-width: 28ch;
  font-size: 0.98rem;
  line-height: 1.64;
}

.status-message-box {
  position: relative;
  min-height: 156px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 24px;
  padding: 26px 26px 24px 74px;
  background:
    radial-gradient(circle at 100% 0%, rgba(80, 192, 168, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.01)),
    rgba(9, 13, 19, 0.9);
  color: var(--text-primary);
  font-size: 1.02rem;
  line-height: 1.76;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 14px 30px rgba(0, 0, 0, 0.12);
}

.status-message-box::before {
  content: "";
  position: absolute;
  inset: 18px auto auto 20px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    rgba(24, 32, 45, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0.9;
}

.status-message-box::after {
  content: "";
  position: absolute;
  inset: 29px auto auto 31px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(241, 221, 145, 0.95), rgba(211, 176, 75, 0.72));
}

@media (max-width: 1180px) {
  .status-page-head,
  .status-page-grid,
  .status-message-panel {
    grid-template-columns: 1fr;
  }

  .status-page-copy h2 {
    max-width: none;
    font-size: clamp(1.85rem, 5vw, 2.55rem);
  }

  .status-copy-metrics {
    grid-template-columns: 1fr;
  }

  .status-message-meta .subtle {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .status-page-section {
    padding: 16px 14px 20px;
  }

  .status-hero-panel,
  .status-message-panel {
    padding: 18px;
  }

  .status-page-copy h2 {
    margin-top: 12px;
    font-size: clamp(1.9rem, 8vw, 2.45rem);
  }

  .status-primary-badge {
    width: 100%;
  }

  .status-message-box {
    min-height: 132px;
    padding: 24px 18px 18px 62px;
  }
}

.capability {
  position: relative;
  min-height: 184px;
  padding: 18px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(12, 17, 24, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 36px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.capability::before {
  content: "";
  position: absolute;
  inset: auto -10% -24% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(146, 155, 169, 0.12), transparent 72%);
  pointer-events: none;
}

.capability-featured {
  background:
    radial-gradient(circle at 10% 10%, rgba(211, 176, 75, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(14, 20, 28, 0.92);
}

.capability-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(211, 176, 75, 0.11);
  border: 1px solid rgba(241, 221, 145, 0.22);
  color: #f3e4b0;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capability h3 {
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 1.06rem;
  line-height: 1.2;
}

.capability p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.62;
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.capability-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-size: 0.82rem;
}

.steps-section {
  position: relative;
}

.steps-grid {
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.04), rgba(241,221,145,0.28), rgba(62,162,255,0.18), rgba(255,255,255,0.04));
  opacity: 0.8;
}

.step-panel {
  position: relative;
  padding-top: 64px;
}

.step-panel h3 {
  margin-bottom: 18px;
  line-height: 1.18;
}

.step-panel .subtle {
  line-height: 1.82;
}

.step-index {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(211, 176, 75, 0.12);
  border: 1px solid rgba(241, 221, 145, 0.18);
  color: #f3e4b0;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.fit-section .section-head {
  margin-bottom: 14px;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.fit-panel-primary {
  background:
    radial-gradient(circle at 0% 0%, rgba(211, 176, 75, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255,255,255,0.01)),
    var(--panel);
}

.fit-panel-secondary {
  background:
    radial-gradient(circle at 100% 0%, rgba(146, 155, 169, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255,255,255,0.01)),
    var(--panel);
}

.champion-showcase {
  overflow: hidden;
}

.champion-carousel-shell {
  position: relative;
  min-height: 296px;
  margin-top: 8px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% -10%, rgba(211, 176, 75, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    rgba(10, 14, 20, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 36px rgba(0, 0, 0, 0.18);
  perspective: 980px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
}

.champion-carousel-shell::before,
.champion-carousel-shell::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 16%;
  z-index: 2;
  pointer-events: none;
}

.champion-carousel-shell::before {
  background: linear-gradient(90deg, rgba(8, 11, 16, 0.95), rgba(8, 11, 16, 0));
}

.champion-carousel-shell::after {
  inset: 0 0 0 auto;
  background: linear-gradient(270deg, rgba(8, 11, 16, 0.95), rgba(8, 11, 16, 0));
}

.champion-carousel-track {
  position: absolute;
  inset: 16px 0;
  transform-style: preserve-3d;
  contain: layout paint style;
}

.champion-chip {
  position: absolute;
  top: 50%;
  left: 0;
  width: 132px;
  padding: 10px 10px 12px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(11, 16, 23, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 28px rgba(0, 0, 0, 0.26);
  transform-origin: center center;
  will-change: transform, opacity;
  backface-visibility: hidden;
  contain: layout paint style;
}

.champion-chip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(241, 221, 145, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.champion-chip span {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-size: 0.86rem;
  color: #edf2fa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-tour-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(211, 176, 75, 0.12), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(118, 196, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    rgba(11, 16, 24, 0.94);
}

.product-tour-scroll {
  position: relative;
  margin-top: 6px;
  min-height: 190vh;
}

.product-tour-stage {
  position: sticky;
  top: 160px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  min-height: calc(100vh - 180px);
}

.product-tour-progress-track,
.product-tour-window-progress {
  position: relative;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  cursor: pointer;
}

.product-tour-progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 236, 168, 0.98), rgba(224, 191, 84, 0.98) 58%, rgba(180, 139, 42, 0.98));
  box-shadow:
    0 0 18px rgba(224, 191, 84, 0.18),
    inset 0 1px 0 rgba(255, 248, 215, 0.22);
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
}

.product-tour-visual {
  position: relative;
  display: grid;
  align-items: center;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

.product-tour-window-shell {
  position: relative;
  padding: 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.09), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(211, 176, 75, 0.18), transparent 28%),
    linear-gradient(160deg, rgba(24, 31, 44, 0.96), rgba(10, 13, 19, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 60px rgba(0, 0, 0, 0.34);
}

.product-tour-window-shell::before {
  content: "";
  position: absolute;
  inset: auto 12% -16% 12%;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70, 138, 214, 0.28), transparent 68%);
  filter: blur(28px);
  pointer-events: none;
}

.product-tour-window {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 14, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 42px rgba(0, 0, 0, 0.24);
}

.product-tour-window-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(16, 20, 28, 0.96);
}

.product-tour-window-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-tour-window-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.product-tour-window-dots span:nth-child(1) {
  background: #ff5f57;
}

.product-tour-window-dots span:nth-child(2) {
  background: #febc2e;
}

.product-tour-window-dots span:nth-child(3) {
  background: #28c840;
}

.product-tour-window-progress {
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.product-tour-video {
  display: block;
  width: 100%;
  aspect-ratio: 3024 / 1910;
  object-fit: cover;
  background: #090c12;
}

.section {
  margin-top: 22px;
  background: var(--panel-strong);
  padding: 24px;
  content-visibility: auto;
  contain-intrinsic-size: 680px;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.download-hero-section .section-head h2 {
  margin: 0 0 18px;
}

.download-hero-section .section-intro {
  max-width: none;
  line-height: 1.9;
  white-space: nowrap;
}

.grid-2,
.price-table,
.download-grid,
.admin-grid {
  display: grid;
  gap: 16px;
}

.grid-2,
.price-table,
.download-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-secondary);
  line-height: 1.72;
}

.hero-summary-card .list {
  list-style: none;
  padding-left: 0;
}

.list strong {
  color: var(--text-primary);
}

.notice,
.alert {
  margin-top: 14px;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 0.92rem;
  line-height: 1.58;
}

.notice {
  border: 1px solid rgba(241, 221, 145, 0.2);
  background: rgba(211, 176, 75, 0.08);
  color: var(--text-secondary);
}

.alert {
  border: 1px solid rgba(133, 145, 163, 0.24);
  background: rgba(116, 127, 143, 0.1);
  color: var(--text-secondary);
}

.notice code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(10, 14, 20, 0.8);
  padding: 2px 6px;
  color: #ebf1fb;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border: 1px solid #5a7591;
  border-radius: 999px;
  padding: 0 11px;
  background: rgba(22, 43, 64, 0.85);
  color: #e2effd;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.22;
  text-align: center;
}

.status-badge.ok {
  border-color: #52b89f;
  color: #92e4c8;
}

.status-badge.warning {
  border-color: #d5a45b;
  color: #f1cf90;
  background: rgba(73, 49, 14, 0.35);
}

.status-badge.error {
  border-color: #cf7688;
  color: #ff9ab0;
}

.faq-item {
  position: relative;
  overflow: hidden;
  padding: 20px 20px 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(211, 176, 75, 0.08), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(70, 138, 214, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 36px rgba(0, 0, 0, 0.16);
}

.faq-item::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(211, 176, 75, 0.34), rgba(95, 145, 204, 0.18), transparent 80%);
}

.faq-grid > .faq-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: min(100%, calc(50% - 8px));
  justify-self: center;
}

.faq-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(211, 176, 75, 0.28);
  background: rgba(211, 176, 75, 0.08);
  color: #f0ddb0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-item h3 {
  margin: 14px 0 14px;
  font-size: clamp(1.02rem, 1.28vw, 1.34rem);
  line-height: 1.2;
}

.faq-item p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.68;
  font-size: 0.94rem;
}

.legal-notice {
  margin-top: 18px;
  margin-bottom: 16px;
  border-color: rgba(211, 176, 75, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(211, 176, 75, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(31, 28, 22, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 34px rgba(0, 0, 0, 0.18);
}

.legal-grid {
  align-items: stretch;
}

.legal-item {
  position: relative;
  overflow: hidden;
  padding: 20px 20px 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(211, 176, 75, 0.08), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(70, 138, 214, 0.07), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 36px rgba(0, 0, 0, 0.16);
}

.legal-item::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(211, 176, 75, 0.34), rgba(95, 145, 204, 0.18), transparent 80%);
}

.legal-item-accent {
  background:
    radial-gradient(circle at 100% 0%, rgba(211, 176, 75, 0.12), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(70, 138, 214, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--panel);
}

.legal-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(211, 176, 75, 0.28);
  background: rgba(211, 176, 75, 0.08);
  color: #f0ddb0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-item h3 {
  margin: 14px 0 14px;
  font-size: clamp(1.12rem, 1.45vw, 1.48rem);
  line-height: 1.24;
}

.legal-item .list {
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-item .list li + li {
  margin-top: 10px;
}

form {
  display: grid;
  gap: 10px;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(125, 149, 178, 0.35);
  background: rgba(18, 26, 37, 0.94);
  color: #eef6ff;
  padding: 11px 13px;
  font: inherit;
}

input[type="file"] {
  padding: 12px 13px;
  line-height: 1.35;
}

input[type="file"]::file-selector-button {
  margin-right: 12px;
  border: 1px solid rgba(88, 152, 224, 0.42);
  border-radius: 999px;
  background: rgba(55, 111, 180, 0.18);
  color: #eef6ff;
  padding: 8px 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.admin-service-live-block {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.admin-service-live-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-service-live-message,
.admin-service-help {
  margin: 0;
}

.field-row-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.checkbox-row input {
  width: auto;
  min-height: 0;
  margin: 0;
}

.msg {
  font-size: 0.9rem;
}

.msg.error {
  color: var(--danger);
}

.msg.ok {
  color: var(--ok);
}

.account-danger-panel {
  border-color: rgba(255, 138, 122, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 138, 122, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    var(--panel);
}

.account-danger-btn {
  border-color: rgba(255, 138, 122, 0.32);
  color: #ffd5cf;
}

.account-danger-accordion {
  padding: 0;
}

.account-danger-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 24px;
  font-size: clamp(1rem, 1.05vw, 1.28rem);
  font-weight: 800;
  color: var(--text-primary);
}

.account-danger-summary::-webkit-details-marker {
  display: none;
}

.account-danger-summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--danger);
}

.account-danger-accordion[open] .account-danger-summary::after {
  content: "−";
}

.account-danger-content {
  padding: 0 24px 24px;
}

.account-danger-btn:hover {
  border-color: rgba(255, 138, 122, 0.5);
  background: rgba(255, 138, 122, 0.08);
}

.support-upload {
  display: grid;
  gap: 12px;
}

.support-upload-label,
.support-files-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
}

.support-upload-hint {
  margin: 0;
}

body[data-page="support"] .section {
  padding: 32px 34px 36px;
}

body[data-page="support"] .section-head {
  margin-bottom: 22px;
}

body[data-page="support"] .grid-2 {
  gap: 22px;
}

body[data-page="support"] .panel {
  padding: 28px;
}

body[data-page="support"] .panel h3 {
  margin-bottom: 16px;
}

body[data-page="support"] .list li + li {
  margin-top: 18px;
}

body[data-page="support"] #support-form {
  gap: 16px;
}

body[data-page="support"] textarea[name="message"] {
  min-height: 190px;
}

body[data-page="support"] .notice {
  margin-top: 22px;
  padding: 18px 22px;
}

.support-files-list {
  display: grid;
  gap: 6px;
}

.support-files-items {
  margin: 0;
  padding-left: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.key-box {
  margin-top: 10px;
  border: 1px solid #4f83b3;
  border-radius: 12px;
  background: rgba(10, 23, 38, 0.88);
  color: #d6ebff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 12px;
  word-break: break-all;
}

.keys-table-wrap {
  overflow: auto;
  border: 1px solid rgba(125, 149, 178, 0.26);
  border-radius: 14px;
  background: rgba(16, 24, 35, 0.72);
}

.keys-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.keys-table th,
.keys-table td {
  text-align: left;
  padding: 10px 11px;
  border-bottom: 1px solid rgba(93, 128, 161, 0.22);
  font-size: 0.86rem;
}

.keys-table th {
  color: #d7e8fa;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.45px;
  background: rgba(21, 34, 50, 0.88);
}

.keys-table td {
  color: #b9d0e8;
}

.admin-console {
  display: grid;
  gap: 16px;
}

.admin-gate-card,
.admin-panel-block {
  display: grid;
  gap: 16px;
}

.admin-console-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.admin-console-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 8px 8px 0;
  color: var(--text-tertiary);
  font-size: 0.84rem;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer .links a:hover {
  color: var(--text-primary);
}

.legal-shell {
  display: grid;
  gap: 22px;
}

.legal-hub-grid,
.legal-doc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.legal-hub-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.legal-hub-card,
.legal-doc-card {
  display: grid;
  gap: 14px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 84% 100%, rgba(138, 150, 168, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(18, 23, 33, 0.96), rgba(12, 16, 23, 0.94));
  box-shadow: var(--shadow-md);
  transition: transform 160ms ease, border-color 160ms ease;
}

.legal-doc-card {
  min-height: auto;
}

.legal-hub-card:hover {
  transform: translate3d(0, -2px, 0);
  border-color: rgba(211, 176, 75, 0.34);
}

.legal-card-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(211, 176, 75, 0.26);
  background: rgba(211, 176, 75, 0.08);
  color: var(--accent-soft);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-hub-card h3,
.legal-doc-card h3 {
  margin: 0;
  font-size: clamp(1.34rem, 1.9vw, 1.74rem);
  line-height: 1.16;
}

.legal-hub-card p,
.legal-doc-card p,
.legal-prose p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.72;
}

.legal-arrow {
  margin-top: auto;
  font-weight: 700;
  color: var(--text-primary);
}

.legal-prose {
  display: grid;
  gap: 16px;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--text-secondary);
  line-height: 1.68;
}

.legal-meta {
  display: grid;
  gap: 10px;
}

.legal-meta strong {
  color: var(--text-primary);
}

.legal-backlink {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent-soft);
  font-weight: 700;
}

.burger {
  display: none;
}

@media (max-width: 1120px) {
  .brand-subtitle {
    display: none;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-hero-section .section-head,
  .account-hero-grid,
  .features-2x2,
  .pricing-benefits-grid {
    grid-template-columns: 1fr;
  }

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

  .capabilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-featured {
    grid-column: 1 / -1;
  }

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

  .legal-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-guide-head,
  .download-guide-step-card {
    grid-template-columns: 1fr;
  }

  .download-guide-step-card-step1,
  .download-guide-step-card-step2,
  .download-guide-step-card-step3-single,
  .download-guide-step-card-step4-single,
  .download-guide-step-card-step5-single,
  .premium-activation-card {
    grid-template-columns: 1fr;
  }

  .download-guide-copy .section-intro,
  .download-guide-step-copy p {
    max-width: none;
  }

  .premium-activation-head {
    grid-template-columns: 1fr;
  }

  .download-guide-step-card:nth-child(even) .download-guide-step-copy,
  .download-guide-step-card:nth-child(even) .download-guide-visuals {
    order: initial;
  }
}

@media (max-width: 860px) {
  .site-wrap {
    padding-inline: 14px;
  }

  .topbar {
    top: 10px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 14px;
  }

  .burger {
    display: inline-flex;
  }

  .cta-row {
    grid-column: 1 / -1;
    width: 100%;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .nav-status-link {
    justify-content: space-between;
  }

  .hero,
  .section {
    padding: 20px;
    border-radius: 22px;
  }

  .champion-carousel-shell {
    min-height: 264px;
  }

  .champion-chip {
    width: 114px;
    border-radius: 18px;
  }

  .champion-chip img {
    border-radius: 15px;
  }

  .hero-grid,
  .grid-2,
  .price-table,
  .pricing-tier-hero-grid,
  .download-grid,
  .capabilities-grid,
  .fit-grid,
  .admin-grid,
  .account-hero-grid,
  .features-2x2,
  .field-row,
  .field-row-3 {
    grid-template-columns: 1fr;
  }

  .status-page-copy h2 {
    max-width: none;
    font-size: clamp(2.2rem, 9vw, 3.4rem);
  }

  .status-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-tour-window-shell {
    padding: 12px;
    border-radius: 24px;
  }

  .product-tour-scroll {
    min-height: auto;
  }

  .product-tour-stage {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .product-tour-visual {
    max-width: none;
  }

  .product-tour-window {
    border-radius: 20px;
  }

  .hero-side-grid-compact {
    grid-template-columns: 1fr;
  }

  .pricing-hero-copy {
    gap: 16px;
    padding-top: 0;
  }

  .pricing-matrix-head,
  .pricing-matrix-row {
    grid-template-columns: 1fr;
  }

  .pricing-matrix-intro {
    padding: 0;
  }

  .download-guide-overview,
  .download-guide-visuals.two-up {
    grid-template-columns: 1fr;
  }

  .premium-activation-overview {
    grid-template-columns: 1fr;
  }

  .download-guide-visuals-step2 {
    grid-template-columns: 1fr;
  }

  .download-guide-shot-frame.browser,
  .download-guide-shot-frame.landscape,
  .download-guide-shot-frame.portrait,
  .download-guide-shot-frame-step2-single,
  .download-guide-shot-frame-step3-single,
  .download-guide-shot-frame-step4-single,
  .download-guide-shot-frame-step5-single {
    min-height: auto;
  }

  .premium-activation-shot-frame {
    min-height: auto;
  }

  .download-guide-shot-image-step1,
  .download-guide-shot-image-step2-primary,
  .download-guide-shot-image-step3-single,
  .download-guide-shot-image-step5-single {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    transform: none;
  }

  .premium-activation-shot-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
  }

  .premium-activation-shot-image-settings {
    object-position: center top;
  }

  .legal-hub-grid,
  .legal-doc-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .brand-mark {
    width: 62px;
    height: 62px;
  }

  .brand-wordmark {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .cta-row {
    width: 100%;
  }

  .btn,
  .lang-select {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-proof-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card-topline .kicker {
    white-space: normal;
  }

  .champion-carousel-shell {
    min-height: 226px;
  }

  .champion-chip {
    width: 94px;
    padding: 8px 8px 10px;
    border-radius: 16px;
  }

  .champion-chip span {
    margin-top: 7px;
    font-size: 0.76rem;
  }

  .footer {
    padding-bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  body.motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .product-tour-scroll {
    min-height: auto;
  }

  .product-tour-stage {
    position: relative;
    top: auto;
    min-height: auto;
  }
}
