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

body {
  min-height: 100vh;
  background: #0d0d0d;
  font-family: 'Inter', sans-serif;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: #E8602C;
  top: -200px;
  right: -200px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: #E8602C;
  bottom: -150px;
  left: -150px;
}

.container {
  width: 100%;
  max-width: 700px;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(232, 96, 44, 0.4);
}

.header-text h1 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* Main card */
.main-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 24px;
  backdrop-filter: blur(20px);
}

.pipeline-badge {
  display: inline-block;
  background: rgba(232, 96, 44, 0.15);
  border: 1px solid rgba(232, 96, 44, 0.4);
  color: #E8602C;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.version-display {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -3px;
  background: linear-gradient(135deg, #E8602C, #ff9a6c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.deploy-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  margin-bottom: 36px;
}

/* Status row */
.status-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.status-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.status-dot.green {
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
}

.status-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, #22c55e, #22c55e);
  margin: -14px 8px 0;
  opacity: 0.5;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: border-color 0.2s;
}

.product-card:hover {
  border-color: rgba(232, 96, 44, 0.4);
}

.product-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.product-name {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #E8602C;
}

.product-desc {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.service-card {
  background: rgba(232, 96, 44, 0.05);
  border: 1px solid rgba(232, 96, 44, 0.15);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: rgba(232, 96, 44, 0.5);
}

/* Tech row */
.tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.tech-row span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}

/* Footer */
.footer {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

.build-info {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  margin-top: 16px;
  letter-spacing: 1px;
}

@media (max-width: 500px) {
  .products-grid, .services-grid { grid-template-columns: 1fr; }
  .header { flex-direction: column; text-align: center; }
  .version-display { font-size: 3.5rem; }
}
