:root {
  --bg: #0b0a0c;
  --panel: #100f12;
  --pink-1: #ff3d81;
  --pink-2: #ff7ab6;
  --silver: #e6e0e5;
  --text: #fff7fb;
  --text-dim: #d9cdd4;
  --border: #1c1720;
  --shadow: 0 10px 30px rgba(0,0,0,0.5);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Helvetica Neue', Arial;
  color: var(--text);
  background:
    radial-gradient(900px 700px at 12% 8%, rgba(255,61,129,0.18), transparent 60%),
    radial-gradient(800px 600px at 90% 15%, rgba(255,122,182,0.14), transparent 60%),
    linear-gradient(180deg, #0a090b, #141017);
  line-height: 1.6;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.site-header { position: sticky; top: 0; z-index: 10; backdrop-filter: blur(8px); background: rgba(10,9,11,0.65); border-bottom: 1px solid var(--border); }
.nav { height: 64px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--text); font-weight: 800; letter-spacing: 0.3px; }
.logo { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg, var(--pink-1), var(--pink-2)); border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; color: #120a0f; font-weight: 900; }
.nav a { color: var(--text-dim); text-decoration: none; padding: 8px 10px; border-radius: 8px; }
.nav a:hover { background: rgba(255,255,255,0.05); color: var(--text); }

.hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: center; padding: 60px 0; }
.headline { font-size: 42px; line-height: 1.1; margin: 0 0 10px; letter-spacing: -0.5px; }
.subhead { color: var(--text-dim); margin: 0 0 16px; }
.cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 12px 16px; border-radius: 12px; border: 1px solid var(--border); text-decoration: none; color: #0b0a0c; background: linear-gradient(135deg, var(--pink-2), var(--pink-1)); font-weight: 800; }
.btn:hover { filter: brightness(1.06); }
.btn-ghost { background: transparent; color: var(--text); border-color: #2a2130; }

.panel { background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); padding: 18px; }
.hero-art { height: 320px; border-radius: 16px; background: linear-gradient(135deg, rgba(255,61,129,0.15), rgba(255,122,182,0.10)); position: relative; overflow: hidden; border: 1px solid var(--border); }
.hero-art::before, .hero-art::after { content: ""; position: absolute; border-radius: 50%; filter: blur(24px); opacity: 0.7; }
.hero-art::before { width: 220px; height: 220px; left: 8%; top: 12%; background: radial-gradient(circle at 30% 30%, #ff9ec6, transparent 60%); }
.hero-art::after { width: 180px; height: 180px; right: 10%; bottom: 14%; background: radial-gradient(circle at 60% 60%, #ffd3e6, transparent 60%); }

.section { padding: 48px 0; }
.section-header h2 { margin: 0 0 8px; font-size: 28px; }
.section-header p { margin: 0; color: var(--text-dim); }
.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 920px) { .hero { grid-template-columns: 1fr; } .grid-3 { grid-template-columns: 1fr; } }

.footer { border-top: 1px solid var(--border); padding: 18px 0 28px; color: var(--text-dim); text-align: center; }

.disabled-link { opacity: 0.8; pointer-events: none; cursor: default; }


