
:root {
  --bg: #0d0d0d;
  --primary: #7c3aed;
  --accent: #a78bfa;
  --secondary: #ffffff;
  --text-muted: #888888;
  --border: #2d2d2d;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Space Mono', 'IBM Plex Mono', monospace;
  background: var(--bg);
  color: var(--secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: 0.5px;
}

#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 80px 40px;
  text-align: center;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
}

.header-line {
  width: 1px;
  height: 24px;
  background: var(--primary);
}

.header-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
}

.header-sub {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.headline {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--secondary);
  margin: 0;
  letter-spacing: 1px;
}

.highlight {
  color: var(--primary);
  font-weight: 700;
}

.subheadline {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.8;
  font-weight: 400;
}

.subheadline .bold {
  color: var(--secondary);
  font-weight: 700;
}

.description {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 24px 0;
}

.audio-icon {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 20px;
  flex-shrink: 0;
}

.audio-icon span {
  width: 2px;
  background: var(--primary);
  border-radius: 1px;
  animation: audioBar 0.5s ease-in-out infinite;
}

.audio-icon span:nth-child(1) {
  height: 4px;
  animation-delay: 0s;
}

.audio-icon span:nth-child(2) {
  height: 8px;
  animation-delay: 0.08s;
}

.audio-icon span:nth-child(3) {
  height: 12px;
  animation-delay: 0.16s;
}

.audio-icon span:nth-child(4) {
  height: 8px;
  animation-delay: 0.24s;
}

.audio-icon span:nth-child(5) {
  height: 4px;
  animation-delay: 0.32s;
}

@keyframes audioBar {
  0%, 100% {
    transform: scaleY(0.6);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: var(--secondary);
  padding: 16px 48px;
  border: 2px solid var(--primary);
  border-radius: 2px;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  outline: none;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.3);
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.cta-button:active {
  transform: translateY(-1px);
}

.cta-button:focus {
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--primary), 0 8px 24px rgba(124, 58, 237, 0.15);
}

.bolt {
  font-size: 16px;
}

.footer {
  margin-top: 60px;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer p {
  margin: 0;
}

@media (max-width: 768px) {
  .container {
    padding: 60px 24px;
  }

  .hero {
    gap: 25px;
  }

  .headline {
    font-size: 32px;
  }

  .header {
    margin-bottom: 40px;
  }

  .cta-button {
    padding: 14px 36px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 40px 16px;
  }

  .headline {
    font-size: 24px;
  }

  .subheadline {
    font-size: 12px;
  }

  .description {
    font-size: 12px;
  }

  .cta-button {
    padding: 12px 28px;
    font-size: 11px;
  }

  .header-text {
    font-size: 14px;
  }

  .header-sub {
    font-size: 10px;
  }
}
.btn{
  text-decoration:none;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  display:inline-flex;
  align-items:center;
  gap: 12px;
  position:relative;
  overflow:hidden;
  user-select:none;
}
.ctaRow{
  display:flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.btnPrimary{
  flex: 1 1 330px;
  margin: 16px;
  padding: 10px 16px;
  background: linear-gradient(90deg, #c12aff, #af00f7, #8c00ff);
  color: #ffffff;
  box-shadow: 0 0 0 2px rgba(57,184,255,.16), 0 0 34px rgba(133, 57, 255, 0.25);
  animation: pulse 1.2s infinite ease-in-out;
}
@keyframes pulse{
  0%,100%{ filter: brightness(1); box-shadow: 0 0 0 2px rgba(57,184,255,.14), 0 0 30px rgba(57,184,255,.22); }
  50%{ filter: brightness(1.06); box-shadow: 0 0 0 2px rgba(191,233,255,.16), 0 0 52px rgba(57,184,255,.28); }
}

.btnGhost{
  flex: 0 1 170px;
  padding: 14px 14px 1px 0px;
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
}

.btnIcon{
  width: 42px; height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.14);
}
.btnText{ display:flex; flex-direction:column; line-height:1.05; }
.btnTitle{ font-weight: 900; letter-spacing:1px; }
.btnDesc{ font-size: 12px; opacity:.75; font-weight: 700; margin-top: 5PX; }

.btnGhostIcon{
  width: 30px; height: 30px;
  display:grid; place-items:center;
  border-radius: 12px;
  background: rgba(57,184,255,.14);
  border: 1px solid rgba(57,184,255,.20);
}

.btnShine{
  position:absolute; inset:-45%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.18) 35%, rgba(255,255,255,.48) 50%, rgba(255,255,255,.18) 65%, transparent 100%);
  transform: translateX(-60%) rotate(12deg);
  animation: shine 1.35s infinite;
  pointer-events:none;
}
@keyframes shine{
  0%{ transform: translateX(-60%) rotate(12deg); }
  100%{ transform: translateX(60%) rotate(12deg); }
}