:root {
  --white: #ffffff;
  --ink: #f9f6ff;
  --muted: #c9c0d8;
  --dim: #8f849e;
  --night: #07020d;
  --deep: #0e0620;
  --plum: #1a1029;
  --panel: rgba(23, 14, 36, 0.74);
  --glass: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.16);
  --violet: #875cff;
  --violet-2: #6f42ef;
  --pink: #ff9dca;
  --cyan: #48d9ff;
  --gold: #ffd964;
  --shadow: 0 34px 120px rgba(0, 0, 0, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 48% 0, rgba(74, 47, 145, 0.34), transparent 23rem),
    radial-gradient(circle at 14% 29rem, rgba(255, 99, 184, 0.16), transparent 24rem),
    radial-gradient(circle at 86% 41rem, rgba(72, 217, 255, 0.12), transparent 25rem),
    linear-gradient(180deg, #111034 0, var(--night) 18rem, #090313 100%);
  overflow-x: hidden;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 217, 100, 0.9);
  outline-offset: 4px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem clamp(1rem, 5vw, 5rem);
  background: linear-gradient(180deg, rgba(9, 3, 18, 0.82), rgba(9, 3, 18, 0.48));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-height: 3.1rem;
  padding: 0.62rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.brand-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 1rem rgba(255, 217, 100, 0.82);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.65rem);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav a {
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 40rem);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6.5rem);
  max-width: 92rem;
  margin: 0 auto;
  min-height: calc(100vh - 5.3rem);
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 6vw, 6rem) 5rem;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 48rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(158, 117, 255, 0.96), rgba(104, 59, 225, 0.96));
  box-shadow: 0 0 1.6rem rgba(135, 92, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: lowercase;
}

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

h1 {
  margin: 1.2rem 0 1rem;
  font-size: 8rem;
  line-height: 0.86;
  font-weight: 950;
  letter-spacing: 0;
}

.lead {
  max-width: 39rem;
  color: var(--muted);
  font-size: 1.32rem;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.primary-action,
.secondary-action,
.play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.55rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 950;
}

.primary-action {
  color: #fff;
  background: linear-gradient(180deg, #a985ff, var(--violet) 48%, var(--violet-2));
  box-shadow: 0 0.9rem 2.3rem rgba(128, 86, 255, 0.34);
}

.secondary-action {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
}

.showcase {
  position: relative;
  width: min(100%, 40rem);
  justify-self: end;
  min-height: 43rem;
  isolation: isolate;
}

.showcase::before {
  content: "";
  position: absolute;
  inset: 7% 10% 10%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 157, 202, 0.36), transparent 47%),
    radial-gradient(circle at 70% 30%, rgba(72, 217, 255, 0.32), transparent 42%);
  filter: blur(42px);
}

.screen-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2.05rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.screen-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-card-main {
  left: 50%;
  top: 0;
  z-index: 3;
  width: min(64vw, 21.5rem);
  aspect-ratio: 591 / 1280;
  transform: translateX(-50%);
}

.screen-card-left,
.screen-card-right {
  top: 5.2rem;
  width: min(38vw, 14.8rem);
  aspect-ratio: 591 / 1280;
  opacity: 0.74;
  filter: saturate(0.88) brightness(0.78);
}

.screen-card-left {
  left: 0.25rem;
  transform: rotate(-7deg);
}

.screen-card-right {
  right: 0.25rem;
  transform: rotate(7deg);
}

.halo-card {
  position: absolute;
  right: 0;
  bottom: 2.6rem;
  z-index: 5;
  display: grid;
  gap: 0.18rem;
  min-width: 13.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.35rem;
  background: rgba(20, 13, 32, 0.78);
  box-shadow: 0 1.4rem 3.5rem rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.halo-card span {
  color: var(--dim);
  font-size: 0.82rem;
  font-weight: 850;
}

.halo-card strong {
  font-size: 1.2rem;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 80rem;
  margin: 0 clamp(1rem, 6vw, 6rem);
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.28);
}

