:root {
  --bg-deep: #08131f;
  --bg-soft: #fdf7ec;
  --accent-gold: #f0b548;
  --accent-gold-soft: #f7cf7a;
  --accent-sky: #71b5ff;
  --accent-dragon: #e0a53a;
  --ink-main: #1e2230;
  --ink-soft: #4d5466;
  --ink-muted: #8b91a0;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --shadow-soft: 0 18px 40px rgba(4, 16, 35, 0.3);
  --shadow-card: 0 10px 24px rgba(8, 19, 31, 0.18);
  --gap-page: clamp(1.5rem, 3vw, 3.5rem);
  --page-width: 1080px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
}

/* Base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background: radial-gradient(circle at top, #132843 0, #050b12 60%);
  color: var(--ink-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Layout shell */

.site-header,
main,
.site-footer {
  width: 100%;
  display: flex;
  justify-content: center;
}

.site-header-inner,
.main-inner,
.site-footer-inner {
  width: 100%;
  max-width: var(--page-width);
  padding-inline: var(--gap-page);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(5, 11, 18, 0.98), rgba(5, 11, 18, 0.85));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  opacity: 0.65;
  pointer-events: none;
}

.site-header > * {
  position: relative;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 18%, #ffe8a6, #f0b548 26%, #a55b22 70%);
  box-shadow: 0 0 0 2px rgba(251, 245, 229, 0.6), 0 8px 20px rgba(0, 0, 0, 0.45);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-title {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #fdf7ec;
}

.logo-tagline {
  font-size: 0.75rem;
  color: rgba(244, 235, 217, 0.8);
}

/* Nav */

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.nav-link {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  color: rgba(243, 236, 221, 0.78);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
    transform 0.12s ease;
}

.nav-link:hover {
  background: rgba(250, 244, 230, 0.07);
  border-color: rgba(250, 244, 230, 0.25);
  transform: translateY(-1px);
}

.nav-link-active {
  background: linear-gradient(135deg, #f0b548, #f7cf7a);
  color: #271606;
  border-color: rgba(255, 248, 228, 0.9);
}

.nav-cta {
  background: #fdf7ec;
  color: #24140b;
}

/* Hero */

main {
  flex: 1;
}

.main-inner {
  padding-block: 2.4rem 3rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--gap-page);
  padding: 2rem;
  border-radius: 2rem;
  background: radial-gradient(circle at top left, rgba(253, 247, 236, 0.96), #f9ead2);
  box-shadow: var(--shadow-soft);
  margin-bottom: 2.75rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--ink-muted);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.1;
  color: var(--ink-main);
  margin: 0;
}

.hero-body {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease,
    border-color 0.12s ease, color 0.12s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f0b548, #f7cf7a);
  color: #271606;
  box-shadow: 0 10px 25px rgba(200, 135, 28, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(200, 135, 28, 0.55);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(209, 188, 142, 0.7);
  color: #453116;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.95);
}

/* Hero art placeholder */

.hero-spot-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.aurelia-circle {
  width: min(280px, 70vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 15%, #ffffff, #b8e1ff 40%, #6a9be0 100%);
  box-shadow: 0 22px 44px rgba(45, 90, 145, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.aurelia-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 45%;
  border: 2px dashed rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.32), transparent 65%);
}

.spot-caption {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-muted);
  text-align: center;
}

/* Sections */

.section-title {
  font-size: 1.3rem;
  margin: 0 0 1.2rem;
  color: #fdf7ec;
}

.grid-section {
  margin-bottom: 2.2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem;
}

.feature-card {
  background: rgba(253, 247, 236, 0.96);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(240, 181, 72, 0.35);
}

.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: #2b1c08;
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #5b4b36;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: var(--gap-page);
  align-items: flex-start;
  margin-top: 0.5rem;
}

.two-column p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(246, 237, 221, 0.96);
}

.info-panel {
  background: rgba(8, 13, 22, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(240, 181, 72, 0.4);
  padding: 1rem 1.2rem 1.1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.info-panel h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: #ffe7b0;
}

.info-panel ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
}

.info-panel li {
  font-size: 0.88rem;
  color: rgba(243, 232, 209, 0.94);
  margin-bottom: 0.2rem;
}

/* Footer */

.site-footer {
  background: #050b12;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-block: 1.5rem;
}

.site-footer-inner {
  text-align: center;
  color: rgba(214, 206, 193, 0.8);
  font-size: 0.8rem;
}

.footer-sub {
  margin-top: 0.2rem;
  color: rgba(214, 206, 193, 0.6);
}

/* Responsive tweaks */

@media (max-width: 820px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-spot-art {
    order: -1;
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }
}
