:root {
  --ink: #171717;
  --blue: #19b8ec;
  --paper: #fff;
}

@font-face {
  font-family: 'ApercuMono';
  src: url('assets/ApercuMonoProRegular.otf') format('opentype');
}

@font-face {
  font-family: 'ApercuMono';
  font-weight: bold;
  src: url('assets/ApercuMonoProBold.otf') format('opentype');
}

* {
  box-sizing: border-box;
}

.capital {
    text-transform:uppercase;
}

html,
body {
  min-width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: 'ApercuMono', monospace;
}

.noise-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .025;
  background-image: radial-gradient(#000 .55px, transparent .55px);
  background-size: 5px 5px;
}

.garden-page {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(48px, 9.25vh, 130px) 20px clamp(32px, 7vh, 96px);
}

.brand {
  width: 240px;
  margin: 0;
  line-height: 0;
}

.brand img,
.hero-art img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-art {
  width: 330px;
  max-width: 80vw;
  margin-top: clamp(22px, 3.35vh, 47px);
  line-height: 0;
  margin: 40px 0px;
}

.offer {
  display: flex;
  width: min(680px, 94vw);
  flex-direction: column;
  align-items: center;
  margin-top: clamp(2px, .55vh, 8px);
  text-align: center;
}

.faq {
  width: min(520px, 85vw);
  margin-top: 80px;
}

.faq p {
  color:#1f1f1f;
  font-size:11px;
  line-height: 1.2;
  margin-top: 0px;
}

.faq h3 {
  color:#1f1f1f;
  font-weight:bold;
  font-size:12px;
  line-height:1.2;
  margin-bottom:0px;
  text-transform:uppercase;
  margin-top:16px;
}

.faq a {
    color: var(--blue);
}
.ink-container {
  position: relative;
  width: min(567px, 90vw);
  height: clamp(38px, 3.25vw, 45px);
  overflow: hidden;
}

.hidden-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #222;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: .03em;
  user-select: none;
}

#inkCanvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  touch-action: none;
}

.description {
  margin: clamp(8px, 1.15vh, 16px) 0 0;
  color: #383838;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: .025em;
}

.bid-button img {
  width: 240px;
  margin-top: 46px;
}

.arrow {
  font-size: 1.15em;
}

.countdown-row {
  margin: clamp(28px, 3.3vh, 46px) 0 0;
  color: #333;
  font-size: 13px;
  letter-spacing: .025em;
}

#countdown {
  margin-left: .45em;
  color: var(--blue);
}

@media (max-width: 700px) {
  .garden-page {
    justify-content: flex-start;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .brand {
    width: 240px;
  }

  .hero-art {
    width: min(390px, 75vw);
    margin-top: 38px;
  }

  .offer {
    margin-top: 2px;
  }

  .ink-container {
    height: 40px;
  }

  .description {
    font-size: clamp(10px, 2.8vw, 13px);
    line-height: 1.5;
  }

}

@media (max-width: 430px) {
  .garden-page {
    min-height: 100svh;
    padding-inline: 12px;
  }

  .brand {
    width: 200px;
  }

  .hero-art {
    width: 75vw;
  }

  .description br {
    display: none;
  }

  .description {
    max-width: 350px;
    padding-inline: 8px;
  }

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

@media (max-height: 780px) and (min-width: 701px) {
  .garden-page {
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .brand {
    width: 275px;
  }

  .hero-art {
    width: 330px;
    margin-top: 28px;
  }

  .ink-container {
    height: 36px;
  }

  .countdown-row {
    margin-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bid-button {
    transition: none;
  }
}
