@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@400;500&display=swap');

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

body {
  font-family: 'DM Sans', sans-serif;
  background: #0a0a0a;
  color: #e8e4dc;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
}

.terminal-tag {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: #9a9a9a;
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.terminal-tag::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #c8f07a;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-name {
  font-family: 'Space Mono', monospace;
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  color: #f4f0e8;
  margin-bottom: 0.25rem;
}

.hero-handle {
  font-family: 'Space Mono', monospace;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 400;
  color: #c8f07a;
  margin-bottom: 0.6rem;
  font-style: italic;
}

.credentials {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: #9a9a9a;
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
}

.tagline {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.75;
  color: #c8c4bc;
  max-width: 540px;
  margin-bottom: 3.5rem;
}

.tagline strong {
  color: #f4f0e8;
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}

.topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4rem;
}

.topics-label {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: #aaaaaa;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 6px;
}

.topic {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  padding: 7px 16px;
  border: 1px solid #3a3a3a;
  border-radius: 2px;
  color: #b0b0b0;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.topic.lit {
  border-color: #c8f07a;
  color: #c8f07a;
}

.topic.dim {
  border-color: #2e2e2e;
  color: #7a7a7a;
  font-style: italic;
}

.topic-divider {
  width: 100%;
  height: 0;
  margin: 6px 0;
}

.divider {
  border: none;
  border-top: 0.5px solid #222;
  margin-bottom: 3rem;
}

.form-heading {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: #9a9a9a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 13px;
  color: #9a9a9a;
  font-family: 'Space Mono', monospace;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  background: #141414;
  border: 1px solid #2e2e2e;
  border-radius: 2px;
  padding: 11px 14px;
  color: #e8e4dc;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
  border-color: #c8f07a;
}

input::placeholder,
textarea::placeholder {
  color: #484848;
}

textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%239a9a9a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: #141414;
  cursor: pointer;
}

select option {
  background: #141414;
  color: #e8e4dc;
}

.submit-btn {
  margin-top: 1.5rem;
  width: 100%;
  padding: 13px 24px;
  background: #c8f07a;
  color: #0a0a0a;
  border: none;
  border-radius: 2px;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.submit-btn:hover { background: #d8ff8a; }
.submit-btn:active { transform: scale(0.99); }

.footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 0.5px solid #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #6a6a6a;
  letter-spacing: 0.06em;
}

.footer-domain {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #c8f07a;
  opacity: 0.7;
  letter-spacing: 0.06em;
}

.success-msg {
  display: none;
  text-align: center;
  padding: 2rem;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: #c8f07a;
  border: 0.5px solid rgba(200, 240, 122, 0.2);
  border-radius: 2px;
  margin-top: 1rem;
}
