@font-face {
  font-family: "Mighty Souly";
  src: url("assets/fonts/mighty-souly.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "NCL Gaiax";
  src: url("assets/fonts/ncl-gaiax.ttf") format("truetype");
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #08090d;
  --panel: rgba(12, 13, 18, 0.84);
  --panel-solid: #11131a;
  --line: rgba(255, 255, 255, 0.18);
  --text: #f5f1e8;
  --muted: #b7b1a7;
  --acid: #b8ff2e;
  --pink: #ff2ad4;
  --blue: #1737ff;
  --cyan: #41f6ff;
  --violet: #8d39ff;
  --amber: #ffd36a;
  --danger: #ff5d7a;
  --shadow: #000;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --ui-font: "NCL Gaiax", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display-font: "Mighty Souly", "NCL Gaiax", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 42, 212, 0.18), transparent 34vw),
    radial-gradient(circle at 12% 88%, rgba(65, 246, 255, 0.14), transparent 38vw),
    var(--ink);
  color: var(--text);
  font-family: var(--ui-font);
  overflow-x: hidden;
  animation: chromaWash 18s ease-in-out infinite alternate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(184, 255, 46, 0.06) 0 1px, transparent 1px 54px);
  opacity: 0.42;
  z-index: -3;
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, transparent 0 3px, rgba(0, 0, 0, 0.34) 3px 4px);
  mix-blend-mode: multiply;
  opacity: 0.25;
  z-index: 10;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 28px;
  background:
    linear-gradient(90deg, rgba(8, 9, 13, 0.92), rgba(17, 19, 26, 0.76)),
    linear-gradient(90deg, rgba(184, 255, 46, 0.18), rgba(255, 42, 212, 0.18), rgba(65, 246, 255, 0.16));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  font-size: 23px;
  font-family: var(--display-font);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--acid), #f7ff7a 42%, var(--cyan));
  color: var(--ink);
  border: 2px solid var(--text);
  border-radius: 12px;
  box-shadow: 0 0 0 2px rgba(255, 42, 212, 0.65), 0 10px 24px rgba(255, 42, 212, 0.24);
  font-size: 17px;
  animation: markJolt 4s steps(1, end) infinite;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navlinks a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 800;
}

.navlinks a:hover,
.navlinks a:focus-visible {
  color: var(--text);
  border-color: var(--line);
  outline: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 106px 40px 54px;
  overflow: hidden;
  display: grid;
  align-items: start;
}

#mint,
#rare {
  scroll-margin-top: 96px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #101114;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(1.24) contrast(1.08) brightness(0.9);
  opacity: 0.68;
  transform: scale(1.03);
  animation: slowSignalZoom 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 45%, rgba(23, 55, 255, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(8, 9, 13, 0.94) 0%, rgba(8, 9, 13, 0.7) 46%, rgba(8, 9, 13, 0.26) 100%),
    linear-gradient(180deg, rgba(8, 9, 13, 0.24) 0%, rgba(8, 9, 13, 0.82) 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0%, rgba(184, 255, 46, 0.18) 42%, rgba(255, 42, 212, 0.16) 50%, transparent 58%),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(65, 246, 255, 0.08) 28px 29px);
  mix-blend-mode: screen;
  opacity: 0.45;
  animation: signalSweep 8s linear infinite;
}

.hero-grid {
  position: relative;
  width: min(1320px, 100%);
  margin: 0 auto;
  display: block;
}

.hero-copy {
  max-width: 1320px;
  margin: 0 auto;
  padding-bottom: 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--acid);
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--text);
  font-family: var(--display-font);
  font-size: clamp(78px, 6vw, 118px);
  line-height: 0.96;
  font-weight: 400;
  text-shadow: 0 0 24px rgba(255, 42, 212, 0.38), 4px 5px 0 rgba(255, 42, 212, 0.48), 8px 9px 0 rgba(23, 55, 255, 0.36);
}

h1::before,
h1::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}

h1::before {
  color: var(--cyan);
  transform: translate(4px, 0);
  clip-path: inset(0 0 58% 0);
  animation: titleGlitch 5.2s steps(1, end) infinite;
}

