:root {
  --black: #0b0b0d;
  --white: #ffffff;
  --fog: #ececf0;
  --cyan: #39dcf2;
  --coral: #ff705d;
  --yellow: #f5e652;
  --muted: #77777f;
  --display: "Unbounded", Arial Black, sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: var(--body);
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; width: 100%; }

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 48px, 1480px);
  height: 88px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.3);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
}

.brand-mark {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 6px -3px 0 -3px currentColor;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a,
.arrow-link {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after { transform: scaleX(1); }

.header-ca {
  justify-self: end;
  padding: 10px 14px;
  color: var(--black);
  background: var(--cyan);
  border: 1px solid var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
}

.menu-button,
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: min(850px, 94vh);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 34%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-photo::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--black) 0%, rgba(11,11,13,.88) 9%, rgba(11,11,13,0) 42%);
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  filter: contrast(1.06);
}

.hero-copy {
  position: relative;
  z-index: 5;
  display: flex;
  min-height: min(850px, 94vh);
  max-width: 760px;
  padding: 150px 0 120px max(24px, calc((100vw - 1480px) / 2));
  flex-direction: column;
  justify-content: center;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(72px, 8.4vw, 148px);
  line-height: .82;
}

.hero-copy > p {
  margin: 32px 0;
  color: #d9d9de;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  border-radius: 0;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translate(-3px,-3px);
  box-shadow: 5px 5px 0 var(--coral);
}

.button-cyan {
  color: var(--black);
  background: var(--cyan);
  border-color: var(--cyan);
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.button-outline {
  color: var(--black);
  background: transparent;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 800;
}

.arrow-link svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 160ms ease;
}

.arrow-link:hover svg { transform: translateX(4px); }
.arrow-link.light { color: var(--white); }

.hero-note {
  position: absolute;
  right: max(24px, calc((100vw - 1480px) / 2));
  bottom: 86px;
  z-index: 5;
  display: flex;
  gap: 28px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
}

.bubble-field i {
  position: absolute;
  z-index: 4;
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(57,220,242,.72);
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
}

.bubble-field i:nth-child(1) { top: 17%; left: 45%; width: 16px; height: 16px; }
.bubble-field i:nth-child(2) { top: 25%; right: 9%; width: 56px; height: 56px; animation-delay: -2s; }
.bubble-field i:nth-child(3) { top: 61%; left: 51%; width: 25px; height: 25px; animation-delay: -4s; }
.bubble-field i:nth-child(4) { right: 31%; bottom: 17%; width: 82px; height: 82px; animation-delay: -1s; }
.bubble-field i:nth-child(5) { top: 42%; left: 37%; width: 12px; height: 12px; animation-delay: -3s; }
.bubble-field i:nth-child(6) { top: 13%; right: 29%; width: 32px; height: 32px; animation-delay: -5s; }

@keyframes float {
  50% { transform: translateY(-14px); }
}

.scroll-line {
  position: absolute;
  z-index: 7;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: max-content;
  height: 54px;
  align-items: center;
  gap: 28px;
  padding: 0 24px;
  color: var(--black);
  background: var(--yellow);
  font-family: var(--display);
  font-size: 17px;
  white-space: nowrap;
  animation: marquee 23s linear infinite;
}

.scroll-line i { color: var(--coral); font-style: normal; }

@keyframes marquee { to { transform: translateX(-50%); } }

.memory {
  padding: 120px max(24px, calc((100vw - 1360px) / 2)) 140px;
  background: var(--white);
}

.memory-title {
  display: grid;
  grid-template-columns: 75px 1fr;
  margin-bottom: 80px;
}

.section-index {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
}

.section-index.inverse { color: var(--white); }

h2 {
  font-size: clamp(58px, 7vw, 110px);
  line-height: .96;
}

.memory-layout {
  display: grid;
  grid-template-columns: minmax(430px, 1fr) minmax(360px, .9fr);
  gap: 95px;
  align-items: center;
}

.memory-photo {
  position: relative;
  border: 2px solid var(--black);
  box-shadow: 15px 15px 0 var(--cyan);
  transform: rotate(-1.5deg);
}

