/* ---------- base (mirrors the original reset + 62.5% rem scale) ---------- */
h1, h2, h3, h4, h5, h6, p { margin: 0; }

*, :after, :before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html { font-size: 62.5%; }
@media (min-width: 112.5em) { html { font-size: 75%; } }
@media (max-width: 75em)    { html { font-size: 56.25%; } }
@media (max-width: 56.25em) { html { font-size: 50%; } }
@media (max-width: 37.5em)  { html { font-size: 43.75%; } }

body {
  background-color: #000;
  color: #fff;
  font-family: "Hanken Grotesk", sans-serif;
  box-sizing: border-box;
}

/* ---------- layout ---------- */
.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1600px) { .container { max-width: 1260px; } }
@media (min-width: 2400px) { .container { max-width: 1920px; } }

.comingsoon__wrapper {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  background-color: #f0ebe6;
  overflow: hidden;
}

.comingsoon__wrapper .container { height: 100%; }

.comingsoon__wrapper .comingsoon__data {
  padding: 4.8rem 2.4rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .comingsoon__wrapper .comingsoon__data { padding: 24px; }
}

/* ---------- nav ---------- */
.nav__wrapper-cs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 6;
  position: relative;
}

.logo__wrapper { width: 14.6rem; color: #000; }
.logo__wrapper svg { fill: currentColor; display: block; }

.menu__wrapper-cs {
  display: flex;
  list-style: none;
  transition: all .3s;
}

.menu__wrapper-cs .menu__item-cs:not(:last-child) { margin-right: 2.4rem; }
@media (max-width: 767px) {
  .menu__wrapper-cs .menu__item-cs:not(:last-child) { margin-right: 16px; }
}

.menu__wrapper-cs .menu__item-cs--link {
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .24px;
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.menu__wrapper-cs .menu__item-cs--link span { display: flex; }
.menu__wrapper-cs .menu__item-cs--link span:not(:first-child) { margin-left: 8px; }
.menu__wrapper-cs .menu__item-cs--link svg { display: block; }

@media (max-width: 767px) {
  .menu__wrapper-cs .menu__item-cs--link { font-size: 12px; }
}

/* original used a white underline here, invisible on the cream ground —
   switched to currentColor so the hover state actually reads */
.menu__wrapper-cs .menu__item-cs--link:after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  border-bottom: 1px solid currentColor;
  transform: scaleX(0);
  transition: .25s ease-in-out;
}
.menu__wrapper-cs .menu__item-cs--link:hover:after {
  transform-origin: 0 100%;
  transform: scaleX(1);
}

/* ---------- background ---------- */
.comingsoon__bg {
  position: fixed;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.comingsoon__bg canvas {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* ---------- contract address ---------- */
.ca__wrapper {
  position: relative;
  z-index: 6;
  display: flex;
}

.ca {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 100%;
  padding: 1.2rem 1.6rem;
  font: inherit;
  color: #000;
  background: rgba(240, 235, 230, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, .25);
  border-radius: 0;
  cursor: pointer;
  text-align: left;
  transition: border-color .25s ease-in-out, background-color .25s ease-in-out;
}
.ca:hover,
.ca:focus-visible { border-color: #000; }
.ca:focus-visible { outline: 2px solid #000; outline-offset: 2px; }
.ca.is-copied { border-color: #000; background: rgba(240, 235, 230, .95); }

.ca__label {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .24px;
  text-transform: uppercase;
  flex: none;
  opacity: .5;
}

.ca__value {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 1.3rem;
  letter-spacing: .2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.ca__action {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .24px;
  text-transform: uppercase;
  flex: none;
  padding-left: 1.2rem;
  border-left: 1px solid rgba(0, 0, 0, .25);
  opacity: .5;
  transition: opacity .25s ease-in-out;
}
.ca:hover .ca__action,
.ca.is-copied .ca__action { opacity: 1; }

@media (max-width: 767px) {
  .ca { gap: 10px; padding: 10px 12px; }
  .ca__label { font-size: 11px; }
  .ca__value { font-size: 11px; }
  .ca__action { font-size: 11px; padding-left: 10px; }
}
