:root {
  --ink: #080908;
  --panel: #101411;
  --paper: #fff1cd;
  --muted: #d4c6a3;
  --green: #b5ff3d;
  --green-2: #62ff81;
  --orange: #ff5c35;
  --line: rgba(255, 241, 205, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 8, 0.86);
  backdrop-filter: blur(14px);
}

.brand {
  font-weight: 950;
  font-size: 28px;
  text-decoration: none;
  letter-spacing: 0;
}

nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
}

main {
  position: relative;
}

.hero {
  min-height: calc(100vh - 72px);
  padding: 0 clamp(18px, 4vw, 52px) 42px;
  display: grid;
  align-content: stretch;
}

.ticker {
  display: flex;
  gap: 10px;
  overflow: hidden;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--green);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 850;
}

.ticker span {
  flex: 0 0 auto;
  border: 1px solid var(--green);
  padding: 8px 12px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(28px, 7vh, 82px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  font-family: "Arial Black", Impact, Inter, sans-serif;
  line-height: 0.88;
}

h1 {
  font-size: clamp(86px, 17vw, 230px);
}

h2 {
  font-size: clamp(44px, 8vw, 104px);
}

.lede {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.25;
}

.hero-action,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 2px solid var(--green);
  background: var(--green);
  color: var(--ink);
  font: inherit;
  font-weight: 950;
  text-decoration: none;
  padding: 0 18px;
  cursor: pointer;
}

.sample-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  transform: rotate(2deg);
}

.sample-wall img {
  width: 100%;
  aspect-ratio: 19 / 25;
  object-fit: cover;
  border: 2px solid var(--paper);
  background: var(--panel);
}

.sample-wall img:first-child {
  grid-column: 1 / -1;
}

.join-section,
.gallery-section {
  padding: clamp(42px, 8vw, 94px) clamp(18px, 4vw, 52px);
  border-top: 1px solid var(--line);
}

.join-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(20px, 5vw, 70px);
  background: var(--paper);
  color: var(--ink);
}

.join-section .eyebrow {
  color: #265c00;
}

.entry-form {
  align-self: end;
  display: grid;
  gap: 10px;
}

label {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

input {
  width: 100%;
  min-height: 52px;
  border: 2px solid var(--ink);
  background: white;
  color: var(--ink);
  padding: 0 14px;
  font: inherit;
}

.status {
  min-height: 22px;
  color: #5a220d;
  font-weight: 750;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}

.count {
  color: var(--green);
  font-weight: 850;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}

.card {
  border: 1px solid var(--line);
  background: #111411;
}

.card img {
  width: 100%;
  display: block;
  aspect-ratio: 19 / 25;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.card-body {
  padding: 14px;
  display: grid;
  gap: 6px;
}

.handle {
  font-weight: 950;
  font-size: 20px;
  word-break: break-word;
}

.meta {
  color: var(--muted);
  font-size: 13px;
}

.profile-link {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 820px) {
  .hero-grid,
  .join-section {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
