@font-face {
  font-family: "Geist Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("https://cdn.jsdelivr.net/npm/@fontsource/geist-sans@5.2.5/files/geist-sans-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("https://cdn.jsdelivr.net/npm/@fontsource/geist-sans@5.2.5/files/geist-sans-latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("https://cdn.jsdelivr.net/npm/@fontsource/geist-sans@5.2.5/files/geist-sans-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("https://cdn.jsdelivr.net/npm/@fontsource/geist-sans@5.2.5/files/geist-sans-latin-700-normal.woff2") format("woff2");
}

@property --sidebar-slide {
  syntax: "<length>";
  inherits: true;
  initial-value: 0px;
}

:root {
  --bg: #000000;
  --sidebar: #000000;
  --text: #ececec;
  --muted: #8a8a8a;
  --hover: rgba(255, 255, 255, 0.06);
  --active: rgba(255, 255, 255, 0.06);
  --press: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --sidebar-w: 260px;
  --radius: 10px;
  --topbar-h: 52px;
  --toggle-size: 36px;
  --toggle-top: 16px;
  --toggle-closed-left: 12px;
  --sidebar-pad-x: 8px;
  --toggle-open-shift: calc(min(var(--sidebar-w), 86vw) - var(--sidebar-pad-x) - var(--toggle-size) - var(--toggle-closed-left));
  --ease: 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  background: var(--bg);
  color-scheme: dark;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #000;
  color: var(--text);
  font-family: "Geist Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  --sidebar-slide: 0px;
  transition: --sidebar-slide var(--ease);
}

body.is-locked {
  overflow: hidden;
}

body.sidebar-collapsed {
  --sidebar-slide: calc(-1 * var(--sidebar-w));
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 80;
  padding: 8px 12px;
  background: #111;
  border-radius: 8px;
}

.skip:focus {
  top: 12px;
}

.app {
  min-height: 100dvh;
}

.sidebar-backdrop {
  display: none;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar-w);
  background: var(--sidebar);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 16px 8px 12px;
  z-index: 40;
  transform: translateX(var(--sidebar-slide));
}

.sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 16px;
}

.brand {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  flex: none;
  margin-left: 6px;
}

.brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.sidebar-nav,
.sidebar-foot {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-nav {
  flex: 1;
}

.sidebar-foot {
  margin-top: 2px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: var(--hover);
  color: #fff;
}

.nav-link:active {
  background: var(--press);
}

.sidebar-toggle {
  position: fixed;
  top: var(--toggle-top);
  left: var(--toggle-closed-left);
  z-index: 50;
  transform: translate3d(max(0px, calc(var(--toggle-open-shift) + var(--sidebar-slide))), 0, 0);
}

body.sidebar-animating .sidebar,
body.sidebar-animating .sidebar-toggle,
body.sidebar-animating .sidebar-backdrop {
  pointer-events: none;
}

body.sidebar-no-motion,
body.sidebar-no-motion .sidebar,
body.sidebar-no-motion .sidebar-toggle,
body.sidebar-no-motion .main {
  transition: none;
}

.main {
  margin-left: var(--sidebar-w);
  min-height: 100dvh;
  background: #000;
}

body.sidebar-collapsed .sidebar {
  pointer-events: none;
}

@media (min-width: 901px) {
  .main {
    margin-left: calc(var(--sidebar-w) + var(--sidebar-slide));
  }
}

.content {
  width: min(760px, calc(100% - 64px));
  margin: 0 auto;
  padding: 56px 0 96px;
}

.hero {
  display: grid;
  place-items: center;
  min-height: 100dvh;
  width: auto;
  margin: 0;
  padding: 0 32px;
}

.hero-mark {
  width: 420px;
  max-width: 100%;
}

.store {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.store a {
  display: block;
  line-height: 0;
}

.store-icon img {
  width: 184px;
  height: 184px;
}

.store-badge img {
  width: 120px;
  height: auto;
}

.contact-email {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
}

.policy {
  margin: 0;
  max-width: 28rem;
  text-align: left;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: -0.01em;
  color: #fff;
}

.policy p {
  margin: 0;
}

.policy p + p {
  margin-top: 1em;
}

.page-kicker {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

h1 {
  margin: 0 0 20px;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.prose h2 {
  margin: 36px 0 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.prose p,
.prose li {
  color: #c6c6c6;
}

.prose p {
  margin: 0 0 14px;
}

.prose ul {
  margin: 0 0 16px;
  padding-left: 1.2em;
}

.prose li + li {
  margin-top: 6px;
}

.meta {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 28px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 36px;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 16px;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  font-weight: 500;
  letter-spacing: -0.02em;
}

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

.faq details p {
  margin: 0 0 16px;
  color: #c6c6c6;
}

.form {
  display: grid;
  gap: 12px;
  max-width: 520px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #d0d0d0;
}

input,
textarea {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 12px;
  outline: none;
}

input:focus,
textarea:focus,
input:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.btn {
  appearance: none;
  border: 0;
  background: #fff;
  color: #000;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-radius: 10px;
  padding: 11px 16px;
  width: fit-content;
  cursor: pointer;
}

.btn:hover {
  background: #e8e8e8;
}

.form-note,
.form-success {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.form-success {
  color: #cfcfcf;
}

.icon-btn {
  appearance: none;
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.icon-btn:hover {
  background: var(--hover);
}

.icon-btn:active {
  background: var(--press);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:focus-visible:not(input):not(textarea) {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 8px;
}

@media (max-width: 900px) {
  body {
    --sidebar-slide: calc(-1 * min(var(--sidebar-w), 86vw));
  }

  body:has(.sidebar.is-open) {
    --sidebar-slide: 0px;
  }

  .sidebar {
    width: min(var(--sidebar-w), 86vw);
    box-shadow: none;
  }

  .sidebar-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease);
    z-index: 30;
  }

  .sidebar-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .main {
    margin-left: 0;
  }

  body.sidebar-collapsed .main {
    margin-left: 0;
  }

  .content {
    width: min(760px, calc(100% - 40px));
    padding: 64px 0 72px;
  }

  .hero {
    min-height: 100dvh;
    padding: 0 20px;
  }

  h1 {
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
