/* Dark futuristic theme */
:root {
  --bg: #0a0b10;
  --bg-elev: #0f1118;
  --text: #e8ecf1;
  --muted: #9aa3af;
  --primary: #7c3aed; /* violet */
  --primary-2: #22d3ee; /* cyan accent */
  --card: #121522;
  --border: #1f2333;
  --success: #34d399;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 20% -10%, rgba(124,58,237,0.15), transparent),
              radial-gradient(1000px 600px at 80% 10%, rgba(34,211,238,0.12), transparent),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container { width: min(1200px, 92%); margin: 0 auto; }

.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(8px); background: rgba(10,11,16,0.6); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand.small .brand-mark { width: 28px; height: 28px; font-size: 14px; }
.brand-mark { width: 36px; height: 36px; border-radius: 8px; display: grid; place-items: center; font-weight: 800; background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #0a0b10; box-shadow: 0 0 20px rgba(124,58,237,0.35), inset 0 0 12px rgba(34,211,238,0.3); }
.brand-title { font-weight: 700; letter-spacing: 0.2px; }
.brand-sub { font-size: 12px; color: var(--muted); }

.nav a { color: var(--text); text-decoration: none; margin-left: 18px; font-weight: 500; opacity: 0.9; }
.nav a:hover { color: var(--primary-2); }

.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; padding: 64px 0; }
.hero-copy h1 { font-size: clamp(28px, 5vw, 48px); line-height: 1.1; margin: 0 0 12px 0; }
.hero-copy p { color: var(--muted); max-width: 56ch; }
.hero-cta { margin-top: 22px; display: flex; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 10px; border: 1px solid var(--border); text-decoration: none; color: var(--text); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #0a0b10; font-weight: 700; box-shadow: 0 10px 24px rgba(124,58,237,0.25); }
.btn-ghost { background: rgba(255,255,255,0.03); }
.btn:hover { transform: translateY(-1px); transition: transform .15s ease; }

.hero-art { position: relative; display: grid; place-items: center; }
.hero-art img { width: 100%; height: auto; border-radius: 16px; border: 1px solid var(--border); box-shadow: 0 30px 60px rgba(0,0,0,0.45); }
.neon-ring { position: absolute; inset: auto; width: 60%; height: 60%; border-radius: 50%; filter: blur(24px); background: radial-gradient(circle at 50% 50%, rgba(124,58,237,0.6), rgba(34,211,238,0.35), transparent 60%); z-index: -1; }
.grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: linear-gradient(to bottom, black, transparent 80%); opacity: 0.4; pointer-events: none; }

.section { padding: 56px 0; }
.section-title { font-size: 28px; margin: 0 0 6px 0; }
.section-sub { color: var(--muted); margin: 0 0 22px 0; }
.center { text-align: center; }
.muted { color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; }
.card-img { width: 100%; height: 160px; object-fit: cover; border-bottom: 1px solid var(--border); background: #0c0f18; }
.card-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.card-body h3 { margin: 0; font-size: 20px; }
.features { list-style: none; padding: 0; margin: 0; color: var(--muted); display: grid; gap: 6px; }
.features li::before { content: "✦ "; color: var(--primary-2); }
.card-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.price { font-weight: 800; color: var(--success); }

.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; grid-auto-rows: 140px; }
.gallery-item { position: relative; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: #0c0f18; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 70% 20%, rgba(124,58,237,0.18), transparent), radial-gradient(60% 60% at 20% 80%, rgba(34,211,238,0.14), transparent); opacity: 0; transition: opacity .35s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover::after { opacity: 1; }
.span-2-col { grid-column: span 2; }
.span-3-col { grid-column: span 3; }
.span-2-row { grid-row: span 2; }

.faq details { background: #0b0e16; border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; margin: 10px 0; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--muted); margin: 8px 0 0 0; }

.contact a { color: var(--primary-2); text-decoration: none; }
.contact a:hover { text-decoration: underline; }

.site-footer { border-top: 1px solid var(--border); background: rgba(12,13,20,0.6); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; padding: 20px 0; }
.footer-nav { display: flex; gap: 16px; }
.footer-nav a { color: var(--muted); text-decoration: none; }
.footer-nav a:hover { color: var(--primary-2); }
.copyright { text-align: right; color: var(--muted); }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 110px; }
  .span-3-col { grid-column: span 6; }
  .span-2-col { grid-column: span 3; }
  .span-2-row { grid-row: span 2; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .copyright { text-align: center; }
}


