*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  min-height: 100vh;
  background: #1a0a3c;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #F9FAFB;
  padding: 2rem;
  max-width: 600px;
}

.logo {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.logo-b {
  display: inline-block;
  color: #F97316;
  border: 2.5px solid #F97316;
  border-radius: 8px;
  padding: 0 10px 2px 10px;
  margin-right: 2px;
  box-shadow: 0 0 20px rgba(249,115,22,0.3);
}

.logo-rest {
  color: #F9FAFB;
  letter-spacing: 2px;
}

.tagline {
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  font-weight: 300;
  color: rgba(249,250,251,0.6);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #F97316, #6D28D9);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.headline {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.headline span {
  background: linear-gradient(135deg, #F97316 0%, #fb923c 50%, #F97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sub {
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 300;
  color: rgba(249,250,251,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(249,250,251,0.85);
}

.contact-item svg {
  width: 16px; height: 16px;
  fill: #F97316;
  flex-shrink: 0;
}

.contact-item a {
  color: #F97316;
  text-decoration: none;
  transition: opacity 0.2s;
}
.contact-item a:hover { opacity: 0.7; }

.social-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(249,115,22,0.4);
  background: rgba(109,40,217,0.15);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  text-decoration: none;
}

.social-link:hover {
  border-color: #F97316;
  background: rgba(249,115,22,0.15);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px; height: 18px;
  fill: rgba(249,250,251,0.75);
  transition: fill 0.2s;
}

.social-link:hover svg {
  fill: #F97316;
}

.pills {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pill {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(249,115,22,0.3);
  color: rgba(249,250,251,0.55);
  background: rgba(109,40,217,0.15);
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.action-btn {
  background: transparent;
  border: 2px solid #F97316;
  color: #F97316;
  padding: 0.7rem 1.8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 1px;
}

.action-btn:hover {
  background: rgba(249,115,22,0.15);
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(249,115,22,0.2);
}