/* RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000000;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY & MONO */
.mono-tag, .meta-label, .status-badge, nav a, .portal-btn {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid #222222;
  backdrop-filter: blur(10px);
  z-index: 100;
}

.logo {
  font-weight: 900;
  letter-spacing: -0.5px;
}

.nav-links a {
  color: #888888;
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.status-badge {
  color: #00ff66;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #00ff66;
  border-radius: 50%;
}

.portal-btn {
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #ffffff;
  padding: 6px 14px;
}

/* SECTIONS */
.hero-section {
  padding: 140px 40px 100px 40px;
  border-bottom: 1px solid #222222;
}

.meta-label {
  color: #666666;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 1000px;
  margin-bottom: 30px;
}

.hero-sub {
  font-size: 1.25rem;
  color: #a1a1a1;
  max-width: 600px;
}

.content-section {
  padding: 100px 40px;
  border-bottom: 1px solid #222222;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

/* WORK GRID */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.work-image-placeholder {
  width: 100%;
  height: 400px;
  background-color: #111111;
  border: 1px solid #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444444;
  font-family: 'Space Mono', monospace;
  margin-bottom: 15px;
}

.work-info h3 {
  font-size: 1.2rem;
}

.work-info p {
  color: #666666;
  font-size: 0.9rem;
}

/* INTAKE FORM */
.commissions-container {
  max-width: 600px;
}

.section-desc {
  color: #a1a1a1;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: #888888;
  margin-bottom: 8px;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 15px;
  background-color: #111111;
  border: 1px solid #333333;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: #ffffff;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background-color: #ffffff;
  color: #000000;
  border: none;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.submit-btn:hover {
  opacity: 0.9;
}

/* PORTAL SECTION */
.portal-box {
  background-color: #0d0d0d;
  border: 1px solid #222222;
  padding: 60px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.portal-box h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.portal-box p {
  color: #888888;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.portal-input-group {
  display: flex;
  gap: 10px;
}

.portal-input-group input {
  flex: 1;
  padding: 12px;
  background-color: #000000;
  border: 1px solid #333333;
  color: #fff;
  font-family: 'Space Mono', monospace;
}

.portal-input-group button {
  padding: 12px 20px;
  background-color: #ffffff;
  color: #000000;
  border: none;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  cursor: pointer;
}

/* FOOTER */
.footer {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  color: #444444;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
}