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

:root {
  --bg: #0a0a0f;
  --surface: #12121a;
  --border: #1e1e2e;
  --text: #e4e4e7;
  --muted: #71717a;
  --accent: #16a34a;
  --accent-hover: #15803d;
  --glow: rgba(22, 163, 74, 0.15);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 163, 74, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 163, 74, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
  z-index: 0;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.orb {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  animation: orbFloat 8s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes orbFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-30px); }
}

.container {
  position: relative;
  z-index: 1;
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.logo-mark {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-mark svg {
  width: 48px;
  height: 48px;
  overflow: visible;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.tagline {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.section {
  width: 100%;
  margin-bottom: 2rem;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
  text-align: center;
}

.mission {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  text-align: left;
}

.products {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.product-feature {
  font-size: 0.65rem;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(22, 163, 74, 0.08);
  color: var(--accent);
  border: 1px solid rgba(22, 163, 74, 0.15);
}

.team {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.team-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.team-avatar svg {
  width: 18px;
  height: 18px;
}

.team-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.team-focus {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  border-color: var(--accent);
  background: rgba(22, 163, 74, 0.04);
}

.product-card.inactive {
  opacity: 0.5;
  cursor: default;
}

.product-card.inactive:hover {
  border-color: var(--border);
  background: var(--surface);
}

.product-info {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

.product-status {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.product-status.live {
  background: rgba(22, 163, 74, 0.15);
  color: var(--accent);
}

.product-status.soon {
  background: rgba(113, 113, 122, 0.15);
  color: var(--muted);
}

.bottom-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.bottom-links a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.bottom-links a:hover {
  color: var(--accent);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.teaser-link {
  font-size: 0.95rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.teaser-link:hover {
  opacity: 0.7;
}

.back-link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  align-self: flex-start;
}

.back-link:hover {
  color: var(--accent);
}

/* About page */

.about-content {
  text-align: left;
}

.about-block {
  margin-bottom: 2rem;
}

.about-block .section-label {
  text-align: left;
}

.about-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Enhanced team profiles */

.team-profiles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.team-profile-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: left;
}

.team-profile-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.team-profile-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(22, 163, 74, 0.25);
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(22, 163, 74, 0.08);
}

.team-profile-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.12);
  border: 2px solid rgba(22, 163, 74, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.team-profile-placeholder svg {
  width: 30px;
  height: 30px;
}

.team-profile-role {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.team-profile-exp {
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 0.15rem;
}

.team-profile-bio {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.team-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.team-credential {
  font-size: 0.65rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  background: rgba(22, 163, 74, 0.08);
  color: var(--accent);
  border: 1px solid rgba(22, 163, 74, 0.15);
}

@media (max-width: 640px) {
  .tagline { font-size: 1.8rem; }
  .product-card { flex-direction: column; align-items: flex-start; }
  .team-profile-header { flex-direction: column; text-align: center; }
}
