:root,
:root[data-theme="midnight"] {
  color-scheme: dark;
  --bg: #000000;
  --bg-2: #000000;
  --panel: #000000;
  --panel-2: #000000;
  --border: rgba(255, 255, 255, 0.1);
  --text: #f5f5f5;
  --muted: #a6a6a8;
  --accent: #f2f2f2;
  --accent-2: #ffffff;
  --accent-warm: #d8d8da;
  --good: #d8d8da;
  --danger: #d8d8da;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --nav-width: 260px;
  --nav-collapsed: 76px;
  --section-gap: 20px;
  --page-bg: #000000;
  --topbar-bg: #000000;
  --nav-bg: #000000;
  --nav-scrim: rgba(0, 0, 0, 0.72);
  --section-bg: #000000;
  --section-border: var(--border);
  --card-bg: #000000;
  --btn-ghost-border: rgba(255, 255, 255, 0.18);
  --badge-border: rgba(255, 255, 255, 0.12);
  --badge-bg: #000000;
  --badge-text: var(--muted);
  --qr-border: rgba(255, 255, 255, 0.2);
  --qr-bg: #000000;
  --accent-ink: #050505;
  --icon-btn-bg: #000000;
  --icon-btn-border: rgba(255, 255, 255, 0.1);
  --icon-btn-border-hover: rgba(255, 255, 255, 0.26);
  --nav-link-hover-border: rgba(255, 255, 255, 0.22);
  --nav-link-hover-bg: #000000;
  --focus-ring: rgba(255, 255, 255, 0.68);
  --hover-border: rgba(255, 255, 255, 0.22);
  --logo-badge-bg: #000000;
  --logo-badge-text: #ffffff;
  --logo-badge-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  --stage-bg: #000000;
  --stage-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
  --stage-dot: transparent;
  --stage-grid: transparent;
  --stage-grid-2: transparent;
  --frame-border: rgba(255, 255, 255, 0.08);
  --frame-bg: #000000;
  --frame-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 18px 30px rgba(0, 0, 0, 0.35);
  --frame-notch: #000000;
  --frame-notch-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
  --frame-inner-border: rgba(255, 255, 255, 0.05);
  --frame-media-bg: #000000;
  --lightbox-bg: rgba(0, 0, 0, 0.82);
  --lightbox-content-bg: #000000;
  --lightbox-media-bg: #000000;
  --input-bg: #000000;
  --input-border: rgba(255, 255, 255, 0.16);
  --input-placeholder: #7f8798;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.38);
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--page-bg);
  color: var(--text);
  overflow-x: hidden;
}

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

a:hover {
  color: var(--accent-2);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page {
  min-height: 100vh;
  position: relative;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--topbar-bg);
  border-bottom: 1px solid var(--section-border);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.logo-badge {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--logo-badge-bg);
  color: var(--logo-badge-text);
  font-weight: 700;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--logo-badge-shadow);
}

.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-btn {
  border: 1px solid var(--icon-btn-border);
  background: var(--icon-btn-bg);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 16px;
  cursor: pointer;
}

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

.collapse-icon {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}

.nav-collapsed .collapse-icon {
  transform: rotate(0deg);
}

.nav {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--nav-width);
  padding: 22px 16px 20px;
  background: var(--nav-bg);
  border-right: 1px solid var(--border);
  transform: translateX(-100%);
  transition: transform 0.25s ease, width 0.25s ease;
  z-index: 30;
}

.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.nav-links {
  display: grid;
  gap: 10px;
}

.nav-group {
  display: grid;
  gap: 8px;
}

.nav-links a,
.nav-group-toggle {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-group-toggle {
  width: 100%;
  text-align: left;
  background: none;
  cursor: pointer;
  font: inherit;
  justify-content: space-between;
  list-style: none;
}

.nav-group-toggle::-webkit-details-marker {
  display: none;
}

.nav-group-toggle::marker {
  content: '';
}

.nav-links a:hover,
.nav-links a:focus,
.nav-group-toggle:hover,
.nav-group-toggle:focus {
  color: var(--text);
  border-color: var(--nav-link-hover-border);
  background: var(--nav-link-hover-bg);
}

.nav-group-icon {
  display: inline-block;
  font-size: 12px;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
}

.nav-group[open] .nav-group-icon {
  transform: rotate(90deg);
}

.nav-group-links {
  display: grid;
  gap: 8px;
  padding-left: 14px;
  margin-left: 4px;
  border-left: 1px solid var(--border);
}

.nav-group-links a {
  font-size: 14px;
  padding: 8px 12px;
}

.nav-meta {
  margin-top: 24px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.nav-meta a {
  color: var(--muted);
}

.nav-open .nav {
  transform: translateX(0);
}

.nav-open .nav-scrim {
  opacity: 1;
  pointer-events: auto;
}

.nav-scrim {
  position: fixed;
  inset: 0;
  background: var(--nav-scrim);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 25;
}

.content {
  padding: 20px 20px 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  margin: var(--section-gap) 0;
  padding: 28px;
  border: 1px solid var(--section-border);
  border-radius: var(--radius);
  background: var(--section-bg);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.38);
}

.content > .section:first-child {
  margin-top: 0;
}

.content > .waitlist-reveal:first-child + .section {
  margin-top: 0;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.section p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

.section p a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.36);
  text-underline-offset: 3px;
}