.signal-strip div {
  min-height: 8rem;
  display: grid;
  align-content: center;
  gap: 0.4rem;
  padding: 1.3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.signal-strip strong {
  font-size: 1.55rem;
  font-weight: 950;
}

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

.workflow,
.gallery-section,
.download-section,
.privacy-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 6vw, 6rem);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.download-panel h2 {
  margin: 1rem 0 0.85rem;
  font-size: 4.4rem;
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
}

.section-heading p,
.download-panel p,
.privacy-content p,
.workflow-grid p {
  color: var(--muted);
  line-height: 1.56;
}

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

.workflow-grid article,
.privacy-content article {
  min-height: 15rem;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(17, 9, 29, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.step {
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: rgba(135, 92, 255, 0.17);
  border: 1px solid rgba(135, 92, 255, 0.42);
  color: var(--pink);
  font-weight: 950;
}

.workflow-grid h3,
.privacy-content h3 {
  margin-bottom: 0.6rem;
  font-size: 1.45rem;
  font-weight: 950;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.4rem);
  align-items: start;
}

.gallery figure {
  margin-bottom: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 2rem;
  background: var(--glass);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.38);
}

.gallery figure:nth-child(2) {
  margin-top: 3rem;
}

.gallery figure:nth-child(3) {
  margin-top: 1.1rem;
}

.gallery img {
  width: 100%;
  aspect-ratio: 591 / 1280;
  object-fit: cover;
}

.download-section {
  padding-top: 2rem;
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 23rem);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
  padding: clamp(1.4rem, 5vw, 3.5rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2.2rem;
  background:
    radial-gradient(circle at 82% 22%, rgba(72, 217, 255, 0.22), transparent 17rem),
    radial-gradient(circle at 18% 96%, rgba(255, 157, 202, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(42, 29, 65, 0.94), rgba(12, 6, 22, 0.96));
  box-shadow: var(--shadow);
}

.download-panel p {
  max-width: 42rem;
  font-size: 1.08rem;
}

.play-button {
  gap: 0.85rem;
  margin-top: 1.3rem;
  padding: 0.88rem 1.2rem;
  color: #08030d;
  background: #fff;
  box-shadow: 0 1.2rem 3rem rgba(255, 255, 255, 0.13);
}

.play-button small {
  display: block;
  color: #4b4456;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
}

.play-button-disabled {
  opacity: 0.72;
  cursor: not-allowed;
  pointer-events: none;
}

.play-mark {
  width: 0;
  height: 0;
  border-top: 0.72rem solid transparent;
  border-bottom: 0.72rem solid transparent;
  border-left: 1.08rem solid var(--violet);
  filter: drop-shadow(0 0 0.4rem rgba(135, 92, 255, 0.42));
}

.qr-card {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.55rem;
  background: rgba(255, 255, 255, 0.09);
  text-align: center;
}

.qr-grid {
  width: min(100%, 14.5rem);
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  padding: 0.85rem;
  border-radius: 1.05rem;
  background: #fff;
}

.qr-grid span {
  border-radius: 0.28rem;
  background: #0c0614;
}

.qr-grid span:nth-child(2),
.qr-grid span:nth-child(5),
.qr-grid span:nth-child(8),
.qr-grid span:nth-child(10),
.qr-grid span:nth-child(13) {
  opacity: 0.14;
}

.qr-card p {
  margin-bottom: 0;
  color: var(--dim);
}

.privacy-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 clamp(1rem, 6vw, 6rem) clamp(4rem, 8vw, 7rem);
  padding: clamp(1.3rem, 4vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.8rem;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 217, 100, 0.16), transparent 15rem),
    linear-gradient(135deg, rgba(32, 22, 51, 0.88), rgba(13, 7, 24, 0.94));
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.28);
}

