@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700&family=Inter:wght@700;800;900&display=swap');

:root {
  --paper: #f7f7f2;
  --ink: #080808;
  --lime: #c9d91a;
  --lime-dark: #b8c80d;
  --line: #0a0a0a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
}

body {
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

.top-strip {
  height: 13px;
  background: #503b36;
  border-bottom: 3px solid #080808;
}

.nav {
  height: 48px;
  border-bottom: 3px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  background: var(--paper);
}

.nav-mark,
.nav-right {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}

.nav-mark {
  background: var(--lime);
  padding: 5px 10px;
  transform: skew(-5deg);
}

.hero {
  min-height: 720px;
  border-bottom: 3px solid var(--line);
  display: grid;
  grid-template-columns: 48% 52%;
  position: relative;
  overflow: hidden;
}

.hero-copy {
  padding: 88px 0 54px 4vw;
  position: relative;
  z-index: 5;
}

.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  color: #151515;
  margin-bottom: 24px;
}

.headline-wrap {
  position: relative;
  min-height: 405px;
}

.black-title {
  position: absolute;
  z-index: 8;
  left: 0;
  top: 0;
  margin: 0;
  font-size: clamp(68px, 7vw, 132px);
  line-height: .76;
  font-weight: 900;
  letter-spacing: -0.065em;
}

.black-title span {
  display: block;
  white-space: nowrap;
}

.brand-word {
  position: absolute;
  z-index: 2;
  left: 4vw;
  top: 170px;
  font-size: clamp(110px, 13vw, 245px);
  line-height: .8;
  font-weight: 900;
  letter-spacing: -.085em;
  color: var(--lime);
  white-space: nowrap;
  user-select: none;
}

.intro {
  position: relative;
  z-index: 10;
  width: min(510px, 90%);
  margin: -6px 0 27px;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: -.025em;
}

.actions {
  display: flex;
  position: relative;
  z-index: 12;
}

.btn {
  height: 55px;
  padding: 0 22px;
  border: 3px solid var(--line);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.btn span {
  margin-left: 28px;
  font-size: 14px;
}

.btn-dark {
  background: #050505;
  color: white;
  border-right-width: 1.5px;
}

.btn-dark:disabled {
  opacity: 1;
  cursor: default;
}

.btn-light {
  background: white;
  color: #050505;
  border-left-width: 1.5px;
}

.btn-light:hover {
  background: var(--lime);
}

.fine-print {
  margin-top: 17px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
}

.hero-art {
  position: relative;
  min-height: 720px;
}

.brand-block {
  position: absolute;
  width: 78%;
  height: 390px;
  left: 8%;
  top: 300px;
  background: var(--lime);
  transform: rotate(1.8deg);
  z-index: 1;
}

.cat {
  position: absolute;
  z-index: 4;
  width: min(530px, 88%);
  max-height: 620px;
  object-fit: contain;
  object-position: center bottom;
  left: 6%;
  bottom: 36px;
  filter: drop-shadow(12px 13px 0 rgba(0,0,0,.08));
}

.thought {
  position: absolute;
  z-index: 7;
  top: 130px;
  right: 10%;
  width: 280px;
  height: 118px;
  background: white;
  border: 4px solid var(--line);
  border-radius: 52% 48% 48% 52%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 24px;
  line-height: .95;
  font-weight: 900;
  transform: rotate(3deg);
}

.bubble-dot {
  position: absolute;
  background: white;
  border: 4px solid var(--line);
  border-radius: 50%;
}

.dot-one {
  width: 29px;
  height: 29px;
  bottom: -29px;
  left: 55px;
}

.dot-two {
  width: 15px;
  height: 15px;
  bottom: -48px;
  left: 30px;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 50% 50%;
  }

  .hero-copy {
    padding-top: 68px;
  }

  .headline-wrap {
    min-height: 360px;
  }

  .black-title {
    font-size: clamp(58px, 7.2vw, 100px);
  }

  .brand-word {
    top: 150px;
    left: 2vw;
    font-size: clamp(92px, 12vw, 180px);
  }

  .intro {
    font-size: 17px;
  }

  .thought {
    width: 230px;
    height: 98px;
    font-size: 20px;
    right: 7%;
  }
}

@media (max-width: 760px) {
  .nav {
    padding: 0 18px;
  }

  .nav-right {
    display: none;
  }

  .hero {
    display: block;
    min-height: 900px;
  }

  .hero-copy {
    padding: 48px 20px 0;
  }

  .eyebrow {
    font-size: 10px;
  }

  .headline-wrap {
    min-height: 340px;
  }

  .black-title {
    font-size: clamp(55px, 17vw, 100px);
  }

  .brand-word {
    top: 145px;
    left: 0;
    font-size: 26vw;
  }

  .intro {
    width: 100%;
    max-width: 520px;
    font-size: 17px;
  }

  .hero-art {
    height: 450px;
    min-height: 450px;
    margin-top: -20px;
  }

  .brand-block {
    width: 88%;
    height: 260px;
    left: 7%;
    top: 135px;
  }

  .cat {
    width: 90%;
    left: 5%;
    bottom: 10px;
  }

  .thought {
    top: 8px;
    right: 7%;
    width: 205px;
    height: 88px;
    font-size: 18px;
    border-width: 3px;
  }

  .bubble-dot {
    border-width: 3px;
  }

  .actions {
    width: 100%;
  }

  .btn {
    flex: 1;
    padding: 0 12px;
    font-size: 10px;
  }

  .btn span {
    margin-left: 10px;
  }
}

/* ===== Contract bar (basecat-style) ===== */
.contract-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 4vw;
  border-bottom: 3px solid var(--line);
  background: var(--paper);
  font-family: "IBM Plex Mono", monospace;
}

.contract-left {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  flex: 1;
}

.contract-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
  color: #333;
}

.contract-addr {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract-copy {
  flex-shrink: 0;
  background: transparent;
  border: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  color: var(--ink);
  padding: 6px 0;
}

.contract-copy:hover,
.contract-copy.copied {
  color: var(--lime-dark);
}

.btn-dark.copied {
  background: var(--lime);
  color: #050505;
}

.btn-dark:hover:not(:disabled) {
  background: #222;
}

@media (max-width: 720px) {
  .contract-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 20px;
  }

  .contract-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
  }

  .contract-addr {
    font-size: 11px;
    max-width: 100%;
  }
}
