:root {
  --black: #05070a;
  --ink: #101318;
  --muted: #5d6470;
  --line: #e3e6eb;
  --paper: #ffffff;
  --soft: #f6f7f9;
  --gold: #ffc400;
  --gold-dark: #d99a00;
  --shadow: 0 20px 60px rgba(5, 7, 10, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

button,
input {
  font: inherit;
}

body.nav-open {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 90px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid #171a20;
  background: #000;
  color: #fff;
}

.nav-toggle {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 34px);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a {
  opacity: .86;
}

.nav a:hover {
  opacity: 1;
}

.nav a:focus-visible,
.nav button:focus-visible {
  opacity: 1;
}

.login-link,
.primary-action,
.secondary-action,
.notify-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  background: linear-gradient(180deg, #ffd326, var(--gold));
  color: #080a0d;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(255, 196, 0, .22);
}

.login-link:hover,
.primary-action:hover,
.notify-form button:not(:disabled):hover {
  background: linear-gradient(180deg, #ffe05c, #ffc400);
}

.notify-form button:disabled,
.notify-form input:disabled {
  cursor: not-allowed;
  opacity: .68;
}

.login-link {
  min-height: 42px;
  padding: 0 24px;
}

.nav-cart {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 196, 0, .42);
  background: #0c1016;
  color: var(--gold);
  cursor: pointer;
  padding: 0 13px;
  font-weight: 900;
}

.nav-cart-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  font-size: 0;
  position: relative;
}

.nav-cart-icon::before {
  content: none;
}

.nav-cart-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-bag-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border: 2px solid currentColor;
  font-size: 0;
  position: relative;
}

.nav-bag-icon::before {
  content: "";
  width: 8px;
  height: 6px;
  position: absolute;
  top: -8px;
  left: 50%;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  transform: translateX(-50%);
}

.nav-cart span:last-child {
  min-width: 22px;
  min-height: 22px;
  display: inline-grid;
  place-items: center;
  background: var(--gold);
  color: #080a0d;
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #030406;
  color: #fff;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 196, 0, .13), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .28), rgba(0, 0, 0, .48)),
    linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .5)),
    url("./assets/hero-bg.webp") center center / cover no-repeat;
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 36px));
  padding: 44px 0 64px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-copy {
  width: min(610px, 100%);
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-logo {
  margin: 0 auto 22px;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  justify-content: center;
}

.logo-img {
  display: block;
  height: auto;
  object-fit: contain;
}

.logo-img-small {
  width: clamp(118px, 13vw, 190px);
  max-height: 58px;
}

.logo-img-hero {
  width: min(520px, 82vw);
  margin: 0 auto;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, .8));
}

.countdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: min(560px, 100%);
  margin: 0 auto 28px;
}

.countdown div {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .46);
  padding: 18px 12px;
}

.countdown strong {
  display: block;
  font-size: clamp(42px, 8vw, 78px);
  line-height: .95;
}

.countdown span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.live-date {
  margin-bottom: 28px;
  font-size: clamp(19px, 3vw, 28px);
  font-weight: 800;
}

.primary-action {
  width: min(430px, 100%);
  min-height: 64px;
  gap: 14px;
  padding: 0 26px;
  font-size: 20px;
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #080a0d;
}

.section {
  padding: clamp(54px, 6vw, 82px) 0;
}

