* {
  box-sizing: border-box;
}

body {
  margin: 0;
  display: grid;
  place-items: center;
  background: #fff;
  font-family: Inter, Arial, sans-serif;
  color: #fff;
}

.hero {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  background: radial-gradient(
    circle at top,
    #151515 0%,
    #0a0a0a 55%,
    #050505 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 0;
}

canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(6, 6, 6, 0.88) 0%,
    rgba(6, 6, 6, 0.72) 34%,
    rgba(6, 6, 6, 0.26) 68%,
    rgba(6, 6, 6, 0.04) 100%
  );
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px;
}

.tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 102, 0, 0.2);
  background: rgba(255, 102, 0, 0.08);
  color: #ff9a4d;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 4rem, 4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 400px;
  color: #fff;
}

p {
  margin: 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  font-size: 17px;
}

.buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  border: 0;
  border-radius: 14px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #ff6600;
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 102, 0, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
