@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@400;500;600&family=Cormorant+Garamond:wght@500;600;700&display=swap');

:root {
  --bg: #12161c;
  --surface: #1a212b;
  --gold: #c4a35a;
  --gold-soft: rgba(196, 163, 90, 0.18);
  --accent: #6b9ac4;
  --text: #e8eef6;
  --muted: #94a3b8;
  --line: #334155;
  --font: 'Libre Franklin', system-ui, sans-serif;
  --display: 'Cormorant Garamond', Georgia, serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 2rem;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(720px 380px at 50% 18%, color-mix(in srgb, var(--gold) 12%, transparent), transparent 62%),
    radial-gradient(900px 520px at 50% 110%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 70%),
    var(--bg);
  line-height: 1.5;
}

.rings {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-radial-gradient(
      circle at 50% 42%,
      transparent 0 46px,
      rgba(196, 163, 90, 0.035) 47px 48px
    );
  mask-image: radial-gradient(ellipse 70% 55% at 50% 42%, black 20%, transparent 72%);
}

main {
  position: relative;
  width: min(40rem, 100%);
  text-align: center;
}

.mark {
  width: min(20rem, 70vw);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.eyebrow {
  margin: 1.75rem 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}

h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 4.75rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--text);
}

.lede {
  margin: 1.1rem auto 0;
  max-width: 32rem;
  font-size: 1.05rem;
  color: var(--muted);
}

.route {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.75rem auto 0;
  max-width: 22rem;
  color: var(--gold);
}

.route span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.route svg {
  flex: 1;
  height: 18px;
  overflow: visible;
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.pillars li {
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

footer {
  position: relative;
  margin-top: 3rem;
  text-align: center;
  color: var(--muted);
}
footer .contact {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
footer .contact a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
footer .contact a:hover,
footer .contact a:focus {
  text-decoration: none;
}
footer .byline {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

@media (max-width: 520px) {
  .mark {
    width: min(14rem, 82vw);
  }

  .lede {
    font-size: 0.98rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  main,
  footer {
    animation: rise 0.9s ease both;
  }

  footer {
    animation-delay: 0.12s;
  }

  .route .craft {
    animation: drift 4.8s ease-in-out infinite;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateX(-6px);
  }
  50% {
    transform: translateX(6px);
  }
}