.section-inner,
.notify-inner {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section-lead {
  width: min(910px, 100%);
  margin: -18px auto 28px;
  color: #2f333a;
  font-size: 16px;
  line-height: 1.35;
  text-align: center;
}

.platform-intro {
  background: #fbf8ef;
  padding-block: clamp(48px, 5.6vw, 76px);
}

.platform-intro-inner {
  max-width: 980px;
  text-align: center;
}

.platform-intro h2 {
  margin-bottom: 18px;
}

.platform-intro p {
  max-width: 820px;
  margin: 0 auto 12px;
  color: #20242b;
  font-size: 16px;
  line-height: 1.52;
}

.platform-points {
  counter-reset: platform-step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 860px;
  margin: 30px auto 0;
  border-top: 1px solid #ded6c7;
  border-bottom: 1px solid #ded6c7;
  color: #0d1117;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.platform-points span {
  counter-increment: platform-step;
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 92px;
  padding: 18px 24px;
}

.platform-points span + span {
  border-left: 1px solid #ded6c7;
}

.platform-points span::before {
  content: counter(platform-step, decimal-leading-zero);
  color: var(--gold-dark);
  font-size: 13px;
  line-height: 1;
}

.section h2,
.notify h2 {
  margin-bottom: 32px;
  font-size: clamp(30px, 3.1vw, 38px);
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.category-grid,
.schedule-grid,
.steps-grid {
  display: grid;
  gap: 24px;
}

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

.category-grid article {
  text-align: center;
}

.category-grid article {
  display: grid;
  align-content: start;
  min-height: auto;
  border: 0;
  border-radius: 0;
  padding: 12px 14px 20px;
  background: transparent;
}

.category-icon {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #faf7ef;
  color: #11151b;
  font-size: 39px;
  position: relative;
}

.category-icon::before,
.category-icon::after,
.step-icon::before,
.step-icon::after,
.notify-icon::before,
.notify-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.category-icon:has(img)::before,
.category-icon:has(img)::after {
  content: none;
}

.category-icon img {
  width: 100px;
  height: 100px;
  display: block;
  object-fit: contain;
}

.category-grid h3,
.steps-grid h3 {
  margin-bottom: 0;
  font-size: 17px;
}

.category-grid h3 {
  min-height: 42px;
  font-size: 15px;
  line-height: 1.18;
  text-transform: uppercase;
}

.category-grid p {
  margin: 10px 0 0;
  color: #2f333a;
  font-size: 15px;
  line-height: 1.48;
}

.icon-box::before {
  width: 46px;
  height: 36px;
  border: 2px solid currentColor;
  background: linear-gradient(135deg, #d49a4d 0 50%, #b87a32 50%);
}

.icon-box::after {
  width: 46px;
  height: 2px;
  background: currentColor;
  transform: rotate(18deg);
}

.icon-return::before {
  width: 46px;
  height: 46px;
  border: 3px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
}

.icon-return::after {
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  right: 15px;
  top: 14px;
  transform: rotate(35deg);
}

.icon-pallet::before {
  width: 48px;
  height: 36px;
  border: 2px solid currentColor;
  background: #c9934c;
}

.icon-pallet::after {
  width: 58px;
  height: 8px;
  bottom: 16px;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
}

.icon-tag::before {
  width: 42px;
  height: 30px;
  border: 2px solid currentColor;
  transform: rotate(-43deg);
}

.icon-tag::after {
  width: 7px;
  height: 7px;
  top: 25px;
  left: 29px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-grid::before {
  width: 45px;
  height: 45px;
  background:
    linear-gradient(currentColor 0 0) 0 0 / 18px 18px no-repeat,
    linear-gradient(currentColor 0 0) 27px 0 / 18px 18px no-repeat,
    linear-gradient(currentColor 0 0) 0 27px / 18px 18px no-repeat,
    linear-gradient(#c9934c 0 0) 27px 27px / 18px 18px no-repeat;
}

.icon-grid::after {
  width: 51px;
  height: 51px;
  border: 2px solid currentColor;
}

.details {
  padding-top: clamp(54px, 6vw, 82px);
  background: #fbfaf7;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.info-panel {
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 6px;
  padding: clamp(22px, 3vw, 34px);
  background: #fffdf8;
}

.info-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(23px, 2.6vw, 30px);
  text-align: left;
}

.info-panel p {
  color: #20242b;
  font-size: 15px;
  line-height: 1.48;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--gold);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.condition-panel {
  display: grid;
  align-content: start;
  gap: 9px;
}

.condition-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 58px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
}

.condition-row strong {
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #07090d;
  font-size: 31px;
  line-height: 1;
}

.condition-row span {
  display: flex;
  align-items: center;
  padding: 13px 16px;
  color: #20242b;
  font-size: 15px;
  line-height: 1.4;
}

.condition-panel > p:last-child {
  margin: 6px 0 0;
}

.schedule {
  background: #f7f8fa;
}

.schedule-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 170px));
  justify-content: center;
  margin-bottom: 28px;
}

.schedule-card {
  position: relative;
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 20px 12px;
  text-align: center;
}

