:root {
  --ink: #0a0a0a;
  --ink-soft: #20221f;
  --paper: #f5f5f0;
  --surface: #ffffff;
  --surface-dark: #151613;
  --line: #d8d9d2;
  --line-dark: #34352f;
  --muted: #666961;
  --muted-light: #a9aca2;
  --acid: #c8f135;
  --acid-strong: #b6df22;
  --cyan: #64d9e6;
  --coral: #ff765f;
  --yellow: #f4c84b;
  --max-width: 1440px;
  --shadow: 0 18px 46px rgba(10, 10, 10, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 138px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.preview-bar {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 18px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
}

.preview-bar span {
  padding: 3px 7px;
  border: 1px solid #6c6f65;
  border-radius: 3px;
  color: var(--acid);
  font-weight: 800;
  text-transform: uppercase;
}

.preview-bar p {
  margin: 0;
  color: #d6d8d1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.header-main {
  display: grid;
  grid-template-columns: minmax(204px, auto) auto minmax(260px, 430px) auto;
  min-height: 76px;
  align-items: center;
  gap: 26px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 28px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  width: 53px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.brand-mark span {
  color: var(--acid);
}

.brand-name {
  font-family: "Arial Black", Inter, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 0.95;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.primary-nav a,
.submit-link {
  position: relative;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.primary-nav a::after,
.submit-link::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--ink);
  content: "";
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.submit-link:hover::after,
.submit-link:focus-visible::after {
  transform: scaleX(1);
}

.global-search {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid #bec0b8;
  border-radius: 5px;
  background: #fafafa;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.global-search:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(200, 241, 53, 0.44);
}

.global-search svg {
  width: 18px;
  color: var(--muted);
}

.global-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
}

.global-search input::placeholder {
  color: #7d8077;
}

.global-search kbd {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  color: var(--muted);
  font-family: inherit;
  font-size: 11px;
}

.header-actions {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.icon-button svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.8;
}

.saved-header-button {
  position: relative;
}

.saved-header-button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--acid);
}

.saved-header-button[aria-pressed="true"] svg {
  fill: currentColor;
}

.saved-count {
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  min-width: 19px;
  height: 19px;
  place-items: center;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 10px;
  background: var(--acid);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
}

.mobile-menu-button,
.mobile-menu {
  display: none;
}

.category-nav {
  display: flex;
  min-height: 42px;
  align-items: stretch;
  justify-content: center;
  overflow-x: auto;
  border-top: 1px solid #ecece7;
  scrollbar-width: none;
}

.category-nav::-webkit-scrollbar,
.status-tabs::-webkit-scrollbar,
.project-tabs::-webkit-scrollbar {
  display: none;
}

.category-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 17px;
  border: 0;
  border-right: 1px solid #ecece7;
  background: transparent;
  color: #4f524b;
  font-size: 12px;
  font-weight: 720;
  text-decoration: none;
  transition: background 140ms ease, color 140ms ease;
}

.category-link:first-child {
  border-left: 1px solid #ecece7;
}

.category-link:hover,
.category-link:focus-visible,
.category-link.is-active {
  background: var(--ink);
  color: var(--acid);
}

.featured-launch {
  position: relative;
  height: clamp(430px, calc(100svh - 220px), 520px);
  min-height: 430px;
  overflow: hidden;
  background: var(--surface-dark);
  color: #fff;
}

.featured-media,
.featured-media img,
.featured-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.featured-media img {
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(0.86) contrast(1.04);
}

.featured-media.is-fallback {
  background: #292c27;
}

.featured-shade {
  background: rgba(0, 0, 0, 0.48);
}

.featured-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(760px, calc(100% - 56px));
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin: 0 max(28px, calc((100% - var(--max-width)) / 2 + 28px));
  padding: 58px 0;
}

.featured-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.featured-label span {
  width: 25px;
  height: 3px;
  background: var(--acid);
}

