:root {
  color-scheme: dark;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --glass: rgba(8, 8, 9, 0.42);
  --line: rgba(255, 255, 255, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background: #000;
  color: var(--ink);
}

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

button {
  font: inherit;
}

.stage {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  overflow: hidden;
  isolation: isolate;
}

.film,
.scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.film {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04) brightness(1);
}

.scrim {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0.16), transparent 28%),
    linear-gradient(180deg, transparent, transparent 58%, rgba(0, 0, 0, 0.24)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.14), transparent 34%, transparent 66%, rgba(0, 0, 0, 0.14));
}

.centerpiece {
  width: min(680px, 100%);
  display: grid;
  justify-items: center;
  gap: clamp(30px, 6vh, 58px);
  transform: translateY(-2vh);
}

.mark {
  width: clamp(210px, 34vw, 430px);
  height: auto;
  filter: drop-shadow(0 14px 36px rgba(0, 0, 0, 0.42));
}

.actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(24px) saturate(1.25);
}

.request,
.store {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.request {
  padding: 0 22px;
  color: #080808;
  background: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  font-weight: 850;
}

.store {
  width: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.store img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.32));
}

.request:hover,
.store:hover {
  transform: translateY(-1px);
}

.store:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.18);
}

.footer {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 15px;
  color: var(--muted);
  font-size: 13px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.footer a:hover {
  color: #fff;
}

.privacy {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.36));
}

.privacy[hidden] {
  display: none;
}

.privacy-sheet {
  width: min(560px, 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 8, 9, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(24px) saturate(1.2);
}

.privacy-sheet p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.privacy-sheet a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-options {
  width: 100%;
  display: flex;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.privacy-options[hidden] {
  display: none;
}

.privacy-actions {
  display: flex;
  gap: 8px;
}

.privacy-actions button {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  padding: 0 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.privacy-actions button:last-child {
  color: #080808;
  background: #fff;
}

@media (max-width: 560px) {
  .stage {
    padding: 22px;
  }

  .actions {
    width: 100%;
  }

  .request {
    flex: 1;
    min-width: 0;
    padding: 0 14px;
  }

  .store {
    flex: 0 0 48px;
  }

  .footer {
    font-size: 12px;
  }
}