.schedule-card.is-next::before {
  content: "Najbliższy live";
  position: absolute;
  top: -14px;
  left: 16px;
  padding: 5px 11px;
  background: var(--gold);
  color: #090b0e;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.schedule-card strong {
  font-size: 28px;
}

.schedule-card span {
  color: var(--muted);
}

.schedule-card small {
  display: block;
  min-height: 34px;
  color: #101318;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.secondary-action {
  width: min(420px, 100%);
  margin: 0 auto;
  border: 1px solid #151922;
  background: #fff;
  box-shadow: none;
}

.recent-wins {
  background: #05070a;
  color: #fff;
}

.recent-wins.hidden {
  display: none;
}

.recent-wins-inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.recent-wins h2 {
  text-align: left;
}

.recent-wins-copy {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
}

.recent-wins-panel {
  height: 520px;
  overflow-y: auto;
  border: 1px solid rgba(255, 196, 0, .36);
  background:
    linear-gradient(180deg, rgba(255, 196, 0, .08), transparent 32%),
    #090d13;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
  scrollbar-color: var(--gold) #111827;
}

.recent-wins-list {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.recent-win-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .045);
  padding: 12px 14px;
}

.recent-win-time {
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.recent-win-user {
  min-width: 0;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recent-win-label {
  display: block;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.recent-win-amount {
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.steps {
  padding-top: clamp(54px, 6vw, 82px);
  background: #fff;
}

.steps-grid {
  grid-template-columns: repeat(5, 1fr);
}

.steps-grid article {
  position: relative;
  min-height: 0;
  border: 0;
  border-radius: 0;
  padding: 6px 10px 0;
  background: transparent;
  text-align: center;
}

.steps-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #12161c;
  border-right: 2px solid #12161c;
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}

.step-number {
  position: absolute;
  top: -6px;
  left: calc(50% - 58px);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #0b0d10;
  font-size: 16px;
  font-weight: 900;
  z-index: 2;
}

.step-icon {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #faf7ef;
  color: #11151b;
  position: relative;
}

.step-icon::before,
.step-icon::after {
  content: none;
}

.step-icon svg {
  width: 36px;
  height: 36px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-icon img {
  width: 100px;
  height: 100px;
  display: block;
  object-fit: contain;
}

.steps-grid h3 {
  min-height: 42px;
  text-transform: uppercase;
}

.steps-grid p {
  margin: 12px 0 0;
  color: #2f333a;
  font-size: 15px;
  line-height: 1.48;
}

.steps-note {
  margin: 18px 0 0;
  color: var(--muted);
  text-align: center;
}

.icon-screen::before {
  width: 42px;
  height: 30px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-screen::after {
  width: 24px;
  height: 11px;
  bottom: 4px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
}

.icon-gavel::before {
  width: 38px;
  height: 13px;
  border: 2px solid currentColor;
  transform: rotate(-35deg);
}

.icon-gavel::after {
  width: 34px;
  height: 4px;
  background: currentColor;
  transform: translate(12px, 14px) rotate(45deg);
}

.icon-chat::before {
  width: 48px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 11px;
}

.icon-chat::after {
  width: 12px;
  height: 12px;
  left: 14px;
  bottom: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-23deg);
}

.icon-cup::before {
  width: 34px;
  height: 36px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.icon-cup::after {
  width: 58px;
  height: 42px;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
  border-radius: 12px;
}

.icon-delivery::before {
  width: 50px;
  height: 30px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-delivery::after {
  width: 54px;
  height: 12px;
  bottom: 3px;
  border-left: 6px solid currentColor;
  border-right: 6px solid currentColor;
  border-radius: 12px;
}

.notify {
  padding: clamp(42px, 5vw, 64px) 0;
  background: #fff;
}

.notify-inner {
  display: grid;
  grid-template-columns: 86px minmax(0, .9fr) minmax(320px, 1.2fr);
  gap: 22px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  background: #05070a;
  color: #fff;
  box-shadow: var(--shadow);
  border-radius: 7px;
}

.notify-icon {
  width: 68px;
  height: 68px;
  color: var(--gold);
  position: relative;
}

.notify-icon::before {
  width: 42px;
  height: 46px;
  left: 13px;
  top: 7px;
  border: 4px solid currentColor;
  border-radius: 24px 24px 10px 10px;
}

.notify-icon::after {
  width: 56px;
  height: 20px;
  left: 6px;
  bottom: 7px;
  border-bottom: 4px solid currentColor;
  border-radius: 50%;
}

.notify h2 {
  margin-bottom: 8px;
  text-align: left;
}

.notify-copy > p {
  display: none;
}

.notify-copy::after {
  content: "Dołącz do grupy na WhatsApp i dostawaj informacje o kolejnych transmisjach, dropach i najważniejszych ogłoszeniach.";
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.45;
}

.notify p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
}

.notify-actions {
  display: grid;
  gap: 10px;
  align-content: center;
}

.whatsapp-action {
  width: min(420px, 100%);
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  gap: 10px;
  background: #25d366;
  color: #06110a;
  padding: 0 22px;
  font-size: 0;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.whatsapp-action::after {
  content: "Dołącz do grupy FIRST-DROP na WhatsApp";
  font-size: 14px;
  line-height: 1.2;
}

.whatsapp-mark {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #06110a;
  color: #25d366;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.whatsapp-action:hover {
  background: #35e276;
}

.notify-form-hidden {
  display: none !important;
}

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

.notify-form input {
  min-height: 58px;
  width: 100%;
  border: 0;
  padding: 0 18px;
  background: #fff;
  color: #0b0d10;
}

.notify-form button {
  min-height: 58px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 0;
  padding-top: 10px;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  line-height: 1.5;
}

.notify-actions .form-status {
  max-width: 520px;
  padding-top: 0;
  font-size: 0;
}

.notify-actions .form-status::after {
  content: "Dołącz do grupy i otrzymuj informacje o terminach kolejnych transmisji oraz najważniejszych ogłoszeniach.";
  font-size: 15px;
  line-height: 1.5;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 0;
}

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

.faq summary {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 18px 48px 18px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  margin: 0;
  padding: 0 48px 18px 0;
  color: var(--muted);
}

.site-footer {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px max(20px, calc((100vw - 1180px) / 2));
  background: var(--black);
  color: #fff;
}

.site-footer p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 16px;
}

.site-footer strong {
  color: var(--gold);
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.share-tab {
  position: fixed;
  top: 52%;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: stretch;
  transform: translateX(calc(100% - 44px));
  transition: transform .22s ease;
}

.share-tab:hover,
.share-tab.is-open {
  transform: translateX(0);
}

.share-tab-handle {
  width: 44px;
  min-height: 150px;
  border: 1px solid rgba(255, 196, 0, .62);
  border-right: 0;
  background: #080b10;
  color: var(--gold);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.share-tab-panel {
  width: 170px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 196, 0, .62);
  border-right: 0;
  padding: 12px;
  background: #080b10;
  box-shadow: -14px 18px 42px rgba(0, 0, 0, .34);
}

.share-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.share-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.share-whatsapp {
  background: rgba(37, 211, 102, .12);
}

.share-facebook {
  background: rgba(24, 119, 242, .13);
}

.share-group {
  border-color: rgba(37, 211, 102, .7);
  background: #25d366;
  color: #06110a;
}

.share-group:hover {
  border-color: #25d366;
  color: #06110a;
}

.soon-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, .48), rgba(5, 7, 10, .94)),
    url("./assets/hero-bg.webp") center / cover no-repeat,
    #05070a;
  color: #fff;
}

.soon-shell {
  width: min(760px, 100%);
  display: grid;
  justify-items: center;
  border: 1px solid rgba(255, 196, 0, .34);
  padding: clamp(34px, 7vw, 72px);
  background: rgba(5, 7, 10, .86);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .46);
  text-align: center;
}

.soon-logo {
  display: inline-flex;
  margin-bottom: 28px;
}

.soon-shell h1 {
  margin: 8px 0 12px;
  color: var(--gold);
  font-size: clamp(44px, 8vw, 86px);
  line-height: .92;
  text-transform: uppercase;
}

.soon-shell p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 255, 255, .74);
  font-size: 18px;
}

