:root {
  --bg: hsl(0 0% 98%);
  --fg: hsl(0 0% 8%);
  --fg-muted: hsl(0 0% 35%);
  --border: hsl(0 0% 90%);
  --laser: hsl(0 85% 50%);
  --laser-glow: hsl(0 90% 60%);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  min-height: 100vh;
}
.page {
  position: relative;
  min-height: 100vh;
  background-image:
    linear-gradient(hsla(0,0%,0%,0.04) 1px, transparent 1px),
    linear-gradient(90deg, hsla(0,0%,0%,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  overflow: hidden;
}
.glow { position: absolute; pointer-events: none; border-radius: 50%; filter: blur(80px); z-index: 0; }
.glow-1 {
  top: -160px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px; opacity: 0.3;
  background: radial-gradient(circle, var(--laser-glow) 0%, transparent 70%);
}
.glow-2 {
  bottom: 0; right: 0; width: 400px; height: 400px; opacity: 0.2;
  background: radial-gradient(circle, var(--laser) 0%, transparent 70%);
}
.laser-line { position: absolute; left: 0; right: 0; height: 1px; overflow: hidden; pointer-events: none; z-index: 1; }
.laser-line span {
  display: block; height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent, var(--laser) 50%, transparent);
  box-shadow: 0 0 8px var(--laser-glow), 0 0 20px hsla(0,90%,60%,0.6);
  animation: sweep 4s ease-in-out infinite;
}
.laser-line.l1 { top: 33%; }
.laser-line.l2 { top: 66%; }
.laser-line.l2 span { animation-duration: 5s; animation-delay: 1.5s; }
@keyframes sweep {
  0% { transform: translateX(-100%); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}
.particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.particle {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--laser-glow); box-shadow: 0 0 8px var(--laser-glow);
  bottom: -10px;
  animation: float-up linear infinite;
}
@keyframes float-up {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateY(-100vh); opacity: 0; }
}
.container {
  position: relative; z-index: 10; max-width: 1100px; margin: 0 auto;
  padding: 64px 24px; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  border: 1px solid hsla(0,0%,0%,0.1); background: hsla(0,0%,100%,0.6);
  backdrop-filter: blur(8px); border-radius: 999px; margin-bottom: 40px;
}
.badge-dot { position: relative; display: inline-flex; width: 8px; height: 8px; }
.badge-dot i {
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--laser); animation: pulse 1.5s ease-in-out infinite;
}
.badge-dot b {
  position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--laser);
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.5; }
}
.badge-text { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: var(--fg-muted); }
.logo-wrap { position: relative; margin-bottom: 32px; }
.logo-glow {
  position: absolute; inset: 0; filter: blur(40px); opacity: 0.4; z-index: 0;
  background: radial-gradient(circle, var(--laser-glow) 0%, transparent 60%);
}
.logo { position: relative; z-index: 1; width: auto; height: 240px; filter: drop-shadow(0 20px 30px hsla(0,0%,0%,0.15)); }
.sparks { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 2; }
.spark {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--laser-glow); box-shadow: 0 0 6px var(--laser-glow);
  animation: spark 1.2s ease-out forwards;
}
@keyframes spark {
  0% { transform: translate(0,0) scale(1); opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}
h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.1; }
h1 .accent { color: var(--laser); }
.lead { max-width: 640px; font-size: clamp(15px, 1.2vw, 18px); color: var(--fg-muted); margin-bottom: 56px; line-height: 1.6; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; width: 100%; margin-bottom: 64px; }
@media (max-width: 700px) { .cards { grid-template-columns: 1fr; } }
.card {
  position: relative; overflow: hidden; padding: 24px; text-align: left;
  border: 1px solid hsla(0,0%,0%,0.1); border-radius: 12px;
  background: hsla(0,0%,100%,0.4); backdrop-filter: blur(8px);
  transition: transform 0.3s, border-color 0.3s;
}
.card:hover { transform: translateY(-4px); border-color: hsla(0,85%,50%,0.4); }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 8px;
  background: hsla(0,85%,50%,0.08); color: var(--laser); margin-bottom: 12px;
}
.card h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.card p { font-size: 14px; color: var(--fg-muted); }
.card::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--laser) 50%, transparent);
  box-shadow: 0 0 8px var(--laser-glow); opacity: 0; transition: opacity 0.3s;
}
.card:hover::after { opacity: 1; }
.contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; font-size: 14px; color: var(--fg-muted); }
.contact a, .contact span { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: inherit; transition: color 0.2s; }
.contact a:hover { color: var(--laser); }
footer { margin-top: 64px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: hsla(0,0%,0%,0.4); }
svg { display: block; }
