:root {
  --bg: #05070d;
  --bg-2: #0a1020;
  --ink: #f7fbff;
  --muted: #93a3bb;
  --card: rgba(14, 21, 36, 0.82);
  --card-solid: #101827;
  --line: rgba(255, 255, 255, 0.11);
  --blue: #1f8bff;
  --cyan: #63e1ff;
  --mint: #35e7a7;
  --orange: #ffb35c;
  --violet: #7866ff;
  --soft-blue: rgba(31, 139, 255, 0.13);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: black;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

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

.header,
main,
.footer {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(5, 7, 13, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
}

.logo span {
    width: 38px;
    height: 38px;
    background: url(assets/icon.png);
    background-color: #00000000;
    background-repeat: no-repeat;
    overflow: hidden;
    background-size: contain;
    background-position: center;
}

.nav {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.nav a:hover {
  color: var(--ink);
}

.burger {
  display: none;
}

.nav-button,
.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  gap: 7px;
}

.nav-button,
.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.primary {
  color: #03101f;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 50px rgba(31, 139, 255, 0.34);
}

.primary:hover,
.secondary:hover,
.nav-button:hover {
  transform: translateY(-2px);
  border-color: rgba(35, 213, 255, 0.48);
}

.full {
  width: 100%;
}

.cover {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 56px;
  align-items: center;
  min-height: 760px;
  padding: 74px 0 86px;
}

.pretitle,
.section-label {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 1px solid rgba(35, 213, 255, 0.36);
  border-radius: 999px;
  background: rgba(35, 213, 255, 0.1);
  color: #aef3ff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.subtitle {
  max-width: 650px;
  color: var(--muted);
  font-size: 20px;
}

.subtitle.short {
  max-width: 560px;
  margin-top: 18px;
  font-weight: 750;
}

.deal-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  width: min(100%, 650px);
  margin: 28px 0 0;
  padding: 22px;
  border: 1px solid rgba(35, 213, 255, 0.34);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 0%, rgba(35, 213, 255, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(10, 16, 32, 0.84);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28), 0 0 52px rgba(31, 139, 255, 0.16);
}

.deal-card div {
  display: grid;
  gap: 4px;
}

.deal-card div:last-child {
  text-align: right;
}

.deal-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.deal-card del {
  color: #7d8aa0;
  font-size: 34px;
  font-weight: 950;
}

.deal-card strong {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--cyan);
  font-size: clamp(58px, 7vw, 92px);
  line-height: 0.9;
  white-space: nowrap;
}

.deal-card strong small {
    margin-bottom: 8px;
    padding: 6px 9px;
    padding-top: 0;
    border-radius: 999px;
    background: rgba(35, 213, 255, 0.12);
    color: var(--ink);
    font-size: 22px;
    line-height: 1;
}

.deal-card b {
  color: var(--ink);
  font-size: 42px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.access-card {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(10, 16, 32, 0.84);
  box-shadow: var(--shadow), 0 0 90px rgba(31, 139, 255, 0.2);
  transform: rotate(1.5deg);
}

.access-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(35, 213, 255, 0.42), transparent 38%, rgba(120, 102, 255, 0.34));
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 14px;
}

.card-header div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.online {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(53, 231, 167, 0.14), 0 0 22px rgba(53, 231, 167, 0.9);
}

.date {
  color: var(--muted);
  font-weight: 800;
}

.hero-image {
  width: 100%;
  height: 278px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: url(assets/hero.png);
  background-position: center;
  
  background-size: cover;
}

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

.server-stack div,
.device-list div,
.flow div,
.strip div,
.questions details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.server-stack div {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 10px;
  padding: 14px;
  border-radius: 18px;
}

.server-stack span {
  grid-row: span 2;
  font-size: 25px;
}

.server-stack small {
  color: var(--muted);
  font-weight: 750;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 110px;
}

.strip div {
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(14, 21, 36, 0.82);
}

.strip strong,
.strip span {
  display: block;
}

.strip strong {
  font-size: 30px;
}

.strip span {
  color: var(--muted);
  font-weight: 750;
}

.story,
.device-section,
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 100px 0;
}

.story-text p,
.device-panel p,
.plan-grid p,
.questions p,
.final p,
.footer p {
  color: var(--muted);
  font-size: 17px;
}

.flow {
  display: grid;
  gap: 14px;
}

.flow div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
}