.soon-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.soon-actions .primary-action,
.soon-actions .secondary-action {
  width: auto;
  min-height: 50px;
  margin: 0;
  padding: 0 22px;
  font-size: 15px;
}

.soon-actions .secondary-action {
  border: 1px solid rgba(255, 196, 0, .5);
  background: transparent;
  color: #fff;
}

.subpage {
  background: #05070a;
  color: #fff;
  min-height: calc(100vh - 78px);
}

.subhero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(260px, .65fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding: clamp(50px, 8vw, 92px) 0 clamp(30px, 5vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.subhero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(39px, 6.2vw, 74px);
  line-height: .92;
  text-transform: uppercase;
}

.subhero p:not(.eyebrow),
.subcopy {
  max-width: 720px;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}

.box-hero-copy {
  display: grid;
  gap: 14px;
}

.box-hero-copy p {
  margin: 0;
}

.box-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.box-hero-actions .primary-action,
.box-hero-actions .secondary-action {
  width: auto;
  min-height: 46px;
  margin: 0;
  padding: 0 20px;
  font-size: 15px;
}

.box-hero-actions .secondary-action {
  border: 1px solid rgba(255, 196, 0, .55);
  background: transparent;
  color: #fff;
}

.box-filter,
.live-tabs {
  width: min(1120px, calc(100% - 40px));
  margin: 28px auto 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.box-filter a,
.live-tabs a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 0 18px;
  background: #0c1016;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.live-tabs .is-cta {
  background: var(--gold);
  color: #080a0d;
}

.box-category,
.box-buy-note,
.info-band,
.work-grid {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.box-buy-note {
  display: grid;
  grid-template-columns: minmax(180px, .35fr) 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 196, 0, .28);
  border-left: 3px solid var(--gold);
  padding: 18px 20px;
  background: #0b1016;
}

.box-buy-note strong {
  color: var(--gold);
  font-size: 18px;
  text-transform: uppercase;
}

.box-buy-note p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
}

