@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&family=Crimson+Pro:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --bg-a: #1c1130;
  --bg-b: #0a0714;
  --bg-c: #060410;
  --panel: #150c26;
  --panel-2: #170e29;
  --border: #2a1c42;
  --border-soft: #3a2a5c;
  --text: #e9e2f5;
  --text-bright: #f0e9fa;
  --text-dim-1: #9c8fb8;
  --text-dim-2: #8a7ba8;
  --text-dim-3: #7a6c9c;
  --gold: #c9a961;
  --logo-from: #a970ff;
  --logo-to: #5b8fd6;
}

* {
  box-sizing: border-box;
}

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

body {
  background: radial-gradient(ellipse at top left, var(--bg-a) 0%, var(--bg-b) 55%, var(--bg-c) 100%);
  color: var(--text);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 19px;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
}

h1,
h2,
h3,
.display {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.02em;
  color: var(--text-bright);
  font-weight: 700;
}

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10, 7, 20, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
}

.brand .names {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand .studio {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.brand .product {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: var(--text-bright);
}

nav.site-nav {
  display: flex;
  gap: 24px;
  font-size: 16px;
  color: var(--text-dim-1);
}

nav.site-nav a {
  text-decoration: none;
}

nav.site-nav a:hover {
  color: var(--text-bright);
}

/* Hero */
.hero {
  text-align: center;
  padding: 96px 24px 64px;
}

.hero img.mark {
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 44px;
  margin: 0 0 12px;
}

.hero .tagline {
  font-size: 22px;
  color: var(--text-dim-1);
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero .studio-credit {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'Cinzel', serif;
  font-size: 17px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: filter 0.15s ease;
}

.btn:hover {
  filter: brightness(1.15);
}

.btn-primary {
  background: linear-gradient(135deg, var(--logo-from), var(--logo-to));
  color: #0a0714;
  font-weight: 700;
}

.btn-secondary {
  border-color: var(--border-soft);
  color: var(--text-dim-1);
}

/* Sections */
section {
  padding: 64px 24px;
}

section.alt {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--text-dim-1);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.feature-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.feature-card h3 {
  font-size: 19px;
  margin: 0 0 8px;
}

.feature-card p {
  color: var(--text-dim-2);
  font-size: 17px;
  margin: 0;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.price-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
}

.price-card.featured {
  border-color: var(--gold);
}

.price-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-b);
  font-family: 'Cinzel', serif;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 16px;
  color: var(--text-dim-1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 8px 0 6px;
}

.price-card .price {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  color: var(--text-bright);
}

.price-card .price sup {
  font-size: 15px;
  color: var(--text-dim-2);
}

.price-card .cta-link {
  margin-top: 14px;
  display: inline-block;
  font-size: 14px;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  transition: filter 0.15s ease, background 0.15s ease;
}

.price-card .cta-link:hover {
  filter: brightness(1.15);
  background: rgba(201, 169, 97, 0.1);
}

.price-card.free .cta-link {
  border-color: #4fae8f;
  color: #6fe0a0;
}

.price-card.free .cta-link:hover {
  background: rgba(111, 224, 160, 0.1);
}

.price-note {
  text-align: center;
  color: var(--text-dim-3);
  font-size: 15px;
  margin-top: 28px;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  color: var(--text-dim-3);
  font-size: 15px;
}

footer .footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

footer .footer-links a {
  text-decoration: none;
  color: var(--text-dim-2);
}

footer .footer-links a:hover {
  color: var(--text-bright);
}

/* Legal pages */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.legal h1 {
  font-size: 34px;
  margin-bottom: 4px;
}

.legal .updated {
  color: var(--text-dim-3);
  font-size: 15px;
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 22px;
  margin-top: 36px;
}

.legal p,
.legal li {
  color: var(--text-dim-1);
  font-size: 18px;
}

.legal .callout {
  background: var(--panel-2);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 18px 20px;
  color: var(--text-dim-1);
  font-size: 16px;
  margin-bottom: 32px;
}

.legal .callout strong {
  color: var(--gold);
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 32px;
  }
  .hero .tagline {
    font-size: 19px;
  }
  nav.site-nav {
    display: none;
  }
}