.hero {
  display: grid;
  gap: 28px;
  overflow: visible;
  min-height: min(640px, calc(100vh - 120px));
  align-items: center;
  background: #000000;
}

.hero-copy {
  max-width: 620px;
}

.hero-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.hero-title-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: var(--logo-badge-shadow);
}

.hero h1 {
  font-size: 36px;
  line-height: 1;
  margin: 0;
  max-width: 680px;
  overflow-wrap: break-word;
}

.hero p {
  font-size: 18px;
  max-width: 620px;
}

.hero-preview {
  display: block;
  justify-self: center;
  width: min(100%, 290px);
  align-self: center;
  line-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  touch-action: manipulation;
  appearance: none;
}

.hero-preview img {
  width: 100%;
  background: #000000;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.hero-preview:focus-visible {
  outline: none;
}

.page-hero h1 {
  font-size: 42px;
  line-height: 1;
  margin: 0 0 14px;
}

.page-hero .hero-title-row h1 {
  font-size: 36px;
  margin: 0;
  max-width: 680px;
  overflow-wrap: break-word;
}

.page-hero p {
  max-width: 720px;
}

.contact-panel {
  min-height: clamp(180px, 28vh, 300px);
  display: grid;
  place-items: center;
  padding: 30px 0 0;
}

.contact-email {
  display: inline-flex;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--muted);
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 600;
  line-height: 1;
  overflow-wrap: anywhere;
  transition: border-color 180ms ease, color 180ms ease;
}

.contact-email:hover,
.contact-email:focus {
  border-color: var(--hover-border);
  color: var(--accent-2);
}

.download-content {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.download-panel {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 18px;
  min-height: clamp(220px, 42vh, 440px);
  text-align: center;
}

.download-panel h1 {
  margin: 0;
  max-width: 480px;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 500;
  line-height: 1.2;
}

.download-panel p {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.45;
}

.waitlist-section {
  display: grid;
  gap: 16px;
  align-items: center;
  padding-block: 22px;
}

.waitlist-copy {
  min-width: 0;
}

.waitlist-copy h2 {
  margin: 0;
}

.waitlist-form {
  width: min(100%, 520px);
  display: grid;
  gap: 9px;
}

.waitlist-form--centered {
  justify-self: center;
  width: min(100%, 480px);
  margin-top: 0;
}

.waitlist-form--inline {
  width: min(100%, 440px);
}

.waitlist-reveal {
  margin: 0 0 var(--section-gap);
  padding: 0 28px 2px;
  scroll-margin-top: 96px;
}

.waitlist-reveal[hidden] {
  display: none;
}

.waitlist-reveal.is-visible {
  animation: waitlist-reveal-in 180ms ease-out;
}

.waitlist-reveal-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px 16px;
  max-width: 760px;
}

.waitlist-reveal-copy {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.waitlist-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  min-width: 0;
}

.waitlist-input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--input-border);
  border-radius: 999px;
  background: var(--input-bg);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  line-height: 1.2;
  padding: 12px 15px;
  outline: none;
}

.waitlist-input::placeholder {
  color: var(--input-placeholder);
}

.waitlist-input:focus {
  border-color: var(--focus-ring);
}

.waitlist-submit {
  flex: 0 0 auto;
}

.waitlist-note,
.waitlist-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.waitlist-status {
  min-height: 0;
}

.waitlist-status:empty {
  display: none;
}

.waitlist-status[data-tone="success"] {
  color: var(--text);
}

.waitlist-status[data-tone="error"] {
  color: #ff8b8b;
}

.waitlist-hp {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
}

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

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.68;
}

.btn.primary {
  background: #000000;
  border-color: var(--btn-ghost-border);
  color: var(--text);
  box-shadow: none;
}