.box-category {
  padding: 28px 0 18px;
}

.section-heading-line {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 196, 0, .35);
  padding-bottom: 12px;
}

.section-heading-line span,
.work-grid span,
.info-band span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .1em;
}

.section-heading-line h2,
.info-band h2,
.work-grid h2 {
  margin: 0;
  text-transform: uppercase;
}

.box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 30px;
}

.box-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 196, 0, .28);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 196, 0, .08), transparent 38%),
    #070b10;
  box-shadow: 0 20px 46px rgba(0, 0, 0, .34);
}

.box-art {
  min-height: 178px;
  display: grid;
  place-items: center;
  margin-bottom: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 196, 0, .2);
  background: #0b1118;
  color: var(--gold);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: .08em;
  overflow: hidden;
}

.box-art img {
  width: 100%;
  height: 178px;
  display: block;
  object-fit: contain;
}

.box-body {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 18px;
}

.box-label {
  display: inline-flex;
  min-height: 28px;
  width: fit-content;
  align-items: center;
  margin-bottom: 12px;
  border: 1px solid var(--gold);
  padding: 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.box-card h3 {
  min-height: 52px;
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(21px, 1.8vw, 25px);
  line-height: 1.08;
  text-transform: uppercase;
}

.box-card p {
  min-height: 66px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .75);
  font-size: 16px;
  line-height: 1.35;
}

.box-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 34px;
  margin: 13px 0 10px;
}

.box-specs span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 196, 0, .58);
  padding: 0 11px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 900;
}

.box-specs .is-available {
  border-color: rgba(83, 229, 107, .85);
  background: rgba(83, 229, 107, .13);
  color: #7fff91;
}

.box-shipping {
  min-height: 22px;
  margin: 2px 0 5px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 900;
}

.box-photo-note {
  min-height: 32px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, .45);
  font-size: 12px;
  line-height: 1.25;
}

.box-card strong {
  display: block;
  color: var(--gold);
  font-size: 40px;
  line-height: 1;
}

.box-buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  margin-bottom: 12px;
}

.qty-control {
  display: grid;
  grid-template-columns: 38px 42px 38px;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: #090d13;
}

.qty-control button {
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .16);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 22px;
}

