/* ================= NEWSLETTER ================= */
.ss-newsletter {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: #ffffff;
  font-family: Inter, system-ui, sans-serif;
}

/* LEFT BLUE GLOW */
.ss-newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: -15%;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(37, 99, 235, 0.10),
    rgba(37, 99, 235, 0.04),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* RIGHT GREEN GLOW */
.ss-newsletter::after {
  content: "";
  position: absolute;
  top: 0;
  right: -15%;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 50%,
    rgba(34, 197, 94, 0.10),
    rgba(34, 197, 94, 0.04),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* Watermark text */
.ss-newsletter-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 280px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0f172a;
  opacity: 0.025;
  transform: translateY(6px);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 1;
}

/* Layout */
.ss-newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* LEFT SIDE */
.ss-news-left {
  position: relative;
  width: 402px;
  height: 330px;
}

.ss-news-left::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
 
  border-radius: 2px;
}

.ss-tag-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.06);
  background: #fff;
  z-index: 2;
}

.ss-tag-card .icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: rgba(255,255,255,0.9);
}

.ss-tag-card.blue {
  top: 0;
  left: 40px;
  background: #e8f1ff;
  color: #2563eb;
}

.ss-tag-card.green {
  top: 120px;
  left: 180px;
  background: #ecfdf5;
  color: #16a34a;
}

.ss-tag-card.orange {
  top: 240px;
  left: 40px;
  background: #fff7ed;
  color: #ea580c;
}

.ss-tag-card.blue { transform: rotate(-4deg); }
.ss-tag-card.green { transform: rotate(2deg); }
.ss-tag-card.orange { transform: rotate(-2deg); }

.ss-news-curves {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

/* Connectors */
.ss-news-connector {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.ss-connector.blue { background: #bfdbfe; }
.ss-connector.green { background: #bbf7d0; }


/* RIGHT SIDE */
.ss-news-right h2 {
  margin-top: 8px;
  font-size: 3.75rem;
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.ss-news-right h2 span {
  display: inline-block;
  font-weight: 800;
  background: linear-gradient(90deg, #2563eb, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ss-news-desc {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
  max-width: 520px;
}

/* Join row */
.ss-join {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #475569;
  margin-bottom: 18px;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #34d399);
  border: 2px solid #ffffff;
  margin-left: -10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Form */
.ss-news-form {
  display: flex;
  align-items: center;
  margin-top: 30px;
  background: #ffffff;
  border-radius: 18px;
  padding: 6px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  max-width: 520px;
}

.ss-news-form input {
  flex: 1;
  padding: 16px 18px;
  border-radius: 14px;
  border: none;
  font-size: 15px;
  outline: none;
}

.ss-news-form button {
  background: #0f172a;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 16px 28px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.ss-news-form button span {
  margin-left: 6px;
}

/* Trust points */
.ss-news-trust {
  display: flex;
  gap: 28px;
  margin-top: 20px;
  font-size: 14px;
  color: #64748b;
}

.ss-news-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ss-news-trust span::before {
  content: "✔";
  color: #22c55e;
  font-size: 14px;
}
