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

html, body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #e8e8ed;
  background: #0a0a0f;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  position: relative;
  isolation: isolate;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
}

.gradient-orb--1 {
  width: 600px;
  height: 600px;
  background: #4a6cf7;
  top: -200px;
  left: -200px;
  animation: float 12s ease-in-out infinite;
}

.gradient-orb--2 {
  width: 500px;
  height: 500px;
  background: #a855f7;
  bottom: -200px;
  right: -200px;
  animation: float 16s ease-in-out infinite reverse;
}

.gradient-orb--3 {
  width: 400px;
  height: 400px;
  background: #06b6d4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 14s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -30px); }
  66% { transform: translate(-20px, 20px); }
}

.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.15);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: fadeSlideUp 0.8s ease both;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #f0f0f5 0%, #a78bfa 50%, #4a6cf7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeSlideUp 0.8s ease 0.1s both;
}

.hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #7a7a8a;
  max-width: 520px;
  margin-bottom: 0.5rem;
  animation: fadeSlideUp 0.8s ease 0.2s both;
}

.hero .subtitle strong {
  color: #b0b0c0;
  font-weight: 500;
}

.hero .tagline {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  color: #5a5a6a;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.8s ease 0.3s both;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeSlideUp 0.8s ease 0.35s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #4a6cf7, #7c3aed);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(74, 108, 247, 0.35);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  color: #a0a0b8;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  color: #e0e0e8;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 640px;
  width: 100%;
  padding: 0 2rem 3rem;
  margin-top: 3rem;
  animation: fadeSlideUp 0.8s ease 0.45s both;
}

.bento-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  cursor: default;
}

.bento-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.bento-card:nth-child(1) { --accent: #4a6cf7; }
.bento-card:nth-child(2) { --accent: #a855f7; }
.bento-card:nth-child(3) { --accent: #06b6d4; }

.bento-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.bento-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #8a8a9a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bento-value {
  font-size: 0.85rem;
  color: #c0c0d0;
  margin-top: 0.15rem;
}

.bento-card-wide {
  grid-column: span 2;
}

.status-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.78rem;
  color: #5a5a6a;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

@media (max-width: 600px) {
  .bento {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .bento-card-wide {
    grid-column: span 1;
  }

  .actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .gradient-orb--1 { width: 300px; height: 300px; top: -150px; left: -150px; }
  .gradient-orb--2 { width: 250px; height: 250px; bottom: -100px; right: -100px; }
  .gradient-orb--3 { width: 200px; height: 200px; }
}
