:root {
  --bg: #07040c;
  --text: #f4f0f8;
  --muted: #a89bb8;
  --dim: #6f627f;
  --line: rgba(191, 85, 255, 0.18);
  --accent: #c26bff;
  --accent-deep: #7a2fc4;
  --font: "Manrope", system-ui, sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.2rem;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 60;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  background: var(--accent);
  color: #14081c;
  font-weight: 800;
}

.skip:focus {
  top: 1rem;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.orb {
  pointer-events: none;
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
}

.orb--a {
  width: 38vw;
  height: 38vw;
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(194, 107, 255, 0.5), transparent 68%);
}

.orb--b {
  width: 28vw;
  height: 28vw;
  bottom: 18%;
  left: -10%;
  background: radial-gradient(circle, rgba(122, 47, 196, 0.4), transparent 70%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.35rem;
  background: linear-gradient(to bottom, rgba(7, 4, 12, 0.88), rgba(7, 4, 12, 0));
  transition: background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
}

.top.is-solid {
  background: rgba(7, 4, 12, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top.is-open {
  background: rgba(7, 4, 12, 0.96);
}

.top__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  z-index: 2;
}

.top__brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.top__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  background: none;
  cursor: pointer;
  z-index: 2;
}

.top__burger span {
  display: block;
  height: 2px;
  width: 22px;
  margin-left: auto;
  background: var(--text);
  transition: transform 0.25s ease;
}

.top.is-open .top__burger span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.top.is-open .top__burger span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.top__nav {
  display: none;
  gap: 1.15rem;
  align-items: center;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
}

.top__nav a:hover,
.top__nav a.is-current {
  color: var(--text);
}

.top__cta {
  color: #14081c !important;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 800;
}

@media (max-width: 899px) {
  .top.is-open .top__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    inset: 0 0 auto;
    padding: 5.2rem 1.5rem 1.5rem;
    background: rgba(7, 4, 12, 0.98);
    gap: 1rem;
  }
}

@media (min-width: 900px) {
  .top__burger {
    display: none;
  }

  .top__nav {
    display: flex;
  }
}

.hero {
  position: relative;
  z-index: 1;
  padding: 7.2rem 0 0;
}

.hero__intro {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 0 1.5rem 2.6rem;
  text-align: center;
}