.topbar .btn.primary {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #050505;
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.12);
}

.topbar .btn.primary:hover,
.topbar .btn.primary:focus {
  background: #ffffff;
  border-color: #ffffff;
  color: #050505;
}

.topbar-placeholder {
  visibility: hidden;
  pointer-events: none;
}

.btn.ghost {
  background: transparent;
  border-color: var(--btn-ghost-border);
  color: var(--text);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--badge-border);
  background: var(--badge-bg);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--badge-text);
}

.gallery-grid {
  --gallery-frame-max-height: calc(90vh - 140px);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: var(--section-gap) 0;
  scroll-margin-top: 100px;
}

.gallery-tile {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.gallery-tile > h2,
.gallery-tile > p {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gallery-grid .gallery-tile:first-child {
  display: none;
}

.gallery-card {
  text-align: left;
  width: 100%;
  cursor: pointer;
  appearance: none;
  border-radius: 22px;
  padding: 0;
  background: #000000;
  border: 1px solid var(--border);
  display: grid;
  color: inherit;
  font: inherit;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.gallery-card:hover {
  transform: translateY(-3px);
  border-color: var(--hover-border);
}

.gallery-card:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

.phone-stage {
  position: relative;
  border-radius: 20px;
  padding: 16px;
  display: grid;
  place-items: center;
  background: var(--stage-bg);
  box-shadow: var(--stage-shadow);
  overflow: hidden;
  justify-self: center;
  width: min(100%, calc(var(--gallery-frame-max-height, 70vh) * 9 / 19.5 + 32px));
}

.phone-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-radial-gradient(circle at 20% 20%, var(--stage-dot), transparent 2px);
  opacity: 0.08;
  pointer-events: none;
}

.phone-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, var(--stage-grid) 0, var(--stage-grid) 1px, transparent 1px, transparent 16px),
    repeating-linear-gradient(90deg, var(--stage-grid-2) 0, var(--stage-grid-2) 1px, transparent 1px, transparent 16px);
  opacity: 0.12;
  pointer-events: none;
}

.phone-stage--bare {
  padding-block: 18px;
  background: transparent;
  box-shadow: none;
  border-radius: 22px;
  overflow: visible;
  width: min(100%, calc(var(--gallery-frame-max-height, 70vh) * 9 / 19.5));
}

.phone-stage--bare::before,
.phone-stage--bare::after {
  display: none;
}

.phone-stage--bare img,
.phone-stage--bare video {
  width: 100%;
  height: auto;
  display: block;
  background: #000000;
  border-radius: 22px;
}

.phone-frame {
  position: relative;
  z-index: 1;
  border-radius: 32px;
  border: 1px solid var(--frame-border);
  background: var(--frame-bg);
  padding: 16px 10px 12px;
  aspect-ratio: 9 / 19.5;
  width: min(100%, calc(var(--gallery-frame-max-height, 70vh) * 9 / 19.5));
  max-height: var(--gallery-frame-max-height, 70vh);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--frame-shadow);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 20px;
  border-radius: 999px;
  background: var(--frame-notch);
  box-shadow: var(--frame-notch-shadow);
  z-index: 2;
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 26px;
  border: 1px solid var(--frame-inner-border);
  pointer-events: none;
}

.phone-frame video,
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  background: var(--frame-media-bg);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--lightbox-bg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 50;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  width: min(90vw, 960px);
  background: var(--lightbox-content-bg);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.lightbox--image-preview .lightbox-content {
  width: min(92vw, 1080px);
  max-height: calc(100vh - 48px);
  padding: clamp(14px, 2vw, 22px);
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
  z-index: 2;
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.lightbox.is-single .lightbox-nav {
  display: none;
}

.lightbox-media {
  border-radius: 16px;
  background: var(--lightbox-media-bg);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 3;
}

.lightbox--image-preview .lightbox-media {
  order: 3;
  padding: 0;
  overflow: hidden;
}

.lightbox-crop {
  position: relative;
  width: min(100%, 540px);
  height: min(80vh, 760px);
  max-height: calc(100vh - 92px);
  border-radius: 16px;
  background: #000000;
  display: grid;
  place-items: center;
  overflow: hidden;
  touch-action: none;
  user-select: none;
  contain: layout paint;
}

.lightbox-crop.can-pan {
  cursor: grab;
}

.lightbox-crop.is-panning {
  cursor: grabbing;
}

.lightbox-media img,
.lightbox-media video {
  width: 100%;
  height: auto;
  max-height: 70vh;
  background: #000000;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox-media .lightbox-crop img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: none;
  transform: translate3d(0, var(--lightbox-pan-y, 0), 0);
  will-change: transform;
  backface-visibility: hidden;
  pointer-events: none;
  user-select: none;
}

.lightbox-media img {
  touch-action: pan-y;
}

.lightbox-title {
  margin: 0;
  font-size: 18px;
  order: 1;
}

.lightbox-caption {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  order: 2;
}

.lightbox--image-preview .lightbox-title {
  padding-right: 56px;
}

.lightbox--image-preview .lightbox-caption {
  padding-right: 56px;
}

.lightbox-open {
  overflow: hidden;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card-bg);
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
  line-height: 1.5;
}

