:root {
  --canvas: #0a0a0a;
  --acid-yellow: #fcfb52;
  --acid-pink: #ff399e;
  --white: #ffffff;
  --ink: #0a0a0a;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(252, 251, 82, 0.26);
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Space Grotesk", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--acid-yellow);
  background: var(--canvas);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.45;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 57, 158, 0.35) 0, transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(252, 251, 82, 0.18) 0, transparent 40%),
    var(--canvas);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.11;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

a {
  color: inherit;
  text-decoration: none;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  z-index: 90;
  background: rgba(255, 255, 255, 0.08);
}

.progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--acid-pink);
}

.site-header {
  position: fixed;
  top: 20px;
  left: 24px;
  right: 24px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px;
  border: 2px solid var(--acid-yellow);
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: 8px 8px 0 var(--acid-pink);
}

.brand,
.name {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 6px 12px;
  color: var(--ink);
  background: var(--acid-yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 38px;
  padding: 10px 12px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
  background: var(--acid-pink);
  border-color: var(--acid-pink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  padding: 8px;
  background: var(--acid-yellow);
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 3px;
  margin: 4px 0;
  background: var(--ink);
}

.strip {
  position: relative;
  min-height: 560px;
  padding: 112px 56px 92px;
  border-bottom: 2px solid var(--line);
  overflow: hidden;
}

.hero {
  min-height: 100vh;
  padding-top: 148px;
}

.hero-grid,
.section-head,
.stack-grid,
.core-list,
.build-grid,
.project-grid,
.tool-row,
.contact-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 44px;
  align-items: center;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  color: var(--acid-yellow);
  text-shadow: 6px 6px 0 var(--acid-pink);
}

h1 {
  margin-top: 26px;
  font-size: 116px;
}

h2 {
  max-width: 10ch;
  font-size: 104px;
}

.section-head {
  display: grid;
  gap: 24px;
  margin-bottom: 44px;
}

.role {
  margin-top: 22px;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.lede {
  max-width: 710px;
  margin-top: 26px;
  color: var(--acid-yellow);
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: uppercase;
}

.lede b {
  color: var(--acid-pink);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  color: var(--acid-yellow);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  border: 2px solid var(--acid-yellow);
  box-shadow: 5px 5px 0 var(--acid-pink);
}

.button:hover,
.button.primary {
  color: var(--ink);
  background: var(--acid-yellow);
}

.poster-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 3px solid var(--acid-yellow);
  background: var(--acid-pink);
  color: var(--ink);
  transform: rotate(2deg);
  box-shadow: 14px 14px 0 var(--acid-yellow);
}

.poster-panel p {
  padding: 14px 16px;
  color: var(--acid-yellow);
  background: var(--ink);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.splat {
  position: absolute;
  top: 40%;
  right: 80px;
  z-index: 0;
  color: var(--acid-pink);
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 1;
  opacity: 0.9;
  transform: rotate(15deg);
}

.stack-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stack-card,
.project-card,
.core-item {
  min-height: 190px;
  padding: 22px;
  border: 2px solid var(--acid-yellow);
  background: rgba(10, 10, 10, 0.78);
  box-shadow: 7px 7px 0 var(--acid-pink);
}

.stack-card.hot,
.project-card:nth-child(even) {
  border-color: var(--acid-pink);
  box-shadow: 7px 7px 0 var(--acid-yellow);
}

.stack-card h3,
.project-card h3,
.core-item h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.stack-card p,
.project-card p,
.core-item p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
}

.stk {
  color: transparent;
  text-shadow: none;
  -webkit-text-stroke: 2px var(--acid-yellow);
}

.core-list {
  display: grid;
  gap: 16px;
}

.core-item {
  display: grid;
  grid-template-columns: 180px minmax(220px, 0.7fr) minmax(260px, 1fr);
  align-items: center;
  min-height: 124px;
  gap: 22px;
}

.core-item span,
.project-card span {
  color: var(--acid-pink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.build-grid p {
  min-height: 96px;
  padding: 22px;
  color: var(--ink);
  background: var(--acid-yellow);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 8px 8px 0 var(--acid-pink);
}

.strike {
  position: relative;
  display: inline-block;
}

.strike::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 54%;
  height: 8px;
  background: var(--acid-pink);
  transform: rotate(-3deg);
}

.project-card small {
  display: block;
  margin-top: 22px;
  color: var(--acid-yellow);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.tool-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tool-row span,
.contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--acid-yellow);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.tool-row span:nth-child(even),
.contact-links a:nth-child(even) {
  color: var(--white);
  background: var(--acid-pink);
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.contact-splat {
  top: auto;
  right: 12%;
  bottom: 12%;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 56px 34px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  animation: reveal-in 520ms ease both;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 12px;
    left: 14px;
    right: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 2px solid var(--acid-yellow);
    background: var(--canvas);
    box-shadow: 8px 8px 0 var(--acid-pink);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    display: flex;
    align-items: center;
  }

  .strip {
    padding: 100px 24px 78px;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-grid,
  .core-item {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 78px;
  }

  h2 {
    font-size: 72px;
  }

  .poster-panel p,
  .build-grid p {
    font-size: 26px;
  }

  .stack-grid,
  .project-grid,
  .build-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .strip {
    min-height: 0;
    padding: 92px 16px 64px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    max-width: 8ch;
    font-size: 52px;
  }

  .role {
    font-size: 17px;
  }

  .lede {
    font-size: 15px;
  }

  .splat {
    display: none;
  }

  .poster-panel {
    padding: 14px;
    box-shadow: 8px 8px 0 var(--acid-yellow);
  }

  .poster-panel p,
  .build-grid p {
    font-size: 21px;
  }

  .site-footer {
    flex-direction: column;
    padding: 20px 16px 28px;
  }
}

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