.featured-category {
  margin: 0 0 7px;
  color: var(--acid);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.featured-copy h1 {
  max-width: 730px;
  margin: 0;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 0.96;
  text-wrap: balance;
}

.featured-tagline {
  max-width: 620px;
  margin: 18px 0 24px;
  color: #f1f1ec;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.45;
}

.featured-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 25px;
}

.featured-metric {
  min-width: 115px;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.featured-metric:first-child {
  padding-left: 0;
  border-left: 0;
}

.featured-metric strong,
.featured-metric span {
  display: block;
}

.featured-metric strong {
  font-size: 21px;
}

.featured-metric span {
  margin-top: 3px;
  color: #c9cbc4;
  font-size: 11px;
  text-transform: uppercase;
}

.featured-actions {
  display: flex;
  gap: 10px;
}

.featured-index {
  position: absolute;
  right: max(28px, calc((100% - var(--max-width)) / 2 + 28px));
  bottom: 30px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.65);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 820;
  text-decoration: none;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, color 140ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button svg,
.text-button svg {
  width: 17px;
  height: 17px;
}

.button-accent {
  background: var(--acid);
  color: var(--ink);
}

.button-accent:hover,
.button-accent:focus-visible {
  background: var(--acid-strong);
}

.button-on-dark {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(10, 10, 10, 0.42);
  color: #fff;
}

.button-on-dark:hover,
.button-on-dark:focus-visible {
  background: #fff;
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-outline {
  border-color: #b9bbb3;
  background: transparent;
  color: var(--ink);
}

.button-outline:hover,
.button-outline:focus-visible,
.button-outline[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.button-wide {
  width: 100%;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-band > div {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.proof-band > div:last-child {
  border-right: 0;
}

.proof-band svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: #4d570d;
}

.proof-band span,
.proof-band strong {
  display: block;
}

.proof-band span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.proof-band strong {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 12px;
}

.page-shell {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  padding: 0 28px 72px;
}

.trend-section,
.discover-section,
.editorial-row {
  padding-top: 68px;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-heading h2,
.newsletter-band h2 {
  margin: 0;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
}

.section-note {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.trend-card {
  position: relative;
  min-width: 0;
  padding: 18px 16px 20px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  transition: background 150ms ease;
}

.trend-card:last-child {
  border-right: 0;
}

.trend-card:hover,
.trend-card:focus-visible {
  background: #fff;
}

.trend-rank {
  display: block;
  margin-bottom: 32px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.trend-card strong {
  display: block;
  min-height: 38px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.3;
}

.trend-score {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4d570d;
  font-size: 12px;
  font-weight: 800;
}

.trend-score svg {
  width: 15px;
}

.discover-tools {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.status-tabs {
  display: flex;
  min-width: 0;
  gap: 5px;
  overflow-x: auto;
  scrollbar-width: none;
}

.status-tab {
  min-height: 38px;
  flex: 0 0 auto;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.status-tab:hover,
.status-tab:focus-visible {
  color: var(--ink);
}

.status-tab.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.tool-actions {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.select-control {
  display: grid;
  grid-template-columns: auto auto;
  min-height: 42px;
  align-items: center;
  gap: 6px;
  padding: 0 7px 0 12px;
  border: 1px solid #c4c6bd;
  border-radius: 5px;
  background: #fff;
}

.select-control span {
  color: var(--muted);
  font-size: 11px;
}

.select-control select {
  max-width: 160px;
  border: 0;
  outline: 0;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.saved-filter {
  min-height: 42px;
  font-size: 12px;
}

.active-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -1px 0 18px;
  padding: 10px 13px;
  background: #e8eccf;
  color: #414614;
  font-size: 12px;
}

.active-filter-row[hidden] {
  display: none;
}

.active-filter-row button {
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 22px;
}

.project-card {
  position: relative;
  min-width: 0;
}

.project-card-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 5px;
  background: #dedfd9;
  color: inherit;
  cursor: pointer;
}

.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.project-card:hover .project-card-media img {
  transform: scale(1.025);
}

.project-card-media.is-fallback::after,
.compact-project-image.is-fallback::after,
.dialog-hero-media.is-fallback::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: #272925;
  color: var(--acid);
  content: "BGM / PRODUCT IMAGE";
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  max-width: calc(100% - 64px);
  flex-wrap: wrap;
  gap: 5px;
}

.status-badge,
.mini-badge {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 4px 7px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 3px;
  background: rgba(10, 10, 10, 0.82);
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.status-badge.is-coming {
  background: var(--cyan);
  color: var(--ink);
}

.status-badge.is-shipping {
  background: var(--acid);
  color: var(--ink);
}

.status-badge.is-deposit {
  background: var(--yellow);
  color: var(--ink);
}

.card-save {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.74);
  color: #fff;
}

.card-save:hover,
.card-save:focus-visible,
.card-save[aria-pressed="true"] {
  background: var(--acid);
  color: var(--ink);
}

.card-save svg {
  width: 17px;
  height: 17px;
}

.card-save[aria-pressed="true"] svg {
  fill: currentColor;
}

.project-card-body {
  padding-top: 14px;
}

.card-meta,
.card-price-row,
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-meta {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.verified-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #35572f;
}

.verified-label svg {
  width: 13px;
}

.project-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.16;
}

.project-card h3 button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 820;
  text-align: left;
}

.project-card h3 button:hover,
.project-card h3 button:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.card-tagline {
  min-height: 42px;
  margin: 8px 0 13px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.card-price-row {
  align-items: baseline;
  margin-bottom: 9px;
}

.card-price-row strong {
  font-size: 18px;
}

.card-price-row span {
  color: var(--muted);
  font-size: 11px;
}

.progress-track {
  width: 100%;
  height: 5px;
  overflow: hidden;
  border-radius: 0;
  background: #d7d8d2;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: #657915;
}

.card-foot {
  align-items: flex-start;
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.card-foot strong {
  color: var(--ink);
}

.card-foot span:last-child {
  max-width: 44%;
  text-align: right;
}

.empty-results {
  padding: 72px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.empty-results[hidden] {
  display: none;
}

.empty-results svg {
  width: 34px;
  height: 34px;
  color: var(--muted);
}

.empty-results h3 {
  margin: 13px 0 5px;
  font-size: 21px;
}

.empty-results p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  padding-top: 34px;
}

.load-more-wrap [hidden] {
  display: none;
}

.editorial-row {
  margin-top: 18px;
  border-top: 1px solid var(--ink);
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 820;
}

.text-button:hover,
.text-button:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.compact-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.compact-project {
  position: relative;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.compact-project-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 5px;
  background: #dedfd9;
}

.compact-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.compact-project:hover img {
  transform: scale(1.025);
}

.compact-project-index {
  position: absolute;
  top: 9px;
  left: 9px;
  padding: 4px 6px;
  border-radius: 2px;
  background: var(--ink);
  color: var(--acid);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.compact-project h3 {
  margin: 12px 0 5px;
  font-size: 16px;
  line-height: 1.25;
}

.compact-project p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.compact-project strong {
  color: var(--ink);
}

.buyer-guide {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.8fr);
  gap: 56px;
  margin-top: 84px;
  padding: 36px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.buyer-guide-heading h2 {
  max-width: 430px;
  margin: 0;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(25px, 2.7vw, 39px);
  line-height: 1.06;
}

.buyer-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.buyer-guide article {
  min-width: 0;
  padding: 2px 22px 4px;
  border-left: 1px solid var(--line);
  scroll-margin-top: 145px;
}

.buyer-guide article > span {
  color: #596716;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
}

.buyer-guide h3 {
  margin: 25px 0 9px;
  font-size: 15px;
}

.buyer-guide article p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.62;
}

.newsletter-band {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.25fr;
  align-items: center;
  gap: 40px;
  margin-top: 84px;
  padding: 44px;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
}

.newsletter-band .eyebrow {
  color: var(--acid);
}

.newsletter-band h2 {
  font-size: clamp(28px, 3vw, 43px);
}

.newsletter-band > p {
  margin: 0;
  color: #bfc1ba;
  font-size: 13px;
  line-height: 1.6;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.newsletter-form input {
  min-width: 0;
  height: 46px;
  padding: 0 13px;
  border: 1px solid #565950;
  border-radius: 4px;
  outline: 0;
  background: #242621;
  color: #fff;
}

.newsletter-form input:focus {
  border-color: var(--acid);
}

.newsletter-band .form-message {
  grid-column: 3;
  min-height: 0;
  color: var(--acid);
  font-size: 11px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 34px max(28px, calc((100% - var(--max-width)) / 2 + 28px));
  border-top: 1px solid var(--line-dark);
  background: #0e0f0d;
  color: #fff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-brand .brand-mark {
  border: 1px solid #494c44;
}

.footer-brand strong {
  display: block;
  font-size: 12px;
}

.footer-brand p,
.footer-legal {
  margin: 3px 0 0;
  color: var(--muted-light);
  font-size: 10px;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.site-footer nav a {
  color: #d3d5cf;
  font-size: 11px;
  text-decoration: none;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--acid);
}

.footer-legal {
  max-width: 230px;
  text-align: right;
}

.project-dialog,
.checkout-dialog {
  width: min(1180px, calc(100% - 28px));
  max-width: none;
  max-height: calc(100svh - 28px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 7px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.project-dialog::backdrop,
.checkout-dialog::backdrop {
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: fixed;
  top: max(24px, calc((100svh - min(860px, 100svh - 28px)) / 2 + 12px));
  right: max(24px, calc((100vw - min(1180px, 100vw - 28px)) / 2 + 12px));
  z-index: 20;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
}

.dialog-project-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.85fr);
  min-height: 520px;
  background: #fff;
}

.dialog-hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #dfe0da;
}

.dialog-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dialog-media-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 6px 8px;
  border-radius: 3px;
  background: rgba(10, 10, 10, 0.82);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.dialog-summary {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 52px 34px 32px;
}

.dialog-category {
  margin: 0 46px 10px 0;
  color: #5a6816;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.dialog-summary h2 {
  margin: 0;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(29px, 3vw, 43px);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

@media (min-width: 901px) {
  .dialog-summary h2 {
    padding-right: 54px;
  }
}

.dialog-tagline {
  margin: 13px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.maker-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  font-size: 12px;
}

.maker-avatar {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--acid);
  font-weight: 900;
}

.dialog-progress-number {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.dialog-progress-number strong {
  font-size: 27px;
}

.dialog-progress-number span {
  color: var(--muted);
  font-size: 11px;
}

.dialog-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 18px 0 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dialog-stat-grid div {
  min-width: 0;
  padding: 13px 8px;
  border-right: 1px solid var(--line);
}

.dialog-stat-grid div:first-child {
  padding-left: 0;
}

.dialog-stat-grid div:last-child {
  border-right: 0;
}

.dialog-stat-grid strong,
.dialog-stat-grid span {
  display: block;
}

.dialog-stat-grid strong {
  font-size: 15px;
  overflow-wrap: anywhere;
}

.dialog-stat-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.dialog-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px 46px;
  gap: 7px;
  margin-top: auto;
}

.dialog-actions .button {
  min-width: 0;
}

.dialog-actions .icon-button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--acid);
}

.dialog-actions .icon-button[aria-pressed="true"] svg {
  fill: currentColor;
}

.risk-note {
  display: flex;
  gap: 8px;
  margin: 14px 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.risk-note svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: #b84633;
}

.project-tabs {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  scrollbar-width: none;
}

.project-tab {
  min-height: 54px;
  flex: 0 0 auto;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.project-tab:hover,
.project-tab:focus-visible,
.project-tab.is-active {
  background: var(--ink);
  color: #fff;
}

.project-dialog-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 44px;
  padding: 42px;
}

.tab-panel[hidden] {
  display: none;
}

.story-lead {
  margin: 0 0 30px;
  font-family: Georgia, serif;
  font-size: clamp(23px, 2.6vw, 35px);
  line-height: 1.28;
}

.story-copy {
  margin: 0 0 28px;
  color: #484b44;
  font-size: 15px;
  line-height: 1.75;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.feature-item {
  min-height: 124px;
  padding: 20px;
  background: var(--paper);
}

.feature-item span {
  display: block;
  margin-bottom: 21px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.feature-item strong {
  display: block;
  font-size: 14px;
  line-height: 1.4;
}

.panel-title {
  margin: 0 0 22px;
  font-size: 26px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 14px 9px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 35%;
  color: var(--muted);
  font-weight: 650;
}

.timeline-list,
.update-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-item,
.update-item {
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr);
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item time,
.update-item time {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.timeline-item strong,
.update-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.timeline-item p,
.update-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.shipping-copy {
  padding: 20px;
  border-left: 4px solid var(--acid-strong);
  background: #ebefd9;
  color: #363a28;
  font-size: 14px;
  line-height: 1.65;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 18px 28px 18px 0;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.faq-list details p {
  margin: -4px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.brand-panel {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.brand-panel h3 {
  margin: 0 0 9px;
  font-size: 23px;
}

.brand-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.pledge-panel {
  position: sticky;
  top: 76px;
}

.pledge-panel h3 {
  margin: 0 0 13px;
  font-size: 18px;
}

.pledge-card {
  margin-bottom: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.pledge-card:hover,
.pledge-card:focus-within {
  border-color: var(--ink);
}

.pledge-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.pledge-price strong {
  font-size: 24px;
}

.pledge-price span {
  color: #526213;
  font-size: 10px;
  font-weight: 850;
}

.pledge-card h4 {
  margin: 10px 0 5px;
  font-size: 15px;
}

.pledge-card p {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.pledge-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 13px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.checkout-dialog {
  width: min(760px, calc(100% - 28px));
}

.checkout-dialog .dialog-close {
  top: max(24px, calc((100svh - min(650px, 100svh - 28px)) / 2 + 12px));
  right: max(24px, calc((100vw - min(760px, 100vw - 28px)) / 2 + 12px));
}

.checkout-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 560px;
}

.checkout-layout > div {
  padding: 62px 35px 35px;
  background: var(--ink);
  color: #fff;
}

.checkout-layout > div .eyebrow {
  color: var(--acid);
}

.checkout-layout h2 {
  margin: 0;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.checkout-copy {
  margin: 22px 0 0;
  color: #bfc1ba;
  font-size: 12px;
  line-height: 1.65;
}

.checkout-layout form {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 60px 36px 34px;
  background: #fff;
}

.checkout-layout form > label:not(.consent-row) span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.checkout-layout input,
.checkout-layout select {
  width: 100%;
  height: 45px;
  padding: 0 12px;
  border: 1px solid #bfc1b8;
  border-radius: 4px;
  outline: 0;
  background: #fff;
  color: var(--ink);
}

.checkout-layout input:focus,
.checkout-layout select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(200, 241, 53, 0.42);
}

.consent-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.consent-row input {
  width: 17px;
  height: 17px;
  margin: 0;
}

.form-message {
  min-height: 16px;
  margin: 0;
  color: #9a2f1d;
  font-size: 11px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: min(370px, calc(100% - 40px));
  padding: 13px 16px;
  border-left: 4px solid var(--acid);
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  font-size: 12px;
  line-height: 1.45;
}

.toast[hidden] {
  display: none;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: auto minmax(250px, 1fr) auto;
    gap: 18px;
  }

  .primary-nav {
    display: none;
  }

  .trend-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trend-card:nth-child(3) {
    border-right: 0;
  }

  .trend-card:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .newsletter-band {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-form,
  .newsletter-band .form-message {
    grid-column: 1 / -1;
  }

  .buyer-guide {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (min-width: 1280px) {
  .project-dialog > .dialog-close {
    right: max(12px, calc((100vw - min(1180px, 100vw - 28px)) / 2 - 54px));
  }

  .checkout-dialog > .dialog-close {
    right: max(12px, calc((100vw - min(760px, 100vw - 28px)) / 2 - 54px));
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 120px;
  }

  .header-main {
    grid-template-columns: auto 1fr auto;
    padding: 10px 18px;
  }

  .global-search {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
  }

  .mobile-menu-button {
    display: inline-grid;
  }

  .submit-link {
    display: none;
  }

  .mobile-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 11px 18px;
    border-top: 1px solid var(--line);
    background: #fff;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 7px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
    text-align: center;
    text-decoration: none;
  }

  .category-nav {
    justify-content: flex-start;
  }

  .featured-launch {
    height: clamp(440px, calc(100svh - 240px), 580px);
  }

  .featured-copy {
    padding-bottom: 42px;
  }

  .proof-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-band > div:nth-child(2) {
    border-right: 0;
  }

  .proof-band > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .discover-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .tool-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  }

  .select-control {
    justify-content: space-between;
  }

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

  .compact-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }

  .buyer-guide-grid {
    grid-template-columns: 1fr;
  }

  .buyer-guide article {
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .buyer-guide h3 {
    margin-top: 12px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .dialog-project-hero {
    grid-template-columns: 1fr;
  }

  .dialog-hero-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .dialog-summary {
    min-height: 430px;
  }

  .project-dialog-content {
    grid-template-columns: 1fr;
  }

  .pledge-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .preview-bar {
    align-items: flex-start;
    gap: 7px;
    padding: 7px 11px;
    font-size: 10px;
  }

  .preview-bar span {
    flex: 0 0 auto;
  }

  .preview-bar p {
    line-height: 1.35;
  }

  .header-main {
    gap: 10px;
    padding: 9px 12px 10px;
  }

  .brand-mark {
    width: 47px;
    height: 38px;
    font-size: 14px;
  }

  .brand-name {
    display: none;
  }

  .saved-header-button {
    display: none;
  }

  .global-search {
    height: 41px;
  }

  .global-search kbd {
    display: none;
  }

  .mobile-menu {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-nav {
    min-height: 39px;
  }

  .category-link {
    padding: 0 13px;
    font-size: 10px;
  }

  .featured-launch {
    height: clamp(420px, calc(100svh - 214px), 540px);
    min-height: 420px;
  }

  .featured-media img {
    object-position: 57% 50%;
  }

  .featured-shade {
    background: rgba(0, 0, 0, 0.57);
  }

  .featured-copy {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: 30px 0;
  }

  .featured-label {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .featured-category {
    font-size: 10px;
  }

  .featured-copy h1 {
    font-size: clamp(34px, 12vw, 49px);
  }

  .featured-tagline {
    display: -webkit-box;
    margin: 11px 0 16px;
    overflow: hidden;
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .featured-metrics {
    margin-bottom: 17px;
  }

  .featured-metric {
    min-width: 92px;
    padding: 0 13px;
  }

  .featured-metric:nth-child(3) {
    display: none;
  }

  .featured-metric strong {
    font-size: 17px;
  }

  .featured-metric span {
    font-size: 8px;
  }

  .featured-actions {
    width: 100%;
  }

  .featured-actions .button:first-child {
    flex: 1;
  }

  .featured-index {
    display: none;
  }

  .proof-band {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .proof-band > div {
    min-width: 245px;
    min-height: 76px;
    flex: 0 0 78%;
    justify-content: flex-start;
    border-right: 1px solid var(--line) !important;
    border-bottom: 0 !important;
    scroll-snap-align: start;
  }

  .page-shell {
    padding: 0 14px 48px;
  }

  .trend-section,
  .discover-section,
  .editorial-row {
    padding-top: 48px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .section-heading-split {
    align-items: flex-start;
  }

  .section-heading h2 {
    font-size: 31px;
  }

  .section-note {
    max-width: 130px;
    font-size: 10px;
    text-align: right;
  }

  .trend-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .trend-card {
    min-width: 168px;
    flex: 0 0 52%;
    border-right: 1px solid var(--line) !important;
    border-bottom: 0 !important;
    scroll-snap-align: start;
  }

  .trend-rank {
    margin-bottom: 24px;
  }

  .discover-tools {
    gap: 11px;
    margin-right: -14px;
    margin-left: -14px;
    padding: 11px 14px;
  }

  .status-tabs {
    margin-right: -14px;
    padding-right: 14px;
  }

  .tool-actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 44px;
  }

  .select-control {
    display: block;
    min-width: 0;
    padding: 5px 7px;
  }

  .select-control span {
    display: block;
    margin: 0 0 2px 4px;
    font-size: 8px;
  }

  .select-control select {
    width: 100%;
    max-width: none;
    font-size: 10px;
  }

  .saved-filter {
    width: 44px;
    padding: 0;
    font-size: 0;
  }

  .saved-filter svg {
    width: 18px;
    height: 18px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .card-tagline {
    min-height: 0;
  }

  .compact-project-grid {
    grid-template-columns: 1fr;
  }

  .compact-project:nth-child(n + 4) {
    display: none;
  }

  .buyer-guide {
    gap: 18px;
    margin-top: 58px;
    padding: 30px 0 10px;
  }

  .newsletter-band {
    grid-template-columns: 1fr;
    gap: 23px;
    margin-top: 58px;
    padding: 30px 20px;
  }

  .newsletter-band > p,
  .newsletter-form,
  .newsletter-band .form-message {
    grid-column: 1;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 29px 16px;
  }

  .site-footer nav,
  .footer-legal {
    grid-column: 1;
    grid-row: auto;
    text-align: left;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: start;
  }

  .project-dialog,
  .checkout-dialog {
    width: 100%;
    max-height: 100svh;
    min-height: 100svh;
    border-radius: 0;
  }

  .project-dialog::before {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 14;
    display: flex;
    height: 54px;
    align-items: center;
    padding: 0 64px 0 14px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    color: var(--muted);
    content: "BGM / PROJECT";
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 10px;
    font-weight: 800;
  }

  .project-dialog #projectDialogBody {
    padding-top: 54px;
  }

  .project-dialog .dialog-close {
    top: 6px;
    right: 10px;
  }

  .checkout-dialog .dialog-close {
    top: 10px;
    right: 10px;
  }

  .dialog-hero-media {
    aspect-ratio: 4 / 3;
  }

  .dialog-summary {
    min-height: 420px;
    padding: 27px 17px calc(92px + env(safe-area-inset-bottom));
  }

  .dialog-summary h2 {
    font-size: 32px;
  }

  .dialog-stat-grid strong {
    font-size: 13px;
  }

  .dialog-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 18;
    margin: 0;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -10px 24px rgba(10, 10, 10, 0.08);
  }

  .project-tabs {
    top: 54px;
  }

  .project-tab {
    min-height: 49px;
    padding: 0 14px;
  }

  .project-dialog-content {
    gap: 34px;
    padding: 30px 17px calc(96px + env(safe-area-inset-bottom));
  }

  .story-lead {
    font-size: 25px;
  }

  .story-copy {
    font-size: 14px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .timeline-item,
  .update-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
    min-height: 100svh;
  }

  .checkout-layout > div {
    padding: 50px 20px 25px;
  }

  .checkout-layout h2 {
    max-width: 310px;
    font-size: 31px;
  }

  .checkout-layout form {
    padding: 26px 20px 38px;
  }

  .toast {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }

  body.dialog-open .toast {
    bottom: calc(82px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
