:root {
  color-scheme: light;
  --page: #fbf8f1;
  --surface: #fffdf8;
  --surface-warm: #f8efe2;
  --ink: #121318;
  --muted: #6f6a61;
  --soft: #dfd4c3;
  --line: rgba(48, 38, 26, 0.13);
  --orange: #f27419;
  --orange-dark: #c84f0a;
  --gold: #f7b24d;
  --shadow: 0 22px 70px rgba(55, 34, 17, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 241, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 48px, 1280px);
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  border-radius: 7px;
  box-shadow: 0 10px 28px rgba(242, 116, 25, 0.2);
}

.cta-icon {
  border-radius: 13px;
  box-shadow: 0 10px 28px rgba(242, 116, 25, 0.2);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 34px;
  color: #2f2b26;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.app-store-link {
  display: inline-flex;
  align-items: center;
  width: 182px;
  min-height: 54px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.app-store-link:hover,
.app-store-link:focus-visible {
  transform: translateY(-1px);
  opacity: 0.92;
}

.nav-toggle {
  display: none;
}

.section {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  padding: 84px 0;
}

.hero {
  min-height: min(840px, calc(100vh - 88px));
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: 64px;
  padding-top: 54px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.center {
  text-align: center;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--ink);
}

h1 {
  max-width: 620px;
  font-size: clamp(3rem, 4.45vw, 5.65rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.15rem, 3.1vw, 4rem);
  line-height: 1.05;
}

h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

p {
  margin: 0;
}

.hero-text {
  max-width: 520px;
  margin-top: 24px;
  color: #403b35;
  font-size: 1.08rem;
}

.proof-strip {
  width: min(100%, 490px);
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 253, 248, 0.72);
}

.proof-strip div {
  padding: 18px 20px;
}

.proof-strip div + div {
  border-left: 1px solid var(--line);
}

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

.proof-strip strong {
  font-size: 1.22rem;
  line-height: 1.1;
}

.proof-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-download {
  width: 208px;
}

.text-link {
  color: var(--orange-dark);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.free-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 20px;
  overflow: visible;
}

.phone-stage {
  position: relative;
  width: min(100%, 520px);
  min-height: 590px;
  display: grid;
  place-items: center;
}

