html,
body {
  margin: 0;
  background: #0a0a0a;
}

.pub-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  color: #e8e8e8;
  font-family: "Inter", sans-serif;
}

.pub-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.pub-card {
  width: min(640px, 100%);
  background: #141420;
  border: 1px solid #1e1e1e;
  border-top: 3px solid #01adff;
  border-radius: 4px;
  padding: 30px 28px;
}

.pub-logo {
  display: block;
  line-height: 0;
  width: fit-content;
  margin-bottom: 28px;
  text-decoration: none;
}

.pub-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.pub-kicker {
  font-family: "DM Mono", monospace;
  color: #01adff;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 12px;
}

.pub-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.2;
}

.pub-body {
  color: #9ca3af;
  line-height: 1.7;
  margin: 0 0 18px;
  font-size: 16px;
}

.pub-contact {
  margin: 0 0 22px;
  color: #e8e8e8;
  line-height: 1.7;
  font-size: 15px;
}

.pub-gate-copy {
  color: #9ca3af;
  line-height: 1.7;
  margin: 0 0 18px;
  font-size: 15px;
}

.pub-label {
  display: block;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 10px;
}

.pub-input {
  width: 100%;
  height: 48px;
  box-sizing: border-box;
  padding: 0 14px;
  border-radius: 4px;
  border: 1px solid #252540;
  background: #0f0f1a;
  color: #fff;
  font-family: "DM Mono", monospace;
  font-size: 15px;
  outline: none;
  margin-bottom: 14px;
}

.pub-input:focus {
  border-color: #01adff;
}

.pub-error {
  color: #ef4444;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  margin: 0 0 14px;
}

.pub-contact a,
.pub-actions a,
.pub-footer a {
  color: #01adff;
}

.pub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.pub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 18px;
  border-radius: 4px;
  border: 1px solid #01adff;
  background: #01adff;
  color: #000;
  font-family: "DM Mono", monospace;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

.pub-btn:hover {
  opacity: 0.9;
}

.pub-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.pub-link {
  font-family: "DM Mono", monospace;
  font-size: 13px;
  text-decoration: none;
}

.pub-link:hover {
  text-decoration: underline;
}

.pub-legal h2 {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 10px;
}

.pub-legal h2:first-of-type {
  margin-top: 8px;
}

.pub-legal ul {
  margin: 0 0 18px;
  padding-left: 1.2em;
  color: #9ca3af;
  line-height: 1.7;
}

.pub-legal li {
  margin-bottom: 8px;
}

.pub-footer {
  border-top: 1px solid #1a1a1a;
  padding: 14px 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 16px;
  font-size: 12px;
  color: #777;
}

.pub-footer nav {
  display: flex;
  gap: 16px;
}

.pub-footer a {
  text-decoration: none;
}

.pub-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .pub-main {
    padding: 16px;
  }

  .pub-card {
    padding: 18px;
  }

  .pub-title {
    font-size: 24px;
  }
}
