/* Grace Unlimited - Minimal Static Styles */
:root {
  --bg: #07090f;
  --glass: rgba(255,255,255,0.06);
  --line: rgba(255,255,255,0.12);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.75);
  --accent: #ffffff;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
}
a { color: var(--text); text-decoration: none; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.header {
  position: sticky; top: 0; z-index: 5; backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line); background: rgba(0,0,0,0.35);
}
.header-inner { height: 64px; display:flex; align-items:center; justify-content:space-between; }
.nav a { opacity: .85; margin-left: 20px; }
.nav a:hover { opacity: 1; }
.btn {
  display:inline-flex; align-items:center; gap:.5rem; border-radius: 14px;
  padding: .75rem 1rem; font-weight: 600; border: 1px solid transparent;
}
.btn.primary { background: var(--accent); color: #000; }
.btn.secondary { background: var(--glass); border-color: var(--line); }
.btn.ghost { background: transparent; border-color: var(--line); }
.hero {
  position: relative; text-align: center; padding: 96px 0;
}
.bgmark {
  position:absolute; inset:0; background: center / contain no-repeat url('../img/IMG_0930.jpg');
  opacity: .18; pointer-events: none;
}
.overlay { position: absolute; inset: 0; background: rgba(0,0,0,.65); }
.hero-inner { position:relative; z-index:1; }
.hero img { width: clamp(12rem, 22vw, 24rem); display:block; margin: 0 auto 1rem; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin: 0; font-weight: 800; letter-spacing: .3px; }
p.lead { color: var(--muted); max-width: 720px; margin: 1rem auto 0; }
.cta { margin-top: 1.5rem; display:flex; flex-wrap:wrap; gap:.75rem; justify-content:center; }
.section { padding: 56px 0; }
.card { background: var(--glass); border:1px solid var(--line); border-radius: 18px; }
.card .card-body { padding: 20px; }
.grid { display:grid; gap: 20px; }
@media (min-width: 880px) { .grid.two { grid-template-columns: 1fr 1fr; } }
.track { display:flex; align-items:center; gap: 14px; padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,0.04); border:1px solid var(--line); }
.track .no { height: 40px; width: 40px; display:grid; place-items:center; background: rgba(255,255,255,0.08); border-radius: 10px; font-weight: 700; }
.track .meta { flex: 1; min-width: 0; }
.track .title { font-weight: 600; }
.track .sub { color: var(--muted); font-size: .85rem; }
.footer { border-top:1px solid var(--line); padding: 26px 0; color: var(--muted); }
.logo-pop { animation: popin 1.4s ease-out both; transform-origin: center; }
@keyframes popin { 0% { opacity:0; transform: scale(.8) rotate(-5deg); } 100% { opacity:1; transform: scale(1) rotate(0deg); } }
