:root {
  --ink: #f8f8ff;
  --muted: #a9a8c3;
  --paper: #080811;
  --paper-2: #101022;
  --paper-3: #17162e;
  --line: rgba(255, 255, 255, 0.11);
  --blue: #22b9ff;
  --blue-2: #2164ff;
  --purple: #7a35ff;
  --pink: #ef4bff;
  --red: #ff3f56;
  --yellow: #ffd447;
  --green: #72e5a0;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% -10%, rgba(40, 96, 255, 0.19), transparent 28rem),
    radial-gradient(circle at 15% 25%, rgba(138, 42, 255, 0.13), transparent 30rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
summary {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

::selection {
  color: #090912;
  background: var(--yellow);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #080811;
  background: white;
  border-radius: 10px;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(8, 8, 17, 0.72);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 8, 17, 0.94);
}

.nav-wrap {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(34, 105, 255, 0.24);
}

.brand span {
  font-size: 1.08rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #d4d3e6;
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a:not(.button):hover {
  color: white;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-2);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  content: "";
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 850;
  letter-spacing: -0.015em;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(120deg, var(--blue-2), var(--purple) 64%, var(--pink));
  box-shadow: 0 14px 32px rgba(80, 62, 255, 0.32);
}

.button-primary:hover {
  box-shadow: 0 17px 40px rgba(105, 60, 255, 0.44);
}

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

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.23);
  background: rgba(255, 255, 255, 0.09);
}

.button-sm {
  min-height: 42px;
  padding-inline: 16px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.button:has(.play-mark) {
  min-height: 0;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0;
  line-height: 0;
}

.button:has(.play-mark):hover {
  box-shadow: none;
}

.play-mark {
  display: block;
  width: 194px;
  height: 75px;
  flex: 0 0 auto;
  background: url("images/google-play-badge.png") center / contain no-repeat;
}

.button-sm .play-mark {
  width: 155px;
  height: 60px;
}

.ios-coming-soon {
  display: inline-flex;
  width: 194px;
  height: 75px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  cursor: default;
  user-select: none;
}

.ios-coming-soon-inner {
  display: flex;
  width: 170px;
  height: 50px;
  align-items: center;
  gap: 10px;
  padding: 6px 11px;
  border: 1px solid #a6a6a6;
  border-radius: 8px;
  color: white;
  background: #050505;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.ios-app-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 9px;
  background: url("images/app-icon.webp") center / cover no-repeat;
  box-shadow: 0 0 14px rgba(69, 134, 255, 0.28);
}

.ios-badge-copy {
  display: grid;
  text-align: left;
  line-height: 1;
}

.ios-badge-copy small {
  margin-bottom: 3px;
  color: #d5d5d5;
  font-size: 0.51rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.ios-badge-copy strong {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 68px;
}

.hero::before {
  position: absolute;
  width: 560px;
  height: 560px;
  top: 2%;
  left: calc(50% + 160px);
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.018), 0 0 0 160px rgba(255, 255, 255, 0.012);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  align-items: center;
  gap: 62px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 17px;
  color: #d8d7e9;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--pink));
}

.hero h1,
.section-title,
.guide-hero h1 {
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.5rem, 7.4vw, 6.7rem);
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, var(--blue) 7%, #b98cff 48%, var(--pink) 78%, var(--red));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  max-width: 650px;
  margin: 27px 0 0;
  color: #c2c1d4;
  font-size: clamp(1.06rem, 2vw, 1.25rem);
  line-height: 1.6;
}

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

.hero-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #deddee;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 750;
}

.proof-pill strong {
  color: white;
}

.proof-pill .star {
  color: var(--yellow);
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.hero-shot {
  position: absolute;
  z-index: 1;
  width: min(100%, 585px);
  top: 56px;
  right: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  box-shadow: var(--shadow), 0 0 90px rgba(65, 58, 255, 0.22);
  transform: rotate(2deg);
}

.hero-shot img {
  width: 100%;
  height: auto;
}

.floating-icon {
  position: absolute;
  z-index: 3;
  width: 112px;
  height: 112px;
  top: 7px;
  left: 2px;
  border: 5px solid rgba(255, 255, 255, 0.17);
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.42);
  transform: rotate(-7deg);
}