.memory-photo img { aspect-ratio: 1; object-fit: cover; }

.memory-photo span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--yellow);
  border: 2px solid var(--black);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
}

.memory-copy { max-width: 590px; }
.memory-copy p {
  margin: 0 0 22px;
  color: #57575e;
  font-size: 18px;
  line-height: 1.72;
}

.memory-copy .lead {
  color: var(--black);
  font-size: clamp(26px, 2.5vw, 37px);
  font-weight: 800;
  line-height: 1.3;
}

.memory-copy blockquote {
  margin: 38px 0 0;
  padding: 22px 0 22px 24px;
  border-left: 5px solid var(--coral);
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.5;
}

.cobie {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  color: var(--white);
  background: var(--black);
}

.cobie-photo {
  position: relative;
  min-height: 820px;
  border-right: 1px solid #3b3b40;
}

.cobie-photo img {
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08);
}

.photo-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  color: var(--black);
  background: var(--cyan);
  border: 2px solid var(--black);
}

.photo-caption strong { font-family: var(--display); font-size: 14px; }
.photo-caption span { font-family: var(--mono); font-size: 10px; }

.cobie-copy {
  padding: 100px max(24px, calc((100vw - 1360px) / 2)) 105px 75px;
}

.cobie-copy .section-index { margin-bottom: 42px; }
.cobie-copy h2 { font-size: clamp(52px, 5.5vw, 90px); }

.cobie-lead {
  max-width: 760px;
  margin: 34px 0 45px;
  color: #d0d0d5;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}

.timeline { border-top: 1px solid #46464d; }
.timeline article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #46464d;
}

.timeline time {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 13px;
}

.timeline p {
  max-width: 680px;
  margin: 0;
  color: #b8b8bf;
  font-size: 15px;
  line-height: 1.65;
}

.token {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  padding: 125px max(24px, calc((100vw - 1360px) / 2));
  background: var(--fog);
}

.token-heading .section-index { margin-bottom: 40px; }
.token-heading h2 { font-size: clamp(56px, 6vw, 96px); }
.token-heading p {
  max-width: 510px;
  margin: 32px 0 0;
  color: #55555d;
  font-size: 17px;
  line-height: 1.7;
}

.contract-block {
  align-self: center;
  padding: 40px;
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: 13px 13px 0 var(--coral);
}

.token-facts {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-bottom: 32px;
  border: 1px solid var(--black);
}

.token-facts span {
  display: flex;
  min-height: 78px;
  padding: 15px;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 13px;
}

.token-facts span + span { border-left: 1px solid var(--black); }
.token-facts b { color: var(--muted); font-size: 10px; }

.contract-label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--mono);
  font-size: 11px;
}

.contract-copy {
  display: grid;
  grid-template-columns: minmax(0,1fr) 38px;
  gap: 15px;
  align-items: center;
  width: 100%;
  padding: 21px;
  color: var(--black);
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 0;
  text-align: left;
  cursor: pointer;
}

.contract-copy span {
  overflow-wrap: anywhere;
  font-family: var(--mono);
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 500;
}

.contract-copy svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contract-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.copy-feedback {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 12px;
}

.farewell {
  position: relative;
  display: grid;
  min-height: 780px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.farewell::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(11,11,13,.94) 0%, rgba(11,11,13,.18) 70%);
}

.farewell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.05);
}

.farewell-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(100% - 48px, 1360px);
  padding-bottom: 76px;
}

.farewell-copy h2 { font-size: clamp(62px, 8vw, 126px); }
.farewell-copy p {
  max-width: 620px;
  margin: 25px 0 24px;
  color: #d7d7dd;
  font-size: 18px;
  line-height: 1.6;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 32px;
  align-items: center;
  padding: 34px max(24px, calc((100vw - 1360px) / 2));
  color: var(--black);
  background: var(--cyan);
  font-family: var(--mono);
  font-size: 11px;
}

.site-footer p { margin: 0; }
.footer-ca {
  padding: 7px 10px;
  background: transparent;
  border: 1px solid var(--black);
  font-family: var(--mono);
  cursor: pointer;
}