.flow b {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #03101f;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 12px 34px rgba(31, 139, 255, 0.25);
}

.flow span {
  font-size: 19px;
  font-weight: 900;
}

.device-section {
  align-items: stretch;
}

.device-panel {
  padding: 42px;
  border: 1px solid rgba(35, 213, 255, 0.22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 213, 255, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(16, 24, 39, 0.96), rgba(8, 13, 24, 0.96));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.device-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.device-list div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
  padding: 22px;
  border-radius: 28px;
}

.device-list span {
  font-size: 34px;
}

.device-list b {
  font-size: 22px;
}

.device-list small {
  color: var(--muted);
  font-weight: 850;
}

.plans {
  padding: 104px 0;
}

.plans-head {
  max-width: 720px;
  margin-bottom: 32px;
}

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

.plan-grid article {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(78px, auto) auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    var(--card-solid);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.plan-grid article > p:not(.price) {
  min-height: 0;
}

.plan-grid article .full {
  align-self: end;
}

.plan-grid .best,
.plan-grid .promo {
  border-color: rgba(35, 213, 255, 0.38);
  background:
    radial-gradient(circle at 85% 10%, rgba(35, 213, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(15, 29, 52, 0.98), rgba(10, 18, 32, 0.98));
  box-shadow: 0 28px 90px rgba(31, 139, 255, 0.18);
}

.badge {
  position: absolute;
  top: 30px;
  right: 30px;
  display: inline-flex;
  margin-bottom: 0;
  padding: 7px 11px;
  border: 1px solid rgba(255, 179, 92, 0.35);
  border-radius: 999px;
  background: rgba(255, 179, 92, 0.12);
  color: #ffd5a7;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.price {
  margin-bottom: 18px;
  color: var(--ink) !important;
  font-size: 46px !important;
  font-weight: 950;
}

.price small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
}

.faq {
  padding-bottom: 80px;
}

.questions {
  display: grid;
  gap: 12px;
}

.questions details {
  padding: 22px 24px;
  border-radius: 22px;
}

.questions summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 950;
}

.questions p {
  margin: 12px 0 0;
}

.final {
  margin: 40px 0 110px;
  padding: 54px;
  border: 1px solid rgba(35, 213, 255, 0.32);
  border-radius: 38px;
  background:
    radial-gradient(circle at 85% 18%, rgba(53, 231, 167, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(15, 29, 52, 0.96), rgba(8, 13, 24, 0.96));
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.32);
}

.final h2 {
  max-width: 760px;
}

.final p {
  max-width: 620px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(1, minmax(180px, max-content));
  justify-content: flex-end;
  gap: 14px 24px;
  color: var(--muted);
  font-weight: 750;
}

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

.footer small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.legal-main {
  padding: 64px 0 96px;
}

.legal-hero {
  max-width: 860px;
  margin-bottom: 34px;
}

.legal-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  overflow-wrap: anywhere;
  word-break: normal;
}

.legal-card {
  display: grid;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(35, 213, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    var(--card-solid);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

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

.legal-card h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 17px;
}

.legal-card p,
.legal-card ul {
  margin: 0;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.legal-card a {
  color: var(--cyan);
}

.steps-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.steps-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.steps-list li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #03101f;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 950;
  box-shadow: 0 12px 34px rgba(31, 139, 255, 0.25);
}

.steps-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 18px;
}

.instruction-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.instruction-page {
  padding: 64px 0 100px;
}

.instruction-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 44px;
  align-items: center;
  padding: 62px 0 54px;
}

.instruction-hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.94;
}

.instruction-hero .subtitle {
  max-width: 720px;
}

.instruction-visual {
  position: relative;
  min-height: 360px;
  padding: 22px;
  border: 1px solid rgba(35, 213, 255, 0.25);
  border-radius: 34px;
  background:
    radial-gradient(circle at 70% 0%, rgba(99, 225, 255, 0.24), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(10, 16, 32, 0.86);
  box-shadow: var(--shadow), 0 0 80px rgba(31, 139, 255, 0.18);
}

.device-frame {
  display: grid;
  gap: 14px;
  height: 100%;
  min-height: 310px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(5, 10, 22, 0.96), rgba(10, 16, 32, 0.94));
}

.device-frame.wide {
  border-radius: 24px;
}