h1::after {
  color: var(--pink);
  transform: translate(-4px, 0);
  clip-path: inset(42% 0 0 0);
  animation: titleGlitch 6.3s steps(1, end) infinite reverse;
}

.lead {
  max-width: 820px;
  margin: 18px auto 0;
  color: var(--acid);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 16px rgba(184, 255, 46, 0.42);
  font-size: 24px;
  line-height: 1.28;
  font-weight: 900;
}

.signal-strip {
  width: min(1160px, 100%);
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 2px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 9, 13, 0.78), rgba(17, 19, 26, 0.72)),
    linear-gradient(135deg, rgba(184, 255, 46, 0.16), rgba(255, 42, 212, 0.12), rgba(65, 246, 255, 0.14));
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38), inset 0 0 24px rgba(184, 255, 46, 0.08);
  overflow: hidden;
}

.signal-strip span {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  border-right: 1px solid var(--line);
}

.signal-strip span:first-child {
  color: var(--acid);
  background: rgba(184, 255, 46, 0.08);
}

.oneofone-callout {
  position: relative;
  overflow: hidden;
  width: min(1160px, 100%);
  margin: 10px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 2px solid rgba(255, 42, 212, 0.62);
  background: rgba(8, 9, 13, 0.68);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(23, 55, 255, 0.22), inset 0 0 26px rgba(255, 42, 212, 0.08);
}

.oneofone-callout::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.16) 48%, transparent 56%);
  transform: translateX(-120%);
  animation: calloutFlash 4.8s ease-in-out infinite;
}

.oneofone-callout span {
  position: relative;
  z-index: 1;
  color: var(--pink);
  font-size: 16px;
  font-weight: 950;
  text-transform: uppercase;
}

.oneofone-callout strong {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
}

.micro-gallery {
  width: min(1160px, 100%);
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.micro-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(245, 241, 232, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(12, 13, 18, 0.88), rgba(12, 13, 18, 0.88)) padding-box,
    linear-gradient(135deg, rgba(184, 255, 46, 0.58), rgba(255, 42, 212, 0.48), rgba(65, 246, 255, 0.4)) border-box;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.34);
}

.micro-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  border: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  filter: saturate(1.1) contrast(1.03);
  transition: transform 160ms ease, filter 160ms ease;
}

