/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000;
  color: #e0e0e0;
  line-height: 1.6;
}

.pectra-logo {
  max-width: 500px;
  height: auto;
  margin: 0 auto;
}

/* Hero */
.hero {
  padding: 2rem 1rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.2rem; /* smaller to fit */
  color: #fff;
  margin-bottom: 1rem;
  font-weight: bold;
  white-space: nowrap; /* force it to stay on one line */
}

.eth-text {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #d0d0d0;
}

.cta-button {
  display: inline-block;
  background-color: #8b5cf6;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Sections */
section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
  background-color: #000;
}

h2 {
  color: #00bfff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #fff;
}

/* Feature Boxes */
.feature-box {
  background: #111;
  border-left: 5px solid #00bfff;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  color: #fff;
}

/* Access Form */
/* Access Section */
.access {
  text-align: center;
  margin-top: 4rem;
}

.access h2 {
  font-size: 2.5rem;
  color: #00bfff;
  margin-bottom: 1rem;
}

.access p {
  color: #fff;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.access-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.access-form input {
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  width: 250px;
  max-width: 90%;
  font-size: 1rem;
  background-color: #1a1a1a;
  color: #fff;
}

.access-form input::placeholder {
  color: #888;
}

/* Clean button style */
.access-form button {
  padding: 0.75rem 1.5rem;
  background-color: #7b68ee;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.access-form button:hover {
  background-color: #6a5acd;
  box-shadow: 0 0 10px rgba(123, 104, 238, 0.6); /* soft purple glow */
  transform: translateY(-1px); /* optional subtle lift */
}

.cta-button:hover {
  box-shadow: 0 0 10px rgba(123, 104, 238, 0.6); /* soft purple glow */
  transform: translateY(-1px);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #0a0c12;
  color: #777;
  margin-top: 3rem;
}

.footer-content {
  margin-top: 1rem;
}

.mini-logo {
  max-height: 40px;
  margin: 0.5rem auto;
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .form-row {
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
    margin-top: 1rem;
  }
}
