:root {
  --black: #050505;
  --dark: #090909;
  --gold: #c9a24d;
  --gold-light: #f0d27a;
  --white: #f5f5f5;
  --gray: #9ca3af;

  --border: rgba(255,255,255,0.1);
  --gold-border: rgba(201,162,77,0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}

.blob {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
  z-index: 0;
}

.blob-one { top: -150px; left: -120px; background: #c9a24d; }
.blob-two { top: 20%; right: -160px; background: #8b6a25; }
.blob-three { bottom: -200px; left: 30%; background: white; opacity: 0.08; }

main, footer, header {
  position: relative;
  z-index: 2;
}

h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

p {
  color: var(--gray);
}

.btn {
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #050505;
}

.btn.secondary {
  border: 1px solid var(--border);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}