.device-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.connect-circle {
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  margin: 8px auto;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(99, 225, 255, 0.22), transparent 58%),
    linear-gradient(135deg, var(--cyan), var(--blue));
  color: #03101f;
  font-size: 42px;
  box-shadow: 0 0 65px rgba(31, 139, 255, 0.34);
}

.server-preview {
  display: grid;
  gap: 10px;
}

.server-preview div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.server-preview b,
.server-preview small {
  display: block;
}

.server-preview small {
  color: var(--muted);
}

.quick-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 48px;
}

.quick-panel div,
.install-card,
.guide-shot,
.seo-copy,
.related-links {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(14, 21, 36, 0.82);
}

.quick-panel div {
  padding: 22px;
  border-radius: 22px;
}

.quick-panel span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.quick-panel b {
  display: block;
  margin-top: 6px;
  font-size: 24px;
}

.instruction-section {
  display: grid;
  gap: 22px;
  padding: 58px 0;
}

.instruction-section.two-col {
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.install-card {
  padding: 30px;
  border-radius: 30px;
}

.install-card p,
.seo-copy p,
.related-links p {
  color: var(--muted);
  font-size: 17px;
}

.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

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

.guide-shot {
  min-height: 310px;
  padding: 16px;
  border-radius: 28px;
}

.shot-phone,
.shot-tv,
.shot-desktop {
  display: grid;
  align-content: start;
  gap: 12px;
  height: 100%;
  padding: 16px;
  border-radius: 22px;
  background: #060b15;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.shot-tv {
  border-radius: 18px;
  aspect-ratio: 16 / 10;
}

.shot-desktop {
  aspect-ratio: 16 / 11;
}

.shot-bar {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.shot-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.shot-row.active {
  outline: 2px solid rgba(99, 225, 255, 0.52);
  background: rgba(31, 139, 255, 0.16);
}

.shot-plus {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 18px auto;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #03101f;
  font-size: 38px;
  font-weight: 950;
}

.shot-caption {
  margin: 14px 4px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.promo-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 58px 0;
  padding: 34px;
  border: 1px solid rgba(35, 213, 255, 0.32);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 18%, rgba(53, 231, 167, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(15, 29, 52, 0.96), rgba(8, 13, 24, 0.96));
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.32);
}

.promo-price {
  min-width: 220px;
  text-align: right;
}

.promo-price strong {
  display: block;
  color: var(--cyan);
  font-size: 58px;
  line-height: 1;
}

.promo-price span {
  color: var(--muted);
  font-weight: 900;
}

.seo-copy,
.related-links {
  padding: 28px;
  border-radius: 28px;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.related-links h2 {
  grid-column: 1 / -1;
}

.related-links a {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 900;
}

.onboarding {
  display: grid;
  gap: 28px;
  padding: 32px 0 72px;
}

.onboarding-step {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03)),
    rgba(14, 21, 36, 0.52);
}

.step-copy {
  display: grid;
  gap: 14px;
  align-content: center;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(35, 213, 255, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 70% 0%, rgba(99, 225, 255, 0.22), transparent 44%),
    rgba(255, 255, 255, 0.055);
  font-size: 34px;
  box-shadow: 0 18px 54px rgba(31, 139, 255, 0.14);
}

.step-copy h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 46px);
}

.step-copy p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.step-action {
  display: flex;
  justify-content: flex-end;
  min-width: 210px;
}

