/* ============================================================
   PIXINNA — COMING SOON STYLESHEET
   Shared across: lens-soon.html, market-soon.html, cloud-soon.html
   ============================================================ */

/* Accent glows */
.cs-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cs-glow--lens {
  background: radial-gradient(ellipse at 50% 50%, rgba(124, 158, 255, 0.08), transparent 60%);
}

.cs-glow--market {
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 179, 71, 0.08), transparent 60%);
}

.cs-glow--cloud {
  background: radial-gradient(ellipse at 50% 50%, rgba(127, 255, 212, 0.08), transparent 60%);
}

/* Section */
.cs-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 40px 120px;
  text-align: center;
  position: relative;
  z-index: 10;
}

/* Tag */
.cs-tag {
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.cs-tag--lens   { color: #7C9EFF; }
.cs-tag--market { color: #FFB347; }
.cs-tag--cloud  { color: #7FFFD4; }

/* Icon */
.cs-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.cs-icon--lens   { color: #7C9EFF; }
.cs-icon--market { color: #FFB347; }
.cs-icon--cloud  { color: #7FFFD4; }

/* Title */
.cs-title {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 300;
  letter-spacing: -2px;
  margin-bottom: 8px;
}

.cs-title--lens   { color: #7C9EFF; }
.cs-title--market { color: #FFB347; }
.cs-title--cloud  { color: #7FFFD4; }

/* Subdomain */
.cs-sub {
  font-size: 12px;
  letter-spacing: 2px;
  color: #333;
  margin-bottom: 48px;
}

/* Body copy */
.cs-body {
  font-size: 16px;
  color: #555;
  line-height: 2;
  margin-bottom: 56px;
}

/* Form */
.cs-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 32px;
}

.cs-form-row {
  display: flex;
  gap: 0;
}

.cs-input {
  flex: 1;
  background: #0d0d1a;
  border: 1px solid #1e1e2e;
  border-right: none;
  color: #fff;
  padding: 14px 20px;
  font-size: 13px;
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
  outline: none;
  transition: border-color 0.3s;
}

.cs-input--name {
  border-bottom: none;
  border-right: 1px solid #1e1e2e;
  width: 100%;
}

.cs-input::placeholder { color: #333; }
.cs-input:focus { border-color: #333; }

/* Buttons */
.cs-btn {
  border: none;
  padding: 14px 28px;
  font-size: 11px;
  letter-spacing: 2px;
  font-family: 'Georgia', serif;
  font-weight: 600;
  color: #080810;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.cs-btn:hover { opacity: 0.85; }

.cs-btn--lens   { background: #7C9EFF; }
.cs-btn--market { background: #FFB347; }
.cs-btn--cloud  { background: #7FFFD4; }

/* Confirm message */
.cs-confirm {
  display: none;
  font-size: 14px;
  letter-spacing: 2px;
  color: #555;
  margin-bottom: 32px;
}

/* Back link */
.cs-back-link {
  display: inline-block;
  margin-top: 48px;
  font-size: 12px;
  letter-spacing: 3px;
  color: #333;
  border-bottom: 1px solid #1e1e2e;
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}

.cs-back-link:hover { color: #fff; border-color: #555; }
