/* ================= SECTION ================= */
.cyc-section {
  width: 100%;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

/* ================= CARD ================= */
.cyc-card {
  position: relative;
  width: 100%;
  max-width: 80%;
  background: white;
  border-radius: 24px;
  border: 1px solid #f1e9ff;
  padding: 120px 24px;
  overflow: hidden;
}

/* ================= BACKGROUND ================= */
.cyc-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--light-yellow) 0%,
    var(--light-yellow) 40%,
    #ffffff 100%
  );
}

.cyc-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(
      to right,
      rgba(130, 71, 255, 0.12) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(130, 71, 255, 0.12) 1px, transparent 1px);
  background-size: 110px 110px;

  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 20%,
    rgba(0, 0, 0, 0.4) 45%,
    black 100%
  );

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 20%,
    rgba(0, 0, 0, 0.4) 45%,
    black 100%
  );
}

/* ================= CONTENT ================= */
.cyc-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

/* ================= TEXT ================= */
.cyc-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a1a;
}

.cyc-gradient-text {
  color: var(--primary);
}

.cyc-subtext {
  margin-top: 16px;
  max-width: 520px;
  margin-inline: auto;
  color: #6b7280;
  font-size: 16px;
  font-family: var(--font-poppins);
}

/* ================= INPUT ================= */
.cyc-input-wrapper {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.cyc-input-container {
  width: 100%;
  max-width: 550px;
}

.cyc-input-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cyc-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #374151;
  font-size: 16px;
}

/* ================= FOOTER ================= */
.cyc-footer-text {
  margin-top: 16px;
  color: #6b7280;
  font-size: 16px;
  font-family: var(--font-poppins);
}

.cyc-footer-link {
  color: var(--primary);
  font-weight: 500;
  cursor: pointer;
}