.wide-intro-picture {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.phone-shot-picture {
  display: contents;
}

.wide-intro-shot {
  position: static;
  width: auto;
  max-width: min(58vw, 640px);
  max-height: 580px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(0) scale(0.98);
  transition: opacity 1000ms ease, transform 1000ms ease, visibility 1000ms ease;
  visibility: hidden;
  border-radius: 24px;
  filter: drop-shadow(0 12px 18px rgba(47, 31, 18, 0.15));
  pointer-events: none;
  z-index: 5;
}

.hero-visual.intro-active .wide-intro-shot {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.hero-visual.intro-active .phone-shot {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.phone-shot {
  position: absolute;
  width: auto;
  max-width: min(48vw, 560px);
  max-height: 580px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transition: opacity 1000ms ease, transform 1000ms ease, visibility 1000ms ease;
  border-radius: 24px;
  filter: drop-shadow(0 10px 15px rgba(47, 31, 18, 0.12));
}

.phone-shot.prev,
.phone-shot.next {
  opacity: 0.24;
  z-index: 1;
  filter: saturate(0.72) contrast(0.86) drop-shadow(0 8px 12px rgba(47, 31, 18, 0.08));
}

.phone-shot.active {
  opacity: 1;
  z-index: 3;
  transform: translateY(0) scale(1);
  filter: drop-shadow(0 12px 18px rgba(47, 31, 18, 0.16));
}

.phone-shot.prev {
  transform: translateX(-58%) translateY(8px) scale(0.84);
}

.phone-shot.next {
  transform: translateX(58%) translateY(8px) scale(0.84);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--orange-dark);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  border-color: rgba(242, 116, 25, 0.45);
  transform: translateY(-1px);
}

.carousel-arrow.previous {
  left: 5%;
}

.carousel-arrow.next {
  right: 5%;
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d8ccbb;
  cursor: pointer;
}

.carousel-dots button.active {
  background: var(--orange);
}

.steps {
  border-bottom: 1px solid var(--line);
}

.step-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.step {
  position: relative;
  min-height: 260px;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 14px 56px 0;
  text-align: center;
}

.step + .step {
  border-left: 1px solid var(--line);
}

.step-number {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff1dc;
  color: var(--orange);
  font-size: 1.7rem;
  font-weight: 800;
}

.step img,
.feature img {
  width: 44px;
  height: 44px;
  margin-top: 22px;
  filter: invert(48%) sepia(98%) saturate(1371%) hue-rotate(352deg) brightness(101%) contrast(90%);
}

.step h2 {
  margin-top: 30px;
  font-family: var(--sans);
  font-size: 1.25rem;
  line-height: 1.25;
}

.step p {
  max-width: 230px;
  margin-top: 14px;
  color: #403b35;
}

.compatibility {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 72px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.compatibility p {
  max-width: 420px;
  margin-top: 22px;
  color: #403b35;
}

.device-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.device-list > * {
  position: relative;
  isolation: isolate;
  min-height: 102px;
  display: grid;
  place-items: end center;
  padding: 18px 16px 20px;
  background: transparent;
  color: #fffaf2;
  font-weight: 800;
  text-align: center;
  text-shadow: 0 1px 10px rgba(58, 31, 14, 0.24);
  overflow: hidden;
}

.device-list > *::before {
  content: "";
  position: absolute;
  inset: 12px 22px 42px;
  z-index: -1;
  background-image: var(--device-art);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.24;
  filter: brightness(0) invert(1);
}

.device-list > *::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #c47a3f 0%, #a85d2a 100%);
  pointer-events: none;
}

.device-list a {
  transition: filter 160ms ease, transform 160ms ease;
}

.device-list a:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.device-list a:focus-visible {
  z-index: 1;
  outline: 3px solid var(--orange);
  outline-offset: -3px;
}

.device-chromecast {
  --device-art: url("https://swishly.nyc3.cdn.digitaloceanspaces.com/static/assets/www/png/devices/chromecast.png");
}

.device-roku {
  --device-art: url("https://swishly.nyc3.cdn.digitaloceanspaces.com/static/assets/www/png/devices/roku.png");
}

.device-fire-tv {
  --device-art: url("https://swishly.nyc3.cdn.digitaloceanspaces.com/static/assets/www/png/devices/fire-tv.png");
}

.device-apple-tv {
  --device-art: url("https://swishly.nyc3.cdn.digitaloceanspaces.com/static/assets/www/png/devices/apple-tv.png");
}

.device-samsung-tv {
  --device-art: url("https://swishly.nyc3.cdn.digitaloceanspaces.com/static/assets/www/png/devices/samsung-tv.png");
}

.device-android-tv {
  --device-art: url("https://swishly.nyc3.cdn.digitaloceanspaces.com/static/assets/www/png/devices/android-tv.png");
}

.features {
  border-bottom: 1px solid var(--line);
}

.features > h2,
.testimonials > h2 {
  text-align: center;
}

.feature-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature {
  min-height: 210px;
  padding: 34px;
  background: var(--page);
}

.feature h3 {
  margin-top: 24px;
}

.feature p {
  margin-top: 10px;
  color: #4d463f;
  font-size: 0.92rem;
}

.lead-feature {
  background: var(--surface);
}

.testimonials {
  border-bottom: 1px solid var(--line);
}

.quote-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

figure {
  margin: 0;
  min-height: 230px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 253, 248, 0.72);
}

blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.16;
}

