:root {
  color-scheme: dark;
  --navy: #06111f;
  --navy-2: #0d2034;
  --blue: #1a73ff;
  --blue-dark: #78adff;
  --ink: #f4f8ff;
  --muted: #94a6bc;
  --line: #1c3651;
  --surface: #0a1929;
  --text-strong: var(--ink);
  --text-muted: var(--muted);
  --border: var(--line);
  --page: #06111f;
  --green: #2bd694;
  --coral: #ff7183;
  --amber: #ffb84d;
  --violet: #a48aff;
  --teal: #4ad6d1;
  --shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.public-page {
  min-width: 320px;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 0 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 17, 31, 0.94);
  backdrop-filter: blur(18px);
  transition: box-shadow 160ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
}

.mobile-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  width: 100%;
}

.site-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a,
.text-link {
  position: relative;
  color: #9fb2c9;
  text-decoration: none;
  font-weight: 700;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.text-link:hover {
  color: #fff;
}

.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--surface);
}

.menu-toggle svg {
  width: 23px;
  height: 23px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(18, 101, 237, 0.2);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.button--small {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 14px;
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
  background: rgba(7, 27, 64, 0.48);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.button--secondary:hover {
  border-color: #fff;
  background: rgba(7, 27, 64, 0.76);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100svh - 120px));
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero::after {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 18, 0.82);
  content: "";
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: url("./assets/screenshots/guide.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 84px 0 96px;
}

.hero-content > * {
  max-width: 730px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #89bcff;
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 7.2vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: #eef5ff;
  font-size: 21px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.hero-plan {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 24px;
  color: #c7d7ef;
}

.hero-plan strong {
  color: #fff;
  font-size: 20px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.trust-band div {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  background: #081726;
  color: #c9d7e8;
  font-weight: 800;
}

.trust-band svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.section {
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 96px 0;
  scroll-margin-top: 82px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.pricing-copy h2,
.support-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading > p:last-child,
.pricing-copy > p,
.support-section > div > p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.comparison-section {
  width: 100%;
  max-width: none;
  padding-right: max(5vw, calc((100vw - 1180px) / 2));
  padding-left: max(5vw, calc((100vw - 1180px) / 2));
  background: #071525;
}

.comparison-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 32px;
}

.comparison-intro .section-heading {
  margin-bottom: 0;
}

.comparison-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid #2a4968;
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
}

.comparison-callout svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--blue);
}

.comparison-callout strong,
.comparison-callout span {
  display: block;
}

.comparison-callout span {
  margin-top: 4px;
  color: var(--muted);
}

.player-snapshots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.player-snapshot {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 25, 41, 0.92);
}

