:root {
  --bg: #09090b;
  --surface: #131316;
  --surface-2: #1c1c20;
  --fg: #f4f4f5;
  --muted: #a1a1aa;
  --subtle: #71717a;
  --primary: #e10600;
  --primary-fg: #fff;
  --border: #2a2a30;
  --font-display: "Oswald", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  --font-sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --shadow: 0 0 0 1px rgb(255 255 255 / 0.08);
  --shadow-hover: 0 0 0 1px rgb(255 255 255 / 0.14),
    0 12px 28px -16px rgb(0 0 0 / 0.55);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

.skip {
  position: absolute;
  left: -999px;
  top: 1rem;
}

.skip:focus {
  left: 1rem;
  z-index: 80;
  background: var(--primary);
  color: var(--primary-fg);
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

@media (min-width: 640px) {
  .wrap {
    width: min(100% - 3rem, var(--max));
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.accent-bar {
  height: 4px;
  background: var(--primary);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.75rem;
  text-decoration: none;
}

.brand img {
  height: 2.25rem;
  width: auto;
}

.brand span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-desk {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-desk a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-desk a:hover {
  color: var(--fg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-btn {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--fg);
}

.menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: flex;
  min-height: 3rem;
  align-items: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .nav-desk {
    display: flex;
  }

  .menu-btn,
  .nav-mobile {
    display: none !important;
  }
}

.btn {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: opacity 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-ghost {
  color: var(--fg);
  box-shadow: var(--shadow);
}

.btn-ghost:hover {
  box-shadow: var(--shadow-hover);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 42%,
    color-mix(in oklab, var(--primary) 16%, transparent),
    transparent 46%
  );
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 2.5rem;
  padding: 3.5rem 0;
}

.hero-copy {
  order: 2;
}

.hero-logo {
  order: 1;
  display: flex;
  justify-content: center;
}

.hero-logo img {
  width: min(100%, 20rem);
}

.kicker-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 0.375rem;
  box-shadow: var(--shadow);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker {
  margin: 0;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

h1 span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
}

.lede {
  margin: 1.5rem 0 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    padding: 6rem 0;
  }

  .hero-copy {
    order: 1;
  }

  .hero-logo {
    order: 2;
  }

  .hero-logo img {
    width: min(100%, 28rem);
  }
}

.trust {
  border-block: 1px solid var(--border);
  padding: 2.5rem 0;
}

.trust-grid {
  display: grid;
  gap: 2rem;
}

.trust-item {
  display: flex;
  gap: 0.75rem;
}

.trust-item svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.trust-item h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-item p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.band {
  border-block: 1px solid var(--border);
  background: var(--surface);
  padding: 4rem 0;
}

.section {
  padding: 4rem 0;
}

.section-head {
  max-width: 42rem;
}

.section-head.row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .section-head.row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

h2.display {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-head p.body {
  margin: 1rem 0 0;
  color: var(--muted);
}

.cards-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2.5rem;
  list-style: none;
  padding: 0;
}

@media (min-width: 1024px) {
  .cards-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.listing {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 0.6rem;
  border-radius: 0.75rem;
  background: var(--bg);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.listing:hover {
  box-shadow: var(--shadow-hover);
}

.listing-img {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.375rem;
  background: var(--surface-2);
}

.listing-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.listing h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5rem;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
}

.listing .price {
  margin: 0.5rem 0 0;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.listing .view {
  margin: 0.15rem 0 0;
  color: var(--subtle);
  font-size: 0.75rem;
  font-weight: 500;
}

.empty {
  margin-top: 2.5rem;
  padding: 3rem 1.5rem;
  border-radius: 0.75rem;
  background: var(--bg);
  box-shadow: var(--shadow);
  text-align: center;
  color: var(--muted);
}

.cats {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .cats {
    grid-template-columns: 1fr 1fr;
  }
}

.cat {
  padding: 1.5rem 1.75rem;
  border-radius: 0.75rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.icon-box {
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  background: var(--surface-2);
  color: var(--primary);
}

.icon-box svg {
  width: 1.25rem;
  height: 1.25rem;
}

.cat h3,
.step h3 {
  margin: 1.15rem 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cat p,
.step p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.steps {
  display: grid;
  gap: 1rem;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  padding: 1.5rem 1.75rem;
  border-radius: 0.75rem;
  background: var(--bg);
  box-shadow: var(--shadow);
}

.num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--primary);
}

.shop-cta {
  margin-top: 2.5rem;
}

.about-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.contact-card {
  padding: 1.5rem 2rem;
  border-radius: 0.75rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-card .body {
  margin: 1rem 0 0;
  color: var(--muted);
}

.contact-card .btn {
  margin-top: 1.5rem;
}

.facts {
  margin: 2rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--border);
}

.facts div + div {
  margin-top: 1rem;
}

.facts dt {
  font-weight: 600;
}

.facts dd {
  margin: 0.25rem 0 0;
}

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

.facts a:hover {
  color: var(--fg);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-blurb {
  margin: 0.75rem 0 0;
  max-width: 22rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--subtle);
}

.footer-grid ul {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-grid li + li {
  margin-top: 0.5rem;
}

.footer-grid a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: var(--fg);
}

.legal {
  border-top: 1px solid var(--border);
}

.legal p {
  margin: 0;
  padding: 1.25rem 0;
  color: var(--subtle);
  font-size: 0.75rem;
}

.an-hide {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:active {
    transform: none;
  }
}
