*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  line-height: 1.5;
}

body {
  font-family: "Space Grotesk", -apple-system, sans-serif;
  background: #060606;
  color: rgba(255, 255, 255, 0.5);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---- layout ---- */

.scene {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
}

/* ---- wireframe 3d title ---- */

.wire {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 0.88;
}

.wire-text {
  position: relative;
  display: block;
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 1);
}

.wire-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
  transform: translate(8px, 8px);
  z-index: -1;
}

.wire-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  transform: translate(16px, 16px);
  z-index: -2;
}

/* ---- tagline ---- */

.sub {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* ---- posts ---- */

.posts {
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.post {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
}

.post time {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 0.5rem;
}

.post h2 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.post h2 a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.post h2 a:hover {
  color: rgba(255, 255, 255, 1);
}

.post-body {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

.post-body p {
  margin-bottom: 0.75rem;
}

.post-body a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-body a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ---- footer ---- */

.foot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
}

.admin-link {
  color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.admin-link:hover {
  color: rgba(255, 255, 255, 0.3);
}

/* ---- responsive ---- */

@media (max-width: 480px) {
  .wire-text {
    -webkit-text-stroke-width: 0.7px;
  }
  .wire-text::before {
    transform: translate(3px, 3px);
    -webkit-text-stroke-width: 0.7px;
  }
  .wire-text::after {
    transform: translate(6px, 6px);
    -webkit-text-stroke-width: 0.7px;
  }
}
