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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #020810;
  color: #f0f0f0;
  overflow-x: hidden;
  user-select: none;
  -webkit-user-select: none;
}

#canvas {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

#hero h1 {
  font-size: clamp(4rem, 8vw, 7rem); 
  font-weight: 700;
  color: #ffffff;
  position: relative;
  margin: 0;
}

.hero-content {
  position: relative;
  text-align: center;
  animation: fadeUp 1.2s ease both;
}

.hero-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  animation: fadeUp 1.2s 0.4s ease both;
}

.hero-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(220, 240, 255, 0.85); 
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 0.2s;
}

.hero-links a:hover {
  color: #ffffff;
  border-color: rgba(100, 180, 255, 0.5);
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1.2s 0.8s ease both;
}

.scroll-hint span {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(100, 180, 255, 0.3);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(100, 180, 255, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

#content {
  background: #ffffff;
  color: #111111;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.content-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

section { margin-bottom: 3.5rem; }

h2 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 1.1rem;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 0.7rem;
}

.row-list { display: flex; flex-direction: column; }

.row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #efefef;
}

.row:first-child { border-top: 1px solid #efefef; }

.row-left { display: flex; flex-direction: column; flex: 1; min-width: 0; }

.row-title { font-size: 0.97rem; color: #111; text-decoration: none; }

a.row-title:hover { text-decoration: underline; text-decoration-color: #111; }

.row-sub { font-size: 0.83rem; color: #999; font-style: italic; }

.row-meta {
  font-size: 0.72rem;
  color: #bbb;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
  font-family: monospace;
  letter-spacing: 0.03em;
}

.int-row {
  display: flex;
  gap: 1.5rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #efefef;
}

.int-row:first-child { border-top: 1px solid #efefef; }

.int-label {
  font-size: 0.7rem;
  color: #bbb;
  min-width: 72px;
  flex-shrink: 0;
  align-self: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: monospace;
}

.int-text { font-size: 0.93rem; color: #333; line-height: 1.6; }

footer {
  font-size: 0.72rem;
  color: #ccc;
  padding-top: 2rem;
  border-top: 1px solid #efefef;
  font-family: monospace;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@media (max-width: 480px) {
  #hero h1 { font-size: 3.5rem; }
  .row { flex-direction: column; gap: 0.2rem; }
  .row-meta { align-self: flex-start; }
}