figcaption {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.official-developer {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 72px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.official-developer h2 {
  margin-top: 14px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.official-developer > p {
  max-width: 680px;
  color: #403b35;
  font-size: 1.05rem;
}

.final-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
}

.cta-icon {
  width: 104px;
  height: 104px;
}

.final-cta h2 {
  max-width: 660px;
  font-size: clamp(2rem, 3vw, 3.35rem);
}

.final-cta p:not(.eyebrow) {
  margin-top: 8px;
  color: var(--muted);
  font-size: 1.05rem;
}

.site-footer {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.6fr);
  gap: 64px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer .brand {
  color: var(--ink);
  font-size: 1.08rem;
}

.site-footer-brand p {
  max-width: 320px;
  margin-top: 18px;
}

.site-footer-brand small {
  display: block;
  margin-top: 22px;
}

.site-footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.site-footer-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer-group h2 {
  margin: 0 0 4px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer-group a {
  color: var(--muted);
  transition: color 160ms ease;
}

.site-footer-group a:hover,
.site-footer-group a:focus-visible {
  color: var(--orange-dark);
}

.content-page {
  min-height: calc(100vh - 88px);
}

.content-hero,
.content-body {
  width: min(100% - 48px, 920px);
  margin: 0 auto;
}

.content-hero {
  padding: 72px 0 34px;
  border-bottom: 1px solid var(--line);
}

.content-hero h1 {
  font-size: clamp(3.1rem, 6vw, 5.8rem);
}

.content-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 20px;
  color: #403b35;
  font-size: 1.1rem;
}

.content-updated {
  color: var(--muted) !important;
  font-size: 0.9rem !important;
}

.content-body {
  padding: 34px 0 72px;
}

.content-section,
.support-status {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.content-body > :first-child {
  border-top: 0;
  padding-top: 0;
}

.content-section h2,
.support-status h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0;
}

.content-section h3 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.content-section p,
.support-status p {
  margin: 0;
  color: #403b35;
}

.content-section p + p,
.support-status p + p {
  margin-top: 16px;
}

.content-section ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #403b35;
}

.content-section li + li {
  margin-top: 10px;
}

.article-summary {
  padding-bottom: 36px;
}

.rating-list {
  margin: 26px 0;
  display: grid;
  gap: 10px;
}

.rating-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--ink) !important;
  text-decoration: none !important;
}

.rating-row span {
  font-weight: 800;
}

.device-article-heading {
  display: flex;
  gap: 18px;
  align-items: baseline;
  justify-content: space-between;
}

.device-article-heading h2 {
  margin-bottom: 0;
}

.device-article-icon {
  position: relative;
  isolation: isolate;
  width: 142px;
  min-height: 92px;
  display: grid;
  place-items: end center;
  float: right;
  margin: 0 0 22px 32px;
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #fffaf2;
  font-size: 0.78rem;
  font-weight: 800;
  overflow: hidden;
  text-align: center;
  text-shadow: 0 1px 10px rgba(58, 31, 14, 0.24);
}

.device-article-icon::before {
  content: "";
  position: absolute;
  inset: 10px 20px 36px;
  z-index: -1;
  background-image: var(--device-art);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.28;
  filter: brightness(0) invert(1);
}

.device-article-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #c47a3f 0%, #a85d2a 100%);
}

.device-links {
  margin-top: 22px !important;
}

.device-star-rating {
  position: relative;
  width: 102px;
  height: 24px;
  color: #cfc5b7;
  font-size: 1.12rem;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.device-star-rating span {
  display: inline-block;
  width: 20px;
  text-align: center;
}

.device-star-rating-top {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 1;
  overflow: hidden;
  color: var(--orange);
}

.device-star-rating-bottom {
  position: relative;
  z-index: 0;
}

.split-rating-list {
  display: grid;
  gap: 8px;
  min-width: 260px;
}

.split-rating-list.compact {
  min-width: 190px;
}

.split-rating-row {
  display: grid;
  grid-template-columns: minmax(96px, 1fr) auto;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.split-rating-list.compact .split-rating-row {
  grid-template-columns: 66px auto;
  font-size: 0.8rem;
}

.split-rating-score {
  display: grid;
  justify-items: end;
  gap: 2px;
}

.split-rating-score small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.15;
  white-space: nowrap;
}

.comparison-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(255, 253, 248, 0.72);
  color: #403b35;
}

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