@media (max-width: 1000px) {
  .site-header { grid-template-columns: 1fr auto; width: calc(100% - 32px); }
  .desktop-nav, .header-ca { display: none; }
  .menu-button {
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 7px;
    color: var(--white);
    background: transparent;
    border: 0;
  }
  .menu-button span { width: 27px; height: 2px; background: currentColor; transition: transform 180ms ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-5px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    z-index: 25;
    inset: 0;
    display: flex;
    padding: 110px 28px 40px;
    color: var(--white);
    background: var(--black);
    flex-direction: column;
    gap: 25px;
    font-family: var(--display);
    font-size: 42px;
    transform: translateY(-110%);
    transition: transform 220ms ease;
  }
  .mobile-menu.open { transform: translateY(0); }
  .hero-photo { left: 18%; opacity: .78; }
  .memory-layout, .token { grid-template-columns: 1fr; }
  .memory-layout { gap: 70px; }
  .memory-photo { max-width: 670px; }
  .cobie { grid-template-columns: 1fr; }
  .cobie-photo { min-height: 720px; border-right: 0; border-bottom: 1px solid #3b3b40; }
  .cobie-copy { padding: 90px 32px; }
  .site-footer { grid-template-columns: 1fr auto; }
}

@media (max-width: 650px) {
  .site-header { height: 74px; }
  .brand { font-size: 14px; }
  .brand-mark { width: 18px; height: 18px; }
  .hero { min-height: 820px; }
  .hero-photo { inset: 74px -90px 54px -90px; align-items: end; opacity: .68; }
  .hero-photo::before { background: linear-gradient(0deg, var(--black) 0%, rgba(11,11,13,.12) 62%); }
  .hero-photo img { height: 73%; object-position: center bottom; }
  .hero-copy {
    min-height: 820px;
    padding: 105px 20px 310px;
    justify-content: flex-start;
  }
  h1 { font-size: clamp(54px, 18vw, 76px); line-height: .86; }
  .hero-copy > p { margin: 24px 0; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-note { display: none; }
  .scroll-line { height: 50px; font-size: 14px; }
  .bubble-field i:nth-child(n+4) { display: none; }
  .memory { padding: 78px 20px 90px; }
  .memory-title { grid-template-columns: 1fr; gap: 25px; margin-bottom: 50px; }
  h2 { font-size: clamp(45px, 13vw, 66px); }
  .memory-layout { grid-template-columns: 1fr; gap: 55px; }
  .memory-photo { box-shadow: 8px 8px 0 var(--cyan); }
  .memory-photo span { right: 10px; bottom: 10px; font-size: 9px; }
  .memory-copy .lead { font-size: 24px; }
  .memory-copy p { font-size: 16px; }
  .memory-copy blockquote { font-size: 15px; }
  .cobie-photo { min-height: 480px; }
  .photo-caption { right: 12px; bottom: 12px; left: 12px; padding: 12px; }
  .photo-caption strong { font-size: 11px; }
  .photo-caption span { font-size: 8px; }
  .cobie-copy { padding: 78px 20px; }
  .cobie-copy h2 { font-size: clamp(43px, 12vw, 60px); }
  .cobie-lead { font-size: 17px; }
  .timeline article { grid-template-columns: 72px 1fr; gap: 13px; }
  .timeline p { font-size: 13px; }
  .token { padding: 78px 20px; gap: 50px; }
  .contract-block { padding: 20px; box-shadow: 7px 7px 0 var(--coral); }
  .token-facts { grid-template-columns: 1fr; }
  .token-facts span { min-height: 60px; }
  .token-facts span + span { border-top: 1px solid var(--black); border-left: 0; }
  .contract-copy { grid-template-columns: minmax(0,1fr) 28px; padding: 15px; }
  .contract-actions { flex-direction: column; }
  .farewell { min-height: 690px; }
  .farewell img { object-fit: cover; }
  .farewell-copy { width: calc(100% - 40px); padding-bottom: 54px; }
  .farewell-copy h2 { font-size: clamp(45px, 13vw, 64px); }
  .site-footer { grid-template-columns: 1fr; gap: 15px; }
}

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