@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500&family=Inter:wght@300;400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at top, #1f1a33, #07070a 70%);
  color: #d1d7e0;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

.stars {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, #fff5 1px, transparent 0),
    radial-gradient(1px 1px at 80% 40%, #fff3 1px, transparent 0),
    radial-gradient(1px 1px at 50% 70%, #fff4 1px, transparent 0);
  animation: drift 40s linear infinite;
  pointer-events: none;
}

@keyframes drift {
  from { transform: translateY(0); }
  to { transform: translateY(-200px); }
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.sigil svg {
  stroke: #d1d7e0;
  fill: none;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 20px rgba(209,215,224,0.25));
  animation: glow 6s ease-in-out infinite;
}

.sigil circle:nth-child(1) {
  stroke-width: 2;
}

.sigil circle:nth-child(2) {
  stroke-width: 6;
}

.sigil line {
  stroke-width: 3;
}

@keyframes glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 2.5rem;
}

.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  color: #07070a;
  background: #d1d7e0;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(209,215,224,0.4);
}

.btn.ghost {
  background: transparent;
  color: #d1d7e0;
  border: 1px solid #d1d7e0;
}

.section {
  padding: 5rem 2rem;
  text-align: center;
}

.poem {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  line-height: 1.8;
  opacity: 0.9;
}

footer {
  padding: 3rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

footer a {
  color: #d1d7e0;
  text-decoration: none;
}