.comparison-table th {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.summary-table-section > p {
  margin-top: 22px;
}

.content-page a:not(.app-store-link):not(.brand) {
  color: var(--orange-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.support-status {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 28px;
  align-items: center;
}

.support-status h2,
.support-status p {
  grid-column: 1;
}

.support-status .text-link {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.page-shell {
  min-height: 100vh;
}

.page-intro {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  padding: 72px 0 36px;
}

.page-intro.wide {
  padding-top: 96px;
  padding-bottom: 26px;
}

.page-intro h1 {
  font-size: clamp(3.25rem, 7vw, 6.8rem);
}

.page-intro p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 18px;
  color: #403b35;
  font-size: 1.1rem;
}

.frame-page {
  min-height: calc(100vh - 88px);
}

.faq-frame {
  display: block;
  width: min(100% - 48px, 1280px);
  height: calc(100vh - 250px);
  min-height: 620px;
  margin: 0 auto 48px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
}

.website-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 46px;
  padding-top: 42px;
}

.website-group,
.website-note {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.website-group h2,
.website-note h2 {
  font-family: var(--sans);
  font-size: 1.35rem;
}

.website-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.website-list a {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 253, 248, 0.72);
  font-weight: 800;
  transition: border-color 180ms ease, transform 180ms ease;
}

.website-list a:hover,
.website-list a:focus-visible {
  border-color: rgba(242, 116, 25, 0.45);
  transform: translateY(-1px);
}

.popular-warning {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(12, 10, 8, 0.56);
}

.popular-warning.open {
  display: grid;
}

.popular-warning-panel {
  position: relative;
  width: min(100%, 460px);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.popular-warning-panel h2 {
  max-width: 360px;
  font-family: var(--sans);
  font-size: 1.32rem;
  line-height: 1.22;
}

.popular-warning-panel p {
  margin-top: 14px;
  color: var(--muted);
}

.popular-warning-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.popular-warning-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.popular-warning-primary {
  background: var(--orange);
  color: #fff;
  border-color: transparent !important;
}

.popular-warning-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.website-note {
  grid-column: 1 / -1;
  max-width: 720px;
}

.website-note p {
  margin-top: 12px;
  color: #403b35;
}

@media (max-width: 1040px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .nav-download {
    display: none;
  }

  .nav-links {
    justify-self: end;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 60px;
  }

  .phone-stage {
    min-height: 560px;
  }

  .wide-intro-shot {
    max-width: min(86vw, 620px);
    max-height: 540px;
  }

  .compatibility,
  .official-developer,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .nav {
    width: min(100% - 32px, 1280px);
    min-height: 76px;
    gap: 18px;
  }

  .brand {
    font-size: 1.1rem;
  }

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

  .nav-toggle {
    justify-self: end;
    width: 42px;
    height: 42px;
    display: grid;
    gap: 5px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
  }

  .nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .section,
  .page-intro,
  .faq-frame,
  .site-footer,
  .content-hero,
  .content-body {
    width: min(100% - 32px, 1280px);
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 3.25rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .proof-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-strip div + div {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .proof-strip div {
    padding: 14px 12px;
  }

  .proof-strip strong {
    font-size: 1rem;
  }

  .proof-strip span {
    font-size: 0.72rem;
  }

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

  .phone-stage {
    min-height: 520px;
  }

  .hero-visual {
    overflow-x: clip;
  }

  .wide-intro-picture {
    display: none;
  }

  .wide-intro-shot {
    max-width: min(92vw, 390px);
    max-height: 500px;
  }

  .phone-shot {
    max-width: min(86vw, 340px);
    max-height: 500px;
  }

  .hero-visual.intro-active .phone-shot.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .phone-shot.prev,
  .phone-shot.next {
    display: none;
    opacity: 0;
    visibility: hidden;
  }

  .carousel-arrow {
    display: none;
  }

  .quote-grid,
  .website-section {
    grid-template-columns: 1fr;
  }

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

  .step {
    min-height: 0;
    padding: 20px 6px 22px;
  }

  .step + .step {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .step-number,
  .step p {
    display: none;
  }

  .step img {
    width: 34px;
    height: 34px;
    margin-top: 0;
  }

  .step h2 {
    margin-top: 14px;
    font-size: clamp(0.86rem, 3.6vw, 1rem);
  }

  .compatibility {
    gap: 36px;
  }

  .official-developer {
    gap: 24px;
  }

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

  .device-article-icon {
    width: 112px;
    min-height: 76px;
    margin: 0 0 16px 18px;
  }

  .device-article-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .split-rating-list {
    width: 100%;
    min-width: 0;
  }

  .split-rating-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .feature {
    min-height: 190px;
    padding: 24px 18px;
  }

  .feature img {
    width: 36px;
    height: 36px;
    margin-top: 0;
  }

  .feature h3 {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.2;
  }

  .feature p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  figure {
    min-height: 0;
    padding: 28px;
  }

  blockquote {
    font-size: 1.35rem;
  }

  .final-cta {
    gap: 22px;
  }

  .cta-icon {
    width: 78px;
    height: 78px;
  }

  .site-footer {
    padding: 24px 0;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .support-status .text-link {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .page-intro {
    padding-top: 58px;
  }

  .faq-frame {
    height: 70vh;
    min-height: 520px;
  }
}

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