.speed-chip,
.mode-chip {
  position: absolute;
  z-index: 4;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 15px;
  background: rgba(10, 11, 31, 0.91);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.33);
  backdrop-filter: blur(14px);
}

.speed-chip {
  right: -6px;
  bottom: 28px;
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 950;
}

.speed-chip small {
  display: block;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mode-chip {
  left: 32px;
  bottom: 2px;
  color: white;
  font-size: 0.84rem;
  font-weight: 850;
}

.mode-chip span {
  color: var(--blue);
}

.signal-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  position: relative;
  padding: 21px 18px;
  color: #c3c2d7;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 750;
}

.signal-list li + li::before {
  position: absolute;
  width: 1px;
  height: 20px;
  top: 50%;
  left: 0;
  content: "";
  background: var(--line);
  transform: translateY(-50%);
}

.signal-list strong {
  display: block;
  color: white;
  font-size: 1.05rem;
}

.section {
  padding: 112px 0;
}

.section-compact {
  padding: 84px 0;
}

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

.section-title {
  max-width: 760px;
  font-size: clamp(2.55rem, 5.4vw, 4.8rem);
}

.section-copy {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

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

.feature-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.feature-card::after {
  position: absolute;
  width: 170px;
  height: 170px;
  right: -70px;
  bottom: -80px;
  content: "";
  border-radius: 50%;
  background: var(--card-glow, var(--purple));
  filter: blur(68px);
  opacity: 0.28;
}

.feature-card:nth-child(2) {
  --card-glow: var(--blue);
}

.feature-card:nth-child(3) {
  --card-glow: var(--red);
}

.feature-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  color: white;
  background: rgba(255, 255, 255, 0.07);
  font-size: 1.15rem;
  font-weight: 950;
}

.feature-card h3,
.guide-card h3,
.step h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.feature-card p {
  margin: 13px 0 0;
  color: var(--muted);
}

.screenshots-section {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(62, 35, 150, 0.12), transparent 34%),
    var(--paper-2);
}