.instruction-art,
.step-image {
  min-height: 420px;
  border: 0;
  border-radius: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.instruction-art.android-hero {
  background-image: url("/assets/instructions/android-hero.png");
}

.step-image.android-step-1 {
  background-image: url("/assets/instructions/android-step-1.png");
}

.step-image.android-step-2 {
  background-image: url("/assets/instructions/android-step-2.png");
}

.step-image.android-step-3 {
  background-image: url("/assets/instructions/android-step-3.png");
}

.step-image.android-step-4 {
  background-image: url("/assets/instructions/android-step-4.png");
}

.phone-screen {
  display: grid;
  gap: 14px;
  max-width: 310px;
  min-height: 382px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(10, 17, 34, 0.98), rgba(8, 10, 20, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 22px 70px rgba(0, 0, 0, 0.28);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.bot-card,
.app-tile,
.server-tile {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.bot-card strong,
.app-tile strong,
.server-tile strong {
  display: block;
}

.bot-card small,
.app-tile small,
.server-tile small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 750;
}

.fake-button {
  display: inline-flex;
  justify-content: center;
  min-height: 42px;
  margin-top: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  color: #03101f;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 950;
}

.happ-plus {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 22px auto 10px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #03101f;
  font-size: 42px;
  font-weight: 950;
}

.connect-ready {
  display: grid;
  place-items: center;
  width: 136px;
  height: 136px;
  margin: 18px auto;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(99, 225, 255, 0.24), transparent 58%),
    linear-gradient(135deg, var(--cyan), var(--blue));
  color: #03101f;
  font-size: 44px;
  box-shadow: 0 0 65px rgba(31, 139, 255, 0.34);
}

.done-card {
  margin: 30px 0 72px;
  padding: 44px;
  border: 1px solid rgba(35, 213, 255, 0.32);
  border-radius: 38px;
  background:
    radial-gradient(circle at 85% 18%, rgba(53, 231, 167, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(15, 29, 52, 0.96), rgba(8, 13, 24, 0.96));
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.32);
}

.instruction-faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 32px;
  align-items: start;
  padding: 56px 0 92px;
}

.android-guide {
  padding: 0 0 92px;
}

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 48px;
  align-items: center;
  height: 572px;
  padding: 0px 0 42px;
}

.guide-hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.96;
}

.guide-hero h1 span {
  color: var(--blue);
}

.guide-hero-visual {
  position: relative;
  min-height: 410px;
  --hero-inset: -2% -10% -4% -6%;
  --hero-position: center;
  --hero-size: contain;
}

.guide-hero-visual::before {
  content: "";
  position: absolute;
  inset: var(--hero-inset);
  border-radius: 42px;
  background: url("/assets/instructions/android-hero.png") var(--hero-position) / var(--hero-size) no-repeat;
  filter: drop-shadow(0 34px 70px rgba(31, 139, 255, 0.2));
}

.guide-hero-visual.android-hero::before {
  background-image: url("/assets/instructions/android-hero.png");
}

.guide-hero-visual.ios-hero::before {
  background-image: url("/assets/instructions/ios-hero.png");
}

.guide-hero-visual.windows-hero::before {
  background-image: url("/assets/instructions/windows-hero.png");
}

.guide-hero-visual.macos-hero::before {
  background-image: url("/assets/instructions/macos-hero.png");
}

.guide-hero-visual.android-tv-hero::before {
  background-image: url("/assets/instructions/android-tv-hero.png");
}

.guide-hero-visual.apple-tv-hero::before {
  background-image: url("/assets/instructions/apple-tv-hero.png");
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 720px;
  margin-top: 28px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.hero-features div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 74px;
  padding: 12px;
  border-radius: 16px;
}

.hero-features span {
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 24px;
}

.hero-features b,
.hero-features small {
  display: block;
}

.hero-features small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.guide-steps {
  display: grid;
  gap: 12px;
  margin: 22px 0 20px;
}

.guide-step-card {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 58px minmax(260px, 420px);
  gap: 22px;
  align-items: start;
  height: 250px;
  padding: 24px 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 0%, rgba(31, 139, 255, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.028)),
    rgba(8, 14, 26, 0.86);
}

.guide-step-number {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 16px;
  color: #ebebeb;
  background: linear-gradient(135deg, #55dfff, #146dff);
  font-size: 32px;
  font-weight: 950;
  box-shadow: 0 22px 54px rgba(31, 139, 255, 0.28);
}

.guide-step-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.08;
}

.guide-step-copy p {
  max-width: 420px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 18px;
}

.guide-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  padding-left: 2px;
  margin-top: 77px;
}

.guide-arrow svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.guide-phone-wrap {
  min-height: var(--shot-wrap-height, 190px);
  overflow: hidden;
  --shot-image-height: 546px;
  --shot-position: center bottom;
  --shot-size: contain;
  --shot-x: 0;
  --shot-y: 0;
  --shot-scale: 1;
}

.guide-image {
  width: 100%;
  min-height: var(--shot-image-height);
  background-repeat: no-repeat;
  background-position: var(--shot-position);
  background-size: var(--shot-size);
  transform: translate(var(--shot-x), var(--shot-y)) scale(var(--shot-scale));
  transform-origin: center bottom;
}

.guide-image.android-subscription {
  background-image: url("/assets/instructions/android-subscription.png");
}

