@font-face { font-family: 'Archivo'; font-weight: 800; font-display: swap; src: url(/fonts/Archivo-800.woff2) format('woff2'); }
@font-face { font-family: 'Archivo'; font-weight: 900; font-display: swap; src: url(/fonts/Archivo-900.woff2) format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-weight: 400; font-display: swap; src: url(/fonts/JetBrainsMono-400.woff2) format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-weight: 600; font-display: swap; src: url(/fonts/JetBrainsMono-600.woff2) format('woff2'); }

:root {
  --bg: #040604;
  --panel: #0a0f0a;
  --green: #35f03a;
  --green-dim: rgba(53, 240, 58, 0.14);
  --white: #f4fff4;
  --muted: #7d8f7d;
  --red: #c8102e;
  --sans: 'Archivo', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
body {
  background: var(--bg); color: var(--white);
  font-family: var(--sans); font-weight: 800; line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 22px;
  padding: 12px clamp(16px, 3vw, 40px);
  background: rgba(4, 6, 4, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(53, 240, 58, 0.18);
}
.brand { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; letter-spacing: 0.02em; }
.brand img { border-radius: 50%; }
.brand b { color: var(--green); font-style: italic; margin-left: 4px; }
.nav__links { display: flex; gap: 20px; margin-left: auto; font-size: 0.9rem; color: var(--muted); }
.nav__links a:hover { color: var(--green); }
.nav__cta { display: flex; gap: 10px; }
@media (max-width: 760px) { .nav__links { display: none; } .nav__cta { margin-left: auto; } }

.btn {
  display: inline-block; padding: 11px 20px; border-radius: 10px;
  font-family: var(--sans); font-weight: 900; font-size: 0.9rem; letter-spacing: 0.02em;
  border: 2px solid var(--green); transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.btn--green { background: var(--green); color: #032003; box-shadow: 0 0 24px rgba(53, 240, 58, 0.35); }
.btn--green:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(53, 240, 58, 0.6); }
.btn--ghost { color: var(--green); background: transparent; }
.btn--ghost:hover { background: var(--green-dim); transform: translateY(-2px); }
.btn--lg { padding: 15px 28px; font-size: 1rem; border-radius: 12px; }

/* ---------- hero ---------- */
.hero { position: relative; text-align: center; padding: clamp(60px, 9vw, 110px) 20px 0; overflow: hidden; }
.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(53, 240, 58, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(53, 240, 58, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
}
.hero__in { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.hero__tag { font-family: var(--mono); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 18px; }
.hero h1 { font-size: clamp(3.4rem, 13vw, 8.5rem); line-height: 0.92; font-weight: 900; font-style: italic; letter-spacing: -0.015em; text-transform: uppercase; }
.hero__white { display: block; color: var(--white); text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.6); }
.hero__green {
  display: block; color: var(--green);
  text-shadow: 0 0 34px rgba(53, 240, 58, 0.55), 4px 4px 0 rgba(0, 0, 0, 0.6);
}
.hero__lead { max-width: 54ch; margin: 22px auto 28px; font-weight: 800; color: #b9ccb9; font-size: clamp(1rem, 1.8vw, 1.2rem); }

.ca {
  display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center;
  padding: 12px 18px; border-radius: 12px; cursor: pointer;
  background: var(--panel); border: 1px solid rgba(53, 240, 58, 0.35);
  transition: border-color 0.2s, box-shadow 0.2s;
  max-width: 100%;
}
.ca:hover { border-color: var(--green); box-shadow: 0 0 24px rgba(53, 240, 58, 0.25); }
.ca__label { font-family: var(--mono); font-weight: 600; font-size: 0.7rem; color: #032003; background: var(--green); border-radius: 6px; padding: 3px 8px; }
.ca code { font-family: var(--mono); font-size: clamp(0.62rem, 1.6vw, 0.85rem); color: var(--white); word-break: break-all; }
.ca__copy { font-family: var(--mono); font-size: 0.66rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.ca.is-copied { border-color: var(--green); }
.ca.is-copied .ca__copy { color: var(--green); }

.hero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.hero__banner {
  position: relative; z-index: 1; margin: 46px auto -6px; width: min(904px, 96%);
  border-radius: 18px 18px 0 0; border: 1px solid rgba(53, 240, 58, 0.25); border-bottom: 0;
  box-shadow: 0 -10px 60px rgba(53, 240, 58, 0.12);
}

/* ---------- ticker ---------- */
.tick { overflow: hidden; border-top: 2px solid var(--green); border-bottom: 2px solid var(--green); background: #071007; }
.tick__in { display: inline-flex; white-space: nowrap; animation: tick 26s linear infinite; }
.tick__in span { padding: 13px 0; font-size: 1rem; font-style: italic; font-weight: 900; letter-spacing: 0.06em; color: var(--green); }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.sec { padding: clamp(60px, 8vw, 100px) clamp(18px, 4vw, 48px); max-width: 1280px; margin: 0 auto; text-align: center; }
.sec--tint { max-width: none; background: #060a06; border-top: 1px solid rgba(53, 240, 58, 0.14); border-bottom: 1px solid rgba(53, 240, 58, 0.14); }
.sec--tint > * { max-width: 1280px; margin-left: auto; margin-right: auto; }
.sec h2 { font-size: clamp(2rem, 5.4vw, 3.6rem); font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 8px; }
.sec h2 em { font-style: italic; color: var(--muted); font-weight: 800; }
.sec h2 .g { color: var(--green); text-shadow: 0 0 26px rgba(53, 240, 58, 0.5); }
.sec__sub { font-family: var(--mono); font-weight: 400; color: var(--muted); font-size: 0.92rem; margin-bottom: 34px; }

.creed, .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 34px 0 10px; text-align: left; }
.steps { grid-template-columns: repeat(3, 1fr); margin-bottom: 34px; }
.card {
  background: var(--panel); border: 1px solid rgba(53, 240, 58, 0.2); border-radius: 16px;
  padding: 24px; transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-5px); border-color: var(--green); box-shadow: 0 18px 40px -20px rgba(53, 240, 58, 0.35); }
.card__n { font-family: var(--mono); font-weight: 600; font-size: 0.7rem; color: var(--green); }
.card h3 { font-size: 1.2rem; font-style: italic; text-transform: uppercase; margin: 10px 0 8px; }
.card p { font-weight: 400; font-family: var(--mono); font-size: 0.82rem; line-height: 1.65; color: #a9bca9; }
@media (max-width: 980px) { .creed { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .creed, .steps { grid-template-columns: 1fr; } }

/* ---------- gallery ---------- */
.grid { columns: 3 300px; column-gap: 14px; }
.grid img {
  width: 100%; margin-bottom: 14px; border-radius: 14px;
  border: 1px solid rgba(53, 240, 58, 0.18);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.grid img:hover { transform: scale(1.02); border-color: var(--green); box-shadow: 0 0 30px rgba(53, 240, 58, 0.25); }

/* ---------- join + footer ---------- */
.join img { margin: 0 auto 18px; border-radius: 50%; box-shadow: 0 0 50px rgba(53, 240, 58, 0.4); }
.foot { text-align: center; padding: 40px 20px 50px; border-top: 1px solid rgba(53, 240, 58, 0.18); }
.foot__ca { font-family: var(--mono); font-size: 0.72rem; color: var(--muted); word-break: break-all; margin-bottom: 16px; }
.foot__note { max-width: 640px; margin: 0 auto 16px; font-family: var(--mono); font-weight: 400; font-size: 0.68rem; line-height: 1.7; color: #5c6b5c; }
.foot__love { font-style: italic; font-size: 0.95rem; color: var(--green); }

/* mobile nav fit */
@media (max-width: 520px) {
  .nav { gap: 10px; padding: 10px 12px; }
  .brand span { display: none; }
  .nav__cta { gap: 8px; }
  .btn { padding: 9px 13px; font-size: 0.78rem; }
  .btn--lg { padding: 13px 20px; font-size: 0.9rem; }
}
