@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&family=IBM+Plex+Mono&display=swap');

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  min-height: 100vh;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.logo {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 20px;
  font-weight: 700;
  color: #00cc33;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 28px;
  height: 28px;
}

.dot { color: #00ff41; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #b0b0b0;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.nav-link:hover {
  color: #00ff41;
  background: #00ff4110;
}

.nav-btn {
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
  background: #00ff41;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.15s;
}

.nav-btn:hover {
  background: #00cc33;
}

.coming-soon {
  font-size: 10px;
  color: #ffaa00;
  border: 1px solid #ffaa0040;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  vertical-align: middle;
  margin-left: 6px;
}

nav { display: flex; align-items: center; gap: 16px; }

.user-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #888;
}

.avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

main { flex: 1; }

h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 20px;
  color: #888;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 480px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.15s;
}

.btn-github {
  background: #fff;
  color: #0a0a0a;
}

.btn-github:hover { background: #e0e0e0; }

.btn-primary {
  background: #00ff41;
  color: #0a0a0a;
}

.btn-primary:hover { background: #00cc33; }

.btn-secondary {
  background: #1a1a1a;
  color: #888;
  border: 1px solid #333;
}

.btn-secondary:hover { background: #222; color: #fff; }

.btn-small {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid #333;
  border-radius: 6px;
}

.btn-small:hover { color: #fff; border-color: #555; }

/* Badge */
.badge {
  font-size: 12px;
  font-weight: 600;
  color: #00ff41;
  border: 1px solid #00ff4140;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Invite section */
.invite-section {
  margin-bottom: 32px;
}

.invite-form {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

.input-code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  width: 340px;
  padding: 14px 16px;
  background: #0d1117;
  border: 1px solid #333;
  border-radius: 8px;
  color: #00ff41;
  outline: none;
}

.input-code:focus { border-color: #00ff41; }
.input-code::placeholder { color: #444; letter-spacing: 1px; font-size: 14px; }

.invite-error {
  color: #ff4444;
  font-size: 14px;
  margin-top: 8px;
}

.invite-hint {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0 24px;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #1a1a1a;
}

.divider span {
  font-size: 14px;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Waitlist */
.waitlist-section h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}

.waitlist-desc {
  font-size: 15px;
  color: #888;
  margin-bottom: 16px;
  line-height: 1.5;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
}

.input-email, .input-name {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  background: #0d1117;
  border: 1px solid #333;
  border-radius: 8px;
  color: #e0e0e0;
  outline: none;
}

.input-email:focus, .input-name:focus { border-color: #00cc33; }
.input-email::placeholder, .input-name::placeholder { color: #555; }

.waitlist-success {
  color: #00ff41;
  font-size: 15px;
  padding: 16px;
  background: #00ff4108;
  border: 1px solid #00ff4120;
  border-radius: 8px;
}

/* Features grid */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.feature {
  padding: 24px;
  background: #0d1117;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
}

.feature-icon {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 24px;
  color: #00ff41;
  margin-bottom: 12px;
}

.feature h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
}

.feature p {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}

/* Workspace card */
.workspace-card {
  background: #0d1117;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
}

.workspace-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 16px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #666;
}

.status-dot.running { background: #00ff41; box-shadow: 0 0 8px #00ff4180; }
.status-dot.creating { background: #ffaa00; animation: pulse 1s infinite; }
.status-dot.stopped { background: #666; }
.status-dot.error { background: #ff4444; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.workspace-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.workspace-url code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: #00cc33;
}

/* Info section */
.info-section {
  background: #0d1117;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  padding: 24px;
}

.info-section h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 16px;
}

.info-section ol {
  padding-left: 20px;
}

.info-section li {
  font-size: 15px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 8px;
}

.info-section code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  background: #1a1a1a;
  padding: 2px 6px;
  border-radius: 4px;
  color: #00cc33;
}

footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid #1a1a1a;
  font-size: 13px;
  color: #444;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.pricing-card {
  background: #0d1117;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border-color: #00ff41;
  background: #00ff4105;
}

.pricing-badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #00ff41;
  color: #0a0a0a;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-tier {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 900;
  color: #00ff41;
  line-height: 1;
}

.pricing-period {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}

.pricing-features li {
  font-size: 14px;
  color: #888;
  padding: 6px 0;
  border-bottom: 1px solid #1a1a1a;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li strong { color: #e0e0e0; }

.pricing-cta {
  text-align: center;
  width: 100%;
  justify-content: center;
}

.pricing-footer {
  margin-top: 40px;
  text-align: center;
}

.pricing-footer p {
  font-size: 16px;
  color: #888;
  margin-bottom: 8px;
}

.pricing-note {
  font-size: 14px;
  color: #00cc33;
}

@media (max-width: 900px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 600px) {
  h1 { font-size: 32px; }
  .features { grid-template-columns: 1fr; }
}