.guide-image.android-install {
  background-image: url("/assets/instructions/android-install.png");
}

.guide-image.android-add-subscription {
  background-image: url("/assets/instructions/android-add-subscription.png");
}

.guide-image.android-server {
  background-image: url("/assets/instructions/android-server.png");
}

.guide-image.android-connected {
  background-image: url("/assets/instructions/android-connected.png");
}

.guide-image.ios-subscription {
  background-image: url("/assets/instructions/ios-subscription.png");
}

.guide-image.ios-install {
  background-image: url("/assets/instructions/ios-install.png");
}

.guide-image.ios-add-subscription {
  background-image: url("/assets/instructions/ios-add-subscription.png");
}

.guide-image.ios-server {
  background-image: url("/assets/instructions/ios-server.png");
}

.guide-image.windows-subscription {
  background-image: url("/assets/instructions/windows-subscription.png");
}

.guide-image.windows-install {
  background-image: url("/assets/instructions/windows-install.png");
}

.guide-image.windows-add-subscription {
  background-image: url("/assets/instructions/windows-add-subscription.png");
}

.guide-image.windows-server {
  background-image: url("/assets/instructions/windows-server.png");
}

.guide-image.macos-subscription {
  background-image: url("/assets/instructions/macos-subscription.png");
}

.guide-image.macos-install {
  background-image: url("/assets/instructions/macos-install.png");
}

.guide-image.macos-add-subscription {
  background-image: url("/assets/instructions/macos-add-subscription.png");
}

.guide-image.macos-server {
  background-image: url("/assets/instructions/macos-server.png");
}

.guide-image.android-tv-subscription {
  background-image: url("/assets/instructions/android-tv-subscription.png");
}

.guide-image.android-tv-install {
  background-image: url("/assets/instructions/android-tv-install.png");
}

.guide-image.android-tv-add-subscription {
  background-image: url("/assets/instructions/android-tv-add-subscription.png");
}

.guide-image.android-tv-server {
  background-image: url("/assets/instructions/android-tv-server.png");
}

.guide-image.apple-tv-subscription {
  background-image: url("/assets/instructions/apple-tv-subscription.png");
}

.guide-image.apple-tv-install {
  background-image: url("/assets/instructions/apple-tv-install.png");
}

.guide-image.apple-tv-add-subscription {
  background-image: url("/assets/instructions/apple-tv-add-subscription.png");
}

.guide-image.apple-tv-server {
  background-image: url("/assets/instructions/apple-tv-server.png");
}

/* Per-instruction tuning.
   Change these variables when screenshots have different proportions.
   Available variables:
   --hero-inset, --hero-position, --hero-size
   --shot-wrap-height, --shot-image-height, --shot-position, --shot-size, --shot-x, --shot-y, --shot-scale
*/
.instruction-android .guide-hero-visual {
}

.instruction-android .shot-subscription {
}

.instruction-android .shot-install {
}

.instruction-android .shot-add-subscription {
}

.instruction-android .shot-server {
}

.instruction-ios .guide-hero-visual {
}


.instruction-ios .shot-install,  .instruction-ios .shot-subscription, .instruction-ios .shot-add-subscription, .instruction-ios .shot-server{
  --shot-image-height: 442px;
}





.instruction-windows .guide-hero-visual {
    --hero-inset: -2% -10% -4% 0%;
}

.instruction-windows .guide-hero-visual::before {
      width: 461px;
}

.instruction-windows .shot-subscription, .instruction-windows .shot-install, .instruction-windows .shot-add-subscription, .instruction-windows .shot-server {
  --shot-image-height: 209px;
}





.instruction-macos .guide-hero-visual {
    --hero-inset: -2% -10% -4% 0%;
}

.instruction-macos .guide-hero-visual::before {
      width: 461px;
}

.instruction-macos .shot-subscription, .instruction-macos .shot-install, .instruction-macos .shot-add-subscription, .instruction-macos .shot-server {
  --shot-image-height: 209px;
}




.instruction-android-tv .guide-hero-visual {
    --hero-inset: -2% -10% -4% 0%;
}

.instruction-android-tv .guide-hero-visual::before {
      width: 461px;
}

.instruction-android-tv .shot-subscription{
  --shot-image-height: 442px;
}
 .instruction-android-tv .shot-install, .instruction-android-tv .shot-server , .instruction-android-tv .shot-add-subscription{
  --shot-image-height: 209px;
}



