.hero {
  min-height: 100vh;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  position: relative;
  border-bottom: var(--rule-w);
}
.hero-bio {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  margin-left: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  opacity: 0;
  animation: fadeIn 0.6s ease 1.3s forwards;
  position: relative;
  z-index: 10;
}

.hero-counter {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--dim);
  border-left: 1px solid rgba(0,0,0,.08);
  padding-left: 24px;
  margin-left: 8px;
}

.hero-counter-value {
  color: #000;
  font-weight: 700;
  background: rgba(0,0,0,.03);
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 10px;
  letter-spacing: 1px;
}

.hero-counter-icon {
  width: 16px;
  height: 16px;
  opacity: .3;
  transition: opacity .2s;
}

.hero-counter:hover .hero-counter-icon {
  opacity: .6;
}

@media (max-width: 900px) {
  .hero-counter {
    padding-left: 16px;
    margin-left: 4px;
  }
  .hero-counter span:not(.hero-counter-value) {
    display: none; 
  }
}

@media (max-width: 768px) {
  .hero-counter {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    gap: 4px;
  }
  
  .hero-counter span:not(.hero-counter-value) {
    display: inline;
    font-size: 8px;
  }
  
  .hero-counter-value {
    padding: 2px 6px;
    font-size: 9px;
  }
  
  .hero-counter-icon {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .hero-counter {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 2px 4px;
  }
  
  .hero-counter span:not(.hero-counter-value) {
    font-size: 7px;
    letter-spacing: 1px;
  }
}
.hero-bio-item {
  white-space: nowrap;
}

.hero-bio-divider {
  color: rgba(0,0,0,0.2);
  font-size: 10px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero-bio {
    font-size: 9px;
    gap: 8px;
    margin-left: 4px;
    flex-wrap: wrap;
    row-gap: 4px;
  }
}

@media (max-width: 480px) {
  .hero-bio {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .hero-bio-divider { display: none; }
  .hero-bio-item::after { content: ' //'; color: rgba(0,0,0,0.2); }
  .hero-bio-item:last-child::after { content: ''; }
}
.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  border-bottom: var(--rule);
  position: relative;
  z-index: 10;
}

.hero-nav-logo {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
}

.hero-nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-nav-item {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: color .2s;
  border: none; background: none;
}
.hero-nav-item:hover { color: #000; }

.hero-status-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #000;
  padding: 6px 14px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero-status-dot {
  width: 5px; height: 5px;
  background: #000;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { opacity:1; }
  50% { opacity: .2; }
}

.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 0 40px;
  position: relative;
  overflow: hidden;
}

.hero-bg-num {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-60%);
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(300px, 45vw, 600px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.04);
  pointer-events: none;
  user-select: none;
  letter-spacing: -20px;
  white-space: nowrap;
}

.hero-name-wrap {
  overflow: hidden;
  margin-bottom: 0;
  line-height: 0.82;
  padding-bottom: 20px;
}

.nickname {
  font-family: var(--f-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(100px, 22vw, 280px);
  letter-spacing: -4px;
  text-transform: uppercase;
  line-height: 0.82;
  color: #000;
  white-space: nowrap;
  position: relative;
  z-index: 5;
  display: block;
  transform: translateX(0);
  opacity: 0;
  animation: heroNameIn 1s cubic-bezier(.77,0,.18,1) .8s forwards;
}

@keyframes heroNameIn {
  from { opacity:0; transform: translateY(80px) skewY(3deg); }
  to   { opacity:1; transform: translateY(0) skewY(0); }
}

.nickname span {
  display: inline-block;
  transition: color .2s ease, transform .2s ease;
}
.nickname span.active {
  color: #000;
  transform: scaleY(1.06) translateY(-6px);
}
.nickname span.inactive { color: rgba(0,0,0,.15); }

.hero-strip {
  border-top: var(--rule);
  border-bottom: var(--rule);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  margin-right: 0;
  opacity: 0;
  animation: fadeIn .6s ease 1.6s forwards;
}

.hero-strip-cell {
  padding: 16px 28px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
  display: flex; align-items: center;
}

.hero-strip-div {
  width: 1px;
  background: #000;
  opacity: .1;
  align-self: stretch;
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-top: var(--rule);
  opacity: 0;
  animation: fadeIn .6s ease 1.9s forwards;
}

.hero-bottom-left {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--dim);
  text-transform: uppercase;
}

.hero-btns {
  display: flex;
  gap: 0;
}

.btn {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 14px 28px;
  background: transparent;
  color: #000;
  border: 1px solid #000;
  border-left: none;
  position: relative;
  overflow: hidden;
  transition: color .3s;
}
.btn:first-child { border-left: 1px solid #000; }

.btn::before {
  content:'';
  position:absolute; inset:0;
  background:#000;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .3s cubic-bezier(.77,0,.18,1);
  z-index:-1;
}
.btn:hover { color:#fff; }
.btn:hover::before { transform: scaleY(1); }

.hero-scroll-hint {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--dim);
  display: flex; align-items: center; gap: 12px;
}

.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: var(--dim);
  animation: scrollLineAnim 2s ease-in-out infinite;
}
@keyframes scrollLineAnim {
  0%, 100% { width: 40px; opacity: .4; }
  50% { width: 20px; opacity: 1; }
}

.hero-side-text {
  position: absolute;
  right: 40px;
  bottom: 100px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 5px;
  color: rgba(0,0,0,.2);
  text-transform: uppercase;
  z-index: 10;
}

@media (max-width: 768px) {
  .hero-nav { padding: 16px 20px; }
  .hero-body { padding-left: 20px; }
  .hero-status-pill { display: none; }
  .hero-strip { display: none; }
  .hero-bottom { padding: 16px 20px; flex-direction: column; gap: 16px; align-items: flex-start; }
  .btn { padding: 12px 20px; font-size: 9px; }
  .hero-side-text { display: none; }
  .hero-bg-num { opacity: .3; }
  .hero-nav-right { gap: 16px; }
  .hero-scroll-hint { display: none; }
  .hero-bottom-left { font-size: 9px; letter-spacing: 2px; }
}

@media (max-width: 600px) {
  .hero-nav-item { display: none; }
  .hero-nav-right { gap: 10px; }
  .hero-btns { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .btn { border-left: 1px solid #000; text-align: center; }
}

@media (max-width: 480px) {
  .nickname { font-size: clamp(62px, 22vw, 110px); }
  .hero-nav { padding: 12px 16px; }
  .hero-nav-logo { font-size: 16px; letter-spacing: 4px; }
  .hero-body { padding-left: 16px; }
  .hero-bottom { padding: 12px 16px; gap: 12px; }
  .hero-bg-num { display: none; }
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  border-left: 1px solid rgba(0,0,0,.08);
  padding-left: 20px;
  margin-left: 4px;
}
.lang-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  color: var(--dim);
  padding: 4px 6px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color .2s;
}
.lang-btn:hover { color: #000; }
.lang-btn.active { color: #000; font-weight: 700; }
.lang-sep { color: rgba(0,0,0,.2); user-select: none; }

@media (max-width: 900px) {
  .lang-switch { padding-left: 12px; margin-left: 0; }
}
@media (max-width: 640px) {
  .lang-switch { border-left: none; padding-left: 0; }
}

