@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
  --bg-color: #050505;
  --text-color: #EEEEEE;
  --accent-color: #444444;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'IBM Plex Mono', monospace;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 3rem;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  padding-bottom: 2rem;
  margin-bottom: auto;
}

.header-left a {
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
}

.header-right {
  display: flex;
  gap: 2.5rem;
}

.header-right a {
  color: rgba(238, 238, 238, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.header-right a:hover {
  color: var(--text-color);
}

.header-right a.active {
  color: var(--text-color);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 4rem 0;
}

/* Index page */
h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}

.subtitle {
  font-size: 1rem;
  color: #aaaaaa;
  letter-spacing: 0.05em;
  padding-left: 5rem;
}

/* Projects page */
.page-title {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

.pipeline-list {
  list-style: none;
  width: 100%;
  max-width: 800px;
}

.pipeline-list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--accent-color);
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.status {
    color: var(--accent-color);
}

.note {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #777777;
    border-left: 2px solid var(--accent-color);
    padding-left: 1.5rem;
    max-width: 800px;
    line-height: 1.5;
}

/* Access page */
.access-container {
    width: 100%;
    max-width: 600px;
}

.access-container h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.access-container p {
    font-size: 1rem;
    color: #777777;
    margin-bottom: 4rem;
    line-height: 1.5;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
}

.input-prefix {
    color: var(--text-color);
    font-weight: 500;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.form-group input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--accent-color);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    width: 100%;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-bottom-color: var(--text-color);
}

.form-group input::placeholder {
    color: #555555;
}

.submit-btn {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    padding: 0.75rem 2.5rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.submit-btn:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

.message {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #666666;
    display: none;
    border-left: 2px solid var(--text-color);
    padding-left: 1rem;
}

footer {
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--accent-color);
  letter-spacing: 0.05em;
  padding-top: 2rem;
}

@media (max-width: 768px) {
  .header-right {
    gap: 1rem;
  }
  h1 {
    font-size: 1.8rem;
  }
  .subtitle {
    padding-left: 3rem;
  }
}
