/* ==== Theme variables ==== */
:root{
  --bg-start: #0f172a; /* slate-900 */
  --bg-end: #1e293b;   /* slate-800 */
  --accent: #7c3aed;   /* violet-600 */
  --accent-2: #22d3ee; /* cyan-400 */
  --text: #e5e7eb;     /* gray-200 */
  --muted: #94a3b8;    /* slate-400 */
  --card: rgba(255,255,255,0.08);
  --card-border: rgba(255,255,255,0.18);
  --success: #22c55e;
  --warning: #f59e0b;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body{
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: linear-gradient(135deg, var(--bg-start), var(--bg-end));
  overflow-x: hidden;
}

/* Animated gradient orbs */
.orb{
  position: fixed; inset: auto; width: 60vmax; height: 60vmax; filter: blur(60px); opacity: 0.35; pointer-events: none;
  background: radial-gradient(circle at 30% 30%, var(--accent), transparent 60%);
  animation: float 18s ease-in-out infinite;
}
.orb.two{ left: 60%; top: -10%; background: radial-gradient(circle at 70% 40%, var(--accent-2), transparent 60%); animation-duration: 24s; }
@keyframes float{ 0%{ transform: translate(-10%, -10%) scale(1);} 50%{ transform: translate(5%, 5%) scale(1.05);} 100%{ transform: translate(-10%, -10%) scale(1);} }

/* Grain for texture */
.grain{ position: fixed; inset:0; pointer-events:none; opacity:.06; background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 160 160"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.5"/></svg>'); mix-blend-mode: overlay; }

.wrap{ min-height: 100dvh; display: grid; place-items: center; padding: 5rem 1.25rem; }

.card{
  position: relative; max-width: 980px; width: 100%; border-radius: 28px; padding: 2rem; backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.badge{
  display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .85rem; color: #0b1020; background: linear-gradient(90deg, #a78bfa, #22d3ee);
  padding: .5rem .85rem; border-radius: 999px; box-shadow: 0 6px 20px rgba(124,58,237,.35);
}
.badge svg{ width: 18px; height: 18px; }

h1{ margin: 1rem 0 .25rem; font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.05; letter-spacing: .2px; }
.domain{ color: white; font-weight: 700; text-wrap: balance; }
.sub{ color: var(--muted); margin: .25rem 0 1.25rem; font-weight: 400; }

.cta-row{ display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.25rem 0 1.75rem; }

.btn{
  appearance: none; border: 0; cursor: pointer; border-radius: 16px; padding: .95rem 1.25rem; font-weight: 700; font-size: 1rem; transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
  display: inline-flex; gap: .6rem; align-items: center; text-decoration: none; color: #0b1020; background: white; box-shadow: 0 10px 24px rgba(16,24,40,.25);
}
.btn:hover{ transform: translateY(-2px); box-shadow: 0 16px 32px rgba(16,24,40,.35); }
.btn:active{ transform: translateY(0); }
.btn.alt{ background: linear-gradient(180deg, #0ea5e9, #22d3ee); color: #001827; }
.btn.ghost{ background: transparent; border: 1px dashed var(--card-border); color: var(--text); box-shadow: none; }
.btn svg{ width: 20px; height: 20px; }

.grid{
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.5rem; align-items: start; margin-top: 1rem;
}

.panel{ background: var(--card); border: 1px solid var(--card-border); border-radius: 22px; padding: 1.25rem; }

ul.features{ list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.features li{ display: grid; grid-template-columns: 28px 1fr; gap: .75rem; align-items: start; color: var(--text); }
.features svg{ width: 24px; height: 24px; color: var(--success); }
.small{ color: var(--muted); font-size: .92rem; }

form{ display: grid; gap: .8rem; }
label{ font-size: .9rem; color: var(--muted); }
input, textarea{
  width: 100%; padding: .9rem 1rem; background: rgba(255,255,255,.06); color: var(--text); border: 1px solid var(--card-border); border-radius: 14px; outline: none;
}
input::placeholder, textarea::placeholder{ color: #a3adc2; }
textarea{ min-height: 140px; resize: vertical; }
.row{ display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }

.footer{ margin-top: 1.25rem; display:flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--muted); font-size: .9rem; }
.copy{ cursor: pointer; user-select: none; padding: .2rem .5rem; border-radius: 8px; border: 1px dashed var(--card-border); }

.logo{ display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, #a78bfa, #22d3ee); box-shadow: 0 10px 24px rgba(124,58,237,.4); }

/* Responsive */
@media (max-width: 900px){ .grid{ grid-template-columns: 1fr; } }
@media (max-width: 520px){ .row{ grid-template-columns: 1fr; } .btn{ width: 100%; justify-content: center; } }