.footer {
  margin: 40px 0 10px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  display: grid;
  gap: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

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

.footer-links a:hover,
.footer-links a:focus {
  color: var(--accent-2);
}

.footer-copy {
  color: var(--muted);
}

@keyframes waitlist-reveal-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.62fr);
    align-items: center;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero-title-row {
    gap: 14px;
  }

  .hero-title-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-preview {
    justify-self: end;
    width: min(100%, clamp(220px, 28vw, 290px));
  }

  .badges {
    max-width: 460px;
  }

  .page-hero .hero-title-row h1 {
    font-size: 44px;
  }

  .waitlist-section {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  }

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

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

  .page-hero h1 {
    font-size: 56px;
  }
}

@media (max-width: 979px) {
  .section {
    scroll-margin-top: 80px;
  }
}

@media (max-width: 719px) {
  .waitlist-row {
    display: grid;
  }

  .waitlist-submit {
    width: 100%;
  }

  .lightbox--image-preview .lightbox-media {
    min-height: 0;
  }

  .lightbox-crop {
    height: auto;
  }

  .lightbox-media .lightbox-crop img {
    transform: translate3d(0, var(--lightbox-pan-y, 0), 0);
  }
}

@media (max-width: 430px) {
  .topbar {
    gap: 10px;
    padding: 14px 12px;
  }

  .topbar .brand > span:not(.logo-badge) {
    display: none;
  }

  .topbar .btn.primary {
    padding: 10px 12px;
    font-size: 14px;
  }
}

@media (min-width: 980px) {
  :root {
    --section-gap: 42px;
  }

  .topbar {
    display: none;
  }

  .page {
    display: grid;
    grid-template-columns: var(--nav-width) 1fr;
  }

  .nav {
    position: sticky;
    top: 0;
    height: 100vh;
    transform: translateX(0);
  }

  .nav-scrim {
    display: none;
  }

  .content {
    padding: 52px 52px 80px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    scroll-margin-top: 132px;
  }

  .nav-collapsed .page {
    grid-template-columns: var(--nav-collapsed) 1fr;
  }

  .nav-collapsed .nav {
    width: var(--nav-collapsed);
  }

  .nav-collapsed .nav-header {
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
  }

  .nav-collapsed .nav-header .icon-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    display: grid;
    place-items: center;
  }

  .nav-collapsed .nav-links a span,
  .nav-collapsed .nav-group-toggle span,
  .nav-collapsed .nav-group-links,
  .nav-collapsed .nav-meta,
  .nav-collapsed .brand > span:not(.logo-badge) {
    display: none;
  }

  .nav-collapsed .nav-links a,
  .nav-collapsed .nav-group-toggle {
    justify-content: center;
  }
}

@media (min-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
    align-items: center;
  }

  .hero-title-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .page-hero .hero-title-row h1 {
    font-size: 56px;
  }

  .hero p {
    font-size: 20px;
  }

  .hero-preview {
    width: min(100%, 270px);
  }

  .hero > :only-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .topbar {
    display: flex;
  }

  .page,
  .nav-collapsed .page {
    display: block;
  }

  .nav,
  .nav-collapsed .nav {
    position: fixed;
    inset: 0 auto 0 0;
    width: var(--nav-width);
    height: auto;
    transform: translateX(-100%);
  }

  .nav-open .nav,
  .nav-open.nav-collapsed .nav {
    transform: translateX(0);
  }

  .nav-scrim {
    display: block;
  }

  .nav-collapsed .nav-header {
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-collapsed .nav-header .icon-btn {
    width: auto;
    height: auto;
    padding: 10px 12px;
  }

  .nav-collapsed .nav-links a span,
  .nav-collapsed .brand > span:not(.logo-badge) {
    display: inline;
  }

  .nav-collapsed .nav-links a {
    justify-content: flex-start;
  }
}
