/* Quantum Cube — public site shared styles */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  background: #0a0e1a;
  color: #c8d0e0;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at top, rgba(125,212,252,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at bottom, rgba(147,112,219,0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  position: relative;
  z-index: 1;
}
.site-header {
  text-align: center;
  padding: 40px 20px 20px;
  position: relative;
  z-index: 1;
}
.site-header a.brand {
  font-family: 'Cinzel Decorative', Georgia, serif;
  font-size: 22px;
  letter-spacing: 6px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: normal;
}
h1, h2, h3 {
  font-family: 'Cinzel', Georgia, serif;
  color: #fff;
  font-weight: normal;
  letter-spacing: 2px;
}
h1 { font-size: 32px; margin: 40px 0 24px; text-align: center; letter-spacing: 4px; }
h2 { font-size: 22px; margin: 40px 0 16px; letter-spacing: 3px; }
h3 { font-size: 17px; margin: 28px 0 12px; color: #7dd4fc; letter-spacing: 2px; }
p { font-size: 17px; margin: 0 0 16px; color: #c8d0e0; }
p strong { color: #fff; font-weight: normal; }
a { color: #7dd4fc; text-decoration: none; border-bottom: 1px solid rgba(125,212,252,0.3); transition: border-color 0.2s; }
a:hover { border-bottom-color: rgba(125,212,252,0.9); }
ul { padding-left: 20px; margin: 0 0 20px; }
li { margin-bottom: 10px; font-size: 16px; }
.muted { color: #6a7388; font-size: 14px; }
.highlight {
  background: rgba(125,212,252,0.06);
  border-left: 2px solid #7dd4fc;
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 4px;
}
.footer {
  text-align: center;
  padding: 50px 20px 30px;
  border-top: 1px solid rgba(200,208,224,0.1);
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; margin-bottom: 20px; }
.footer-links a {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
  border: none;
}
.footer-links a:hover { color: #7dd4fc; }
.footer-copy { font-size: 12px; color: #555; letter-spacing: 1px; }
/* Landing-specific */
.hero { text-align: center; padding: 80px 20px 40px; position: relative; z-index: 1; }
.hero h1 { font-size: 38px; margin-bottom: 20px; letter-spacing: 5px; line-height: 1.3; }
.hero p.lead { font-size: 20px; color: #c8d0e0; max-width: 560px; margin: 0 auto 40px; font-style: italic; }
.cta-btn {
  display: inline-block;
  padding: 18px 56px;
  background: #0f1829;
  border: 1px solid #7dd4fc;
  border-radius: 999px;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 15px;
  letter-spacing: 5px;
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(125,212,252,0.25);
  transition: all 0.3s;
}
.cta-btn:hover { box-shadow: 0 0 40px rgba(125,212,252,0.5); transform: translateY(-1px); }
.features { padding: 40px 20px 20px; }
.features h2 { text-align: center; margin-bottom: 40px; }
.feature-grid { display: grid; gap: 30px; grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
.feature { text-align: center; padding: 24px; border: 1px solid rgba(200,208,224,0.08); border-radius: 8px; background: rgba(15,24,41,0.3); }
.feature h3 { margin-top: 0; color: #7dd4fc; }
.feature p { font-size: 15px; margin-bottom: 0; }
.pricing { text-align: center; padding: 40px 20px 20px; }
.price-card { display: inline-block; padding: 40px 60px; border: 1px solid rgba(125,212,252,0.3); border-radius: 12px; background: rgba(15,24,41,0.4); }
.price-amount { font-family: 'Cinzel', serif; font-size: 48px; color: #fff; letter-spacing: 3px; margin: 10px 0; }
.price-period { color: #7dd4fc; font-size: 14px; letter-spacing: 4px; text-transform: uppercase; }
.price-note { color: #888; font-size: 14px; margin-top: 20px; }
@media (max-width: 560px) {
  .hero h1 { font-size: 28px; letter-spacing: 3px; }
  .hero p.lead { font-size: 17px; }
  h1 { font-size: 26px; letter-spacing: 3px; }
  .container { padding: 30px 20px 60px; }
  .cta-btn { padding: 16px 40px; font-size: 13px; letter-spacing: 3px; }
  .price-card { padding: 30px 40px; }
  .price-amount { font-size: 38px; }
}
