:root {
  --bg: #04070a;
  --bg-panel: rgba(15, 25, 33, 0.85);
  --bg-panel-dark: rgba(5, 10, 14, 0.85);
  --text: #f0f4f8;
  --accent: #d4af37;
  --secondary: #88c0d0;
  --border: rgba(255, 255, 255, 0.08);
  font-family: 'Cinzel', 'Trajan Pro', 'Times New Roman', serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 55%),
    url('https://images.unsplash.com/photo-1476610182048-b716b8518aae?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat fixed,
    var(--bg);
  color: var(--text);
  font-family: 'Karla', 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 7, 10, 0.9), rgba(7, 24, 36, 0.9));
  z-index: -1;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 4rem clamp(1rem, 4vw, 4rem);
  gap: 2rem;
}

.hero__content {
  flex: 1 1 320px;
  max-width: 600px;
  background: var(--bg-panel);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

.hero__eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.05em;
}

.hero__description {
  margin-bottom: 2rem;
  line-height: 1.6;
  color: rgba(240, 244, 248, 0.85);
}

.btn {
  border: none;
  padding: 0.95rem 2.25rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: linear-gradient(120deg, var(--accent), #f0d37a);
  color: #1e1e1e;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.4);
}

.hero__meta {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: rgba(240, 244, 248, 0.8);
}

.linkish {
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline wavy rgba(212, 175, 55, 0.6);
}

.hero__sigil {
  position: relative;
  width: min(360px, 80vw);
  aspect-ratio: 1;
  flex: 1 1 260px;
  display: grid;
  place-items: center;
}

.sigil__ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.15);
  animation: pulse 6s linear infinite;
}

.sigil__ring--inner {
  width: 70%;
  height: 70%;
  border-color: rgba(212, 175, 55, 0.6);
  animation-duration: 7s;
}

.sigil__axe {
  width: 130px;
  height: 130px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  clip-path: polygon(50% 0%, 60% 30%, 58% 60%, 82% 70%, 82% 100%, 18% 100%, 18% 70%, 42% 60%, 40% 30%);
  transform: rotate(45deg);
  box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.4);
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.05);
    opacity: 0.6;
  }
}

main {
  flex: 1;
  display: grid;
  gap: 1.5rem;
  padding: 0 clamp(1rem, 4vw, 4rem) 4rem;
}

.panel {
  background: var(--bg-panel);
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.panel--dark {
  background: var(--bg-panel-dark);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  padding-left: 1rem;
  border-left: 3px solid rgba(255, 255, 255, 0.2);
}

footer {
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.accent {
  color: var(--accent);
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3rem;
  }

  .hero__content {
    padding: 1.5rem;
  }
}