.screenshot-track {
  display: grid;
  grid-auto-columns: minmax(260px, 305px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 4px max(20px, calc((100vw - var(--container)) / 2)) 28px;
  scroll-padding-inline: max(20px, calc((100vw - var(--container)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--purple) rgba(255, 255, 255, 0.06);
}

.screenshot-card {
  margin: 0;
  scroll-snap-align: start;
}

.screenshot-card button {
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 27px;
  background: #13132a;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
  cursor: zoom-in;
}

.screenshot-card img {
  width: 100%;
  height: auto;
  transition: transform 260ms ease;
}

.screenshot-card button:hover img {
  transform: scale(1.018);
}

.screenshot-card figcaption {
  padding: 14px 8px 0;
  color: #bbb9d0;
  font-size: 0.85rem;
}

.lightbox {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  border: 0;
  background: rgba(3, 3, 9, 0.92);
  backdrop-filter: blur(14px);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(92vw, 620px);
  max-height: 88vh;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  width: 46px;
  height: 46px;
  top: 18px;
  right: 18px;
  color: white;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding-top: 76px;
  counter-increment: steps;
}

.step::before {
  position: absolute;
  display: grid;
  width: 55px;
  height: 55px;
  top: 0;
  left: 0;
  place-items: center;
  content: "0" counter(steps);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  color: white;
  background: linear-gradient(145deg, rgba(46, 115, 255, 0.28), rgba(131, 45, 255, 0.25));
  font-weight: 950;
}

.step:not(:last-child)::after {
  position: absolute;
  height: 1px;
  top: 27px;
  right: 20px;
  left: 76px;
  content: "";
  background: linear-gradient(90deg, rgba(87, 111, 255, 0.5), transparent);
}

.step p {
  margin: 12px 0 0;
  color: var(--muted);
}

.guide-section {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 17px;
}

.guide-card {
  position: relative;
  grid-column: span 4;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.guide-card:hover {
  transform: translateY(-5px);
  border-color: rgba(111, 111, 255, 0.42);
  background: #14142a;
}

.guide-card:first-child {
  grid-column: span 8;
  background:
    linear-gradient(120deg, rgba(37, 92, 255, 0.19), rgba(128, 40, 255, 0.09)),
    var(--paper-2);
}

.guide-kicker {
  margin-bottom: 22px;
  color: #9997b3;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-card p {
  margin: 14px 0 24px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #b9b8ff;
  font-weight: 850;
}

.text-link::after {
  content: "\2192";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: 66px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 52px 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.04rem;
  font-weight: 820;
  letter-spacing: -0.02em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  width: 28px;
  height: 28px;
  top: 21px;
  right: 0;
  content: "+";
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #c9c7dc;
  text-align: center;
  line-height: 25px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 720px;
  padding: 0 46px 22px 0;
  color: var(--muted);
}

.faq-answer p {
  margin: 0 0 10px;
}

.faq-answer a {
  color: #a7c4ff;
  font-weight: 800;
}

.download-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 42px;
  overflow: hidden;
  padding: 62px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 50%, rgba(239, 75, 255, 0.25), transparent 25rem),
    linear-gradient(125deg, rgba(32, 102, 255, 0.3), rgba(105, 46, 255, 0.27) 52%, rgba(255, 63, 86, 0.18)),
    var(--paper-2);
  box-shadow: var(--shadow);
}

.download-panel::after {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -130px;
  bottom: -210px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255, 255, 255, 0.025), 0 0 0 96px rgba(255, 255, 255, 0.02);
}

.download-panel h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.4rem, 5.3vw, 4.5rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.download-panel p {
  max-width: 620px;
  margin: 18px 0 0;
  color: #cbc9de;
}

.download-panel .button {
  position: relative;
  z-index: 2;
  min-height: 58px;
  padding-inline: 26px;
  color: #11111c;
  background: white;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.download-panel .button:has(.play-mark) {
  min-height: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
}

.download-store-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 58px 0 92px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.7fr;
  gap: 50px;
}

.footer-brand p {
  max-width: 440px;
  margin: 17px 0 0;
  color: var(--muted);
}

.footer-col h2 {
  margin: 0 0 14px;
  color: #8f8da8;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: #d2d0e2;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #85839c;
  font-size: 0.8rem;
}

.mobile-cta {
  position: fixed;
  z-index: 90;
  display: none;
  right: 12px;
  bottom: 12px;
  left: 12px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 15px;
  color: white;
  background: linear-gradient(120deg, var(--blue-2), var(--purple), var(--pink));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-cta:has(.play-mark) {
  right: 10px;
  left: auto;
  min-height: 0;
  gap: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0;
  line-height: 0;
}

.mobile-cta .play-mark {
  width: 168px;
  height: 65px;
}

/* Guide pages */
.guide-main {
  overflow: hidden;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  color: #9290a8;
  font-size: 0.82rem;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 8px;
  content: "/";
  color: #59576e;
}

.breadcrumbs a:hover {
  color: white;
}

.guide-hero {
  position: relative;
  padding: 78px 0 80px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 30%, rgba(89, 43, 255, 0.2), transparent 22rem),
    rgba(255, 255, 255, 0.012);
}

.guide-hero h1 {
  max-width: 940px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.guide-hero h1 .gradient-text {
  margin-left: 0.08em;
}

.guide-deck {
  max-width: 760px;
  margin: 26px 0 0;
  color: #c3c1d6;
  font-size: clamp(1.08rem, 2vw, 1.27rem);
}

.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  color: #8f8da8;
  font-size: 0.82rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  align-items: start;
  gap: 80px;
  padding-block: 82px 105px;
}

.article-content {
  min-width: 0;
}

.article-content h2 {
  margin: 2.2em 0 0.65em;
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  margin: 1.7em 0 0.55em;
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.article-content p,
.article-content li {
  color: #c1bfd0;
  font-size: 1.02rem;
}

.article-content a:not(.button) {
  color: #94bcff;
  text-decoration: underline;
  text-decoration-color: rgba(148, 188, 255, 0.35);
  text-underline-offset: 3px;
}

.article-content ul,
.article-content ol {
  padding-left: 1.25rem;
}

.article-content li + li {
  margin-top: 0.65em;
}

.article-content strong {
  color: white;
}

.article-callout {
  margin: 34px 0;
  padding: 25px 27px;
  border: 1px solid rgba(82, 122, 255, 0.3);
  border-radius: var(--radius-sm);
  background: linear-gradient(120deg, rgba(48, 101, 255, 0.12), rgba(112, 47, 255, 0.08));
}

.article-callout p {
  margin: 0;
}

.article-steps {
  margin: 28px 0;
  padding: 0;
  list-style: none;
  counter-reset: article-steps;
}

.article-steps li {
  position: relative;
  min-height: 48px;
  padding-left: 60px;
  counter-increment: article-steps;
}

.article-steps li::before {
  position: absolute;
  display: grid;
  width: 40px;
  height: 40px;
  top: -5px;
  left: 0;
  place-items: center;
  content: counter(article-steps);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  color: white;
  background: rgba(112, 53, 255, 0.2);
  font-weight: 900;
}

.article-steps li + li {
  margin-top: 18px;
}

.article-cta {
  margin: 45px 0;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 10%, rgba(239, 75, 255, 0.18), transparent 15rem),
    var(--paper-3);
}

.article-cta h2,
.article-cta h3 {
  margin-top: 0;
}

.article-cta .button {
  margin-top: 8px;
  color: white;
  text-decoration: none;
}

.article-sidebar {
  position: sticky;
  top: 104px;
}

.toc,
.sidebar-download {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
}

.toc h2,
.sidebar-download h2 {
  margin: 0 0 12px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  margin: 10px 0;
  color: #b5b3c9;
  font-size: 0.87rem;
  line-height: 1.35;
}

.toc a:hover {
  color: white;
}

.sidebar-download {
  margin-top: 15px;
  background: linear-gradient(150deg, rgba(48, 101, 255, 0.17), rgba(119, 47, 255, 0.1));
}

.sidebar-download p {
  margin: 0 0 16px;
  color: #aaa8be;
  font-size: 0.86rem;
}

.sidebar-download .button {
  width: 100%;
}

.related-guides {
  padding: 84px 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

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

.related-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper-2);
}