.micro-gallery figcaption {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 9px;
  background: rgba(8, 9, 13, 0.84);
  color: var(--text);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.micro-gallery figcaption span {
  flex: 0 0 auto;
  padding: 4px 6px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(184, 255, 46, 0.44);
}

.micro-gallery figcaption strong {
  min-width: 0;
  overflow: hidden;
  color: var(--text);
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.micro-gallery figure:hover img {
  transform: translateY(-4px) scale(1.06);
  filter: saturate(1.28) contrast(1.08);
}

.signal-strip span:last-child {
  border-right: 0;
}

.mint-panel {
  isolation: isolate;
  position: relative;
  width: min(760px, 100%);
  margin: 28px auto 22px;
  padding: 20px 24px 22px;
  border: 1px solid rgba(245, 241, 232, 0.14);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 30%, rgba(184, 255, 46, 0.12), transparent 58%),
    linear-gradient(135deg, rgba(8, 9, 13, 0.68), rgba(17, 19, 26, 0.46));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36), inset 0 0 48px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.mint-panel::before {
  content: "";
  position: absolute;
  inset: -34px -44px;
  z-index: -1;
  pointer-events: none;
  border: 0;
  border-radius: 56px;
  background:
    radial-gradient(circle at 50% 50%, rgba(184, 255, 46, 0.28), transparent 34%),
    radial-gradient(circle at 34% 52%, rgba(255, 42, 212, 0.22), transparent 42%),
    radial-gradient(circle at 68% 48%, rgba(65, 246, 255, 0.22), transparent 42%);
  filter: blur(18px);
  opacity: 0.9;
  animation: ctaAura 3.2s ease-in-out infinite;
}

.mint-panel::after {
  display: none;
}

.panel-heading {
  display: grid;
  place-items: center;
  gap: 5px;
  margin-bottom: 14px;
  text-align: center;
}

.panel-heading h2 {
  margin: 0;
  font-family: var(--display-font);
  color: var(--text);
  font-size: 52px;
  line-height: 0.98;
  font-weight: 400;
  text-align: center;
  text-shadow: 0 0 18px rgba(255, 42, 212, 0.34), 3px 4px 0 rgba(23, 55, 255, 0.34);
}

.supply-row {
  width: min(620px, 100%);
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.supply-row > div {
  min-height: 68px;
  padding: 12px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.28);
  border-radius: var(--radius);
}

.label {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.supply-row strong {
  display: block;
  margin-top: 8px;
  color: var(--acid);
  font-size: 22px;
  line-height: 1.05;
  font-weight: 950;
}

.amount-row {
  width: min(560px, 100%);
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  gap: 10px;
}

.amount-row button,
.amount-row input {
  height: 58px;
  border: 2px solid rgba(245, 241, 232, 0.82);
  background: #0b0d13;
  color: var(--text);
  font-size: 24px;
  font-weight: 950;
  text-align: center;
  border-radius: var(--radius);
}

.amount-row button {
  cursor: pointer;
}

.amount-row button:hover {
  background: var(--blue);
}

.primary-action {
  position: relative;
  overflow: hidden;
  width: min(560px, 100%);
  min-height: 82px;
  margin: 0 auto;
  display: block;
  border: 2px solid var(--ink);
  background:
    linear-gradient(90deg, var(--acid), #f4ff68, var(--cyan), var(--acid));
  background-size: 220% 100%;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--ui-font);
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 999px;
  text-shadow: none;
  box-shadow:
    0 0 0 5px rgba(8, 9, 13, 0.86),
    0 0 30px rgba(184, 255, 46, 0.34),
    0 0 64px rgba(255, 42, 212, 0.3),
    0 18px 48px rgba(0, 0, 0, 0.46);
  animation: actionFlow 3.6s linear infinite, ctaPulse 2.4s ease-in-out infinite;
}

.primary-action::after {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.12) 45%, transparent 58%);
  background-size: 220% 100%;
  animation: actionFlow 3.4s linear infinite;
}

.primary-action:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow:
    0 0 0 5px rgba(8, 9, 13, 0.9),
    0 0 40px rgba(184, 255, 46, 0.48),
    0 0 86px rgba(255, 42, 212, 0.38),
    0 22px 58px rgba(0, 0, 0, 0.52);
}

.primary-action:disabled {
  cursor: not-allowed;
  filter: grayscale(0.8);
  opacity: 0.72;
}

.hidden {
  display: none;
}

.wallet-state,
.status-line {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.35;
}

.status-line {
  color: #d8d2c5;
  min-height: 38px;
}

.status-line[data-tone="ok"] {
  color: var(--acid);
}

.status-line[data-tone="warn"] {
  color: var(--amber);
}

.wallet-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 48%, rgba(184, 255, 46, 0.24), transparent 28%),
    radial-gradient(circle at 40% 54%, rgba(255, 42, 212, 0.22), transparent 34%),
    rgba(3, 4, 8, 0.76);
  backdrop-filter: blur(14px);
}

.wallet-modal.hidden {
  display: none;
}

.wallet-modal-card {
  position: relative;
  width: min(520px, 100%);
  padding: 30px;
  border: 1px solid rgba(245, 241, 232, 0.2);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(8, 9, 13, 0.94), rgba(17, 19, 26, 0.86)),
    linear-gradient(90deg, rgba(184, 255, 46, 0.16), rgba(255, 42, 212, 0.16), rgba(65, 246, 255, 0.16));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62), 0 0 70px rgba(184, 255, 46, 0.12);
  text-align: center;
}

.wallet-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245, 241, 232, 0.28);
  border-radius: 50%;
  background: rgba(8, 9, 13, 0.88);
  color: var(--text);
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
}