.instruction-apple-tv .guide-hero-visual {
    --hero-inset: -2% -10% -4% 0%;
}

.instruction-apple-tv .guide-hero-visual::before {
      width: 461px;
}

.instruction-apple-tv .shot-subscription{
  --shot-image-height: 442px;
}
 .instruction-apple-tv .shot-install, .instruction-apple-tv .shot-server , .instruction-apple-tv .shot-add-subscription{
  --shot-image-height: 209px;
}


.icon-svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: currentColor;
}

.download-icon {
  color: #63e1ff;
  filter: drop-shadow(0 0 10px rgba(99, 225, 255, 0.28));
}

.guide-phone {
  width: min(100%, 280px);
  height: 330px;
  margin: 0 auto -150px;
  padding: 14px;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-radius: 36px;
  background:
    linear-gradient(180deg, #111827, #050812);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

.guide-phone-inner {
  height: 100%;
  padding: 16px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(67, 56, 202, 0.28), transparent 44%),
    #090f1d;
}

.guide-phone-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.mini-bot-message,
.mini-app-card,
.mini-server {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.mini-bot-message b,
.mini-app-card b,
.mini-server b {
  display: block;
  font-size: 14px;
}

.mini-bot-message small,
.mini-app-card small,
.mini-server small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.mini-connect {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 18px auto 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  box-shadow: 0 0 52px rgba(31, 139, 255, 0.3);
  font-size: 34px;
}

.guide-cta {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 310px;
  gap: 26px;
  align-items: center;
  margin: 16px 0;
  padding: 30px 38px;
  border: 1px solid rgba(35, 213, 255, 0.22);
  border-radius: 26px;
  background:
    radial-gradient(circle at 0% 0%, rgba(99, 225, 255, 0.13), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.028)),
    rgba(8, 14, 26, 0.86);
}

.guide-offer {
  position: relative;
  overflow: hidden;
  margin-top: 26px;
  border-color: rgba(99, 225, 255, 0.36);
  background:
    radial-gradient(circle at 92% 10%, rgba(31, 139, 255, 0.3), transparent 30%),
    radial-gradient(circle at 0% 0%, rgba(99, 225, 255, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(18, 30, 48, 0.96), rgba(7, 11, 21, 0.94));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32), 0 0 70px rgba(31, 139, 255, 0.16);
}

.guide-offer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 58%, rgba(99, 225, 255, 0.09) 58% 59%, transparent 59%);
}

.guide-cta .logo-mark {
  width: 78px;
  height: 78px;
  background: url("/assets/icon.png") center / contain no-repeat;
}

.guide-cta h2 {
  margin-bottom: 6px;
  font-size: clamp(28px, 4vw, 40px);
}

.guide-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.guide-offer-copy {
  position: relative;
  z-index: 1;
}

.guide-offer .section-label {
  margin-bottom: 12px;
}

.guide-offer-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.guide-offer-points div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.guide-offer-points b,
.guide-offer-points span {
  display: block;
}

.guide-offer-points b {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.guide-offer-points span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.guide-related-block {
  margin-top: 62px;
}

.guide-related-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
  flex-direction: column;
}

.guide-related-head .section-label {
  margin: 0;
}

.guide-related-head h2 {
    max-width: 620px;
    margin: 0;
    text-align: LEFT;
    font-size: clamp(26px, 3.5vw, 40px);
    margin-bottom: 20px;
}

.guide-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.guide-related a {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 100px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.028)),
    rgba(10, 16, 32, 0.78);
  color: var(--muted);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.guide-related a::after {
  content: "›";
  position: absolute;
  right: 18px;
  top: 18px;
  color: rgba(99, 225, 255, 0.78);
  font-size: 28px;
  line-height: 1;
}