.privacy-teaser h2 {
  margin: 1rem 0 0.5rem;
  font-size: 2.7rem;
  line-height: 1;
  font-weight: 950;
}

.privacy-teaser p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.policy-hero,
.policy-layout {
  padding-left: clamp(1rem, 6vw, 6rem);
  padding-right: clamp(1rem, 6vw, 6rem);
}

.policy-hero {
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: 2rem;
}

.policy-hero h1 {
  margin-bottom: 1rem;
  font-size: 5.8rem;
}

.policy-hero > p {
  max-width: 50rem;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.58;
}

.policy-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 62rem;
  margin: 2rem 0 0;
}

.policy-meta div {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.07);
}

.policy-meta dt {
  color: var(--dim);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-meta dd {
  margin: 0.35rem 0 0;
  color: var(--ink);
  font-weight: 900;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(13rem, 16rem) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  max-width: 82rem;
  margin: 0 auto;
  padding-top: 1.5rem;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.policy-toc {
  position: sticky;
  top: 6.2rem;
  align-self: start;
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.45rem;
  background:
    radial-gradient(circle at 18% 0, rgba(255, 157, 202, 0.16), transparent 8rem),
    radial-gradient(circle at 86% 14%, rgba(72, 217, 255, 0.13), transparent 9rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(16, 9, 27, 0.82);
  box-shadow: 0 1.4rem 3.4rem rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(20px);
}

.policy-toc-head {
  display: grid;
  gap: 0.25rem;
  padding: 0.15rem 0.2rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.policy-kicker {
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.policy-toc strong {
  font-size: 1.1rem;
}

.policy-toc-links {
  display: grid;
  gap: 0.28rem;
}

.policy-toc-links a {
  position: relative;
  min-height: 2.35rem;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.55rem;
  border: 1px solid transparent;
  border-radius: 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.policy-toc-links a::before {
  content: attr(data-index);
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 0.62rem;
  color: var(--dim);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.7rem;
  font-weight: 950;
}

.policy-toc-links a::after {
  content: "";
  position: absolute;
  inset: auto 0.55rem 0.25rem 2.95rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 157, 202, 0.5), transparent);
  opacity: 0;
}

.policy-toc-links a:hover,
.policy-toc-links a:focus-visible {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(0.12rem);
}

.policy-toc-links a:hover::before,
.policy-toc-links a:focus-visible::before {
  color: #fff;
  background: linear-gradient(180deg, rgba(158, 117, 255, 0.96), rgba(104, 59, 225, 0.96));
}

.policy-toc-links a:hover::after,
.policy-toc-links a:focus-visible::after {
  opacity: 1;
}

.policy-content {
  display: grid;
  gap: 1rem;
}

.policy-content article {
  scroll-margin-top: 7rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(17, 9, 29, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.policy-content h2 {
  margin-bottom: 0.8rem;
  font-size: 1.55rem;
  line-height: 1.15;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  line-height: 1.65;
}

.policy-content a {
  color: var(--pink);
  font-weight: 900;
}

.policy-content ul {
  padding-left: 1.25rem;
}

.note {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 217, 100, 0.28);
  border-radius: 1rem;
  background: rgba(255, 217, 100, 0.08);
  color: #efe2ab !important;
}

.policy-table {
  display: grid;
  margin: 1.2rem 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
}

.policy-table > div {
  display: grid;
  grid-template-columns: 0.85fr 1.1fr 1.3fr;
}

.policy-table > div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.policy-table strong,
.policy-table span {
  padding: 0.85rem;
  line-height: 1.45;
}

.policy-table strong {
  background: rgba(255, 255, 255, 0.1);
}

.policy-table span {
  color: var(--muted);
}

.policy-table span + span,
.policy-table strong + strong {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.025));
}

.privacy-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem clamp(1rem, 6vw, 6rem) 2.6rem;
  color: var(--dim);
}

.footer .brand {
  flex: 0 0 auto;
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  justify-content: center;
}

.footer-links a {
  color: var(--muted);
  font-weight: 800;
}

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

@media (min-width: 1320px) {
  .signal-strip,
  .privacy-teaser {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1180px) {
  h1 {
    font-size: 7rem;
  }

  .hero {
    grid-template-columns: minmax(0, 0.88fr) minmax(21rem, 35rem);
    gap: 3rem;
  }

  .showcase {
    min-height: 40rem;
  }

  .screen-card-main {
    width: min(58vw, 19.5rem);
  }

  .screen-card-left,
  .screen-card-right {
    width: min(31vw, 13rem);
  }

  .policy-table > div {
    grid-template-columns: 0.9fr 1fr 1.15fr;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 6.2rem;
  }

  .section-heading h2,
  .download-panel h2 {
    font-size: 3.7rem;
  }

  .hero {
    grid-template-columns: 1fr;
    max-width: 52rem;
    min-height: auto;
  }

  .showcase {
    justify-self: center;
    min-height: 39rem;
    max-width: 40rem;
  }

  .workflow-grid,
  .privacy-content {
    grid-template-columns: 1fr 1fr;
  }

  .download-panel {
    grid-template-columns: 1fr;
  }

  .qr-card {
    max-width: 23rem;
  }

  .privacy-teaser,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-teaser {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-toc {
    position: static;
  }

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

  .policy-meta {
    grid-template-columns: 1fr;
  }

  .policy-hero h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 1rem;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  h1 {
    font-size: 4.6rem;
  }

  .lead {
    font-size: 1.14rem;
  }

  .hero {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
  }

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

  .showcase {
    min-height: 34rem;
  }

  .screen-card-main {
    width: min(72vw, 18.5rem);
  }

  .screen-card-left,
  .screen-card-right {
    width: min(40vw, 11rem);
    top: 6rem;
  }

  .halo-card {
    right: 0.4rem;
    bottom: 0.6rem;
    min-width: 11.2rem;
  }

  .signal-strip,
  .workflow-grid,
  .gallery,
  .privacy-content {
    grid-template-columns: 1fr;
  }

  .signal-strip div {
    min-height: 6.3rem;
  }

  .gallery figure,
  .gallery figure:nth-child(2),
  .gallery figure:nth-child(3) {
    margin-top: 0;
  }

  .gallery {
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
  }

  .section-heading h2,
  .download-panel h2 {
    font-size: 3rem;
  }

  .play-button {
    width: 100%;
  }

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

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

  .privacy-teaser h2 {
    font-size: 2.35rem;
  }

  .policy-hero h1 {
    font-size: 3.4rem;
  }

  .policy-content article {
    scroll-margin-top: 1rem;
  }

  .policy-table,
  .policy-table > div,
  .policy-table strong,
  .policy-table span {
    display: block;
  }

  .policy-table strong + strong,
  .policy-table span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .policy-toc {
    display: none;
  }
}

@media (max-width: 520px) {
  .showcase {
    min-height: 30rem;
  }

  .screen-card-left,
  .screen-card-right {
    display: none;
  }

  .screen-card-main {
    width: min(82vw, 18rem);
  }

  .halo-card {
    left: 50%;
    right: auto;
    bottom: 0;
    transform: translateX(-50%);
    width: min(100%, 16rem);
    text-align: center;
  }

  .download-panel,
  .privacy-teaser,
  .policy-content article {
    border-radius: 1.35rem;
  }

  .qr-grid {
    width: min(100%, 12rem);
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 3.7rem;
  }

  .lead {
    font-size: 1.05rem;
  }

  .showcase {
    min-height: 28rem;
  }

  .screen-card-left,
  .screen-card-right {
    display: none;
  }

  .screen-card-main {
    width: min(82vw, 17rem);
  }

  .policy-hero h1 {
    font-size: 2.8rem;
  }
}
