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

:root {
  --teal: #2e6e68;
  --dark: #0a0a0a;
  --white: #ffffff;
  --grid-line: rgba(0, 0, 0, 0.14);
  font-family: "Rubik", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100dvh;
  background-color: var(--teal);
}

/* fixed viewport-sized background grid */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  background-color: var(--teal);
  background-image:
    linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%),
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 100% 100%, 24px 24px, 24px 24px;
  background-repeat: no-repeat, repeat, repeat;
}

/* ── LAYOUT ── */

.stage {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 8vw;
}

.stage-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  gap: 3rem;
  padding: 4rem 0;
}

/* ── HEADER ── */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-mark {
  font-family: "Rubik", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.9);
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a3e4a0;
  animation: pulse 2s ease-in-out infinite;
}

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

/* ── HEADLINE ── */

.headline-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.headline {
  font-family: "Rubik", sans-serif;
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.dash {
  font-weight: 300;
  opacity: 0.6;
}

.subline {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ── DIVIDER ── */

.divider {
  width: 3rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

/* ── PROJECT BLOCK ── */

.project-block {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.project-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  width: fit-content;
}

.project-name {
  font-family: "Courier Prime", monospace;
  font-size: clamp(1.25rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 0.2rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.project-dot {
  color: rgba(255, 255, 255, 0.45);
}

.project-arrow {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.2s ease, color 0.2s ease;
  line-height: 1;
}

.project-link:hover .project-name {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.5);
}

.project-link:hover .project-arrow {
  transform: translate(3px, -3px);
  color: rgba(255, 255, 255, 0.7);
}

.project-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.02em;
}

/* ── FOOTER ── */

.stage-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy,
.footer-email {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.25);
}

/* ── RESPONSIVE ── */

@media (max-width: 600px) {
  .stage {
    padding: 2rem 6vw;
  }

  .stage-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