.guide-related a:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 225, 255, 0.35);
  background:
    radial-gradient(circle at 100% 0%, rgba(99, 225, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(10, 16, 32, 0.88);
}

.guide-related b {
  color: var(--ink);
  font-size: 18px;
}

.guide-related small {
  max-width: 190px;
  color: var(--muted);
  font-weight: 750;
}

.guide-related a.active {
  color: var(--cyan);
  border-color: rgba(99, 225, 255, 0.44);
  background:
    radial-gradient(circle at 100% 0%, rgba(99, 225, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(17, 36, 63, 0.96), rgba(8, 16, 30, 0.94));
  box-shadow: 0 22px 70px rgba(31, 139, 255, 0.16);
}


@media (max-width: 980px) {
  .header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .cover,
  .story,
  .device-section,
  .faq,
  .instruction-hero,
  .instruction-section.two-col,
  .promo-band,
  .onboarding-step,
  .instruction-faq,
  .guide-hero,
  .guide-cta {
    grid-template-columns: 1fr;
  }

  .cover {
    min-height: auto;
    padding-top: 52px;
  }

  .access-card {
    transform: none;
  }

  .deal-card {
    grid-template-columns: 1fr;
  }

  .deal-card div:last-child {
    text-align: left;
  }

  .strip,
  .plan-grid,
  .quick-panel,
  .shot-grid,
  .related-links,
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-step-card {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .guide-arrow,
  .guide-phone-wrap {
    display: none;
  }

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

  .guide-related-head {
    display: grid;
    align-items: start;
  }

  .guide-related-head h2 {
    text-align: left;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .header,
  main,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .header {
    top: 8px;
    margin-top: 8px;
  }

  .nav-button {
    display: none;
  }

  .header {
    align-items: center;
  }

  .burger {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    cursor: pointer;
  }

  .burger-lines {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 20px;
    height: 20px;
  }

  .burger-lines span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    display: block;
  }

  .burger-cross {
    position: relative;
    display: none;
    width: 20px;
    height: 20px;
  }

  .burger-cross span {
    position: absolute;
    left: 0;
    top: 9px;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    display: block;
  }

  .burger-cross span:first-child {
    transform: rotate(45deg);
  }

  .burger-cross span:last-child {
    transform: rotate(-45deg);
  }

  .nav {
    display: none;
    order: 4;
    width: 100%;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035)),
      rgba(10, 16, 32, 0.96);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  }

  .nav a {
        display: flex;
        align-items: center;
        min-height: 44px;
        border-radius: 12px;
        color: #f6fafe;
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .header.nav-open .nav {
    display: grid;
    gap: 6px;
  }

  .header.nav-open .burger-lines {
    display: none;
  }

  .header.nav-open .burger-cross {
    display: block;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

  .actions,
  .primary,
  .secondary {
    width: 100%;
  }

  .access-card {
    border-radius: 24px;
  }

  .deal-card {
    padding: 18px;
    border-radius: 22px;
  }

  .deal-card strong {
    font-size: 60px;
  }

  .strip,
  .device-list,
  .plan-grid,
  .quick-panel,
  .shot-grid,
  .related-links,
  .hero-features {
    grid-template-columns: 1fr;
  }

  .guide-hero {
      min-height: auto;
      gap: 48px;
      padding: 26px 0 34px;
      height: max-content;
  }

  .guide-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 0.96;
  }

  .guide-hero .subtitle {
    font-size: 17px;
  }

  .guide-hero-visual {
    min-height: 300px;
    margin-top: -6px;
    
  }

  .guide-hero-visual::before {
    inset: -4% -14% -6%;
  }

  .guide-step-card {
    grid-template-columns: 1fr;
    gap: 16px;
    height: auto;
    min-height: 0;
    padding: 20px;
    border-radius: 22px;
  }

  .guide-step-copy h2 {
    font-size: 25px;
  }

  .guide-step-copy p {
    max-width: none;
    margin-bottom: 14px;
    font-size: 16px;
  }

  .guide-step-card .guide-phone-wrap {
      display: block;
      position: relative;
      height: var(--shot-mobile-wrap-height, 386px);
      margin: 0 -4px -6px;
      border-radius: 18px;
      background-color: rgb(255 255 255 / 0%);
      overflow: hidden;
      margin-top: 15px;
  }

  .guide-step-card .guide-image {
      min-height: var(--shot-mobile-image-height, 824px);
      margin: var(--shot-mobile-margin, 0);
      background-position: var(--shot-mobile-position, top center);
      background-size: var(--shot-mobile-size, contain);
  }

  .guide-step-number {
    width: 58px;
    height: 58px;
    font-size: 26px;
  }

  .guide-cta {
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
  }

  .guide-cta .logo-mark {
    width: 64px;
    height: 64px;
  }

  .guide-cta h2 {
    font-size: 30px;
    line-height: 1.02;
  }

  .strip {
    margin-bottom: 60px;
  }

  .story,
  .device-section,
  .plans,
  .faq {
    padding: 64px 0;
  }

  .device-panel,
  .final {
    padding: 28px;
    border-radius: 28px;
  }

  .guide-offer-points,
  .guide-related {
    grid-template-columns: 1fr;
  }

  .guide-offer-points {
    gap: 8px;
    margin-top: 14px;
  }

  .guide-offer-points div {
    padding: 13px;
  }

  .guide-related-head {
    gap: 12px;
    margin-bottom: 12px;
  }

  .guide-related-head h2 {
    font-size: 28px;
    line-height: 1.05;
  }

  .guide-related a {
    min-height: 86px;
    padding: 16px;
    border-radius: 18px;
  }

  .guide-related a::after {
    top: 16px;
    right: 16px;
  }

  .guide-related small {
    max-width: 240px;
  }

  .android-guide .actions {
    gap: 10px;
  }

  .android-guide .primary,
  .android-guide .secondary {
    min-height: 46px;
    padding-inline: 16px;
  }

  .final {
    margin-bottom: 72px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .legal-card {
    padding: 24px;
    border-radius: 26px;
  }

  .legal-hero h1 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1;
  }

  .legal-hero .subtitle {
    font-size: 17px;
  }

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

  .instruction-page {
    padding-top: 38px;
  }

  .instruction-hero {
    padding-top: 34px;
  }

  .instruction-hero h1 {
    font-size: 40px;
  }

  .instruction-visual,
  .install-card,
  .promo-band,
  .seo-copy,
  .related-links,
  .onboarding-step,
  .done-card {
    border-radius: 24px;
  }

  .step-shot {
    min-height: auto;
  }

  .step-action {
    justify-content: flex-start;
    min-width: 0;
  }

  .phone-screen {
    max-width: 100%;
  }

  .promo-price {
    text-align: left;
  }

  .promo-price strong {
    font-size: 48px;
  }

  .guide-offer .section-label {
    margin-bottom: 23px;
  }

  .guide-cta {
    margin-bottom: 90px;
  }






  .instruction-windows .guide-hero-visual {
    --hero-inset: -2% -10% -4% 0%;
  }

  .instruction-windows .guide-hero-visual::before {
    width: 100%;
    border-radius: 0;
    inset: 0;
  }

  .instruction-windows .shot-subscription, .instruction-windows .shot-install, .instruction-windows .shot-add-subscription, .instruction-windows .shot-server {
        height: 380px!important;
        border-radius: 0;
  }






  .instruction-macos .guide-hero-visual {
    --hero-inset: -2% -10% -4% 0%;
  }

  .instruction-macos .guide-hero-visual::before {
    width: 100%;
    border-radius: 0;
    inset: 0;
  }

  .instruction-macos .shot-subscription, .instruction-macos .shot-install, .instruction-macos .shot-add-subscription, .instruction-macos .shot-server {
      height: 380px!important;
      border-radius: 0;
  }







  .instruction-android-tv .guide-hero-visual {
    --hero-inset: -2% -10% -4% 0%;
  }

  .instruction-android-tv .guide-hero-visual::before {
    width: 100%;
    border-radius: 0;
    inset: 0;
  }

  .instruction-android-tv .shot-subscription{
    height: 380px!important;
    border-radius: 0;
  }
  .instruction-android-tv .shot-install {
    height: 247px!important;
    border-radius: 0;
  }

  .instruction-android-tv .shot-server {
    height: 250px !important;
    border-radius: 0;
  }

  .instruction-android-tv .shot-add-subscription{
    height: 586px!important;
    border-radius: 0;
  }





  .instruction-apple-tv .guide-hero-visual {
    --hero-inset: -2% -10% -4% 0%;
  }

  .instruction-apple-tv .guide-hero-visual::before {
    width: 100%;
    border-radius: 0;
    inset: 0;
  }

  .instruction-apple-tv .shot-subscription{
    height: 380px!important;
    border-radius: 0;
  }
  .instruction-apple-tv .shot-install {
    height: 247px!important;
    border-radius: 0;
  }

  .instruction-apple-tv .shot-server {
    height: 250px !important;
    border-radius: 0;
  }

  .instruction-apple-tv .shot-add-subscription{
    height: 586px!important;
    border-radius: 0;
  }


.hero-image{
  background-position-x: -36px;
}
}