.related-card h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.related-card p {
  margin: 9px 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hero-copy-wrap {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 650px);
    min-height: 460px;
    margin: 0 auto;
  }

  .section-head {
    display: block;
  }

  .section-copy {
    margin-top: 22px;
  }

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

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

  .guide-card,
  .guide-card:first-child {
    grid-column: span 6;
  }

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

  .article-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .article-sidebar {
    display: none;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .nav-wrap {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 15px;
    left: 15px;
    display: none;
    padding: 18px;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(12, 12, 26, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a:not(.button) {
    padding: 7px 4px;
  }

  .hero {
    padding: 58px 0 48px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 5.2rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .ios-coming-soon {
    margin-inline: auto;
    align-self: center;
  }

  .hero-visual {
    min-height: 345px;
  }

  .hero-shot {
    top: 45px;
    border-radius: 22px;
  }

  .floating-icon {
    width: 79px;
    height: 79px;
    border-width: 3px;
    border-radius: 21px;
  }

  .speed-chip {
    right: -2px;
    bottom: 0;
    font-size: 1rem;
  }

  .mode-chip {
    left: 9px;
    bottom: -18px;
  }

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

  .signal-list li:nth-child(3)::before {
    display: none;
  }

  .signal-list li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 82px 0;
  }

  .section-compact {
    padding: 65px 0;
  }

  .section-title {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .guide-card,
  .guide-card:first-child {
    grid-column: 1 / -1;
    min-height: 255px;
  }

  .download-panel {
    grid-template-columns: 1fr;
    padding: 38px 25px;
  }

  .download-panel .button {
    width: 100%;
  }

  .download-store-actions {
    width: 100%;
    flex-direction: column;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }

  .mobile-cta {
    display: flex;
  }

  .site-footer {
    padding-bottom: 112px;
  }

  .guide-hero {
    padding: 58px 0 62px;
  }

  .guide-hero h1 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .article-layout {
    padding-block: 62px 82px;
  }

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

@media (max-width: 440px) {
  .hero-visual {
    min-height: 300px;
  }

  .mode-chip {
    display: none;
  }

  .proof-row {
    gap: 7px;
  }

  .proof-pill {
    font-size: 0.76rem;
  }

  .screenshot-track {
    grid-auto-columns: 76vw;
  }
}

@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;
  }

}
