
/* ---------- Base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #f7f7fb;
  background: radial-gradient(1200px 800px at 10% -10%, rgba(123,97,255,.10), transparent 60%),
              radial-gradient(1200px 800px at 110% 110%, rgba(0,182,255,.10), transparent 60%),
              #0d0b1a;
  line-height: 1.65;
}
.container { width: min(1120px, 92%); margin: 0 auto; }
a { color: #00b6ff; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Header / Nav ---------- */
header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: saturate(180%) blur(10px);
  background: rgba(10, 8, 20, .65);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 14px; }
.brand { display:flex; align-items:center; gap: 10px; }
.brand .logo-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ff6ad5, #7b61ff 60%, #00b6ff);
  box-shadow: 0 8px 28px rgba(123,97,255,.45), inset 0 0 18px rgba(255,255,255,.18);
}
.brand .name {
  font-weight: 800; letter-spacing: .2px;
  background: linear-gradient(135deg, #7b61ff 0%, #00b6ff 50%, #ff6ad5 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav a { margin: 0 10px; opacity: .95; }
.cta { padding:10px 16px; border-radius: 10px; font-weight:700; border:1px solid rgba(255,255,255,.16);
  background: linear-gradient(135deg, #7b61ff 0%, #00b6ff 50%, #ff6ad5 100%);
  color: white; box-shadow: 0 10px 24px rgba(123,97,255,.22);
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(123,97,255,.35); }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 42px; }
.hero-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items:center; }
.hero h1 {
  font-size: clamp(36px, 5vw, 56px); line-height:1.1; margin:0 0 12px;
  background: linear-gradient(135deg, #7b61ff 0%, #00b6ff 50%, #ff6ad5 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lede { font-size: 18px; opacity:.92; }
.hero .card-shot { width:100%; border-radius: 18px; border:1px solid rgba(255,255,255,.12);
  background: radial-gradient(400px 260px at 20% 10%, rgba(123,97,255,.15), transparent 50%),
              radial-gradient(500px 300px at 80% 90%, rgba(255,106,213,.12), transparent 55%);
  padding:18px;
}
.hero .card-shot img { width:100%; display:block; border-radius: 12px; }

.badges { display:flex; gap:12px; flex-wrap:wrap; margin-top:16px; }
.badge { border:1px solid rgba(255,255,255,.16); padding:8px 12px; border-radius: 999px; font-size:12px; opacity:.9;
  background: rgba(255,255,255,.05); }

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section h2 { font-size: 32px; margin: 0 0 8px; }
.subtitle { font-size: 16px; opacity:.8; margin-bottom: 22px; }

.grid-3 { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { border:1px solid rgba(255,255,255,.12); border-radius: 14px; padding:18px;
  background: rgba(255,255,255,.03); }
.card h3 { margin: 0 0 6px; font-size: 18px; }
.card p { margin: 0; opacity: .92; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid rgba(255,255,255,.08); margin-top: 48px; }
.footer { display:flex; flex-wrap:wrap; gap:18px; justify-content:space-between; align-items:center; padding:24px 0; opacity:.9; font-size:14px; }
.footer .links a { margin-right: 12px; }

/* ---------- Forms ---------- */
form input, form textarea {
  width:100%; padding:12px 14px; border-radius:12px; border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05); color:#fff; outline: none;
}
form textarea { min-height: 120px; }
form button { margin-top: 10px; }
.success { padding: 10px 12px; border-radius: 10px; background: rgba(0,255,0,.08); border: 1px solid rgba(0,255,0,.18); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}
