:root {
  color-scheme: light;
  --navy: #071b40;
  --navy-2: #0c2e61;
  --blue: #1265ed;
  --blue-dark: #084cc3;
  --ink: #0c1d3f;
  --muted: #5d6c88;
  --line: #d9e1ee;
  --surface: #ffffff;
  --page: #f4f7fb;
  --green: #15855b;
  --coral: #df5b4f;
  --amber: #b97407;
  --violet: #7048c8;
  --teal: #087f86;
  --shadow: 0 16px 40px rgba(7, 27, 64, 0.09);
  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 rgba(217, 225, 238, 0.78);
  background: rgba(255, 255, 255, 0.96);
  transition: box-shadow 160ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  box-shadow: 0 10px 30px rgba(7, 27, 64, 0.1);
}

.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: #334462;
  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: var(--blue-dark);
}

.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: #05254a;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: rgba(3, 19, 47, 0.8);
  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: #fff;
  color: #293b5b;
  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: #edf3fb;
}

.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 #bed2f3;
  border-radius: 8px;
  color: #17345f;
  background: #f8fbff;
}

.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 #ced9e9;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.player-snapshot--nerdy {
  border-color: #174f9f;
  color: #fff;
  background: #071b40;
  box-shadow: 0 16px 32px rgba(7, 27, 64, 0.17);
}

.player-snapshot__badge,
.column-pick {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #31547e;
  background: #e7eef8;
  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(137, 188, 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: #24466f;
  font-size: 13px;
}

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

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid #cbd7e7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(7, 27, 64, 0.09);
  scrollbar-color: #91a8c6 #edf2f8;
}

.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 #e0e7f1;
  border-bottom: 1px solid #e0e7f1;
  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: #1b3356;
  background: #f8fafc;
  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: #0c2e61;
  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: #26466e;
  background: #eaf0f8;
  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: #203c61;
  background: #fbfcfe;
}

.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: #71809a;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

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

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

.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: #0a6644;
  background: #dff4e9;
}

.status--muted {
  color: #65738a;
  background: #edf1f6;
}

.comparison-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 20px;
  color: #697993;
  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 10px 26px rgba(7, 27, 64, 0.05);
}

.feature-grid .feature-card--spotlight {
  border-color: #96bcec;
  background: #eef6ff;
  box-shadow: 0 12px 30px rgba(18, 101, 237, 0.1);
}

.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: var(--blue); background: #e7f0ff; }
.feature-icon--coral { color: var(--coral); background: #ffebe8; }
.feature-icon--green { color: var(--green); background: #e3f5ed; }
.feature-icon--amber { color: var(--amber); background: #fff2d4; }
.feature-icon--violet { color: var(--violet); background: #f0eaff; }
.feature-icon--teal { color: var(--teal); background: #dff5f3; }

.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: #fff;
}

.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: #765315;
  background: #fff2cf;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.availability-badge--available {
  color: #0e6847;
  background: #dff4e9;
}

.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: #fff;
  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 #e8edf5;
}

.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 #e8edf5;
  color: var(--muted);
  background: #f7f9fc;
  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: #0b2b59;
}

.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(16, 36, 69, 0.86);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.price-card.featured {
  border-color: rgba(96, 221, 167, 0.6);
  background: rgba(17, 48, 88, 0.96);
}

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

.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: #102445;
}

.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: #fff;
}

.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));
  background: #e7edf7;
}

.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: #aab9cf;
  color: var(--ink);
  background: #fff;
}

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

.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: #fff;
    box-shadow: 0 18px 30px rgba(7, 27, 64, 0.12);
  }

  .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 #e8edf4;
  }

  .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: #526987;
    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;
  }
}

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

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