:root {
  --ink: #241a31;
  --muted: #6e6378;
  --paper: #fbf7ef;
  --panel: #fffdf9;
  --violet: #5d3b76;
  --gold: #c9943e;
  --line: #ded2c2;
  --shadow: 0 24px 70px rgba(54, 35, 67, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 7%, rgba(201, 148, 62, .15), transparent 22rem),
    radial-gradient(circle at 10% 35%, rgba(93, 59, 118, .11), transparent 26rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: inherit; }
.site-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(93, 59, 118, .13);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 52px;
  color: #fff8e8;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 7px;
  background: linear-gradient(145deg, #76518d, #3e2854);
  box-shadow: 0 8px 25px rgba(62, 40, 84, .23);
  font-size: 20px;
}
.nav-links { display: flex; gap: 24px; }
.nav-links a, .footer-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 600; }
.nav-links a:hover, .footer-links a:hover { color: var(--violet); }

.hero { min-height: 680px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 70px; padding: 84px 0; }
.eyebrow { margin: 0 0 16px; color: var(--violet); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(52px, 7.4vw, 94px); font-weight: 500; line-height: .98; letter-spacing: -.055em; }
.hero-text { max-width: 640px; margin: 28px 0 0; color: var(--muted); font-size: 19px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 34px; }
.primary-button { display: inline-flex; padding: 14px 21px; color: white; border-radius: 999px; background: var(--violet); text-decoration: none; font-weight: 700; box-shadow: 0 12px 24px rgba(93,59,118,.2); }
.secondary-link { color: var(--violet); font-weight: 700; text-decoration: none; }

.card-stage { position: relative; min-height: 480px; display: grid; place-items: center; }
.card-stage::before { content: ""; position: absolute; width: 330px; height: 330px; border: 1px solid rgba(201,148,62,.4); border-radius: 50%; }
.tarot-card {
  position: absolute;
  display: grid;
  place-items: center;
  width: 230px;
  height: 390px;
  border: 9px double #d9b96e;
  border-radius: 16px;
  background: linear-gradient(145deg, #5d3b76, #2b1d3a);
  box-shadow: var(--shadow);
  color: #f4d992;
}
.tarot-card.one { transform: rotate(-11deg) translateX(-55px); }
.tarot-card.two { transform: rotate(9deg) translateX(62px); background: linear-gradient(145deg, #805f94, #4b3062); }
.tarot-card .moon { width: 108px; height: 108px; border-radius: 50%; box-shadow: 25px 2px 0 0 #f4d992; transform: translateX(-13px); }
.tarot-card .stars { position: absolute; inset: 0; background-image: radial-gradient(circle, #f4d992 1px, transparent 2px); background-size: 42px 44px; opacity: .45; }

.feature-band { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: rgba(255,253,249,.74); box-shadow: 0 18px 55px rgba(54,35,67,.06); }
.feature-band article { padding: 34px; }
.feature-band article + article { border-left: 1px solid var(--line); }
.feature-kicker { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.feature-band h2, .launch-strip h2 { margin: 10px 0; font-family: Georgia, serif; font-size: 28px; line-height: 1.15; }
.feature-band p, .launch-strip > p { margin: 0; color: var(--muted); }
.launch-strip { margin: 68px 0; padding: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; border-radius: 24px; color: white; background: var(--ink); }
.launch-strip .eyebrow { color: #e8c47d; }
.site-footer { display: flex; justify-content: space-between; gap: 30px; padding: 28px 0 46px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.site-footer p { margin: 0; }

.legal-shell { width: min(900px, calc(100% - 40px)); margin: 0 auto; }
.legal-document { margin: 60px 0 80px; padding: clamp(28px, 6vw, 64px); border: 1px solid var(--line); border-radius: 24px; background: rgba(255,253,249,.92); box-shadow: var(--shadow); }
.legal-document h1 { font-size: clamp(46px, 7vw, 72px); }
.legal-document h2 { margin: 42px 0 10px; font-family: Georgia, serif; font-size: 27px; line-height: 1.25; }
.legal-document h3 { margin: 26px 0 7px; font-size: 17px; }
.legal-document p, .legal-document li { color: #51475a; }
.last-updated { margin-top: 14px; color: var(--muted); font-size: 14px; }
.contact-info { padding: 20px; border-left: 3px solid var(--gold); background: #f8f1e5; }
.contact-info p { margin: 5px 0; }

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; gap: 20px; padding-top: 60px; }
  .card-stage { min-height: 430px; }
  .feature-band { grid-template-columns: 1fr; }
  .feature-band article + article { border-left: 0; border-top: 1px solid var(--line); }
  .launch-strip { grid-template-columns: 1fr; gap: 10px; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 540px) {
  .site-shell, .legal-shell { width: min(100% - 24px, 1180px); }
  .nav-links { gap: 12px; }
  .nav-links a:nth-child(2) { display: none; }
  .hero { min-height: auto; }
  h1 { font-size: 50px; }
  .tarot-card { width: 190px; height: 320px; }
  .card-stage::before { width: 260px; height: 260px; }
  .feature-band article, .launch-strip { padding: 26px; }
}

