:root {
  --bg: #05080c;
  --text: #f4fff8;
  --muted: #b7cfc2;
  --green: #3dff8f;
  --green-deep: #14c96a;
  --line: rgba(61, 255, 143, 0.28);
  --ink: #04150c;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(900px 380px at 50% -8%, rgba(61, 255, 143, 0.16), transparent 62%),
    radial-gradient(640px 320px at 100% 8%, rgba(40, 140, 255, 0.08), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: Outfit, system-ui, sans-serif;
}

img { max-width: 100%; }

a { color: inherit; }

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 22px;
  background: rgba(5, 8, 12, 0.78);
  border-bottom: 1px solid rgba(61, 255, 143, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--text);
  font-family: Unbounded, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line);
}

.brand span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.pill {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  font-family: Unbounded, sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.icon-link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
}

.icon-link svg { width: 16px; height: 16px; }

.icon-link:hover,
.btn:hover,
.copy:hover {
  border-color: var(--green);
  background: rgba(61, 255, 143, 0.12);
}

.hero {
  width: min(1280px, calc(100% - 28px));
  margin: 18px auto 0;
}

.banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(61, 255, 143, 0.2),
    0 24px 80px rgba(0, 0, 0, 0.45);
}

.marquee {
  margin-top: 18px;
  overflow: hidden;
  border-block: 1px solid rgba(61, 255, 143, 0.14);
  background: rgba(7, 18, 13, 0.85);
}

.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 10px 0;
  animation: slide 32s linear infinite;
  color: #8dffc0;
  font-family: Unbounded, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.marquee-track span::before {
  content: "●";
  margin-right: 28px;
  color: var(--green);
  font-size: 8px;
  vertical-align: middle;
}

@keyframes slide {
  to { transform: translateX(-50%); }
}

.intro {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 48px 0 12px;
  text-align: center;
}

h1 {
  margin: 0;
  font-family: Unbounded, sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.lead {
  margin: 16px auto 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.ca {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  margin-top: 28px;
  padding: 8px 8px 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 20, 14, 0.9);
  box-shadow: 0 0 40px rgba(61, 255, 143, 0.12);
}

.ca-label {
  color: var(--green);
  font-family: Unbounded, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.ca-short {
  color: var(--text);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 16px;
  letter-spacing: 0.01em;
}

.copy {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #07140e;
  color: var(--green);
  cursor: pointer;
}

.copy svg { width: 18px; height: 18px; }

.copy .i-check { display: none; }

.copy.is-copied {
  border-color: transparent;
  background: var(--green);
  color: var(--ink);
}

.copy.is-copied .i-copy { display: none; }

.copy.is-copied .i-check { display: block; }

.copy:focus-visible,
.icon-link:focus-visible,
.btn:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-family: Outfit, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.btn-fill {
  border-color: transparent;
  background: linear-gradient(180deg, #67ffb0, var(--green-deep));
  color: var(--ink);
}

.btn-fill:hover {
  background: #7dffbb;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: min(1100px, calc(100% - 28px));
  margin: 42px auto 28px;
}

.gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(61, 255, 143, 0.12);
}

footer {
  padding: 10px 20px 36px;
  text-align: center;
}

.ca-footer { margin-top: 0; }

.foot-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.foot-links a { color: var(--green); text-decoration: none; }

.foot-links a:hover { text-decoration: underline; }

@media (max-width: 800px) {
  .gallery { gap: 8px; }
  .lead { font-size: 16px; }
}

@media (max-width: 560px) {
  .brand span { display: none; }

  .nav { padding-inline: 14px; }

  .ca-short { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}