.qty-control button:last-child {
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.qty-control span {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
}

.box-add,
.box-more,
.cart-open,
.cart-primary,
.cart-secondary {
  min-height: 42px;
  border: 1px solid var(--gold);
  cursor: pointer;
  font-weight: 900;
}

.box-add {
  width: 100%;
  min-height: 50px;
  margin-bottom: 9px;
  background: var(--gold);
  color: #080a0d;
  font-size: 18px;
}

.box-more {
  width: 100%;
  background: transparent;
  color: #fff;
}

.box-card-foot {
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 10px;
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
  text-align: center;
}

.cart-open {
  background: var(--gold);
  color: #080a0d;
  padding: 0 18px;
  text-transform: uppercase;
}

.cart-open span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  min-height: 24px;
  margin-left: 10px;
  background: #080a0d;
  color: var(--gold);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  justify-content: flex-end;
  background: rgba(0, 0, 0, .58);
}

.cart-drawer.is-open {
  display: flex;
}

.cart-panel {
  width: min(520px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 196, 0, .36);
  background: #070a0f;
  color: #fff;
  box-shadow: -20px 0 60px rgba(0, 0, 0, .5);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding: 20px;
}

.cart-head span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cart-head strong {
  font-size: 26px;
}

.cart-head button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 28px;
}

.cart-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.cart-steps span {
  padding: 12px 8px;
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.cart-steps .is-active {
  background: rgba(255, 196, 0, .12);
  color: var(--gold);
}

.cart-step {
  display: none;
  overflow-y: auto;
  flex: 1;
  padding: 18px;
}

.cart-step.is-active {
  display: block;
}

.cart-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 14px 0;
}

.cart-item img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  background: #10151d;
}

.cart-item h4 {
  margin: 0 0 4px;
  font-size: 16px;
  text-transform: uppercase;
}

.cart-item p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.cart-item-row button {
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-weight: 900;
}

.cart-empty,
.cart-note {
  color: rgba(255, 255, 255, .62);
}

.cart-form {
  display: grid;
  gap: 12px;
}

.discount-box {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 18px;
}

.discount-box label,
.invoice-fields legend {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.discount-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  gap: 10px;
  margin-top: 8px;
}

.discount-row input {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: #0b0f15;
  color: #fff;
  padding: 0 12px;
}

.discount-status {
  min-height: 20px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.discount-status.is-ok {
  color: #7fff91;
}

.discount-status.is-error {
  color: #ff7474;
}

.cart-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-form input,
.cart-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .16);
  background: #0b0f15;
  color: #fff;
  padding: 12px;
}

.cart-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  color: rgba(255, 255, 255, .78) !important;
  line-height: 1.35;
  text-transform: none !important;
}

.cart-check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--gold);
}

.invoice-fields {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
  border: 1px solid rgba(255, 196, 0, .24);
  padding: 14px;
}

.invoice-fields[hidden] {
  display: none;
}

.invoice-fields legend {
  padding: 0 8px;
  color: var(--gold);
}

.cart-summary-box {
  display: grid;
  gap: 16px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding-bottom: 10px;
}

.cart-summary-row.is-total strong,
.cart-discount-line strong {
  color: var(--gold);
}

.cart-summary-section {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 12px;
  background: rgba(255, 255, 255, .025);
}

.cart-summary-section h4 {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
}

.cart-summary-section p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.cart-summary-table {
  display: grid;
  gap: 0;
}

.cart-summary-table-head,
.cart-summary-table-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 62px minmax(112px, .7fr);
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 9px 0;
}

.cart-summary-table-head {
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-summary-table-row strong {
  text-align: right;
}

.cart-terms {
  margin: 16px 0 0;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 20px;
}

.cart-total span {
  color: rgba(255, 255, 255, .62);
  font-weight: 900;
  text-transform: uppercase;
}

.cart-total strong {
  color: var(--gold);
  font-size: 30px;
}

.cart-actions {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 10px;
  padding: 0 20px 20px;
}

.cart-secondary {
  background: transparent;
  color: #fff;
}

.cart-primary {
  background: var(--gold);
  color: #080a0d;
}

.live-subhero {
  padding-bottom: 44px;
}

.live-note {
  border-left: 2px solid var(--gold);
  padding-left: 22px;
}

.subpage-cta {
  width: min(320px, 100%);
  margin-top: 20px;
}

.info-band {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 34px 0;
}

.info-band p {
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}

.subpage-link {
  width: fit-content;
  margin: 16px 0 0;
  padding: 0 22px;
}

.live-brief {
  width: min(1120px, calc(100% - 40px));
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.live-brief article {
  min-height: 170px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: #080b10;
}

.live-brief span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .1em;
}

.live-brief strong {
  display: block;
  margin: 18px 0 8px;
  font-size: 22px;
  text-transform: uppercase;
}

.live-brief p {
  color: rgba(255, 255, 255, .68);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-bottom: 80px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  border-left: 1px solid rgba(255, 255, 255, .15);
}

.work-grid article {
  min-height: 260px;
  border-right: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  background: #080b10;
  padding: 24px;
}

.work-grid p {
  color: rgba(255, 255, 255, .68);
}

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

@media (max-width: 1199px) {
  .site-header {
    padding-inline: 24px;
  }

  .nav {
    gap: 18px;
    font-size: 13px;
  }

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

  .schedule-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 170px));
    justify-content: center;
  }

  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 34px;
  }

  .steps-grid article:not(:last-child)::after {
    display: none;
  }
}