.hero__kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__headline {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero__lead {
  margin: 0 auto 1.6rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero__tabs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  width: min(100%, 640px);
  margin: 0 auto 1.15rem;
  padding: 0 1.5rem;
}

.hero__tab {
  min-height: 38px;
  padding: 0 0.95rem;
  border: 1px solid rgba(244, 240, 248, 0.14);
  border-radius: 999px;
  background: rgba(16, 8, 22, 0.4);
  color: var(--muted);
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.hero__tab.is-on,
.hero__mode-btn.is-on,
.atlas__chips button.is-on {
  color: #14081c;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  border-color: transparent;
}

.hero__mode,
.atlas__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin: 0 auto 1rem;
}

.hero__mode {
  width: min(100%, 280px);
  padding: 0 1.5rem;
}

.hero__mode-btn,
.atlas__chips button {
  min-height: 34px;
  padding: 0 0.85rem;
  border: 1px solid rgba(244, 240, 248, 0.14);
  border-radius: 999px;
  background: rgba(16, 8, 22, 0.4);
  color: var(--muted);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.hero__shot.is-phone {
  display: flex;
  justify-content: center;
  -webkit-mask-image: none;
  mask-image: none;
  padding-bottom: 2.5rem;
}

.hero__shot.is-phone .window {
  width: min(260px, 72vw);
}

.hero__shot.is-phone img {
  aspect-ratio: 9 / 19.5;
}

.pulse {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: -1.5rem auto 0;
  padding: 0 1.5rem 1rem;
}

.pulse[hidden] {
  display: none;
}

.pulse__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.pulse__grid div {
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(194, 107, 255, 0.16);
  border-radius: 16px;
  background: rgba(16, 8, 22, 0.4);
}

.pulse__grid strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.pulse__grid span,
.pulse__note {
  color: var(--dim);
  font-size: 0.82rem;
  font-weight: 700;
}

.pulse__note {
  margin: 0.85rem 0 0;
}

@media (min-width: 800px) {
  .pulse__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lane {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  margin-top: 0.9rem;
  padding-bottom: 0.35rem;
  scrollbar-width: none;
}

.lane[hidden] {
  display: none;
}

.lane::-webkit-scrollbar {
  display: none;
}

.lane__col {
  flex: 0 0 min(28vw, 132px);
  min-height: 118px;
  padding: 0.75rem 0.7rem 0.8rem;
  border: 1px solid rgba(194, 107, 255, 0.16);
  border-radius: 14px;
  background: rgba(16, 8, 22, 0.45);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.lane__col:hover {
  border-color: rgba(194, 107, 255, 0.45);
}

.lane__col b {
  display: block;
  margin: 0.35rem 0 0.55rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.lane__col span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
}

.lane__ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.lane__ticks i {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: rgba(194, 107, 255, 0.55);
}

.feat[data-screen] {
  cursor: pointer;
}

.gallery__grid.is-off,
.atlas__phones.is-off {
  display: none;
}

.atlas__phones {
  width: min(100%, var(--max));
  margin: 0 auto;
}

@media (min-width: 900px) {
  .atlas__phones {
    grid-template-columns: repeat(6, 1fr);
    width: min(100%, var(--max));
  }
}

.atlas__chips {
  margin: 1.1rem 0 0;
  justify-content: flex-start;
  padding: 0;
}

.compare {
  position: relative;
  z-index: 1;
  padding: 2rem 0 3rem;
}

.compare__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 1.5rem;
}

.compare__grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.compare__grid article {
  padding: 1.3rem 1.25rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
}

.compare__on {
  border-color: rgba(194, 107, 255, 0.28) !important;
  background: linear-gradient(180deg, rgba(194, 107, 255, 0.08), rgba(16, 8, 22, 0.2));
}

.compare h3 {
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
}

.compare ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-weight: 500;
}

.compare li + li {
  margin-top: 0.35rem;
}

@media (min-width: 800px) {
  .compare__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero__shot {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 0 1.2rem;
  -webkit-mask-image: linear-gradient(to bottom, #000 58%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 58%, transparent 100%);
}

.hero__shot .window {
  box-shadow:
    0 0 0 1px rgba(194, 107, 255, 0.16),
    0 40px 90px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(122, 47, 196, 0.16);
}

.window {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #0c0812;
  border: 1px solid rgba(194, 107, 255, 0.2);
}

.window__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  background: #100818;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.window__bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(244, 240, 248, 0.16);
}

.window img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

.hero__img {
  transition: opacity 0.28s ease;
}

.hero__img.is-out {
  opacity: 0;
}

.window figcaption {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.25rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #14081c;
  box-shadow: 0 10px 30px rgba(122, 47, 196, 0.35);
}

.btn--ghost {
  border-color: rgba(244, 240, 248, 0.22);
  color: var(--text);
  background: rgba(16, 8, 22, 0.35);
}

.btn--ghost:hover {
  border-color: rgba(194, 107, 255, 0.45);
}

.btn[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story__head h2,
.phones__head h2,
.gallery__head h2,
.compare h2,
.roles h2,
.panel h2,
.faq h2,
.legal h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.story__head,
.phones__head,
.gallery__head,
.roles__inner,
.faq__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.story__lead,
.phones__head p {
  margin: 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 500;
}

.story {
  position: relative;
  z-index: 1;
  padding: 5rem 0 1rem;
}

.story__head {
  padding: 0 1.5rem 2.8rem;
}

.story__num {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.feat {
  width: min(100%, var(--max));
  margin: 0 auto 3.2rem;
  padding: 0 1.5rem;
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.feat__copy h3 {
  margin: 0.4rem 0 0.5rem;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.feat__copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  max-width: 28rem;
}

@media (min-width: 900px) {
  .feat {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 3rem;
    margin-bottom: 5.5rem;
  }

  .feat--flip .feat__copy {
    order: 2;
  }
}

.phones {
  position: relative;
  z-index: 1;
  padding: 2rem 0 3.5rem;
}

.phones__head {
  padding: 0 1.5rem 1.8rem;
}

.phones__rail {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  padding: 0.4rem 1.5rem 1.2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.phones__rail::-webkit-scrollbar {
  display: none;
}

.handset {
  margin: 0;
  flex: 0 0 min(58vw, 210px);
  scroll-snap-align: start;
}

.handset img {
  width: 100%;
  border-radius: 26px;
  border: 1px solid rgba(194, 107, 255, 0.28);
  background: #0c0812;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
}

.handset figcaption {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.handset.is-on img {
  border-color: rgba(194, 107, 255, 0.7);
  box-shadow: 0 22px 50px rgba(122, 47, 196, 0.28);
}

.is-zoom {
  cursor: zoom-in;
}

.handset.is-on img {
  border-color: rgba(194, 107, 255, 0.7);
  box-shadow: 0 22px 50px rgba(122, 47, 196, 0.28);
}

.is-zoom {
  cursor: zoom-in;
}

.dl-card.is-rec {
  border-color: rgba(194, 107, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(194, 107, 255, 0.25);
}

@media (min-width: 900px) {
  .phones__rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
    scroll-snap-type: none;
    width: min(100%, 860px);
    margin: 0 auto;
    padding-bottom: 0;
  }

  .handset {
    flex: none;
  }

  .phones__rail.atlas__phones {
    grid-template-columns: repeat(6, 1fr);
    width: min(100%, var(--max));
  }
}

.gallery {
  position: relative;
  z-index: 1;
  padding: 1rem 0 3rem;
}

.gallery__head {
  padding: 0 1.5rem 1.5rem;
}

.gallery__grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 1rem;
}

.gallery__grid .window {
  background: transparent;
  border: 0;
}

.gallery__grid .window img {
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(194, 107, 255, 0.18);
  border-top: 0;
}

.gallery__grid .window__bar {
  border: 1px solid rgba(194, 107, 255, 0.18);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

@media (min-width: 720px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.1rem;
  }
}

.roles {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 1.5rem;
}

.roles__inner {
  padding: 0 1.5rem;
}

.roles__grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.roles__grid article {
  padding: 1.4rem 1.3rem 1.5rem;
  border: 1px solid rgba(194, 107, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(194, 107, 255, 0.07), rgba(16, 8, 22, 0.2));
}

.role {
  cursor: pointer;
}

.role__go {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.roles__mark {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.roles__grid h3 {
  margin: 0.45rem 0 0.4rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.roles__grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

@media (min-width: 800px) {
  .roles__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
  }
}

.panel {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 1rem;
}

.panel--wide {
  width: min(100%, 920px);
}

.panel__lead {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
}

.panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 0.75rem;
}

.panel__hint {
  margin: 0.75rem 0 0;
  color: var(--dim);
  font-size: 0.9rem;
  font-weight: 500;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dim);
}

.status[data-state="ok"] .status__dot {
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.15);
}

.status[data-state="bad"] .status__dot {
  background: #f87171;
}

.status[data-state="loading"] .status__dot {
  background: var(--accent);
  animation: pulse-dot 1.1s ease-in-out infinite;
}

.release {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.release-notes {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: pre-wrap;
}

.download-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 720px) {
  .download-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.dl-cards {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .dl-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dl-card {
  display: grid;
  gap: 0.25rem;
  min-height: 132px;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(194, 107, 255, 0.18);
  background: rgba(16, 8, 22, 0.45);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.dl-card:hover {
  border-color: rgba(194, 107, 255, 0.45);
  transform: translateY(-2px);
}

.dl-card.is-rec {
  border-color: rgba(194, 107, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(194, 107, 255, 0.25);
}

.dl-card[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

.dl-card--store {
  background: linear-gradient(180deg, rgba(194, 107, 255, 0.14), rgba(16, 8, 22, 0.35));
}

.dl-card__os {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dl-card__name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.dl-card__hint {
  color: var(--dim);
  font-size: 0.82rem;
  font-weight: 600;
}

#dl-windows-zip {
  margin-top: 0.9rem;
}

.qr-box {
  text-align: center;
  color: var(--dim);
  font-size: 0.82rem;
  font-weight: 600;
}

.qr-box canvas {
  margin: 0 auto 0.5rem;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
}

.changelog-link {
  margin: 1.25rem 0 0;
  font-weight: 700;
  color: var(--accent);
}

.invite__label,
.lead label span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.invite__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.invite__input,
.lead input,
.lead textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(244, 240, 248, 0.14);
  border-radius: 12px;
  background: rgba(16, 8, 22, 0.65);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  outline: none;
}

.invite__input {
  flex: 1 1 220px;
  width: auto;
}

.lead textarea {
  min-height: 96px;
  resize: vertical;
}

.invite__input:focus,
.lead input:focus,
.lead textarea:focus {
  border-color: rgba(194, 107, 255, 0.55);
}

.invite__msg {
  min-height: 1.35em;
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.invite__msg.is-error {
  color: #fca5a5;
}

.invite__msg.is-ok {
  color: #86efac;
}

.invite__found {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.invite__studio {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.lead__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .lead__grid {
    grid-template-columns: 1fr 1fr;
  }

  .lead__wide {
    grid-column: 1 / -1;
  }
}

.access__stub {
  margin: 1.5rem 0 0;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.95rem;
  font-weight: 600;
}

.faq {
  position: relative;
  z-index: 1;
  padding: 4rem 0 5rem;
}

.faq__inner {
  padding: 0 1.5rem;
}

.faq__list details {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
}

.faq__list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq__list summary::-webkit-details-marker {
  display: none;
}

.faq__list p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-weight: 500;
}

.faq__list a {
  color: var(--accent);
}

.foot {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 1.5rem 2.75rem;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.foot__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
}

.foot__brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.foot__links a:hover {
  color: var(--accent);
}

.foot__note {
  margin: 0;
  color: var(--dim);
  font-size: 0.82rem;
  font-weight: 500;
}

.legal {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 7rem 1.5rem 5rem;
}

.legal p,
.legal li {
  color: var(--muted);
  font-weight: 500;
}

.legal ul {
  padding-left: 1.2rem;
}

.legal a {
  color: var(--accent);
}

.cred {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 0.5rem;
}

.cred__row {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(194, 107, 255, 0.16);
  border-radius: 12px;
  background: rgba(16, 8, 22, 0.45);
}

@media (max-width: 560px) {
  .cred__row {
    grid-template-columns: 1fr auto;
  }

  .cred__k {
    grid-column: 1 / -1;
  }
}

.cred__k {
  color: var(--dim);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cred code {
  overflow: hidden;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cred__copy {
  min-height: 36px;
  padding: 0 0.7rem;
  border: 1px solid rgba(244, 240, 248, 0.14);
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.cred__copy.is-ok {
  color: #86efac;
  border-color: rgba(134, 239, 172, 0.35);
}

.zoom {
  width: min(96vw, 1180px);
  max-height: 92vh;
  padding: 0;
  border: 1px solid rgba(194, 107, 255, 0.28);
  border-radius: 16px;
  background: #0c0812;
}

.zoom::backdrop {
  background: rgba(7, 4, 12, 0.82);
}

.zoom img {
  width: 100%;
  max-height: calc(92vh - 52px);
  object-fit: contain;
  background: #0c0812;
}

.zoom__bar,
.zoom__next {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0 0.75rem;
  border: 0;
  background: #100818;
  color: var(--text);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
}

.zoom__bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  justify-content: space-between;
}

.zoom__bar button,
.zoom__next {
  cursor: pointer;
  color: var(--muted);
  background: transparent;
}

.zoom__cap {
  margin: 0;
  flex: 1;
  text-align: center;
  color: var(--text);
  font-size: 0.86rem;
}

.zoom__next {
  width: 100%;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dock {
  position: fixed;
  z-index: 35;
  left: 50%;
  bottom: 1rem;
  display: flex;
  gap: 0.45rem;
  padding: 0.4rem;
  border: 1px solid rgba(194, 107, 255, 0.22);
  border-radius: 999px;
  background: rgba(7, 4, 12, 0.88);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.dock[hidden] {
  display: none;
}

.dock a {
  min-height: 40px;
  padding: 0 0.95rem;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
}

.dock a:last-child {
  color: #14081c;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

@media (min-width: 900px) {
  .dock {
    display: none !important;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero__img,
  .status[data-state="loading"] .status__dot,
  .orb {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