.wallet-modal-kicker {
  margin: 0 0 8px;
  color: var(--acid);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.wallet-modal-card h2 {
  margin: 0 0 22px;
  font-family: var(--display-font);
  font-size: 48px;
  line-height: 0.95;
  font-weight: 400;
  text-shadow: 0 0 18px rgba(255, 42, 212, 0.32), 3px 4px 0 rgba(23, 55, 255, 0.28);
}

.wallet-options {
  display: grid;
  gap: 12px;
}

.wallet-options button {
  min-height: 62px;
  border: 2px solid rgba(245, 241, 232, 0.7);
  border-radius: 999px;
  background: rgba(8, 9, 13, 0.74);
  color: var(--text);
  cursor: pointer;
  font-size: 23px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 0 24px rgba(184, 255, 46, 0.06);
}

.wallet-options button:hover,
.wallet-modal-close:hover {
  border-color: var(--acid);
  color: var(--acid);
  box-shadow: 0 0 28px rgba(184, 255, 46, 0.16);
}

@keyframes chromaWash {
  0% {
    background: #08090d;
  }
  50% {
    background: #0b0a12;
  }
  100% {
    background: #071012;
  }
}

@keyframes markJolt {
  0%,
  88%,
  100% {
    transform: translate(0, 0);
  }
  89% {
    transform: translate(2px, -1px);
  }
  90% {
    transform: translate(-2px, 1px);
  }
  91% {
    transform: translate(1px, 2px);
  }
}

@keyframes slowSignalZoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.09);
  }
}

@keyframes signalSweep {
  from {
    transform: translateX(-18%);
  }
  to {
    transform: translateX(18%);
  }
}

@keyframes titleGlitch {
  0%,
  82%,
  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
  83% {
    opacity: 0.86;
    transform: translate(5px, -2px);
  }
  84% {
    opacity: 0.2;
    transform: translate(-5px, 2px);
  }
  85% {
    opacity: 0.92;
    transform: translate(3px, 1px);
  }
  86% {
    opacity: 0;
    transform: translate(0, 0);
  }
}

@keyframes calloutFlash {
  0%,
  52% {
    transform: translateX(-120%);
  }
  64%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes panelPulse {
  0%,
  100% {
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.44), 0 0 24px rgba(65, 246, 255, 0.08);
  }
  50% {
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.48), 0 0 42px rgba(184, 255, 46, 0.14);
  }
}

@keyframes panelScan {
  from {
    background-position: 220% 0;
  }
  to {
    background-position: -220% 0;
  }
}

@keyframes actionFlow {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 220% 0;
  }
}

@keyframes actionShine {
  0%,
  44% {
    left: -70px;
  }
  72%,
  100% {
    left: calc(100% + 70px);
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.12);
  }
}

@keyframes ctaAura {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@media (max-width: 1400px) {
  .micro-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .topbar {
    position: sticky;
    height: auto;
    min-height: 70px;
    flex-wrap: wrap;
  }

  .navlinks {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-grid {
    display: block;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .mint-panel::after {
    display: none;
  }

  h1 {
    font-size: 76px;
  }

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

}

@media (max-width: 640px) {
  .topbar,
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-grid {
    width: 100%;
  }

  .brand {
    font-size: 20px;
  }

  .navlinks a {
    padding: 0 10px;
  }

  h1 {
    font-size: 58px;
    text-shadow: 0 0 16px rgba(255, 42, 212, 0.3), 4px 4px 0 rgba(255, 42, 212, 0.5), 8px 8px 0 rgba(23, 55, 255, 0.44);
  }

  .lead {
    font-size: 19px;
  }

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

  .signal-strip span {
    border-bottom: 1px solid var(--line);
  }

  .signal-strip span:nth-child(2n) {
    border-right: 0;
  }

  .signal-strip span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .signal-strip span:last-child {
    border-bottom: 0;
  }

  .oneofone-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .oneofone-callout strong {
    text-align: left;
  }

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

  .micro-gallery figcaption {
    min-height: 34px;
    font-size: 12px;
    padding: 6px;
  }

  .mint-panel {
    padding: 16px;
    margin-top: 22px;
    border-radius: 28px;
  }

  .panel-heading {
    display: grid;
  }

  .panel-heading h2 {
    margin-top: 0;
    text-align: center;
    font-size: 40px;
  }

  .primary-action {
    width: min(300px, 100%);
    min-height: 76px;
    font-size: 24px;
  }

  .supply-row {
    grid-template-columns: 1fr;
  }

}

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