@media (min-width: 1440px) and (max-height: 950px) {
  .hero {
    min-height: 0;
    height: clamp(620px, 43vw, 760px);
  }

  .hero-content {
    width: min(clamp(760px, 44.8vw, 860px), calc(100% - 40px));
    padding: clamp(30px, 3.05vw, 44px) 0 clamp(38px, 4.45vw, 64px);
  }

  .hero-logo {
    margin-bottom: clamp(16px, 1.15vw, 22px);
  }

  .logo-img-hero {
    width: min(clamp(460px, calc(700px - 12.5vw), 520px), 72vw);
  }

  .hero-copy {
    width: min(620px, 100%);
    margin-bottom: clamp(24px, 1.56vw, 30px);
    font-size: clamp(18px, calc(30px - .625vw), 21px);
    line-height: 1.4;
  }

  .countdown {
    width: min(clamp(520px, calc(680px - 8.333vw), 560px), 100%);
    gap: clamp(16px, 1.05vw, 20px);
    margin-bottom: clamp(22px, 1.45vw, 28px);
  }

  .countdown div {
    padding: clamp(14px, .95vw, 18px) 10px;
  }

  .countdown strong {
    font-size: clamp(64px, calc(120px - 2.916vw), 78px);
  }

  .countdown span {
    font-size: 12px;
  }

  .live-date {
    margin-bottom: clamp(22px, 1.45vw, 28px);
    font-size: clamp(24px, calc(36px - .625vw), 28px);
  }

  .primary-action {
    width: min(clamp(400px, calc(520px - 6.25vw), 430px), 100%);
    min-height: clamp(58px, 3.33vw, 64px);
    font-size: clamp(18px, calc(24px - .3125vw), 20px);
  }
}

@media (min-width: 1800px) and (min-aspect-ratio: 2 / 1) {
  .hero-bg {
    background-position:
      center,
      center,
      center,
      center 52%;
  }
}

@media (max-width: 899px) {
  body.nav-open {
    position: fixed;
    inset: 0;
    width: 100%;
  }

  .site-header {
    min-height: 72px;
    flex-direction: row;
    align-items: center;
    padding: 12px 20px;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 196, 0, .44);
    background: #080b10;
    color: #fff;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    background: currentColor;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 19;
    display: none;
    width: 100%;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    padding: 18px 20px 22px;
    border-top: 1px solid #171a20;
    background: #000;
  }

  .nav.is-open {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
  }

  .nav .login-link {
    width: 100%;
    justify-content: center;
    border-bottom: 0;
  }

  .nav-cart {
    display: none !important;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: min(860px, calc(100% - 32px));
    padding: 46px 0 52px;
  }

  .logo-img-hero {
    width: min(430px, 86vw);
  }

  .countdown {
    gap: 12px;
  }

  .details-grid,
  .notify-inner {
    grid-template-columns: 1fr;
  }

  .notify-icon {
    margin-bottom: -4px;
  }

  .notify-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 24px;
  }
}

