:root {
  color-scheme: dark;
  scroll-padding-top: 76px;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.site-header__inner {
  min-width: 0;
}

.site-logo {
  line-height: 0;
}

.site-logo img {
  width: auto !important;
}

.hero-grid,
.hero-grid > div,
footer > div:first-child,
footer > div:first-child > * {
  min-width: 0;
}

footer > div:first-child > div:first-child {
  align-items: flex-start;
}

footer img[alt="LOCK'D"] {
  width: 180px !important;
  max-width: 100% !important;
  height: auto !important;
  flex: 0 0 auto;
}

footer > div:first-child > div:first-child p {
  color: #aaa6a1 !important;
}

footer > div:first-child > p,
footer > div:last-child p {
  color: #88847f !important;
}

.mobile-nav {
  display: none;
}

.mobile-nav > summary {
  list-style: none;
}

.mobile-nav > summary::-webkit-details-marker {
  display: none;
}

.spec-table-scroll,
.comparison-scroll {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: #ffd400 #1c1c1c;
  -webkit-overflow-scrolling: touch;
}

.coming-soon {
  border-bottom: 2px solid #262626;
  background: #0f0f0f;
}

.coming-soon__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) clamp(16px, 4vw, 40px);
}

.coming-soon__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 52px);
}

.coming-soon__eyebrow {
  margin: 0 0 14px;
  color: #ffd400;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.coming-soon h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .92;
  text-transform: uppercase;
}

.coming-soon__lead {
  max-width: 42ch;
  margin: 0;
  color: #b9b5b0;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  text-wrap: pretty;
}

.coming-soon__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  border: 2px solid #303030;
  background: #303030;
}

.coming-card {
  min-width: 0;
  background: #0a0a0a;
}

.coming-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.coming-card__body {
  min-height: 210px;
  padding: clamp(22px, 3vw, 34px);
  border-top: 2px solid #303030;
}

.coming-card__status {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 11px;
  border: 2px solid currentColor;
  color: #ffd400;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.coming-card--cherry .coming-card__status {
  color: #ff365d;
}

.coming-card--coffee .coming-card__status {
  color: #d99a5d;
}

.coming-card h3 {
  margin: 18px 0 8px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1;
  text-transform: uppercase;
}

.coming-card p {
  max-width: 48ch;
  margin: 0;
  color: #9f9b96;
  font-size: 15px;
  line-height: 1.55;
  text-wrap: pretty;
}

@media (max-width: 760px) {
  :root {
    scroll-padding-top: 66px;
  }

  .site-header {
    backdrop-filter: blur(14px) !important;
  }

  .site-header__inner {
    min-height: 64px;
    padding: 10px 16px !important;
    gap: 12px !important;
  }

  .site-logo img {
    height: 28px !important;
  }

  .desktop-nav,
  .header-cta {
    display: none !important;
  }

  .mobile-nav {
    position: relative;
    display: block;
    margin-left: auto;
  }

  .mobile-nav > summary {
    position: relative;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 11px;
    cursor: pointer;
    border: 2px solid #3a3a3a;
    background: #101010;
    place-content: center;
  }

  .mobile-nav > summary span,
  .mobile-nav > summary::before,
  .mobile-nav > summary::after {
    display: block;
    width: 20px;
    height: 2px;
    background: #f4f3f1;
    content: "";
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-nav > summary span {
    margin: 5px 0;
  }

  .mobile-nav[open] > summary::before {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-nav[open] > summary span {
    opacity: 0;
  }

  .mobile-nav[open] > summary::after {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav__panel {
    position: absolute;
    top: calc(100% + 11px);
    right: 0;
    display: grid;
    width: min(84vw, 320px);
    padding: 8px;
    border: 2px solid #303030;
    background: #0a0a0a;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .55);
  }

  .mobile-nav__panel a {
    display: flex;
    min-height: 50px;
    align-items: center;
    padding: 0 14px;
    border-bottom: 1px solid #262626;
    color: #f4f3f1;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .mobile-nav__panel a:last-child {
    border-bottom: 0;
  }

  .mobile-nav__panel .mobile-nav__shop {
    justify-content: center;
    margin-top: 8px;
    border: 0;
    background: #ffd400;
    color: #0a0a0a;
  }

  .hero-grid,
  [style*="minmax(440px"],
  [style*="minmax(300px"],
  [style*="minmax(280px"],
  [style*="minmax(260px"],
  [style*="minmax(240px"],
  [style*="minmax(190px"] {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .hero-grid > div {
    width: 100% !important;
  }

  .hero-grid > div:first-child {
    min-height: auto !important;
    padding: 52px 16px 38px !important;
  }

  .hero-grid h1 {
    max-width: 9ch !important;
    font-size: clamp(48px, 15vw, 66px) !important;
    line-height: .88 !important;
  }

  .hero-grid > div:last-child {
    min-height: 330px !important;
  }

  .hero-grid > div:last-child > div {
    background: linear-gradient(180deg, rgba(10, 10, 10, .22), transparent 38%) !important;
  }

  .hero-grid > div:last-child img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .hero-grid ul {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    font-size: clamp(38px, 10.5vw, 52px) !important;
    line-height: .9 !important;
    overflow-wrap: anywhere;
  }

  section > div[style*="max-width:1280px"] {
    min-width: 0;
  }

  [style*="grid-column:span 2"] {
    grid-column: auto !important;
  }

  div[style*="display:flex;flex-wrap:wrap;gap:12px"] {
    width: 100%;
  }

  div[style*="display:flex;flex-wrap:wrap;gap:12px"] > a {
    display: flex !important;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .comparison-scroll,
  .spec-table-scroll {
    width: calc(100% + 32px);
    max-width: none;
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .coming-soon__intro,
  .coming-soon__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .coming-soon__intro {
    align-items: start;
  }

  .coming-soon__lead {
    max-width: 58ch;
  }

  .coming-card__body {
    min-height: 0;
  }

  .comparison-scroll::after,
  .spec-table-scroll::after {
    display: block;
    width: 16px;
    height: 1px;
    content: "";
  }

  .comparison-scroll::before,
  .spec-table-scroll::before {
    position: sticky;
    left: 0;
    display: block;
    width: max-content;
    padding: 0 0 12px;
    color: #ffd400;
    content: "Swipe to compare \2192";
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .spec-table-scroll table {
    min-width: 690px !important;
  }

  .comparison-scroll table {
    min-width: 620px !important;
  }

  footer > div:first-child {
    gap: 32px !important;
  }

  footer img[alt="LOCK'D"] {
    width: 148px !important;
    height: auto !important;
  }

  footer nav {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px 24px !important;
  }

  footer nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  footer > div:first-child > div:nth-child(3) a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 520px) {
  div[style*="display:flex;flex-wrap:wrap;gap:12px"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  div[style*="display:flex;flex-wrap:wrap;gap:12px"] > a {
    width: 100%;
  }

  .hero-grid ul {
    grid-template-columns: 1fr 1fr !important;
  }

  .hero-grid li {
    padding: 14px 11px !important;
    font-size: 11px !important;
    letter-spacing: .07em !important;
  }
}

@media (max-width: 360px) {
  .hero-grid h1 {
    font-size: 44px !important;
  }

  .mobile-nav__panel {
    width: calc(100vw - 32px);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