.player-snapshot--nerdy {
  border-color: #2d72d8;
  color: #fff;
  background: #0d2748;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.player-snapshot__badge,
.column-pick {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #aacbff;
  background: rgba(26, 115, 255, 0.14);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.player-snapshot__badge {
  min-height: 25px;
  padding: 6px 9px;
}

.player-snapshot--nerdy .player-snapshot__badge {
  color: #dceaff;
  background: rgba(120, 173, 255, 0.18);
}

.player-snapshot h3 {
  margin: 17px 0 7px;
  font-size: 21px;
  line-height: 1.2;
}

.player-snapshot p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.player-snapshot--nerdy p {
  color: #bfd2ee;
}

.player-snapshot > strong {
  margin-top: auto;
  color: #a9c6e8;
  font-size: 13px;
}

.player-snapshot--nerdy > strong {
  color: #90bdff;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  scrollbar-color: #43698f #071522;
}

.comparison-scroll-hint {
  display: none;
}

.comparison-table-wrap:focus-visible {
  outline: 3px solid rgba(18, 101, 237, 0.28);
  outline-offset: 3px;
}

.comparison-table {
  width: 100%;
  min-width: 1080px;
  border-spacing: 0;
  border-collapse: separate;
  table-layout: fixed;
  text-align: left;
}

.comparison-table__feature {
  width: 25%;
}

.comparison-table th,
.comparison-table td {
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.comparison-table tr > :last-child {
  border-right: 0;
}

.comparison-table tbody tr:last-child > * {
  border-bottom: 0;
}

.comparison-table thead th {
  height: 94px;
  color: #dbe7f6;
  background: #0d2034;
  font-size: 15px;
  vertical-align: middle;
}

.comparison-table thead th:not(:first-child) {
  text-align: center;
}

.comparison-table thead .comparison-table__nerdy {
  color: #fff;
  background: #164f9f;
  font-size: 17px;
}

.column-pick {
  width: max-content;
  margin: 0 auto 8px;
  padding: 5px 8px;
  color: #d8e8ff;
  background: rgba(126, 178, 255, 0.2);
  font-size: 9px;
}

.comparison-table .comparison-group th {
  padding: 13px 18px;
  color: #91bfff;
  background: #102744;
  font-size: 12px;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.comparison-group th,
.comparison-group th:first-child {
  position: static;
}

.comparison-group svg {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 7px;
  vertical-align: -3px;
}

.comparison-table tbody th {
  color: #d7e2f1;
  background: #0a1a2b;
}

.comparison-table tbody th strong,
.comparison-table tbody th span,
.comparison-table td strong,
.comparison-table td small {
  display: block;
}

.comparison-table tbody th strong,
.comparison-table td strong {
  line-height: 1.35;
}

.comparison-table tbody th span,
.comparison-table td small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.comparison-table td {
  color: #b9c8da;
  font-size: 14px;
  text-align: center;
}

.comparison-table td.comparison-table__nerdy {
  background: #0d2748;
}

.status {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.status--lead {
  color: #fff;
  background: var(--blue);
}

.status--yes {
  color: #65e9b6;
  background: rgba(43, 214, 148, 0.13);
}

.status--muted {
  color: #9aaabd;
  background: rgba(255, 255, 255, 0.07);
}

.comparison-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
}

.comparison-notes p {
  margin: 0;
}

.comparison-notes a {
  color: var(--blue-dark);
  font-weight: 800;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.feature-grid .feature-card--spotlight {
  border-color: #2d72d8;
  background: #0d2748;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-icon--blue { color: #78adff; background: rgba(26, 115, 255, 0.14); }
.feature-icon--coral { color: var(--coral); background: rgba(255, 113, 131, 0.13); }
.feature-icon--green { color: var(--green); background: rgba(43, 214, 148, 0.13); }
.feature-icon--amber { color: var(--amber); background: rgba(255, 184, 77, 0.13); }
.feature-icon--violet { color: var(--violet); background: rgba(164, 138, 255, 0.14); }
.feature-icon--teal { color: var(--teal); background: rgba(74, 214, 209, 0.13); }

.feature-grid h3 {
  margin: 19px 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
}

.experience-section {
  width: 100%;
  padding-right: max(5vw, calc((100vw - 1180px) / 2));
  padding-left: max(5vw, calc((100vw - 1180px) / 2));
  color: #fff;
  background: var(--navy);
}

.section-heading--light h2 {
  color: #fff;
}

.section-heading--light > p:last-child {
  color: #bdcce3;
}

.experience-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.experience-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid #2b4d7d;
  border-radius: 8px;
  background: #092750;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.23);
}

.experience-gallery .experience-main {
  grid-column: 1 / -1;
}

.experience-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.experience-gallery figcaption {
  padding: 15px 18px;
  color: #dce8f8;
  font-weight: 700;
}

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

.platform-card {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  min-height: 122px;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.platform-logo {
  display: flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 8px;
  background: #eef3fa;
}

.platform-logo--wide {
  padding: 9px;
}

.platform-logo img {
  max-width: 100%;
  max-height: 100%;
}

.platform-card h3,
.install-heading h3 {
  margin: 0;
  font-size: 20px;
}

.platform-card p,
.install-heading p {
  margin: 3px 0 0;
  color: var(--muted);
}

.availability-badge {
  padding: 5px 9px;
  border-radius: 999px;
  color: #ffd28e;
  background: rgba(255, 184, 77, 0.13);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.availability-badge--available {
  color: #65e9b6;
  background: rgba(43, 214, 148, 0.13);
}

.installation-section {
  padding-top: 72px;
}

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

.install-guide {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.install-heading {
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.install-heading img {
  width: 58px;
  height: 42px;
  object-fit: contain;
}

.install-guide ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 24px;
  list-style: none;
}

.install-guide li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.install-guide li:last-child {
  border-bottom: 0;
}

.install-guide li > span,
.account-steps > li > span {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.install-guide li strong {
  display: block;
  margin-bottom: 3px;
}

.install-guide li p {
  margin: 0;
  color: var(--muted);
}

.install-compatibility {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #0d2034;
  font-size: 13px;
}

.install-compatibility svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--blue);
}

.download-fallback {
  margin: 22px 0 0;
  color: var(--muted);
  text-align: center;
}

.download-fallback a {
  color: var(--blue-dark);
  font-weight: 800;
}

.pricing-section {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: 46px;
  padding-right: max(5vw, calc((100vw - 1180px) / 2));
  padding-left: max(5vw, calc((100vw - 1180px) / 2));
  color: #fff;
  background: #071a31;
}

.pricing-copy h2,
.pricing-copy .eyebrow {
  color: #fff;
}

.pricing-copy > p {
  color: #c3d2e8;
}

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

.price-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(147, 177, 219, 0.34);
  border-radius: 8px;
  background: rgba(10, 25, 41, 0.88);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.price-card.featured {
  border-color: rgba(96, 221, 167, 0.6);
  background: #0d2748;
}

.price-card.lifetime {
  border-color: rgba(125, 178, 255, 0.62);
  background: #102c4e;
}

.plan-label {
  margin: 0;
  color: #9cc4ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  color: #fff;
  font-size: 34px;
  line-height: 1.05;
}

.price-card p {
  margin: 0;
  color: #d8e5f6;
  line-height: 1.55;
}

.price-card .annual {
  color: #fff;
  font-weight: 900;
}

.price-card .button {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.badge {
  align-self: flex-start;
  padding: 7px 10px;
  border: 1px solid rgba(96, 221, 167, 0.38);
  border-radius: 999px;
  color: #081e3d;
  background: #60dda7;
  font-size: 12px;
  font-weight: 950;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 24px 0;
}

.price strong {
  font-size: 54px;
  line-height: 1;
}

.price span {
  color: #c3d2e8;
  font-weight: 700;
}

.account-first-note {
  display: flex;
  max-width: 620px;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px !important;
}

.account-first-note svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: #7db2ff;
}

.cancel-note {
  margin-top: 12px !important;
  font-size: 14px !important;
}

.pricing-includes {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid #31517c;
  border-radius: 8px;
  background: #0a1929;
}

.pricing-includes h3 {
  margin: 0 0 16px;
  font-size: 21px;
}

.pricing-includes ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #e9f1fc;
}

.pricing-includes svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: #60dda7;
}

.account-steps-section {
  padding-bottom: 84px;
}

.account-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  list-style: none;
}

.account-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  padding: 28px;
  background: var(--surface);
}

.account-steps strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

.account-steps p {
  margin: 0;
  color: var(--muted);
}

.support-section {
  display: flex;
  width: 100%;
  max-width: none;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-right: max(5vw, calc((100vw - 1180px) / 2));
  padding-left: max(5vw, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a1929;
}

.support-section > div:first-child {
  max-width: 590px;
}

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

.support-section .button--secondary {
  border-color: #2a4968;
  color: var(--ink);
  background: #0d2034;
}

.support-section .button--secondary:hover {
  border-color: var(--blue-dark);
  color: #fff;
}

.content-notice {
  display: flex;
  width: min(1180px, 90vw);
  align-items: flex-start;
  gap: 12px;
  margin: 0 auto;
  padding: 24px 0;
  color: var(--muted);
}

.content-notice svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--blue);
}

.content-notice p {
  margin: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px 48px;
  padding: 34px 5vw;
  color: #b9c7dc;
  background: #06162f;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.site-footer a {
  color: #dce6f5;
  text-decoration: none;
  font-weight: 700;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .site-header {
    padding-right: 3vw;
    padding-left: 3vw;
  }

  .site-nav,
  .header-actions {
    gap: 15px;
  }

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

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

  .pricing-section {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

@media (max-width: 959px) {
  .site-header {
    min-height: 66px;
    padding: 0 5vw;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 18px;
    padding: 18px 5vw 22px;
    border-bottom: 1px solid var(--line);
    background: #071525;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
  }

  .site-header.is-menu-open .mobile-menu {
    display: block;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 20px;
  }

  .site-nav a {
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .header-actions {
    justify-content: space-between;
    margin-top: 16px;
  }

  .hero {
    min-height: calc(100svh - 150px);
  }

  .hero-backdrop { background-position: 60% center; }

  .trust-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .platform-grid,
  .install-grid,
  .pricing-section {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    gap: 36px;
  }

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

  .price-card {
    min-height: 0;
  }

  .account-steps {
    grid-template-columns: 1fr;
  }

  .support-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: calc(100svh - 116px);
  }

  .hero-backdrop { background-position: 54% center; }

  .hero::after { background: rgba(3, 19, 47, 0.86); }

  .hero-content {
    width: 90vw;
    padding: 64px 0 76px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-plan {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .trust-band div {
    min-height: 74px;
    justify-content: flex-start;
    padding: 14px 5vw;
  }

  .trust-band span {
    font-size: 13px;
  }

  .section {
    width: 90vw;
    padding: 68px 0;
  }

  .comparison-section {
    width: 100%;
    padding: 68px 5vw;
  }

  .comparison-callout {
    padding: 17px;
  }

  .player-snapshots {
    grid-template-columns: 1fr;
  }

  .player-snapshot {
    min-height: 0;
  }

  .player-snapshot > strong {
    margin-top: 4px;
  }

  .comparison-table-wrap {
    margin-right: -5vw;
    border-right: 0;
    border-radius: 8px 0 0 8px;
  }

  .comparison-scroll-hint {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
  }

  .comparison-scroll-hint svg {
    width: 17px;
    height: 17px;
    color: var(--blue);
  }

  .comparison-notes {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-heading h2,
  .pricing-copy h2,
  .support-section h2 {
    font-size: 34px;
  }

  .section-heading > p:last-child,
  .pricing-copy > p,
  .support-section > div > p:last-child {
    font-size: 16px;
  }

  .feature-grid,
  .experience-gallery,
  .platform-grid,
  .install-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: 0;
  }

  .experience-section,
  .pricing-section,
  .support-section {
    width: 100%;
    padding: 68px 5vw;
  }

  .experience-gallery .experience-main {
    grid-column: auto;
  }

  .platform-card {
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .platform-logo {
    width: 58px;
    height: 58px;
    padding: 11px;
  }

  .availability-badge {
    grid-column: 2;
    justify-self: start;
  }

  .install-heading {
    padding: 18px;
  }

  .install-guide ol {
    padding: 0 18px;
  }

  .price strong {
    font-size: 46px;
  }

  .pricing-includes,
  .account-steps li {
    padding: 22px;
  }

  .support-actions,
  .support-actions .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 5vw;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: start;
    gap: 12px 22px;
  }

  .site-footer p {
    grid-column: auto;
  }
}

/* Activation code guide */
.activation-guide { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 76px 0 88px; }
.activation-guide__hero { max-width: 760px; padding: 70px 0 42px; }
.activation-guide__hero h1 { margin: 10px 0 20px; color: var(--text-strong); font-size: clamp(3.4rem, 8vw, 6.6rem); line-height: .88; letter-spacing: -.075em; }
.activation-guide__lead { max-width: 680px; margin: 0; color: var(--text-muted); font-size: clamp(1.05rem, 2vw, 1.35rem); line-height: 1.65; }
.activation-guide__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.activation-rule { display: flex; align-items: center; gap: 16px; padding: 22px 24px; border: 1px solid rgba(56, 136, 255, .38); border-radius: 18px; background: #0c2340; }
.activation-rule > svg { width: 28px; height: 28px; flex: 0 0 auto; color: #5da0ff; }
.activation-rule div { display: grid; gap: 3px; }
.activation-rule strong { color: var(--text-strong); font-size: 1.05rem; }
.activation-rule span { color: var(--text-muted); line-height: 1.5; }
.activation-summary { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin: 24px 0 110px; overflow: hidden; border: 1px solid var(--border); border-radius: 18px; background: var(--border); }
.activation-summary article { padding: 26px; background: var(--surface); }
.activation-summary article > span { color: #4f92ff; font-size: .76rem; font-weight: 900; letter-spacing: .14em; }
.activation-summary h2 { margin: 9px 0 7px; color: var(--text-strong); font-size: 1.16rem; }
.activation-summary p { margin: 0; color: var(--text-muted); line-height: 1.55; }
.activation-task--wide { grid-column: 1 / -1; }
.activation-action-choices { display: grid; grid-column: 1 / -1; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; width: 100%; margin: 20px 0 0; }
.activation-action-choices > div { padding: 16px; border: 1px solid var(--border); border-radius: 12px; background: rgba(107, 142, 190, .08); }
.activation-action-choices dt { color: var(--text-strong); font-weight: 900; }
.activation-action-choices dd { margin: 6px 0 0; color: var(--text-muted); font-size: .9rem; line-height: 1.55; }
.activation-section-heading { max-width: 700px; margin-bottom: 34px; }
.activation-tasks { scroll-margin-top: 92px; }
.activation-task-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.activation-task { display: grid; align-content: start; grid-template-columns: 46px 1fr; gap: 0 16px; padding: 28px; border: 1px solid var(--border); border-radius: 20px; background: var(--surface); }
.activation-task__icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 13px; background: rgba(18, 101, 237, .17); color: #60a3ff; }
.activation-task__icon svg { width: 22px; height: 22px; }
.activation-task__label { margin: 1px 0 4px; color: #5598ff; font-size: .73rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.activation-task h3 { margin: 0; color: var(--text-strong); font-size: 1.35rem; }
.activation-task ol { grid-column: 1 / -1; margin: 24px 0 0; padding: 0; list-style: none; counter-reset: steps; }
.activation-task li { position: relative; min-height: 30px; padding: 2px 0 18px 42px; color: var(--text-muted); line-height: 1.55; counter-increment: steps; }
.activation-task li::before { content: counter(steps); position: absolute; top: 0; left: 0; display: grid; width: 27px; height: 27px; place-items: center; border: 1px solid var(--border); border-radius: 50%; color: var(--text-strong); font-size: .78rem; font-weight: 850; }
.activation-task li:not(:last-child)::after { content: ""; position: absolute; top: 31px; bottom: 4px; left: 13px; width: 1px; background: var(--border); }
.activation-task a { color: #67a7ff; font-weight: 800; }
.activation-task__note { grid-column: 1 / -1; display: flex; gap: 10px; margin: 4px 0 0; padding: 13px 14px; border-radius: 12px; background: rgba(110, 140, 180, .09); color: var(--text-muted); font-size: .88rem; line-height: 1.5; }
.activation-task__note svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 2px; }
.activation-task__note--success { background: rgba(33, 188, 126, .1); color: #8fdcbd; }
.activation-task__note--warning { background: rgba(248, 174, 50, .1); color: #efc376; }
.activation-reference { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; margin-top: 100px; }
.activation-reference__block { padding: 30px; border: 1px solid var(--border); border-radius: 20px; background: var(--surface); }
.activation-reference__block h2 { margin: 7px 0 24px; color: var(--text-strong); font-size: 1.55rem; }
.activation-status-list { display: grid; gap: 0; margin: 0; }
.activation-status-list div { display: grid; grid-template-columns: 150px 1fr; gap: 18px; padding: 15px 0; border-top: 1px solid var(--border); }
.activation-status-list dt { display: flex; align-items: center; gap: 10px; color: var(--text-strong); font-weight: 850; }
.activation-status-list dd { margin: 0; color: var(--text-muted); line-height: 1.45; }
.activation-status { width: 8px; height: 8px; border-radius: 50%; background: #7789a5; box-shadow: 0 0 0 5px rgba(119, 137, 165, .1); }
.activation-status--ready { background: #5d9eff; box-shadow: 0 0 0 5px rgba(93, 158, 255, .12); }
.activation-status--prepared { background: #26d69b; box-shadow: 0 0 0 5px rgba(38, 214, 155, .11); }
.activation-status--used { background: #9aa9bd; }
.activation-status--attention { background: #ffb64a; box-shadow: 0 0 0 5px rgba(255, 182, 74, .1); }
.code-comparison { display: grid; gap: 12px; }
.code-comparison article { display: flex; gap: 14px; padding: 17px; border-radius: 14px; background: rgba(107, 142, 190, .08); }
.code-comparison svg { width: 22px; height: 22px; flex: 0 0 auto; color: #62a4ff; }
.code-comparison h3 { margin: 0 0 5px; color: var(--text-strong); font-size: 1rem; }
.code-comparison p { margin: 0; color: var(--text-muted); font-size: .92rem; line-height: 1.5; }
.activation-trial { display: flex; gap: 22px; margin-top: 18px; padding: 32px; border: 1px solid rgba(112, 79, 214, .34); border-radius: 20px; background: #111b35; }
.activation-trial > svg { width: 30px; height: 30px; flex: 0 0 auto; color: #ad95ff; }
.activation-trial h2 { margin: 7px 0 8px; color: var(--text-strong); font-size: 1.4rem; }
.activation-trial p:last-child { max-width: 780px; margin: 0; color: var(--text-muted); line-height: 1.6; }
.activation-help { max-width: 720px; margin: 110px auto 0; text-align: center; }
.activation-help h2 { margin: 8px 0 12px; color: var(--text-strong); font-size: clamp(2rem, 5vw, 3.3rem); }
.activation-help > p:last-of-type { color: var(--text-muted); line-height: 1.6; }
.activation-help .activation-guide__actions { justify-content: center; }

@media (max-width: 800px) {
  .activation-guide { width: min(100% - 28px, 1180px); padding-top: 48px; }
  .activation-guide__hero { padding-top: 50px; }
  .activation-summary, .activation-task-grid, .activation-reference, .activation-action-choices { grid-template-columns: 1fr; }
  .activation-summary { margin-bottom: 76px; }
  .activation-reference { margin-top: 76px; }
}

@media (max-width: 520px) {
  .activation-guide__actions, .activation-guide__actions .button { width: 100%; }
  .activation-guide__actions .button { justify-content: center; }
  .activation-rule { align-items: flex-start; padding: 18px; }
  .activation-task, .activation-reference__block { padding: 21px; }
  .activation-status-list div { grid-template-columns: 1fr; gap: 6px; }
  .activation-trial { padding: 23px; }
}

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

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