@media (min-width: 600px) and (max-width: 767px) {
  .section {
    padding-block: 54px;
  }

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

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

@media (max-width: 599px) {
  .section {
    padding-block: 46px;
  }

  .section-inner,
  .notify-inner {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: sticky;
    align-items: center;
    flex-direction: row;
    padding-inline: 14px;
  }

  .logo-img-small {
    width: 128px;
    max-height: 54px;
  }

  .hero-content {
    padding: 40px 0 48px;
  }

  .logo-img-hero {
    width: min(320px, 88vw);
  }

  .hero-copy {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .countdown {
    gap: 8px;
    margin-bottom: 22px;
  }

  .countdown div {
    padding: 14px 5px;
  }

  .countdown strong {
    font-size: clamp(38px, 13vw, 48px);
  }

  .countdown span {
    font-size: 11px;
  }

  .live-date {
    margin-bottom: 22px;
    font-size: 19px;
    line-height: 1.25;
  }

  .primary-action {
    width: 100%;
    min-height: 56px;
    font-size: 17px;
  }

  .section h2,
  .notify h2 {
    margin-bottom: 20px;
    font-size: clamp(26px, 8vw, 30px);
  }

  .section-lead {
    margin: -6px auto 26px;
    font-size: 15px;
  }

  .platform-points {
    grid-template-columns: 1fr;
  }

  .platform-points span + span {
    border-left: 0;
    border-top: 1px solid #ded6c7;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .category-grid article {
    padding-inline: 4px;
  }

  .category-icon {
    width: 112px;
    height: 112px;
  }

  .category-grid h3 {
    min-height: 38px;
    font-size: 13px;
  }

  .category-grid p {
    font-size: 14px;
  }

  .schedule-grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 82vw);
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 14px 2px 8px;
  }

  .schedule-card {
    scroll-snap-align: start;
  }

  .info-panel {
    padding: 22px 18px;
  }

  .info-panel h2 {
    font-size: 24px;
  }

  .condition-row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .condition-row span {
    padding: 12px;
  }

  .steps-grid {
    position: relative;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .steps-grid::before {
    content: "";
    position: absolute;
    left: 33px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: #e7e0cf;
  }

  .steps-grid article {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    column-gap: 14px;
    text-align: left;
  }

  .step-number {
    left: 0;
    top: 0;
    z-index: 1;
  }

  .step-icon {
    grid-row: 1 / span 2;
    width: 112px;
    height: 112px;
    margin: 0;
  }

  .steps-grid h3 {
    min-height: 0;
    margin-top: 2px;
  }

  .steps-grid p {
    margin-top: 8px;
  }

  .notify-inner {
    padding: 24px 18px;
  }

  .notify-form input,
  .notify-form button {
    min-height: 52px;
  }

  .faq summary {
    font-size: 17px;
    padding-right: 42px;
  }
}

@media (max-width: 380px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 900px) {
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
  }

  .recent-wins-inner {
    grid-template-columns: 1fr;
  }

  .recent-wins-panel {
    height: 500px;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid article:not(:last-child)::after {
    display: none;
  }

  .box-grid,
  .work-grid,
  .live-brief {
    grid-template-columns: 1fr;
  }

  .box-grid {
    gap: 18px;
  }

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

}

@media (max-width: 560px) {
  .share-tab {
    top: auto;
    right: 12px;
    bottom: 16px;
    transform: translateX(calc(100% + 12px));
  }

  .share-tab.is-open {
    transform: translateX(0);
  }

  .share-tab:hover {
    transform: translateX(calc(100% + 12px));
  }

  .share-tab-handle {
    min-height: 118px;
  }

  .recent-win-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .recent-win-amount {
    grid-column: 2;
  }

  .subhero,
  .box-filter,
  .box-buy-note,
  .live-tabs,
  .box-category,
  .info-band,
  .work-grid,
  .live-brief {
    width: min(100% - 28px, 1120px);
  }

  .subhero {
    grid-template-columns: 1fr;
  }

  .subhero h1 {
    font-size: clamp(36px, 13vw, 58px);
  }

  .box-filter a,
  .live-tabs a {
    width: 100%;
  }

  .box-buy-note {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }

  .cart-open {
    width: 100%;
  }

  .box-art {
    min-height: 230px;
  }

  .box-art img {
    height: 230px;
  }

  .box-buy-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .qty-control {
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .cart-actions {
    grid-template-columns: 1fr;
  }

  .discount-row,
  .cart-summary-table-head,
  .cart-summary-table-row {
    grid-template-columns: 1fr;
  }

  .cart-summary-table-row strong {
    text-align: left;
  }

}
